A Pen by Akshat Singh on CodePen.
๐
This file contains hidden or 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
| # CANDLE v0.1.0 | |
| # Contributors to this file: | |
| # - twisted_nematic57 | |
| # This file is Public Domain | |
| import machine | |
| import rp2 | |
| import sys # I don't know why this is needed | |
| import _thread | |
| from time import * # why not `import time`? we'll never know |
This file contains hidden or 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 hidden or 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 hidden or 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 |