Hey, I've been updating the statistics and we've had a decline in scratch blocks! From 82 to 70. Tell me if I'm crazy or not.
~SSBBM
Offline
Does anyone have a list of previously requested blocks?
~SSBBM
Offline
Can nXIII Make me a logo like the block library, except it says Python Library?
Offline
I may have miscounted the blocks... A recount was probably a good idea really. I don't have a list of previously requested blocks, They were taken off of the requests page once done. I assume you're wondering if the number of requested blocks for users is correct? I'm almost certain it is!
Offline
sparks wrote:
I may have miscounted the blocks... A recount was probably a good idea really. I don't have a list of previously requested blocks, They were taken off of the requests page once done. I assume you're wondering if the number of requested blocks for users is correct? I'm almost certain it is!
You assumed right. In the future, I think a page with previously requested blocks would be handy for the librarians.
Offline
[blockspec]('%n max: %n' #r #give:aMaxOf: #- #-)[/blockspec]
give: t1 aMaxOf: t2 t1 < t2 ifTrue: [^ t1]. ^ t2
[blockspec]('%n min: %n' #r #give:aMinOf: #- #-)[/blockspec]
give: t1 aMinOf: t2 t1 > t2 ifTrue: [^ t1]. ^ t2
[blockspec]('%n max: %n min:' #r #give:aMaxOf:andAMinOf: #- #- #-)[/blockspec]
give: t1 aMaxOf: t2 andAMinOf: t3 ^ self give: (self give: t1 aMaxOf: t2) aMinOf: t3
Offline
^^ I've made those already
Credit to rubiks_cube_guy238 for the following (my idea, he helped with coding self perform):
This is more for people to use in their own blocks than as a block itself:
('repeat call %s %n times' #- #do:times:) do: t1 times: t2 self do: t1 times: t2 current: 0 do: t1 times: t2 current: t3 t2 = t3 ifTrue: [^self]. self perform: (t1 asSymbol). self do: t1 times: t2 current: t3 + 1
Mainly a dev code:
('do action of call %s' #- #do:) do: t1 self perform: (t1 asSymbol)
Last edited by Hardmath123 (2011-03-27 02:23:53)
Offline
SSBBM wrote:
I noticed that the title is shrunk because of the size. Which do you think is better?
http://dl.dropbox.com/u/6273449/BlockLibraryTitle2.png
http://img811.imageshack.us/img811/4516 … lifesi.png
First, the second is image shack, LOL! Lemme look at it converting it to weebly. Hmm... the first one. The second one is well... a little too big, I think it should look thinner like a book, not a dictionary .
Offline
Sparks, can you send me the pass for the weebly account? Are we still thinking on doing it?
Offline
sparks wrote:
What weebly account? Doing what? I don't remember anything about this...
Off to go see a magician! Be back in a few hours
I think someone mentioned a joint weebly account.
I'm a magician. (A little bit.)
See this text. Don't see this!
Offline
JaysonNT wrote:
I might add some of these blocks to Jayson Programming. Now where did I put my Block Library eCard?
No card is needed, though we do ask that you give credit to the creators of the blocks you take out, I didn't spend my time adding the names of each block's creator for nothing!
Offline
sparks wrote:
JaysonNT wrote:
I might add some of these blocks to Jayson Programming. Now where did I put my Block Library eCard?
No card is needed, though we do ask that you give credit to the creators of the blocks you take out, I didn't spend my time adding the names of each block's creator for nothing!
I was just making a joke.
Offline
... And I was commenting on your joke with an equally pithy witticism of my own. I'm not joking about the credit though. Or the fact I was joking - I wasn't joking about that. Or that. Or that. Or that. Or that. Or that. Or that. Or that. Or that.
Offline
Can blocks including the block inserter be added to the library? (like in BYOB.)
Offline
SSBBM wrote:
I asked if Pecola if he wanted to share his webbly account since it's mostly used for this. Sci or sparks (I can't remember who) suggested that we make an account just for the block library.
Sparks. I suggested to my parents that I be allowed my own account (as I would upload other stuff, not just for the Library), but they haven't looked into it yet.
Offline
I made an infinity block for BYOB!
I cant post it for some reason, but here it is:
(Infinity)
report[0 + 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999/ 2]
Offline
ImagineIt wrote:
I made an infinity block for BYOB!
I cant post it for some reason, but here it is:
(Infinity)Code:
report[0 + 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 / 2]
Interesting! You needed the code tag, I fixed the post.
Last edited by scimonster (2011-03-27 10:02:11)
Offline
Instance: The statements assigned to a sprite that runs the statements.
In no-Squeak words, an instance is a script assigned to an object that runs the script.
For example, in Squeak, you could make a "String" saying "This is a test" and making statements that tell the object to do something.
Another meaning of Instance: The word "example" in UK English form.
Offline