Skip to content

Instantly share code, notes, and snippets.

@Tyler887
Tyler887 / Code Golf Submission
Last active March 27, 2022 19:30
My first submission to Code Golf.
https://codegolf.stackexchange.com/a/245649/111744
@Tyler887
Tyler887 / helloworld.py
Created March 3, 2022 17:05
Python Hello World
print("Hello world!")
name = input("What's your name?")
print(f"Hello, {name}!")
import time
time.sleep(2)
exit()
.css-selector {
    background: linear-gradient(270deg, #18181b, #a3a3a3);
    background-size: 400% 400%;
    -webkit-animation: zetroubg 30s ease infinite;
    -moz-animation: zetroubg 30s ease infinite;
    -o-animation: zetroubg 30s ease infinite;
    animation: zetroubg 30s ease infinite;
}
@-webkit-keyframes zetroubg {
    0%{background-position:0% 50%}
@Tyler887
Tyler887 / nogit.gitignore
Last active March 5, 2022 13:04
git disable
*
@Tyler887
Tyler887 / .html
Created December 20, 2021 18:13
HTML Test
<html>
<body>
<h2>Hello world!</h2>
</body>
</html>
@Tyler887
Tyler887 / hello-world.c
Last active December 19, 2021 14:33
Hello World
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}