A Pen by Akshat Singh on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
viewer.style = 'filter: grayscale(100%) invert(84%) contrast(178%) brightness(82%)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Recursive division test by HackerDaGreat57 | |
#include <iostream> | |
int main() | |
{ | |
std::cout << "Please enter a number: "; | |
unsigned long long int input_num; | |
std::cin >> input_num; | |
std::cout << "Recieved number " << input_num << ". Now seeing what it's divisible by..." << std::endl; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd repository | |
git checkout --orphan orphan_name | |
git rm -rf . | |
rm '.gitignore' | |
echo "#Title of Readme" > README.md | |
git add README.md | |
git commit -a -m "Initial Commit" | |
git push origin orphan_name |