Discuss Scratch

god286
Scratcher
1000+ posts

Scratchinfo - an epic website

Wonder why you can't authenticate with FluffyScratch?
That's because ScratchLight just came in and replaced it.
Have fun, and security vulnerabilities - oh wait I need to get that set up

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
god286
Scratcher
1000+ posts

Scratchinfo - an epic website

BUMP
BUMP
BUMP

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
god286
Scratcher
1000+ posts

Scratchinfo - an epic website

Bump
Thanks to a bunch of people for signing up!

If you don't want your username to be here just tell me on Scratch to delete your information…

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
Verixion
Scratcher
100+ posts

Scratchinfo - an epic website

god286 wrote:

I've got a big problem:
I need to fetch to /foo/bar for something.
So when I fetch to /foo/bar
the first / means the directory of the site right?
BUT it says “INVALID_URL”
But I have to fetch
http://localhost:3000/foo/bar
when the website is in production it won't work obviously

Can someone help?
is this in the context module load function? the proper working fetch function should have been passed through the first param table

back in business

god286
Scratcher
1000+ posts

Scratchinfo - an epic website

Verixion wrote:

god286 wrote:

I've got a big problem:
I need to fetch to /foo/bar for something.
So when I fetch to /foo/bar
the first / means the directory of the site right?
BUT it says “INVALID_URL”
But I have to fetch
http://localhost:3000/foo/bar
when the website is in production it won't work obviously

Can someone help?
is this in the context module load function? the proper working fetch function should have been passed through the first param table
hmm.. I honestly have absolutely no idea what you just said I don't know if there are load functions in endpoints and what a param table is

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
kccuber
Scratcher
1000+ posts

Scratchinfo - an epic website


why is there a scrollbar on the name of the studio
make the padding more


Made using Nord Theme & Inkscape
MagicCrayon9342
Scratcher
1000+ posts

Scratchinfo - an epic website

kccuber wrote:


why is there a scrollbar on the name of the studio
make the padding more
it is using iframes, you can hide the bar. its not padding it needs, the iframe just needs to be a larger size. However, that might not be able to happen. You can just remove the scroll bar and just let the user use the scroll wheel or press a “read more” button that increases the iframe size. and pushes the other iframes near it

MagicCrayon9342
Scratcher
1000+ posts

Scratchinfo - an epic website

Tried to do dynamic sized iframe's myself with this code:

<script>
    function iframeRESIZE() {
        document.getElementById('resizable').width=framewidth+30;
        document.getElementById('resizable').height=frameheight+30;
        console.log();
    }
    const frameheight=30;
    const framewidth=30;
</script>
<button id="resizable" onclick="iframeRESIZE()">Click Me</button>
<iframe src="https://example.com" width="30" height="30"></iframe>
but it didnt work

god286
Scratcher
1000+ posts

Scratchinfo - an epic website

MagicCrayon9342 wrote:

it is using iframes, you can hide the bar. its not padding it needs, the iframe just needs to be a larger size. However, that might not be able to happen. You can just remove the scroll bar and just let the user use the scroll wheel or press a “read more” button that increases the iframe size. and pushes the other iframes near it
Where'd you get the information I was using iframes from? It is actually just a div with a reactive variable inside…

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
Verixion
Scratcher
100+ posts

Scratchinfo - an epic website

god286 wrote:

Verixion wrote:

god286 wrote:

I've got a big problem:
I need to fetch to /foo/bar for something.
So when I fetch to /foo/bar
the first / means the directory of the site right?
BUT it says “INVALID_URL”
But I have to fetch
http://localhost:3000/foo/bar
when the website is in production it won't work obviously

Can someone help?
is this in the context module load function? the proper working fetch function should have been passed through the first param table
hmm.. I honestly have absolutely no idea what you just said I don't know if there are load functions in endpoints and what a param table is
you're using endpoints? I think it's better to just pull the code from the endpoint you're fetching to another separate ts file and then just get stuff from the module

I make no sense lol

back in business

god286
Scratcher
1000+ posts

Scratchinfo - an epic website

Verixion wrote:

you're using endpoints? I think it's better to just pull the code from the endpoint you're fetching to another separate ts file and then just get stuff from the module
oh ok

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
deathcharge415
Scratcher
54 posts

Scratchinfo - an epic website

I also use Vercel for hosting my websites!

