Skip to content

Instantly share code, notes, and snippets.

View areyoualex's full-sized avatar

alex areyoualex

View GitHub Profile
@areyoualex
areyoualex / changelog.md
Last active June 1, 2019 04:00
arenarolodex changelog

NOTICE 5/4/19

Thank you for using arenarolodex. We're glad to have been able to help you out.

Live seats are turned off, but you may still use arenarolodex with the announcer if you want to check things out.

Good luck on AP exams!

Sincerely, the devs: Chris and Alex.

Recent changes

  • You can now refresh the page without losing your courses. Neat!

Keybase proof

I hereby claim:

  • I am areyoualex on github.
  • I am areyoualex (https://keybase.io/areyoualex) on keybase.
  • I have a public key ASC95o94qZ7fjChhR0vMR234tWMBeHvY361t_DxbETecOAo

To claim this, I am signing this object:

@areyoualex
areyoualex / news.html
Last active May 24, 2018 00:58
News update for arenarolodex
<div class="news">
<h3>News as of 5/23/18</h3>
<p>
Arenarolodex will be undergoing maintenance today before arena and will be unable to display the live number of seats
after 4:15pm. Please create your schedules before then and write them down/keep them somewhere safe.
</p>
<p>
Thank you for your patience and understanding.
</p>
</div>
@areyoualex
areyoualex / inputs.py
Created April 30, 2018 19:50
Take eight class inputs
my_list = []
text_inputs = ["first", "second", "third", "fourth", "fifth", "sixth", "seventh", "eighth"]
for i in range(8):
c = input("Enter your "+text_inputs[i]+" class: ")
# This will keep asking for a class if user doesn't input anything
while c == "":
c = input("Please enter a class and try again: ")
@areyoualex
areyoualex / geo_sequence.py
Created April 10, 2018 20:38
A python snippet that will calculate a geometric sequence for you.
t1 = int(input("Enter the first term (t1): "))
tn = int(input("Enter the final term (tn): "))
diff = int(input("Enter the spaces in between: "))
r = ( tn/t1 )**(1/(diff+1))
print("R is "+str(r));
print("t1 is "+str(t1));
print("tn is "+str(tn));