Skip to content

Instantly share code, notes, and snippets.

View BluePyTheDeer251's full-sized avatar

BluePy BluePyTheDeer251

View GitHub Profile
@BluePyTheDeer251
BluePyTheDeer251 / question.md
Last active October 5, 2024 23:52
A Normal Question

I have questions on ML as of writing, I have an idea but I can't quite figure it out.

@BluePyTheDeer251
BluePyTheDeer251 / thescript.sh
Created October 9, 2024 16:16
A simple shell script.
#!/bin/sh
fastfetch
echo "Hello, $USER, what are you going to do today?"
@BluePyTheDeer251
BluePyTheDeer251 / afile.js
Last active October 14, 2024 01:18
A simple question maker I made in JavaScript.
// Hello! This is just me messing around with JS.
let hello = "Hello!";
const name = prompt("What's your name? ")
console.log("Oh, ${name} is a very nice name!")
console.log("Yeah I'm bored.")
@BluePyTheDeer251
BluePyTheDeer251 / ihatejava.java
Last active October 10, 2024 14:21
How Java was before Java 21.
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello World!");
}
}
@BluePyTheDeer251
BluePyTheDeer251 / love.c
Last active October 10, 2024 14:32
Writing Hello World in different languages (C Edition) ERROR: SEGFAULT at line 8
#include <stdio.h>
int main()
{
printf("Hello World!");
}
@BluePyTheDeer251
BluePyTheDeer251 / bloated.js
Last active October 10, 2024 14:31
Writing Hello World in different languages. (JS 😍 Edition 😁👍)
console.log("Hello World!");
//Or
let Hello = "Hello World!";
console.log(Hello)
@BluePyTheDeer251
BluePyTheDeer251 / ilove*java.java
Last active October 10, 2024 14:30
Writing Hello World in different languages. (Java Edition)
void main() {
System.out.println("Hello World!");
}
@BluePyTheDeer251
BluePyTheDeer251 / main.py
Created October 10, 2024 14:34
Writing Hello World in different languages (Python Edition)
print("Hello World!")
# This is easy!
@BluePyTheDeer251
BluePyTheDeer251 / hehe.dart
Last active October 10, 2024 14:44
Writing Hello World in different languages. (Dart Edition)
void main() {
print("Hello World!")
}
// Basically Python with a little bit of C (or Java)
@BluePyTheDeer251
BluePyTheDeer251 / lol.bf
Created October 10, 2024 14:49
Writing Hello World in different languages. (Brain**** Edition)
++++++++++[>+>+++>+++++++>++++++++++<<<<-]>>>++.>+.+++++++..+++.<<++.>+++++++++++++++.>.+++.------.--------.<<+.
// What the heck is this (I just converted it because too lazy to actually try.)