I hereby claim:
- I am magnusottosson on github.
- I am magnusottosson (https://keybase.io/magnusottosson) on keybase.
- I have a public key whose fingerprint is 0D46 6C13 3F09 26D0 BB88 AE3F 16A1 B5CA 3ECB 7BB5
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# | |
# Extract all tracks/attachments/chapters from an mkv file. | |
# depends | |
type -p mkvmerge &>/dev/null || exit 3 | |
type -p mkvextract &>/dev/null || exit 3 | |
# trap SIGINT | |
trap 'trap - INT; kill -s INT "$$"' INT |
git merge -s recursive -Xignore-space-at-eol <branchname> |
gem install nokogiri -- --with-xml2-include=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/usr/include/libxml2 --use-system-libraries |
I hereby claim:
To claim this, I am signing this object:
sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Mavericks.app --nointeraction |
for (NSString *familyName in [UIFont familyNames]) | |
{ | |
for (NSString *fontName in [UIFont fontNamesForFamilyName:familyName]) | |
{ | |
NSLog(@"%@", fontName); | |
} | |
} |
[User setName:@"Magnus Ottosson" | |
setPhone:@"+46 73 390 80 60" | |
setEmail:@"[email protected]" | |
setWebsite:@"http://nixonnixon.se"]; |
#!/bin/bash | |
git config --global core.excludesfile ~/.gitignore | |
echo .DS_Store >> ~/.gitignore |
using System; | |
namespace Wcm.PublicWeb.Skeleton.Wip.Campaign.Templates | |
{ | |
public class PrettyDate | |
{ | |
public string TextJustNow { get; set; } | |
public string TextOneMinuteAgo { get; set; } | |
public string TextMinutesAgo { get; set; } | |
public string TextOneHourAgo { get; set; } |