Check out this game that I've been working on for 3 years…

Bloons Tower-Defense Remastered On Scratch






I have no idea how to breathe.
kat-coder
Scratcher
1000+ posts

Scratchinfo - an epic website

I love it! On what programming language did you make it on?

-kat-coder

(1000 Posts. (✔::operators)(❌::variables)(❌)(❌)(❌) 5000 Posts! 




Useful Links:

To advertise your Scratch project, Go Here!
To play around with ScratchBlocks, Go Here!
To contact the Scratch Team, Go Here!
To check out my latest Scratch project, Go Here!
dhuls
Scratcher
1000+ posts

Scratchinfo - an epic website

kat-coder wrote:

I love it! On what programming language did you make it on?
Just check the GitHub repository lol.
god286
Scratcher
1000+ posts

Scratchinfo - an epic website

I'm currently working on a system for you all to contribute your own widgets. It's going to be awesome I hope. It will kind of be like the GitHub Marketplace but it's all free. Then it will be stored in my database as JSON in a string. After this system gets setup I will hopefully create some good documentation

Yes the system is inspired by Nono word.

Last edited by god286 (Nov. 21, 2021 21:52:48)


Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
JoshAtticus
Scratcher
100+ posts

Scratchinfo - an epic website

god286 wrote:

I'm currently working on a system for you all to contribute your own widgets. It's going to be awesome I hope. It will kind of be like the GitHub Marketplace but it's all free. Then it will be stored in my database as JSON in a string. After this system gets setup I will hopefully create some good documentation

Yes the system is inspired by Nono word.
And I thought of github compnent

~~I'm JoshAtticus!~~
I enjoy scratching, playing with tech and online privacy(not google)

Check out the OSMANiC Website!

This account is in an archived state, I don't post projects here, and I might not be very active with comments and forums
I have 2 new accounts: @OSMANiC Team & @OSMANiCBetas



^^Made with Figlet^^










god286
Scratcher
1000+ posts

Scratchinfo - an epic website

JoshAtticus wrote:

god286 wrote:

I'm currently working on a system for you all to contribute your own widgets. It's going to be awesome I hope. It will kind of be like the GitHub Marketplace but it's all free. Then it will be stored in my database as JSON in a string. After this system gets setup I will hopefully create some good documentation

Yes the system is inspired by Nono word.
And I thought of github compnent
And I thought of the system
I am going to give you credit

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
god286
Scratcher
1000+ posts

Scratchinfo - an epic website

JoshAtticus wrote:

And I thought of github compnent
I'm having a bit of a confusion now…
the thing is that anyone could impersonate @LLK or someone… and then I'll have to set up a GitHub authorisation thing to verify.. this is a bit hard.

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.
AJ-Scratch-AJ
Scratcher
500+ posts

Scratchinfo - an epic website

god286 wrote:

JoshAtticus wrote:

And I thought of github compnent
I'm having a bit of a confusion now…
the thing is that anyone could impersonate @LLK or someone… and then I'll have to set up a GitHub authorisation thing to verify.. this is a bit hard.
Authorization? Like signing up? If u want that, try using firebase..I used firebase authentication for one of my react sites..its free too





















































































Why did you scroll this much? Just stop





















































































DUDE!










































































Bruh.

Mr. Ramsay is disappointed in you.
god286
Scratcher
1000+ posts

Scratchinfo - an epic website

AJ-Scratch-AJ wrote:

god286 wrote:

JoshAtticus wrote:

And I thought of github compnent
I'm having a bit of a confusion now…
the thing is that anyone could impersonate @LLK or someone… and then I'll have to set up a GitHub authorisation thing to verify.. this is a bit hard.
Authorization? Like signing up? If u want that, try using firebase..I used firebase authentication for one of my react sites..its free too
I already use Supabase so I don't want to switch to Firebase. There is an option for GitHub. But I really don't know if I should make big DB changes for this.

Here are some of my followers!

I joined: 5 years, 9 months, 24 days ago (31/03/2018)
I have: 479 followers
In total, I have attained: 1,403 loves, 1,145 favourites, and 33,731 views.
Fun Fact: If my account continued to gain followers at a similar rate to right now, in 14,210 years I would reach the number of followers griffpatch has today! Try to imagine how many followers he would have then!
Thank you everyone!
Script created by god286.

Powered by DjangoBB