Discuss Scratch

GAMS2
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Griffin_Dragonus wrote:

Revival Form
Position: Coder
Activity Level: 2/10 (after physical school opened homework is going way up so I might be less active then that)
Codeword: I am ready to start AspectOS FRESH
BTW, my username is Griffin_Dragonus , not Griffin_Dragonous
Accepted.
KING OF MAGICAL PAGE 5!!

Last edited by GAMS2 (Feb. 21, 2022 13:33:31)

P0rpleStar
Scratcher
100+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

https://turbowarp.org/646322497
Here's what I have so far. The stopwatch is pretty much functional, but the timer isn't.
Let me know if there's any bugs or changes I need to do.

(the variables and timer are shown for coding purposes, don't mind them; the timer is used for comparison to real time, not sure if the timer is accurate though.)

Last edited by P0rpleStar (Feb. 21, 2022 15:54:10)

AIGamesDeveloper
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

P0rpleStar wrote:

https://turbowarp.org/646322497
Here's what I have so far. The stopwatch is pretty much functional, but the timer isn't.
Let me know if there's any bugs or changes I need to do.

(the variables and timer are shown for coding purposes, don't mind them; the timer is used for comparison to real time, not sure if the timer is accurate though.)

Stopwatch is pretty slow


Also, bump
ToastersUnited
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

AIGamesDeveloper wrote:

P0rpleStar wrote:

https://turbowarp.org/646322497
Here's what I have so far. The stopwatch is pretty much functional, but the timer isn't.
Let me know if there's any bugs or changes I need to do.

(the variables and timer are shown for coding purposes, don't mind them; the timer is used for comparison to real time, not sure if the timer is accurate though.)

Stopwatch is pretty slow


Also, bump
You'd think that, but actually, it counts to exactly 1 second which is 1000 milliseconds.
AIGamesDeveloper
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

ToastersUnited wrote:

You'd think that, but actually, it counts to exactly 1 second which is 1000 milliseconds.

Took 30 seconds on a stopwatch with the same format to reach 10 seconds
ToastersUnited
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

AIGamesDeveloper wrote:

ToastersUnited wrote:

You'd think that, but actually, it counts to exactly 1 second which is 1000 milliseconds.

Took 30 seconds on a stopwatch with the same format to reach 10 seconds
It might be that it uses the timer block to convert to real time which is measured by the time between each frame (im pretty sure thats it…) meaning it runs different on different computers. Running the same experiment on my phone and pc gave different results.
AIGamesDeveloper
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

ToastersUnited wrote:

AIGamesDeveloper wrote:

ToastersUnited wrote:

You'd think that, but actually, it counts to exactly 1 second which is 1000 milliseconds.

Took 30 seconds on a stopwatch with the same format to reach 10 seconds
It might be that it uses the timer block to convert to real time which is measured by the time between each frame (im pretty sure thats it…) meaning it runs different on different computers. Running the same experiment on my phone and pc gave different results.

oh ok
kidcoder427
Scratcher
100+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Why am I deactivated?
Sunny-Bunny29
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

kidcoder427 wrote:

Why am I deactivated?
Because you need to fill out the form again. New thread new team. It says in the title
kidcoder427
Scratcher
100+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Revival Form
Positions: chief of typo finding on website, voice actor, and coder
Activity Level: 8/10
Codeword: fresh
Nezon
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

P0rpleStar wrote:

https://turbowarp.org/646322497
Here's what I have so far. The stopwatch is pretty much functional, but the timer isn't.
Let me know if there's any bugs or changes I need to do.

(the variables and timer are shown for coding purposes, don't mind them; the timer is used for comparison to real time, not sure if the timer is accurate though.)
Scratch has a minimum wait time of 0.03 seconds. Also reset should pause the stopwatch
P0rpleStar
Scratcher
100+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Nezon wrote:

P0rpleStar wrote:

https://turbowarp.org/646322497
Here's what I have so far. The stopwatch is pretty much functional, but the timer isn't.
Let me know if there's any bugs or changes I need to do.

(the variables and timer are shown for coding purposes, don't mind them; the timer is used for comparison to real time, not sure if the timer is accurate though.)
Scratch has a minimum wait time of 0.03 seconds. Also reset should pause the stopwatch
So, I should remove the “Wait until <paused = 0>” block?
I can see a way to do that.

Also added that pause thingy when reset is pressed.

Last edited by P0rpleStar (Feb. 21, 2022 20:16:55)

Nezon
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

P0rpleStar wrote:

Nezon wrote:

P0rpleStar wrote:

https://turbowarp.org/646322497
Here's what I have so far. The stopwatch is pretty much functional, but the timer isn't.
Let me know if there's any bugs or changes I need to do.

(the variables and timer are shown for coding purposes, don't mind them; the timer is used for comparison to real time, not sure if the timer is accurate though.)
Scratch has a minimum wait time of 0.03 seconds. Also reset should pause the stopwatch
So, I should remove the “Wait until <paused = 0>” block?
I can see a way to do that.

Also added that pause thingy when reset is pressed.
I meant that the block below can only wait a minimum of 0.03 secs
wait (0.03) secs
qloakonscratch
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Nezon wrote:

P0rpleStar wrote:

Nezon wrote:

P0rpleStar wrote:

https://turbowarp.org/646322497
Here's what I have so far. The stopwatch is pretty much functional, but the timer isn't.
Let me know if there's any bugs or changes I need to do.

(the variables and timer are shown for coding purposes, don't mind them; the timer is used for comparison to real time, not sure if the timer is accurate though.)
Scratch has a minimum wait time of 0.03 seconds. Also reset should pause the stopwatch
So, I should remove the “Wait until <paused = 0>” block?
I can see a way to do that.

Also added that pause thingy when reset is pressed.
I meant that the block below can only wait a minimum of 0.03 secs
wait (0.03) secs
Yeah, so the only way (I think) you'd be able to make it accurate is to make the system run an equation to find out how much runs every .01 seconds.
rednose13
Scratcher
500+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Revival Form
Position: Coder
Activity Level: 8
Codeword: I brush my teeth to keep them fresh
GAMS2
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

rednose13 wrote:

Revival Form
Position: Coder
Activity Level: 8
Codeword: I brush my teeth to keep them fresh
Accepted.

kidcoder427 wrote:

Revival Form
Positions: chief of typo finding on website, voice actor, and coder
Activity Level: 8/10
Codeword: fresh
AACCCCEEEEEPPPPPTTTTTTTTTTT-
ERROR
Dream-123-123
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Revival Form
Position: Designer, Aspect, musician
Activity Level: 3 this week, but then more. I'm just busy this week. Then I will start fresh and be as active as I was before.
Codeword: ?
GAMS2
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

Dream-123-123 wrote:

Revival Form
Position: Designer, Aspect, musician
Activity Level: 3 this week, but then more. I'm just busy this week. Then I will start fresh and be as active as I was before.
Codeword: ?
Uh, not accepted….?
Maybe accepted?
AI I know your on forum break.
But,
AI help me out here
qloakonscratch
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

GAMS2 wrote:

Dream-123-123 wrote:

Revival Form
Position: Designer, Aspect, musician
Activity Level: 3 this week, but then more. I'm just busy this week. Then I will start fresh and be as active as I was before.
Codeword: ?
Uh, not accepted….?
Maybe accepted?
AI I know your on forum break.
But,
AI help me out here
Accepted.
GAMS2
Scratcher
1000+ posts

AspectOS™ - The Future Starts Here [SHUTTING DOWN AT 9 PM EST]

qloakonscratch wrote:

GAMS2 wrote:

Dream-123-123 wrote:

Revival Form
Position: Designer, Aspect, musician
Activity Level: 3 this week, but then more. I'm just busy this week. Then I will start fresh and be as active as I was before.
Codeword: ?
Uh, not accepted….?
Maybe accepted?
AI I know your on forum break.
But,
AI help me out here
Accepted.
W-
Wait for AI lol

Powered by DjangoBB