Students helping students, join us in improving Bored of Studies by donating and supporting future students!
I think they've just stopped updating the site tbh because I uploaded all my Prelim and now Trial papers for Legal and none got put on the site, same for EES.yup
they havent updated for 2025 or anything after 2021 for legal tbh
stageek 6 pack 13.90 on amazon or proed pens (ask a friend who goes to proficiency education tutoring for free pens). Also try bic gelocity very goodguys i need good pen recs my handwriting is shit and i need a pen thats not too inky but also really good
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