Discuss Scratch
- MagicCrayon9342
-
1000+ posts
Smartpage
using my code when it's broken???Oh, ok, But I'm confused. Anyways I'll implement 12 hour time soon. I'll use some code that you have given me and give credit, then make a preference for it. I'm making a 12 hour time widget for YOUR project wdym.
Last edited by MagicCrayon9342 (Jan. 2, 2022 21:12:48)

Templates:
Doesn't belong in the ATs:
Unfortunately, this post does not belong in the Advanced Topics. Please report your post, and in the box type the following:Please move this post to ‘Thinks I’m Making or Creating' or ‘Show and Tell’
- god286
-
1000+ posts
Smartpage

meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- 9pfs
-
100+ posts
Smartpage
Loading screens are bloat, and useless. They get in the way and take longer to spin than it should actually take to load. Like the Windows boot splash is so fake you can have programs open during it.(#38)I know about that already. It's due to adapter static. I'm thinking of adding a loading screen soon.
Bug report: Time flashes as “7:50” for a split second before showing the actual time
https://assets.scratch.mit.edu/get_image/.%2E/78e33b1fa994f6c8c23501d3b76c24e6.gif
Ctrl+Alt+Delete
Down arrow
Down arrow
Down arrow
Enter
Update to Chrome 98 immediately More info
Share

topic/571765 MUST be apologized for.
Turns out, it was!!!
- MagicCrayon9342
-
1000+ posts
Smartpage
(#63)You can't do CTRL+ALT+DEL during boot, it wouldn't ever let you do that. but that's off topic.Loading screens are bloat, and useless. They get in the way and take longer to spin than it should actually take to load. Like the Windows boot splash is so fake you can have programs open during it.(#38)I know about that already. It's due to adapter static. I'm thinking of adding a loading screen soon.
Bug report: Time flashes as “7:50” for a split second before showing the actual time
https://assets.scratch.mit.edu/get_image/.%2E/78e33b1fa994f6c8c23501d3b76c24e6.gifI do it every time.Ctrl+Alt+Delete
Down arrow
Down arrow
Down arrow
Enter
Last edited by MagicCrayon9342 (Jan. 3, 2022 00:44:06)

Templates:
Doesn't belong in the ATs:
Unfortunately, this post does not belong in the Advanced Topics. Please report your post, and in the box type the following:Please move this post to ‘Thinks I’m Making or Creating' or ‘Show and Tell’
- god286
-
1000+ posts
Smartpage
@MagicCrayon9342 @9pfs I think you both should figure out a way to stop talking about Windows and Linux everywhere. It's actually irritating. I do it every time.
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- 9pfs
-
100+ posts
Smartpage
I mean, while it signs in.(#63)You can't do CTRL+ALT+DEL during boot, it wouldn't ever let you do that. but that's off topic.Loading screens are bloat, and useless. They get in the way and take longer to spin than it should actually take to load. Like the Windows boot splash is so fake you can have programs open during it.(#38)I know about that already. It's due to adapter static. I'm thinking of adding a loading screen soon.
Bug report: Time flashes as “7:50” for a split second before showing the actual time
https://assets.scratch.mit.edu/get_image/.%2E/78e33b1fa994f6c8c23501d3b76c24e6.gifI do it every time.Ctrl+Alt+Delete
Down arrow
Down arrow
Down arrow
Enter
Good idea@MagicCrayon9342 @9pfs I think you both should figure out a way to stop talking about Windows and Linux everywhere. It's actually irritating. I do it every time.
Update to Chrome 98 immediately More info
Share

topic/571765 MUST be apologized for.
Turns out, it was!!!
- kccuber
-
1000+ posts
Smartpage
guys 12 hour time is literally as simple as a modulus operator.
- 9pfs
-
100+ posts
Smartpage
If it's that simple, why haven't you made a PR yet? guys 12 hour time is literally as simple as a modulus operator.
Update to Chrome 98 immediately More info
Share

topic/571765 MUST be apologized for.
Turns out, it was!!!
- god286
-
1000+ posts
Smartpage
(#67)Already implemented, check settings!
guys 12 hour time is literally as simple as a modulus operator.
(#68)Because it exists.If it's that simple, why haven't you made a PR yet? guys 12 hour time is literally as simple as a modulus operator.
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- mybearworld
-
1000+ posts
Smartpage
Not really guys 12 hour time is literally as simple as a modulus operator.
Last edited by mybearworld (Jan. 3, 2022 09:59:59)
- god286
-
1000+ posts
Smartpage
(#71)The 12 hour time topic!it isNot really guys 12 hour time is literally as simple as a modulus operator.
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- mybearworld
-
1000+ posts
Smartpage
(#71)it isNot really guys 12 hour time is literally as simple as a modulus operator.

Mod makes this code a bit more readable, that's it
hr24%12 ? [hr24%12, (hr24<13 ? "am" : "pm")] : (hr24==12 ? [12, "pm"] : [12, "am"])
[/offtopic]
- kccuber
-
1000+ posts
Smartpage
it's “12 mod” not “mod 12”(#71)it isNot really guys 12 hour time is literally as simple as a modulus operator.
Mod makes this code a bit more readable, that's ithr24%12 ? [hr24%12, (hr24<13 ? "am" : "pm")] : (hr24==12 ? [12, "pm"] : [12, "am"])
[/offtopic]

Oh, and the only reason I came up with this trick was for a custom 12 hour time block in Snap!
WHOOPS
Last edited by kccuber (Jan. 3, 2022 23:26:41)
- god286
-
1000+ posts
Smartpage
OK, everyone, let's stop talking about 12 hour time and how you are all angry with my implementation, but it works fine.
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- god286
-
1000+ posts
Smartpage
bump
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- god286
-
1000+ posts
Smartpage
bump
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- proxydeimos
-
78 posts
Smartpage
making this my startup page
I'm going to work on custom search engine and LocalStorage soon.
Made with Tailwind and SvelteKit.
Code on github coming soon.
Edit: On my github,
https://smartpage.vercel.app/
https://github.com/webdev03/smartpage

- god286
-
1000+ posts
Smartpage
Wow cool! making this my startup page
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/
- god286
-
1000+ posts
Smartpage
need new idea plz give thx
meowclient
Typescript and ESM support
Kind-of good documentation
Easy to use
meowclient

_ ____ ___ __
__ _ ___ __| |___ \( _ ) / /_
/ _` |/ _ \ / _` | __) / _ \| '_ \
| (_| | (_) | (_| |/ __/ (_) | (_) |
\__, |\___/ \__,_|_____\___/ \___/
|___/