"Two line"-style by fcamblor
Some characters fix by ashebanow
Some edits by mkody
A ZSH theme optimized for people who use:
I hereby claim:
To claim this, I am signing this object:
The picture used is from ParallaxMLP on deviantArt, go visit him!
Updates are done with cloneddragon's help!
Available now on gist.
HAI 1.2 | |
OBTW | |
- A LOLCODE test - | |
This is just a test with the LOLCODE language. | |
It's just fun to use and code. And it works! | |
Using bad coding-ideas here, just don't take care. | |
What's used here: | |
`HAI <lolcode version>` start a LOLCODE code made in/for a specified LOLCODE version |
#!/bin/bash | |
# Will check for remote file change. Be aware, it downloads the file. | |
# (Made at first to execute a php script to notify when a file was updated) | |
# USAGE: `./watch.sh "http://exemple.com/file"` | |
curl -s -o "temp-dl" "$1" | |
firsthash="$(md5sum 'temp-dl')" | |
counttime="0" | |
while : |
<?php | |
function getHTTPCode($code) { | |
switch($code) { | |
// From https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml (2016-03-01) | |
case 100: | |
return '100 - Continue'; | |
break; | |
case 101: | |
return '101 - Switching Protocols'; | |
break; |
<script> | |
// === Configure the variables here === | |
// our channel id | |
var channel_id = 134049 | |
// how many entries to load | |
var entries_count = 5 | |
// api key (read) | |
var api_key = 'TNKUVEP15UGJ8HIK' | |
// select date locale ('en' or 'fr-ch') | |
var date_locale = 'fr-ch' |
Ce gist confirme l'identité reliée se trouvant dans ma clef OpenPGP et le relie à ce compte GitHub. | |
Jeton pour preuve : | |
[Verifying my OpenPGP key: openpgp4fpr:46e03856370035a4cb223730a0bbc25e7f92865b] |
// FOR USE WITH https://greasyfork.org/fr/scripts/31092-gdq-schedule-highlighter | |
// Hide all runs first | |
document.querySelectorAll('#runTable tbody tr:not(.day-split)').forEach(el => { | |
el.style.display = 'none' | |
}) | |
// Show highlighted runs and remove background color | |
document.querySelectorAll('#runTable tbody tr.scheduled').forEach(el => { | |
el.style.display = null | |
el.style.backgroundColor = 'transparent' | |
}) |
#!/bin/bash | |
# Welcome to im-in.space's backup script! | |
PIDFILE="/tmp/backup.pid" | |
BUCKETNAME="[your bucket name here]" | |
if [ -f "$PIDFILE" ]; then | |
echo "Already running" | |
exit 1 | |
fi |