Skip to content

Commit

Permalink
Completed the .py Monaco virtual-files
Browse files Browse the repository at this point in the history
  • Loading branch information
hopperelec committed Jun 15, 2024
1 parent 40c0577 commit 54cd756
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
int main() {
std::cout << "As part of some competitive programming between I and AzureAqua, I developed an efficient 'happy number' calculator";
std::cout << "Happy numbers are integers for which the sum of all their digits squared are also happy. 1 is a primitive happy number.";
// https://github.com/HopperElec/HappyNumbersCalculatorCPP/
// https://github.com/hopperelec/HappyNumbersCalculatorCPP/
}
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# TODO
print("""
I am passionate about the quantified self, which includes various time-tracking.
Most time-tracking is done through "heartbeats" which just say what I was doing at a particular time.
HeartbeatsData is a Python library I made which produces a few interesting charts (using matplotlib) for visualizing this data.
""")
# https://github.com/hopperelec/HeartbeatsData
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
# TODO
print("""
HopperBot is the Discord bot I use for most Discord servers I create or moderate.
It was originally developed using Discord.py and included the following features before I switched to JDA:
- Moderation logging
- Purging
- Polls
- Automatically generating numbered VCs
- A playlist
- An economy
- AI analysis and impersonations of some users (friends, only with consent)
""")
# https://github.com/hopperelec/HopperBot-Python/
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# TODO
print("""
PiggyBankCounter is one of the first larger and object-oriented project I developed, back in 2019.
It's a GUI tool, built using Pygame, which allows for calculating a value of a piggy bank across hundreds of currencies.
It's certainly not good quality for my current standards, but I'm still proud of it because of how young I was when I made it.
""")
# Sadly, the code is private because it contains many references to my school and I frankly don't want to DOX myself
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# TODO
print("TikTok-Notifs is a simple program I developed for displaying desktop notifications whenever a followed TikTok user posts a new TikTok")
# https://github.com/hopperelec/TikTok-Notifs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function contributedTo(author: string, projectName: string) {
const GITHUB_URL = `https://github.com/${author}/${projectName}`;
console.log(
`I have contributed to ${GITHUB_URL}; see my contributions here: ${GITHUB_URL}/commits?author=HopperElec`,
`I have contributed to ${GITHUB_URL}; see my contributions here: ${GITHUB_URL}/commits?author=hopperelec`,
);
}
contributedTo("mlomb", "chat-analytics");
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// Most of the Javascript used on this website was just for opening and closing an accordion, but I did experiment with it a bit
// Most of the Javascript used on this website was just for opening and closing an accordion, but I did experiment with it a bit

0 comments on commit 54cd756

Please sign in to comment.