Keybase proof
I hereby claim:
- I am baltpeter on github.
- I am baltpeter (https://keybase.io/baltpeter) on keybase.
- I have a public key whose fingerprint is 0903 DEF9 C683 8D77 4EC7 3A8E 580B 1C78 00EB 2372
To claim this, I am signing this object:
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+d", | |
"command": "-editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+up", | |
"command": "-scrollLineUp", |
for n in {1..100}; do | |
dd if=/dev/urandom of=$( cat /dev/urandom | tr -cd 'a-f0-9' | head -c 6 ) bs=1 count=$(( RANDOM + 1024 )) | |
done |
server { | |
listen 443; | |
server_name pve.mydomain.com; | |
ssl on; | |
ssl_certificate /etc/nginx/ssl/ssl.crt; | |
ssl_certificate_key /etc/nginx/ssl/ssl.key; | |
proxy_redirect off; | |
location / { |
I hereby claim:
To claim this, I am signing this object:
# To create a partition start GNU parted as follows: | |
parted /dev/sdb | |
# Create a new GPT disklabel i.e. partition table: | |
mklabel gpt | |
yes | |
# Next, set the default unit to TB, enter: | |
unit TB |
sed -i '' 's/wrong/right/g' *.txt |
<?php | |
header('Content-type: text/plain'); | |
function checkdomain($domain) { | |
if($domain == '.com' OR $domain == '.de') return false; | |
$api_req = file_get_contents('http://freedomainapi.com/?key=YOURAPIKEY&domain=' . $domain); | |
$api_req = json_decode($api_req, true); | |
return $api_req['available'] == 'true'; | |
} |
<?php | |
function checkdomain($domain) { | |
$api_req = file_get_contents('http://freedomainapi.com/?key=YOURAPIKEY&domain=' . $domain); | |
$api_req = json_decode($api_req, true); | |
if($api_req['available'] == 'true') return true; | |
return false; | |
} |
var Treetagger = require('treetagger'); | |
var tagger = new Treetagger({ language: "french" }); | |
var fs = require('fs'), filename = "/Users/benni/coding/tt-nodejs/french.txt"; | |
fs.readFile(filename, 'utf8', function(err, data) { | |
if(err) throw err; | |
tagger.tag(data, function (err, results) { | |
results.forEach(function(e) { | |
if(e.pos == "NOM") { | |
console.log(e.t); |
nano /etc/network/interfaces | |
iface eth0 inet static | |
address 10.42.4.4 | |
netmask 255.0.0.0 | |
gateway 10.10.10.1 | |
dns-nameservers 10.10.10.1 8.8.8.8 8.8.4.4 | |
dns-search altpeter.me | |
/etc/init.d/networking restart |