- https://codegolf.stackexchange.com/q/55422/8478 Hello, World!
- https://codegolf.stackexchange.com/q/57617/8478 Is this number prime?
- https://codegolf.stackexchange.com/q/62732/8478 Implement a Truth-Machine
- https://codegolf.stackexchange.com/q/62230/8478 Simple cat program
- https://codegolf.stackexchange.com/q/63834/8478 Count up forever
- https://codegolf.stackexchange.com/q/93441/8478 Print all integers
- https://codegolf.stackexchange.com/q/84260/8478 Add two numbers
- https://codegolf.stackexchange.com/q/106182/8478 Multiply two numbers
- https://codegolf.stackexchange.com/q/101638/8478 Shortest code to produce non-deterministic output
- https://codegolf.stackexchange.com/q/13152/8478 Shortest code to produce infinite output
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
>++++++++[<++++++++>-]<--> | |
>++++++[<+++++++>-]<+> | |
,[[-<.>]<+++.---<.>>,] |
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
<script src=https://gist.github.com/raw/946328/gistfile1.txt ><\/script> |
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
int bruteForcePrimalityTest(long int n) { | |
for (long int i = 2; i < n; i++) { | |
if (n % i == 0) return 0; | |
} | |
return 1; | |
} |
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
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
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
git fetch --all | |
git reset --hard origin/master | |
git pull origin master |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.