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:
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); |
<?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; | |
} |
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 |
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 |
+ (UIImage *)imageWithColor:(UIColor *)color { | |
CGRect rect = CGRectMake(0, 0, 1, 1); | |
// Create a 1 by 1 pixel context | |
UIGraphicsBeginImageContextWithOptions(rect.size, NO, 0); | |
[color setFill]; | |
UIRectFill(rect); // Fill it with your color | |
UIImage *image = UIGraphicsGetImageFromCurrentImageContext(); | |
UIGraphicsEndImageContext(); | |
return image; |
CGFloat red, green, blue, alpha; | |
[color getRed: &red | |
green: &green | |
blue: &blue | |
alpha: &alpha]; | |
NSLog(@"red = %f. Green = %f. Blue = %f. Alpha = %f", | |
red, | |
green, | |
blue, | |
alpha); |
#1. Figure out the device name for the new device | |
fdisk -l | |
#This will give you output similar to this: | |
#Disk /dev/sda: 17.2 GB, 17179869184 bytes | |
#255 heads, 63 sectors/track, 2088 cylinders, total 33554432 sectors | |
#Units = sectors of 1 * 512 = 512 bytes | |
#Sector size (logical/physical): 512 bytes / 512 bytes | |
#I/O size (minimum/optimal): 512 bytes / 512 bytes |
find /path/here -name "what to look for" |