- Add the contents of
us
below to the end of/usr/share/X11/xkb/symbols/us
- Add the contents of
base.lst
below to the end of/usr/share/X11/xkb/rules/base.lst
- Add the
<variant>....</variant>
block inbase.xml
below to/usr/share/X11/xkb/rules/base.xml
(under the variantList for English) - Copy
/usr/share/X11/xkb/rules/base.lst
to/usr/share/X11/xkb/rules/evdev.lst
and/usr/share/X11/xkb/rules/base.xml
to/usr/share/X11/xkb/rules/evdev.xml
- Reboot
- Choose layout in the layout manager for your WM and enable it!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env fish | |
# Once node server is running, run test by endpoint name: | |
# ./curl.fish long1 | |
function getTime | |
printf (cat $argv | awk '{ print $1 }') | |
end | |
while true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nermolov@NewMac ~> mozregression --good 2017-06-12 --bad 2017-09-21 | |
********** | |
You should use a config file. Please use the --write-config command line flag to help you create one. | |
********** | |
0:05.42 INFO: Testing good and bad builds to ensure that they are really good and bad... | |
0:05.42 INFO: Downloading build from: https://archive.mozilla.org/pub/firefox/nightly/2017/06/2017-06-12-09-11-12-mozilla-central/firefox-56.0a1.en-US.mac.dmg | |
===== Downloaded 100% ===== | |
0:12.96 INFO: Running mozilla-central build for 2017-06-12 | |
0:28.44 INFO: Launching /private/var/folders/kn/rlr00tzj1sj4j7h9q9nq_jmr0000gn/T/tmpANUJ2s/FirefoxNightly.app/Contents/MacOS/firefox |
I hereby claim:
- I am nermolov on github.
- I am nermolov (https://keybase.io/nermolov) on keybase.
- I have a public key ASCTRbSJ-jd_r3iwVwD72gMnar6Py0mgll1eC8_MtgkTNAo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
umount /dev/mmcblk1* | |
echo 'Please hit g then w' | |
fdisk /dev/mmcblk1 | |
cgpt create /dev/mmcblk1 | |
cgpt add -i 1 -t kernel -b 8192 -s 32768 -l Kernel -S 1 -T 5 -P 10 /dev/mmcblk1 | |
NUMO=`cgpt show /dev/mmcblk1 | grep 'Sec GPT table' | awk '{ print $1 }'` | |
cgpt add -i 2 -t data -b 40960 -s `expr $NUMO - 40960` -l Root /dev/mmcblk1 | |
blockdev --rereadpt /dev/mmcblk1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Audio: | |
Intel High Definition Audio: | |
Audio ID: 1 | |
Line Output: | |
Connection: 1/8-Inch Jack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import sys, getopt | |
import json | |
from pprint import pprint | |
def main(argv): | |
inputfile = '' | |
try: | |
opts, args = getopt.getopt(argv,"hi:",["ifile="]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
import com.vpg.vpage.components.button.*; | |
public dynamic class double_page_btn extends BasicButton { | |
public function double_page_btn(){ | |
addFrameScript(8, this.frame9, 19, this.frame20); | |
} | |
function frame9(){ | |
stop(); |