Skip to content

Instantly share code, notes, and snippets.

View whippingdot's full-sized avatar
🤟
AOC 2022 With SAIGA4

Sanjaay R. whippingdot

🤟
AOC 2022 With SAIGA4
View GitHub Profile
@whippingdot
whippingdot / CSSReset.css
Last active January 29, 2022 15:29
This is a gist for CSS. It is called a CSS Reset and mine was made by Josh Comeau (check out his website. It is beautiful)
*, *::before, *::after {
box-sizing: border-box;
}
* {
margin: 0;
}
html, body {
height: 100%;
}
body {
@whippingdot
whippingdot / cppStart.cpp
Created November 16, 2021 13:57
This is a gist I made to make coding C++ easier. You don't have to write 'std::cout' or 'std::cin' each time with this! Also, you can add more '#define's if necessary.
#include <iostream>
#include <string>
#define cout std::cout
#define cin std::cin
typedef std::string string;
int main()
{
}
@whippingdot
whippingdot / replit.css
Created April 2, 2021 11:54
This is a gist for the FULL BLACK theme for replit. I have this also in the marketplace for reflux themes for replit. There the CSS is not included and it is just a bookmark pressing CSS thing so I have included the CSS here so you can use a CSS injector!
.line-numbers {
color: var(--color-primary-1) !important;
}
.replit-ui-theme-root {
--color-background-1: #141414 !important;
--color-background-2: #070707 !important;
--color-background-3: #1D1E20 !important;
--color-background-4: #141414 !important;
--color-control-1: #1D1E20 !important;