I hereby claim:
- I am sinewalker on github.
- I am sinewalker (https://keybase.io/sinewalker) on keybase.
- I have a public key whose fingerprint is 8400 93B4 16FE A604 8473 A2F6 3CCA 2E6E BCBE 8795
To claim this, I am signing this object:
KDEWM=/usr/bin/awesome |
/usr/bin/wmname LG3D |
#!/bin/bash | |
############################################################################### | |
# File: MODE | |
# Language: Bash | |
# Time-stamp: <2010-07-14 21:52:07 mjl> | |
# Platform: X Window System with XRANDR | |
# OS: Linux | |
# Authors: Michael Lockhart [MJL] | |
# | |
# Rights: Copyright © 2010 Michael James Lockhart, B.App.Comp(HONS) |
#! /bin/sh | |
############################################################################### | |
# | |
# File: edge-csvn | |
# Language: LSB Init Script | |
# Time-stamp: <2011-04-04 15:46:51 mjl> | |
# Platform: Unix workstation | |
# OS: Linux | |
# Authors: Michael Lockhart [MJL] ([email protected]) | |
# |
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\.Default\MJL-S0] | |
@="C:\\Library\\SystemSounds\\Default Beep.wav" | |
[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\AppGPFault] | |
[HKEY_CURRENT_USER\AppEvents\Schemes\Apps\.Default\AppGPFault\MJL-S0] | |
@="C:\\Library\\SystemSounds\\Program Error.wav" |
[hax]virbuntu$ cat vendor.java | |
public class vendor { | |
public static void main(String[] a) { | |
System.out.println(System.getProperty("java.vendor")); | |
System.out.println(System.getProperty("java.vendor.url")); | |
System.out.println(System.getProperty("java.version")); | |
} | |
} | |
[hax]virbuntu$ java -version | |
java version "1.6.0_24" |
I hereby claim:
To claim this, I am signing this object:
Simple blinking cursor... code from http://xip.io/ ... | |
Ofcourse I don't own the code! Just keeping it here as a | |
reference of the CSS3 code used. |
#/bin/bash | |
#-- Script to automate https://help.github.com/articles/why-is-git-always-asking-for-my-password | |
REPO_URL=`git remote -v | grep -m1 '^origin' | sed -Ene's#.*(https://[^[:space:]]*).*#\1#p'` | |
if [ -z "$REPO_URL" ]; then | |
echo "-- ERROR: Could not identify Repo url." | |
echo " It is possible this repo is already using SSH instead of HTTPS." | |
exit | |
fi |
#/bin/bash | |
#-- Script to automate https://help.github.com/articles/why-is-git-always-asking-for-my-password | |
# Forked from the original to do the opposite: Switch ssh repo urls to https | |
# Original here: https://gist.github.com/m14t/3056747 | |
# Thanks to @m14t | |
#origin or upstream | |
REMOTE=${1-origin} | |
REPO_URL=`git remote -v | grep -m1 "^$REMOTE" | sed -Ene's#.*([email protected]:[^[:space:]]*).*#\1#p'` |