Discuss Scratch

makethebrainhappy
Scratcher
1000+ posts

Services Planning Department- Join Today!

On the premade shop, here are some guidelines which I came up:

1.) We will receive credit for our work.

2.) In order to take something from the shop, you need to contribute to it
makethebrainhappy
Scratcher
1000+ posts

Services Planning Department- Join Today!

Hi?
jromagnoli
Scratcher
1000+ posts

Services Planning Department- Join Today!

makethebrainhappy wrote:

Hi?
Hi
pianogirl84
Scratcher
1000+ posts

Services Planning Department- Join Today!

makethebrainhappy wrote:

Hi?
Salutations

(I feel like I'm not really contributing to this discussion anymore… I've read everything but usually I don't know how to respond )
makethebrainhappy
Scratcher
1000+ posts

Services Planning Department- Join Today!

What should be added to the pre-made shop?

I also renamed it to MakeTheBrainHappy's Market. I feel like it's suited for that xD
bigpuppy
Scratcher
1000+ posts

Services Planning Department- Join Today!

pianogirl84 wrote:

makethebrainhappy wrote:

Hi?
Salutations

(I feel like I'm not really contributing to this discussion anymore… I've read everything but usually I don't know how to respond )
Same.
makethebrainhappy
Scratcher
1000+ posts

Services Planning Department- Join Today!

Would people like signatures like this?


http://i.cubeupload.com/hDG7OL.png
-Lite-
Scratcher
500+ posts

Services Planning Department- Join Today!

makethebrainhappy wrote:

Would people like signatures like this?


http://i.cubeupload.com/hDG7OL.png
Dynamic signatures are cool now (albeit in violation of the TOU, which is why I do not partake). If you could write a script to generate the images, that would be best.
jromagnoli
Scratcher
1000+ posts

Services Planning Department- Join Today!

-Lite- wrote:

makethebrainhappy wrote:

Would people like signatures like this?


http://i.cubeupload.com/hDG7OL.png
Dynamic signatures are cool now (albeit in violation of the TOU, which is why I do not partake). If you could write a script to generate the images, that would be best.
Violation of the TOU?
-Lite-
Scratcher
500+ posts

Services Planning Department- Join Today!

jromagnoli wrote:

-Lite- wrote:

makethebrainhappy wrote:

Would people like signatures like this?


http://i.cubeupload.com/hDG7OL.png
Dynamic signatures are cool now (albeit in violation of the TOU, which is why I do not partake). If you could write a script to generate the images, that would be best.
Violation of the TOU?
Hacked blocks break the TOU, too.
Furthermore, the ST has removed them previously. They have ultimate control over what is allowed, and have previously removed dynamic signatures as they utilize a security vulnerability. The current one uses a vulnerability in the wikimedia, a whitelisted domain, allowing traffic to be redirected to prohibited (not-whitelisted) sites for serving image content.

Last edited by -Lite- (July 3, 2017 00:53:38)

jromagnoli
Scratcher
1000+ posts

Services Planning Department- Join Today!

-Lite- wrote:

jromagnoli wrote:

-Lite- wrote:

makethebrainhappy wrote:

Would people like signatures like this?


http://i.cubeupload.com/hDG7OL.png
Dynamic signatures are cool now (albeit in violation of the TOU, which is why I do not partake). If you could write a script to generate the images, that would be best.
Violation of the TOU?
Hacked blocks break the TOU, too.
Furthermore, the ST has removed them previously. They have ultimate control over what is allowed, and have previously removed dynamic signatures as they utilize a security vulnerability. The current one uses a vulnerability in the wikimedia, a whitelisted domain, allowing traffic to be redirected to prohibited (not-whitelisted) sites for serving image content.
This one uses cubeupload which is an approved hosting site…
-Lite-
Scratcher
500+ posts

Services Planning Department- Join Today!

jromagnoli wrote:

-Lite- wrote:

jromagnoli wrote:

-Lite- wrote:

makethebrainhappy wrote:

Would people like signatures like this?


http://i.cubeupload.com/hDG7OL.png
Dynamic signatures are cool now (albeit in violation of the TOU, which is why I do not partake). If you could write a script to generate the images, that would be best.
Violation of the TOU?
Hacked blocks break the TOU, too.
Furthermore, the ST has removed them previously. They have ultimate control over what is allowed, and have previously removed dynamic signatures as they utilize a security vulnerability. The current one uses a vulnerability in the wikimedia, a whitelisted domain, allowing traffic to be redirected to prohibited (not-whitelisted) sites for serving image content.
This one uses cubeupload which is an approved hosting site…
I'm talking about dynamic signatures, not cubeupload. I was saying that it would be more popular if he made it dynamic, however it wouldn't technically be allowed.
jromagnoli
Scratcher
1000+ posts

Services Planning Department- Join Today!

-Lite- wrote:

jromagnoli wrote:

-Lite- wrote:

jromagnoli wrote:

-Lite- wrote:

makethebrainhappy wrote:

Would people like signatures like this?


http://i.cubeupload.com/hDG7OL.png
Dynamic signatures are cool now (albeit in violation of the TOU, which is why I do not partake). If you could write a script to generate the images, that would be best.
Violation of the TOU?
Hacked blocks break the TOU, too.
Furthermore, the ST has removed them previously. They have ultimate control over what is allowed, and have previously removed dynamic signatures as they utilize a security vulnerability. The current one uses a vulnerability in the wikimedia, a whitelisted domain, allowing traffic to be redirected to prohibited (not-whitelisted) sites for serving image content.
This one uses cubeupload which is an approved hosting site…
I'm talking about dynamic signatures, not cubeupload. I was saying that it would be more popular if he made it dynamic, however it wouldn't technically be allowed.
Ah.
makethebrainhappy
Scratcher
1000+ posts

Services Planning Department- Join Today!

Where is the refractoring guide?
pianogirl84
Scratcher
1000+ posts

Services Planning Department- Join Today!

@MTBH

-Lite- wrote:

Since we don't seem to be doing anything, I'll proceed.


What is refactoring?
According to wikipedia:
Code refactoring is the process of restructuring existing computer code—changing the factoring—without changing its external behavior. Refactoring improves nonfunctional attributes of the software.
When we refactor a project, we are improving the code, without changing the external behavior. This allows a project to run faster and more smoothly.

How can I refactor?
You can add small improvements that will improve your project, and eliminate unnecessary code.
Examples of improvements: https://scratch.mit.edu/studios/795672/

Faster less than or equal to and greater than or equal to relational expressions

You probably have seen, or even used this:
<<[x] < [y]> or <[x] = [y]>>
However, this is not optimal, because it requires scratch to calculate a check twice, and then apply an OR relational operation.
The better form is:
<not <[x] > [y]>>
Why? A check only has to be done once.
If you didn't already know, the opposite of less than is greater than or equal to, and the opposite of greater than is less than or equal to.
Why?
<insert simplified explanation here>
Faster not operation
For a demo, see https://scratch.mit.edu/projects/61323708/
Replacing
if <not <>> then

end
with
if <> then 



else

end
will increase performance.

Including the example above,
if <<[x] < [y]> or <[x] = [y]>> then
...
end
Can be optimized to
if <[x] > [y]> then
else
...
end
When using both optimizations, a 10-15% average increase in speed was observed without turbo, and about 50% with turbo. I would encourage you to test this yourself.
makethebrainhappy
Scratcher
1000+ posts

Services Planning Department- Join Today!

Hello everyone. Due to member demand I have decided to move the Services Planning Department to a new thread, located here. If you wish to remain a part of this collaboration make sure to post and follow the new thread.

I would like to thank everyone for their cooperation and the hard work/service which they have dedicated to this collaboration.

torotv
Scratcher
100+ posts

Services Planning Department- Join Today!

Username: @torotv
Writing Skill:
Resume: I'm a scratcher who dreams and work , I own 2 shops, I'm also a wiki editor. I have helped Paddle2see with some Debugging Coding for scratch for Unhackable Scratch. I own 2 studios, That are sending measeges to stop hacking and what has 20 Curtors suporting the Idea of Hacking and debugging. I work atleast Hard on scratch and Work atleast 6 hours on projects to Make things. I Am part of 4 shops and is the Manger of @Bgmead 's Shop with working as a part time job.
Management Experience: N/A
Community Experience: Y
Time on Scratch: 2 years
Scratch Helper (Y/N):N/A
SDS Helper (Y/N):N
Scratch Wiki Editor (Y/N): Y
monkeytrooper
Scratcher
1000+ posts

Services Planning Department- Join Today!

I'd like to get involved.
bigpuppy
Scratcher
1000+ posts

Services Planning Department- Join Today!

monkeytrooper wrote:

I'd like to get involved.
Hey Please go to our new topic:
https://scratch.mit.edu/discuss/topic/267139/
Bobbyguy1
Scratcher
100+ posts

Services Planning Department- Join Today!

Need help with a banner for my shop. I am trying to unite it with somebody's, but people keep rejecting them.

Powered by DjangoBB