reniiiblaseee
Active Member
- Joined
- Mar 27, 2025
- Messages
- 309
- Gender
- Female
- HSC
- 2025
how many hours a day do u guys study now
Students helping students, join us in improving Bored of Studies by donating and supporting future students!
From now Iβm back into study soohow many hours a day do u guys study now
well i have one more trial exam to go b4 i start the hsc grind so im hoping for 6-8h a day, maybe 4-5 on school days considering events like graduation will come inFrom now Iβm back into study soo
Attempting at least 8hrs each for Saturday + Sunday
Then abt 4 for school days but school draining asf
Wbu
Very solid good luck !well i have one more trial exam to go b4 i start the hsc grind so im hoping for 6-8h a day, maybe 4-5 on school days considering events like graduation will come in
Real but it gets to a point where the guilt catches up (me rn)I swear next year I'm gonna find it real hard to lock in after trials.
i sit in my room 24/7, but i prolly study very less bruh home is distracting and my parents are so strict they wont let me out anywherehow many hours a day do u guys study now
omd definitely apply!! I have heard its REALLY hard tho like some top kids ik didnt get in): but I rlly recommend trying bc the only bad thing that can happen is not getting in lolAnyone know how hard it is to get into co-op at UNSW? I highly doubt I will get in but I'll apply anyway
No it literally isI swear next year I'm gonna find it real hard to lock in after trials.
import time
char = {
'seq0': 'βββββββΏβββ',
'seq1': 'ββββββββ ',
'seq2': 'ββββββββ ',
'seq3': '(β)βΏ(β)βΏ ',
'seq4': 'ββββββββ ',
'seq5': "';. ';. ';."}
i = 0
j = 0
x = 0
y = 0
while True:
if j > 5:
j = 0
for i in range(9): # length of longest string, other strings must be up to this length too
print(f'\r{char[f'seq{j}'][i]}', end="\r")
time.sleep(0.25)
j = j + 1
what's this supposed to mean?Python:import time char = { 'seq0': 'βββββββΏβββ', 'seq1': 'ββββββββ ', 'seq2': 'ββββββββ ', 'seq3': '(β)βΏ(β)βΏ ', 'seq4': 'ββββββββ ', 'seq5': "';. ';. ';."} i = 0 j = 0 x = 0 y = 0 while True: if j > 5: j = 0 for i in range(9): # length of longest string, other strings must be up to this length too print(f'\r{char[f'seq{j}'][i]}', end="\r") time.sleep(0.25) j = j + 1