This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#5726 2012-08-12 21:42:36

bharvey
Scratcher
Registered: 2008-08-10
Posts: 1000+

Re: BYOB 3 - Discussion Thread

shadow_7283 wrote:

go paperless

As in, kids typewrite their papers on a virtual keyboard?  Ugh.

But we're very excited about tablets as a relatively low-cost Snap! platform for not-so-wealthy schools.  Once we take over the world.  smile


http://cs.berkeley.edu/~bh/sig5.png

Offline

 

#5727 2012-08-12 21:58:30

Hardmath123
Scratcher
Registered: 2010-02-19
Posts: 1000+

Re: BYOB 3 - Discussion Thread

bharvey wrote:

Once we take over the world.  smile

*sigh* Optimists...


Hardmaths-MacBook-Pro:~ Hardmath$ sudo make $(whoami) a sandwich

Offline

 

#5728 2012-08-12 22:31:07

henley
Scratcher
Registered: 2008-06-21
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Hardmath123 wrote:

bharvey wrote:

Once we take over the world.  smile

*sigh* Optimists...

I'd say that's pessimism. I'd expect them to take over more than the world.


"I've worked so hard for you and you give me nothing in return. Do you need help... Or do I?"

Offline

 

#5729 2012-08-13 06:49:02

Hardmath123
Scratcher
Registered: 2010-02-19
Posts: 1000+

Re: BYOB 3 - Discussion Thread

henley wrote:

Hardmath123 wrote:

bharvey wrote:

Once we take over the world.  smile

*sigh* Optimists...

I'd say that's pessimism. I'd expect them to take over more than the world.

Which leaves Tatooine and Krikkit in my opinion.


Hardmaths-MacBook-Pro:~ Hardmath$ sudo make $(whoami) a sandwich

Offline

 

#5730 2012-08-13 09:32:23

shadow_7283
Scratcher
Registered: 2007-11-07
Posts: 1000+

Re: BYOB 3 - Discussion Thread

bharvey wrote:

But we're very excited about tablets...

You could totally look into optimizing Snap! for a lost cost computer like Raspberry Pi or APC. A Snap! tablet would be sooooo cool!

Offline

 

#5731 2012-08-13 17:59:26

shadow_7283
Scratcher
Registered: 2007-11-07
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Hey Jens, you don't use oncontextmenu for the canvas element, do you? How do you make custom right-clicking work in JavaScript?

Offline

 

#5732 2012-08-13 19:46:56

MathWizz
Scratcher
Registered: 2009-08-31
Posts: 1000+

Re: BYOB 3 - Discussion Thread

shadow_7283 wrote:

Hey Jens, you don't use oncontextmenu for the canvas element, do you? How do you make custom right-clicking work in JavaScript?

Code:

canvas.addEventListener('click', function (e) {
    e.preventDefault();
    if (e.which === 1) {
        //do context menu stuff
    }
}, false);

http://block.site90.net/scratch.mit/text.php?size=30&text=%20A%20signature!&color=333333

Offline

 

#5733 2012-08-13 20:03:55

bharvey
Scratcher
Registered: 2008-08-10
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Hardmath123 wrote:

*sigh* Optimists...

Nah, optimism would be thinking that we'd sink into obscurity and I could have a nice quiet retirement.  Instead I expect to be running around doing teacher workshops forever!


http://cs.berkeley.edu/~bh/sig5.png

Offline

 

#5734 2012-08-13 20:52:48

shadow_7283
Scratcher
Registered: 2007-11-07
Posts: 1000+

Re: BYOB 3 - Discussion Thread

MathWizz wrote:

Code:

canvas.addEventListener('click', function (e) {
    e.preventDefault();
    if (e.which === 1) {
        //do context menu stuff
    }
}, false);

Is that more compatible than

Code:

canvas.addEventListener('contextmenu', function (e) {
    e.preventDefault();
} ,false);

Last edited by shadow_7283 (2012-08-13 20:53:03)

Offline

 

#5735 2012-08-13 21:17:07

