Discuss Scratch

MonkeyBean2
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

Joshisaurio wrote:

MonkeyBean2 wrote:

(#178)

Joshisaurio wrote:

MonkeyBean2 wrote:

(#169)
I have an idea! Why not create a searchable thingy that keeps track of all the questions here! We could do something like tag things as questions or answers to specific questions
Wdym? I think you mean a FAQ, right? There's already one, but when I have enough short questions I'll add more
Sorry lol I mean a website that indexes this forum topic.
Ohh yeah if I learn HTML I might make a website or make a project that sends info to a Python program that sends info back like Ocular
I know HTML, js and css. I could do the frontend.

Last edited by MonkeyBean2 (July 12, 2022 16:20:09)

applejuiceproduc
Scratcher
1000+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

MonkeyBean2 wrote:

Joshisaurio wrote:

MonkeyBean2 wrote:

(#178)

Joshisaurio wrote:

MonkeyBean2 wrote:

(#169)
I have an idea! Why not create a searchable thingy that keeps track of all the questions here! We could do something like tag things as questions or answers to specific questions
Wdym? I think you mean a FAQ, right? There's already one, but when I have enough short questions I'll add more
Sorry lol I mean a website that indexes this forum topic.
Ohh yeah if I learn HTML I might make a website or make a project that sends info to a Python program that sends info back like Ocular
I know HTML, js and css. I could do the frontend.
I probably can do the backend, as long as it is in python
ScratchTheCoder12345
Scratcher
500+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

Joshisaurio wrote:

MonkeyBean2 wrote:

(#178)

Joshisaurio wrote:

MonkeyBean2 wrote:

(#169)
I have an idea! Why not create a searchable thingy that keeps track of all the questions here! We could do something like tag things as questions or answers to specific questions
Wdym? I think you mean a FAQ, right? There's already one, but when I have enough short questions I'll add more
Sorry lol I mean a website that indexes this forum topic.
Ohh yeah if I learn HTML I might make a website or make a project that sends info to a Python program that sends info back like Ocular. Maybe also if you do something I can just give you ideas and credit you on the first page of the forum
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Joshisaurio
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

applejuiceproduc wrote:

(#182)

MonkeyBean2 wrote:

~Snip~
Ohh yeah if I learn HTML I might make a website or make a project that sends info to a Python program that sends info back like Ocular
I know HTML, js and css. I could do the frontend.
I probably can do the backend, as long as it is in python
Joshisaurio
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later

Last edited by Joshisaurio (July 12, 2022 21:13:23)

MagicCrayon9342
Scratcher
1000+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

Joshisaurio wrote:

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later
p - paragraph
pre - manual formatted paragrah
span - absolutely unsure
b - bold
h1-h6 - headings
button - button
a - link
nav - navbar
ul - list
li - list items
html - second tag in every file (assuming your writing HTML correctly)
<!DOCTYPE HTML> should be at the top of every html file
input - input box, multiple types.

Your HTML file should ALWAYS start with the following
<!DOCTYPE HTML>
<html>
  <head>
    <title>Your Title</title>
  </head>
  <body>
  </body>
</html>
Or, if you use vscode. Create and open an html file, type ! and press enter.
Joshisaurio
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

MagicCrayon9342 wrote:

(#186)

Joshisaurio wrote:

~Snip~
p - paragraph
pre - manual formatted paragrah
I already know these lol thx anyway

MagicCrayon9342 wrote:

span - absolutely unsure
Wdym? Update: My teacher just said it's for highlighting text but she said we're going to try it later so still idk what it means… I'm still on class, if I get more info on it I'll edit and tell

MagicCrayon9342 wrote:

b - bold
h1-h6 - headings
The only ones I know lol

MagicCrayon9342 wrote:

button - button
Pretty obvious

MagicCrayon9342 wrote:

a - link
nav - navbar
ul - list
li - list items
Hmm nice might be useful

MagicCrayon9342 wrote:

html - second tag in every file (assuming your writing HTML correctly)
<!DOCTYPE HTML> should be at the top of every html file
Yeah, my teacher told me that, but I'm still not sure what it works for… I'll have to find out later
Nvm I had class today and my teacher said that it's so that you use the last version or you might use older versions by accident

MagicCrayon9342 wrote:

input - input box, multiple types.
Ohh nice! Super nice and useful! Lol

MagicCrayon9342 wrote:

Your HTML file should ALWAYS start with the following
<!DOCTYPE HTML>
<html>
  <head>
    <title>Your Title</title>
  </head>
  <body>
  </body>
</html>
Ohh thanks!

MagicCrayon9342 wrote:

Or, if you use vscode. Create and open an html file, type ! and press enter.
Yeah I use VS code for that now although it's kinda confusing because sometimes it uses the wrong clause and I have to delete the whole thing… They should make you have to press tab to use the suggestion or something lol.

Also something nice of HTML is that it works similar to the forums, like this:

Forums:
[big]
Big text goes here
[/big]

HTML:
<h1>
A nice, big heading with big text lol
</h1>

Last edited by Joshisaurio (July 12, 2022 22:18:16)

applejuiceproduc
Scratcher
1000+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

ScratchTheCoder12345 wrote:

Joshisaurio wrote:

MonkeyBean2 wrote:

(#178)

Joshisaurio wrote:

MonkeyBean2 wrote:

(#169)
I have an idea! Why not create a searchable thingy that keeps track of all the questions here! We could do something like tag things as questions or answers to specific questions
Wdym? I think you mean a FAQ, right? There's already one, but when I have enough short questions I'll add more
Sorry lol I mean a website that indexes this forum topic.
Ohh yeah if I learn HTML I might make a website or make a project that sends info to a Python program that sends info back like Ocular. Maybe also if you do something I can just give you ideas and credit you on the first page of the forum
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
I hate HTML too. That’s why I didn’t mention I could do it xD
ScratchTheCoder12345
Scratcher
500+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

applejuiceproduc wrote:

ScratchTheCoder12345 wrote:

Joshisaurio wrote:

MonkeyBean2 wrote:

(#178)

Joshisaurio wrote:

MonkeyBean2 wrote:

(#169)
I have an idea! Why not create a searchable thingy that keeps track of all the questions here! We could do something like tag things as questions or answers to specific questions
Wdym? I think you mean a FAQ, right? There's already one, but when I have enough short questions I'll add more
Sorry lol I mean a website that indexes this forum topic.
Ohh yeah if I learn HTML I might make a website or make a project that sends info to a Python program that sends info back like Ocular. Maybe also if you do something I can just give you ideas and credit you on the first page of the forum
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
I hate HTML too. That’s why I didn’t mention I could do it xD
Same xD
Joshisaurio
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

Lol
rishi272011
Scratcher
100 posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

i know a bit of html, learning css and nearly no js. all i know is
window.alert("hello")
MonkeyBean2
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

Joshisaurio wrote:

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later
You just said you know how to code in html! Maybe i should do the frontend then.
ScratchTheCoder12345
Scratcher
500+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

MonkeyBean2 wrote:

Joshisaurio wrote:

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later
You just said you know how to code in html! Maybe i should do the frontend then.
Everyone we should make a PyHelp website!
MonkeyBean2
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

ScratchTheCoder12345 wrote:

MonkeyBean2 wrote:

Joshisaurio wrote:

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later
You just said you know how to code in html! Maybe i should do the frontend then.
Everyone we should make a PyHelp website!
Perfect! Soo… Where should we collaborate on it? Replit? Github? (I don't have a github account yet, but i'll get one soon. But I think it's easier to do it in replit as it's not that big of a project. (we can use a proxy to get around the replit ip ban (really just 429 but whatever)))

Last edited by MonkeyBean2 (July 13, 2022 12:03:13)

DifferentDance8
Scratcher
1000+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

MonkeyBean2 wrote:

ScratchTheCoder12345 wrote:

MonkeyBean2 wrote:

Joshisaurio wrote:

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later
You just said you know how to code in html! Maybe i should do the frontend then.
Everyone we should make a PyHelp website!
Perfect! Soo… Where should we collaborate on it? Replit? Github? (I don't have a github account yet, but i'll get one soon. But I think it's easier to do it in replit as it's not that big of a project. (we can use a proxy to get around the replit ip ban (really just 429 but whatever)))
You can do Replit. It is fine.
MonkeyBean2
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

DifferentDance8 wrote:

MonkeyBean2 wrote:

ScratchTheCoder12345 wrote:

MonkeyBean2 wrote:

Joshisaurio wrote:

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later
You just said you know how to code in html! Maybe i should do the frontend then.
Everyone we should make a PyHelp website!
Perfect! Soo… Where should we collaborate on it? Replit? Github? (I don't have a github account yet, but i'll get one soon. But I think it's easier to do it in replit as it's not that big of a project. (we can use a proxy to get around the replit ip ban (really just 429 but whatever)))
You can do Replit. It is fine.
I made a repl: @SLMJ/PYHELP-indexer
Whoever wants to help, comment on that repl.

Last edited by MonkeyBean2 (July 13, 2022 12:15:21)

ScratchTheCoder12345
Scratcher
500+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

MonkeyBean2 wrote:

DifferentDance8 wrote:

MonkeyBean2 wrote:

ScratchTheCoder12345 wrote:

MonkeyBean2 wrote:

Joshisaurio wrote:

ScratchTheCoder12345 wrote:

(#183)

Joshisaurio wrote:

~Snip~
If anyone wants to help with that I'd be up to do the backend part. I have a friend who knows HTML so….



Is it just me or do we all hate HTML?
Idk how to code HTML I'm learning rn but I only know printing titles and paragraphs and that's it for now lol. I might make a forum to share ideas later
You just said you know how to code in html! Maybe i should do the frontend then.
Everyone we should make a PyHelp website!
Perfect! Soo… Where should we collaborate on it? Replit? Github? (I don't have a github account yet, but i'll get one soon. But I think it's easier to do it in replit as it's not that big of a project. (we can use a proxy to get around the replit ip ban (really just 429 but whatever)))
You can do Replit. It is fine.
I made a repl: @SLMJ/PYHELP-indexer
Whoever wants to help, comment on that repl.
I can't comment for some reason… Can you invite me ScratchTheCoder12345
MonkeyBean2
Scratcher
100+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

ScratchTheCoder12345 wrote:

I can't comment for some reason… Can you invite me ScratchTheCoder12345
Invited.

Last edited by MonkeyBean2 (July 13, 2022 12:21:46)

ScratchTheCoder12345
Scratcher
500+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

MonkeyBean2 wrote:

ScratchTheCoder12345 wrote:

I can't comment for some reason… Can you invite me ScratchTheCoder12345
Invited.
Thanks!
applejuiceproduc
Scratcher
1000+ posts

PyHelp - The official Scratch Python help forum | Ask, help, discuss, & more! | +800 posts! |

Can you invite me to the repl, I’m applejuicepro

Powered by DjangoBB