I hereby claim:
- I am edo78 on github.
- I am edo78 (https://keybase.io/edo78) on keybase.
- I have a public key ASC3sme6K5B_BLhxCeLmkrJ6pqEckndhcdUrN64rjfz6FQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:4C0F1D12323E3F0BF7F19123AAC34E954E9ADFDE]
tm() { | |
if [[ -n $1 ]] | |
then | |
sessionname=$1 | |
else | |
sessionname='default' | |
fi | |
tmux new-session -A -s $sessionname | |
} |
#!/bin/zsh | |
(( tasso_alcolemico = 0.0 )) | |
while true | |
do | |
echo beer | |
echo burp | |
(( tasso_alcolemico += 0.25 )) | |
if [[ $tasso_alcolemico -gt 4.0 ]] | |
then | |
echo "Se mi scusate vado un attimo in coma etilico" |
function spamMonitor() { | |
var unreadSpam = GmailApp.getSpamUnreadCount(); | |
var log = { | |
message: 'Discussioni non lette in Spam: '+ unreadSpam, | |
unreadSpam: unreadSpam | |
}; | |
if(unreadSpam == 0){ | |
console.info(log); | |
}else if(unreadSpam < 5){ |
/** | |
* Retrieve the birthdays in a range and return them in two lists, one for today's and one for the rest of the period | |
* | |
* @name getBirthdays | |
* @function | |
* @param {number} days - number of days to add to today to get the date range (optional) | |
* @returns {object} object with following properties 'today' with today's birthdays 'remaining' with the remaingin birthdays for the date range | |
*/ | |
function getBirthdays(days) { | |
var result = { |
/** | |
* STEP 1: Setup | |
* - Open Chrome Secure Shell settings | |
* - Open JS Console (CTRL+SHIFT+J) | |
* - Copy and paste the following: | |
*/ | |
var s7d_colours = { | |
'base03': '#002b36', | |
'base02': '#073642', | |
'base01': '#586e75', |