funelephant
Scratcher
Registered: 2010-07-02
Posts: 1000+

Re: BYOB 3 - Discussion Thread

bharvey wrote:

shadow_7283 wrote:

go paperless

As in, kids typewrite their papers on a virtual keyboard?  Ugh.

But we're very excited about tablets as a relatively low-cost Snap! platform for not-so-wealthy schools.  Once we take over the world.  smile

Wait... tablets?


nicki begs to differ
http://24.media.tumblr.com/ab0e6e8fd347c5e39c2821bcab9d16e6/tumblr_mgu35sui1L1rfb7aqo2_500.gif

Offline

 

#5736 2012-08-13 21:43:12

MathWizz
Scratcher
Registered: 2009-08-31
Posts: 1000+

Re: BYOB 3 - Discussion Thread

shadow_7283 wrote:

MathWizz wrote:

Code:

canvas.addEventListener('click', function (e) {
    e.preventDefault();
    if (e.which === 1) {
        //do context menu stuff
    }
}, false);

Is that more compatible than

Code:

canvas.addEventListener('contextmenu', function (e) {
    e.preventDefault();
} ,false);

I have no idea.  tongue


http://block.site90.net/scratch.mit/text.php?size=30&text=%20A%20signature!&color=333333

Offline

 

#5737 2012-08-13 21:55:18

bharvey
Scratcher
Registered: 2008-08-10
Posts: 1000+

Re: BYOB 3 - Discussion Thread

shadow_7283 wrote:

Raspberry Pi

Yes, totally.  Have they caught up on manufacturing them?  Last I heard you couldn't get one.


http://cs.berkeley.edu/~bh/sig5.png

Offline

 

#5738 2012-08-13 21:57:39

Hardmath123
Scratcher
Registered: 2010-02-19
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Have you seen the newest version of Enchanting? Lots of good BYOB features.  big_smile


Hardmaths-MacBook-Pro:~ Hardmath$ sudo make $(whoami) a sandwich

Offline

 

#5739 2012-08-13 21:57:53

bharvey
Scratcher
Registered: 2008-08-10
Posts: 1000+

Re: BYOB 3 - Discussion Thread

funelephant wrote:

Wait... tablets?

Yup.  Runs great on iPad; almost runs great on Android tablets except that (at least on my Nexus 7) there's a bug (in Chrome) about the virtual keyboard.  But we're working hard to fast-track the problem at Google.


http://cs.berkeley.edu/~bh/sig5.png

Offline

 

#5740 2012-08-13 22:09:26

bharvey
Scratcher
Registered: 2008-08-10
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Hardmath123 wrote:

Have you seen the newest version of Enchanting? Lots of good BYOB features.  big_smile

Wow, looks amazing!  I wish I had a Lego thingy to play with.


http://cs.berkeley.edu/~bh/sig5.png

Offline

 

#5741 2012-08-14 05:34:50

blob8108
Scratcher
Registered: 2007-06-25
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Hardmath123 wrote:

Enchanting

That's Scratch for the Mindstorms NXT, isn't it? I could never get that to work...  sad


Things I've made: kurt | scratchblocks2 | this cake

Offline

 

#5742 2012-08-14 06:14:43

Hardmath123
Scratcher
Registered: 2010-02-19
Posts: 1000+

Re: BYOB 3 - Discussion Thread

blob8108 wrote:

Hardmath123 wrote:

Enchanting

That's Scratch for the Mindstorms NXT, isn't it? I could never get that to work...  sad

I could. You need the LeJos firmware and a big leap of faith. I could never get the original stuff (NXT-G or something) to work...


Hardmaths-MacBook-Pro:~ Hardmath$ sudo make $(whoami) a sandwich

Offline

 

#5743 2012-08-14 08:57:45

MathWizz
Scratcher
Registered: 2009-08-31
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Hardmath123 wrote:

blob8108 wrote:

Hardmath123 wrote:

Enchanting

That's Scratch for the Mindstorms NXT, isn't it? I could never get that to work...  sad

