Skip to content

Instantly share code, notes, and snippets.

View axurright's full-sized avatar

BluePy axurright

View GitHub Profile
@axurright
axurright / pleaselaugh.cpp
Created June 2, 2025 15:50
I'm bored, so some C++ practice
#include <iostream>
int main() {
int myRandomNumber = 251;
int yes = 45;
std::cout << myRandomNumber + yes << " (yes, I'm uninspired)";
return 0;
}
@axurright
axurright / whatever.md
Created May 27, 2025 14:59
It's been a while

I finally got my thoughts on what I want to do with my life together, so I'm currently learning C++. Expect to actually see activity here.

@axurright
axurright / rsgn2.py
Last active March 27, 2025 14:00
Random Stuff Go #2
print("What's 6 x 3?")
answer = input()
if int(answer) == 18:
print("You are safe.")
else:
print("DIE.")
for i in range(1, 100000000):
print(i)
@axurright
axurright / rsgn1.py
Last active May 27, 2025 14:59
Random stuff go #1
print("Please do not talk, I am trying to sleep...")
talking = input()
if talking != None:
print("SHUT THE HELL UP!!!!!!!!!")
if talking == None:
print("Zzz...")
@axurright
axurright / recap1.dart
Last active December 6, 2024 02:23
Just a Dart recap.
import 'dart:io'
void main() {
print("Oh, user, I haven't seen you in a while! How many days have passed?");
String? passedDays = stdin.readLineSync();
if (passedDays != null) {
print("Oh man, It's been $passedDays since I have seen you! Hopefully you are fine.");
}
}
@axurright
axurright / asAPractice.py
Created December 5, 2024 00:02
Just programming in Python.
print("Welcome!")
myRandomInteger = input("Input a number between 1 and 1000: ")
if myRandomInteger >= 10:
print("Why?")
elif myRandomInteger >= 100:
print("Ok, a nice number.")
elif myRandomInteger >= 1000:
print("Not bad.")
@axurright
axurright / ow.clj
Created December 4, 2024 17:10
Just messing around in Clojure.
(def myVector [251 456 345])
(def myList '(3782 22536 14357))
(println "Your current vector: " myVector)
(println "Your current list: " myList)
;; Messing with both
(conj myVector 234 1556 478)
(println myVector)
(conj myList 2342515 54536271 35362617)
@axurright
axurright / hey.md
Created November 27, 2024 02:03
an announcement

Hey guys, I think I burnt out of making gists so expect me to be more inactive.

@axurright
axurright / mesaagesyes.clj
Last active November 24, 2024 16:18
A message system (with more functionality) in Clojure.
(defn localMessageSys [message]
(println "Your message: ")
(str message))
(defn recieverMessageSys [receiverMessage]
(println "The other person's message: ")
(str receiverMessage))
(localMessageSys "Hello, Friend!")
(recieverMessageSys "Hello, what's up?")
@axurright
axurright / hey.scala
Created November 22, 2024 15:57
Because I am bored: Hello World in Scala (I think it might be better than Java)
def Hello(): Unit =
println("Hello World!")