I hereby claim:
- I am sliceofcode on github.
- I am sliceofcode (https://keybase.io/sliceofcode) on keybase.
- I have a public key whose fingerprint is 0AAE 88B3 A492 DCC1 0ABD D8F8 1508 C19D 7436 A26D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
JSExercises | |
// TextDisable | |
<html> | |
<body> | |
<font face="Courier"> | |
<font size=5> | |
<p> | |
TextDisable - HTML+JScript Exercise |
App Opener- Tidy | |
<html> | |
<head> | |
<title>App Opener | iPhone</title> | |
</head> | |
<body style="font-family:Courier;"> | |
<script> | |
document.title="App Opener | "+brw | |
brw=navigator.platform | |
if (brw!=="iPod" && brw!=="iPhone" && brw!=="iPad") {alert("Sorry, but your device is not supported. You are currently using a/n"+brw+".")} |
derived from suckless coding style
-std=c99 -pedantic
'Dungeon Masters | |
'In SMILEBasic. | |
CLEAR | |
'--- | |
CLS | |
'--- | |
PRINT "Loading Font..." | |
@LOAD | |
SYSBEEP=FALSE | |
LOAD "BGF0:MYFNT1",FALSE |
#include <iostream> | |
#include <fstream> | |
#include <sstream> | |
class TSCDecrypt { | |
public: | |
std::string decrypt_file(const std::string& file_name) const { | |
// Read the file into a string. | |
std::ifstream file(file_name); | |
std::stringstream stream; |
# installs mcpelauncher-linux and its dependencies | |
PWD=`pwd` | |
if [[ ! $PWD == *"mcpelauncher-linux"* ]]; then | |
echo ">> NOTICE: Not running in the correct repository." | |
if [[ -d mcpelauncher-linux ]]; then | |
cd mcpelauncher-linux | |
echo ">> CDed into the repository." | |
else |
This is my new $PS1
. I designed it myself, and (I will admit it), was a pain to setup, but I did it!
I was trying out powerline-shell when I saw that it was very slow on my system. Although it was easy to setup, it runs a Python script every time to generate a $PS1
. It would take 0.5-1.0 seconds to run the script on my system to generate the $PS1
, and that was bothering me. (It's great, though!)
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
</head> | |
<body onload='init()'> | |
</body> | |
<script> | |
function init() { | |
} |