I could. You need the LeJos firmware and a big leap of faith. I could never get the original stuff (NXT-G or something) to work...

Loool. NXT-G is even worse that Scratch with lag and stuff. My guess as to why is because it is built on LabVIEW...

Now THERE is a summer project. I should write a compiler for Scratch that compiles directly to the NXT with standard firmware.


http://block.site90.net/scratch.mit/text.php?size=30&text=%20A%20signature!&color=333333

Offline

 

#5744 2012-08-14 09:26:42

Hardmath123
Scratcher
Registered: 2010-02-19
Posts: 1000+

Re: BYOB 3 - Discussion Thread

MathWizz wrote:

Hardmath123 wrote:

blob8108 wrote:


That's Scratch for the Mindstorms NXT, isn't it? I could never get that to work...  sad

I could. You need the LeJos firmware and a big leap of faith. I could never get the original stuff (NXT-G or something) to work...

Loool. NXT-G is even worse that Scratch with lag and stuff. My guess as to why is because it is built on LabVIEW...

Now THERE is a summer project. I should write a compiler for Scratch that compiles directly to the NXT with standard firmware.

Yeah! Then I can compete in all these competitions which require the default firmware for some reason.


Hardmaths-MacBook-Pro:~ Hardmath$ sudo make $(whoami) a sandwich

Offline

 

#5745 2012-08-14 13:18:19

bharvey
Scratcher
Registered: 2008-08-10
Posts: 1000+

Re: BYOB 3 - Discussion Thread

Hardmath123 wrote:

MathWizz wrote:

Aargh.  I always have trouble keeping straight which of you is which, and here you are both posting fast and furious on the same tipic.  sad


http://cs.berkeley.edu/~bh/sig5.png

Offline

 

#5746 2012-08-14 13:28:30

shadow_7283
Scratcher
Registered: 2007-11-07
Posts: 1000+

Re: BYOB 3 - Discussion Thread

bharvey wrote:

Have they caught up on manufacturing them?  Last I heard you couldn't get one.

Nah, I don't think so. Last time I checked there was quite a substantial back order. I'll be keeping an eye on it anyway.

If there were going to be a Snap! tablet, I think the APC would be more viable, except for the fact it doesn't support touch.  sad  Still, pre-loaded custom Android makes for pretty easy development.

Last edited by shadow_7283 (2012-08-14 13:30:49)

Offline

 

#5747 2012-08-14 13:37:50

MathWizz
Scratcher
Registered: 2009-08-31
Posts: 1000+

Re: BYOB 3 - Discussion Thread

bharvey wrote:

Hardmath123 wrote:

MathWizz wrote:

Aargh.  I always have trouble keeping straight which of you is which, and here you are both posting fast and furious on the same tipic.  sad

I'm having a harder time distinguishing between you and shadow.  tongue


http://block.site90.net/scratch.mit/text.php?size=30&text=%20A%20signature!&color=333333

Offline

 

#5748 2012-08-14 14:37:32

shadow_7283
Scratcher
Registered: 2007-11-07
Posts: 1000+

Re: BYOB 3 - Discussion Thread

MathWizz wrote:

I'm having a harder time distinguishing between you and shadow.  tongue

Lolwut? Intelligent reply = Brian.

Offline

 

#5749 2012-08-14 14:40:43

blob8108
Scratcher
Registered: 2007-06-25
Posts: 1000+

Re: BYOB 3 - Discussion Thread

MathWizz wrote:

I'm having a harder time distinguishing between you and shadow.  tongue

Yeah, I find that really difficult too! Can't you guys have different signatures?


Things I've made: kurt | scratchblocks2 | this cake

Offline

 

#5750 2012-08-14 14:47:13

jukyter
Scratcher
Registered: 2009-12-06
Posts: 1000+

Re: BYOB 3 - Discussion Thread

shadow_7283 wrote:

MathWizz wrote:

I'm having a harder time distinguishing between you and shadow.  tongue

Lolwut? Intelligent reply = Brian.

Whut


cause a bird and a fish could fall in love/but where would they live?

Offline

 

Board footer