I hereby claim:
- I am sohjsolwin on github.
- I am sohjsolwin (https://keybase.io/sohjsolwin) on keybase.
- I have a public key whose fingerprint is D12F DD9D A87A F90E 2D08 BB23 A88C 13B8 01BF D356
To claim this, I am signing this object:
APPLICATION="${0##*/}" | |
USAGE="$APPLICATION [options] | |
Wraps enter-chroot to start a Mint session. | |
By default, it will log into the primary user on the first chroot found. | |
Options are directly passed to enter-chroot; run enter-chroot to list them." | |
exec sh -e "`dirname "$0"`/enter-chroot" "$@" startx /bin/bash gnome-session-cinnamon |
# The next command will install a [raring] based ubuntu | |
# chroot, named [cinnamon] into the default directory | |
# with the targets [core], [cli-extra], [touch], and [keyboard] | |
sudo crouton -n cinnamon -r raring -t core,cli-extra,touch,keyboard | |
# Supply your new username and password like normal, and | |
# once that finishes, enter the chroot with: | |
sudo enter-chroot -n cinnamon |
var tempChild = {}; | |
var head = document.head; | |
if (!head) head = document.getElementsByTagName('head')[0]; | |
var dynamicloads = head.getElementsByClassName('dynamicload'); | |
for (var i = 0; i < dynamicloads.length; i++) { | |
dynamicloads[0].parentNode.removeChild(dynamicloads[0]); | |
} | |
private enum XcryptMode | |
{ | |
Encrypt, | |
Decrypt | |
} | |
private string XcryptString(XcryptMode mode, string message) | |
{ | |
byte[] results; | |
var returnValue = string.Empty; |
javascript: (function() {var standardGlobals = ["top", "window", "location", "external", "chrome", "document", "inlineCSS", "target", "width", "height", "canvas", "data", "DOMURL", "img", "svg", "ctx", "url", "w", "a", "speechSynthesis", "webkitNotifications", "localStorage", "sessionStorage", "applicationCache", "webkitStorageInfo", "indexedDB", "webkitIndexedDB", "crypto", "CSS", "performance", "console", "devicePixelRatio", "styleMedia", "parent", "opener", "frames", "self", "defaultstatus", "defaultStatus", "status", "name", "length", "closed", "pageYOffset", "pageXOffset", "scrollY", "scrollX", "screenTop", "screenLeft", "screenY", "screenX", "innerWidth", "innerHeight", "outerWidth", "outerHeight", "offscreenBuffering", "frameElement", "clientInformation", "navigator", "toolbar", "statusbar", "scrollbars", "personalbar", "menubar", "locationbar", "history", "screen", "postMessage", "close", "blur", "focus", "ondeviceorientation", "ondevicemotion", "onunload", "onstorage", "onresize", "onpopstate", "onpa |
I hereby claim:
To claim this, I am signing this object:
package main | |
import "golang.org/x/tour/pic" | |
func MakePic(val (func(int, int) uint8)) (func(int, int) [][]uint8) { | |
var pic = func(dx, dy int) ([][]uint8) { | |
var dyslice = make([][]uint8, dy) | |
for i := range dyslice { |
javascript:(function() {var varchar = '?'; if (location.href.indexOf("?") > 0) {varchar='&'} location.href = location.href + varchar +'rand=' + new Date().getTime().toString(16);}()) |
M300 S660 P100 | |
G4 P150 | |
M300 S660 P100 | |
G4 P300 | |
M300 S660 P100 | |
G4 P300 | |
M300 S510 P100 | |
G4 P100 | |
M300 S660 P100 | |
G4 P300 |
$buildVCS = "whateverTheSHAofCommitYouWant" | |
import-module posh-git | |
git show - pretty $buildVCS > $pwd\test.txt | |
$a = get-content test.txt | |
($a -split "`r`n") | ForEach-Object { | |
# the pattern is modified to check for a First Last name, or a single username, depending on how people have their git setup. | |
$email = Select-String -InputObject $_ -Pattern "Author: ([A-Za-z]{2,20} [A-Za-z]{2,20}|[A-Za-z]{2,20}) <[A-Za-z]{2,20}@YOUR_DOMAIN\.com>" | % { $_.Matches } | % { $_.Value } | |
if($email){ |