How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/
.outer { | |
display: table; | |
position: absolute; | |
height: 100%; | |
width: 100%; | |
} | |
.middle { | |
display: table-cell; | |
vertical-align: middle; |
awk '{print $1}' < $1 | while read ip; do | |
if ping -c1 $ip >/dev/null 2>&1; then | |
echo $ip IS UP | |
else | |
echo $ip IS DOWN | |
fi | |
done |
{ | |
"options": { | |
"allowStealFocus": false, | |
"bookmarkThumbHeight": 150, | |
"bookmarkThumbWidth": 90, | |
"dropEnabled": true, | |
"footerPanelEnabled": true, | |
"headerPanelEnabled": true, | |
"leftPanelEnabled": true, | |
"limitLocales": false, |
Thanks to this article by Christoph Berg
Directories and files
~/
#!/bin/bash | |
mkdir wordpress-site && cd wordpress-site | |
touch docker-compose.yml | |
cat > docker-compose.yml <<EOL | |
version: "2" | |
services: | |
my-wpdb: |
#!/usr/bin/env ruby -rjcode -Ku | |
# TaskPaper to Markdown converter | |
# Usage: tp2md.rb filename.taskpaper > output.md | |
require 'ftools' | |
infile = ARGV[0] | |
title = File.basename(infile,'.taskpaper').upcase | |
output = "# #{title} #\n\n" | |
prevlevel = 0 | |
begin |
function addCommas(nStr) | |
{ | |
nStr += ''; | |
x = nStr.split('.'); | |
x1 = x[0]; | |
x2 = x.length > 1 ? '.' + x[1] : ''; | |
var rgx = /(\d+)(\d{3})/; | |
while (rgx.test(x1)) { | |
x1 = x1.replace(rgx, '$1' + ',' + '$2'); | |
} |
I hereby claim:
To claim this, I am signing this object:
<?php | |
function download_send_headers($filename) { | |
// disable caching | |
$now = gmdate("D, d M Y H:i:s"); | |
header("Expires: Tue, 03 Jul 2001 06:00:00 GMT"); | |
header("Cache-Control: max-age=0, no-cache, must-revalidate, proxy-revalidate"); | |
header("Last-Modified: {$now} GMT"); | |
// force download |
<select onchange="location = this.options[this.selectedIndex].value;">
<option>Please select</option> <option value="http://www.apple.com/">Apple</option>
<option value="http://www.bbc.com">BBC</option>
<option value="http://www.facebook.com">Facebook</option>
</select>