Ooooo you found the dev page!


Destructive Hard Reset and Force Push

git reset --hard [Commit Number]

git push --force origin main


Codes

77214


Upcoming Stuff

Lore

Moar Math

Potato Fortune Teller

Personality quiz (Are You a Potato or a Notato?)


Future Math Topic List

  1. Exponents and Scientific Notation
  2. Functions (evaluate, domain/range, composition basics)
  3. Radicals and Rational Exponents
  4. Rational Expressions
  5. Geometry Basics (area, perimeter, volume)
  6. Coordinate Geometry (slope, distance, midpoint)
  7. Probability (simple + compound events)
  8. Statistics (mean, median, mode, std dev intro)
  9. Sequences and Series (arithmetic, geometric)
  10. Matrices Basics (operations + systems)
  11. Complex Numbers
  12. Limits Intro (pre-calc style)
  13. Derivatives Intro
  14. Integrals Intro
  15. Word Problems / Application Challenges

This website is a personal project and is not affiliated with any existing company. All content is for fun and entertainment purposes.


Final Puzzle Stage

Enter the 10-character key from steps 1-10, then compute the final 6-digit code.

seq = [17, 29, 43, 71, 113, 181, 223, 337]
acc = 7
for i in 0..7:
  k = ASCII(key[i mod key.length])
  acc = (acc * seq[i] + k + (i + 1)) mod 1000003
final_code = acc as 6-digit zero-padded decimal