blob8108



I wrote a text-based Scratch project editor, called tosh.

Try it now!

Please:
  • Use it
  • Give constructive feedback, via forums/email/twitter/github/whatever
  • Comment on/love the Scratch project (can we maybe get it featured?)
  • Make projects with it, share them with the tag “tosh”, add them to the studio
  • Say nice things
  • Read the blog post

Open-source version to follow, since a couple of people have already expressed interest in modding. (Also I'd like to accept PRs!) It'll be 3-clause BSD licensed; probably I'll release the source tomorrow or next week.

Please use this thread to talk about tosh, tosh mods (unless they get super-big), programming languages, that sort of interesting thing. Please don't spam memes/quotes/irrelevant things here; I don't want this thread to get closed like the last one was! Irrelevant posts will be silently deleted.

“tosh on”

bobbybee

Awesome <3

herohamp

OMG YAYYAYYYAYYAYAYAYYAYAYYA I AHVW BEEEN WAITING FOR DISSS YAYYYYY

comp09

Performance suggestions:
  • Add caching headers for assets. You'll save some money on bandwidth!
  • Optimize images (you should probably run that giant hero image through this)
  • Optimize SVGs on homepage using svgo (online version)

Other than that, you've done pretty well!

blob8108

comp09 wrote:

Performance suggestions
Thanks for these! The JPG one in particular is pretty cool. I already ran those SVGs through svgo, as it happens

Could you tell me how to set up appropriate caching headers in nginx? Possibly through a different medium than this one

Jonathan50

Yay! It sort of works on iPad. Why didn't you just report the old topic though?

scratchyone

Maybe you should make the “feedback” button bigger? It looks a little pixelated on my screen

blob8108

Jonathan50 wrote:

Why didn't you just report the old topic though?
Because I wanted a new one.

tosh is not supported on iPad, there's no way to save!

BookOwl

Your github link is dead.

Jonathan50

comp09 wrote:

Performance suggestions:
  • Add caching headers for assets. You'll save some money on bandwidth!
  • Optimize images (you should probably run that giant hero image through this)
  • Optimize SVGs on homepage using svgo (online version)

Other than that, you've done pretty well!
Is it a good idea to host a website if you don't have unlimited broadband?
[/offtopic]

comp09

blob8108 wrote:

comp09 wrote:

Performance suggestions
Thanks for these! The JPG one in particular is pretty cool. I already ran those SVGs through svgo, as it happens

Could you tell me how to set up appropriate caching headers in nginx? Possibly through a different medium than this one
location ~* \.(gif|png|jpe?g|js|css|svg)$ {
    expires 1y;
}

You should add cache busters to your assets, either by appending a version number query string or just naming the files with a hash in your build process.

blob8108

BookOwl wrote:

Your github link is dead.
Yeah. That's because I haven't open-sourced the repo yet

Jonathan50

comp09 wrote:

blob8108 wrote:

comp09 wrote:

Performance suggestions
Thanks for these! The JPG one in particular is pretty cool. I already ran those SVGs through svgo, as it happens

Could you tell me how to set up appropriate caching headers in nginx? Possibly through a different medium than this one
location ~* \.(gif|png|jpe?g|js|css|svg)$ {
    expires 1y;
}

You should add cache busters to your assets, either by appending a version number query string or just naming the files with a hash in your build process.
One year? Does that mean that if blob8108 decides to update an image then people have to wait one year before the cache gets deleted and the image is updated??

nnsfa

YAYAY

comp09

Jonathan50 wrote:

You should add cache busters to your assets, either by appending a version number query string or just naming the files with a hash in your build process.
One year? Does that mean that if blob8108 decides to update an image then people have to wait one year before the cache gets deleted and the image is updated??
Adding cache busters would let him “bust the caches” if he decides to update a file.

djdolphin

Are script comments not supported?

technoboy10

off-topic, oops

blob8108

djdolphin wrote:

Are script comments not supported?
No, sorry. That's on the wishlist

blob8108

Blueinkproductions wrote:

blob8108 wrote:

You can see the full credits here, if you're interested.
That page shows up blank for me.
It's an RTF; your browser might try to download it?
good job. It looks quite nice.
Thanks!

djdolphin

blob8108 wrote:

djdolphin wrote:

Are script comments not supported?
No, sorry. That's on the wishlist
Ok. Tosh is great otherwise!