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:
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(); |
#!/usr/bin/python | |
import sys, getopt | |
import json | |
from pprint import pprint | |
def main(argv): | |
inputfile = '' | |
try: | |
opts, args = getopt.getopt(argv,"hi:",["ifile="]) |
Audio: | |
Intel High Definition Audio: | |
Audio ID: 1 | |
Line Output: | |
Connection: 1/8-Inch Jack |
#!/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 |
I hereby claim:
To claim this, I am signing this object:
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 |
us
below to the end of /usr/share/X11/xkb/symbols/us
base.lst
below to the end of /usr/share/X11/xkb/rules/base.lst
<variant>....</variant>
block in base.xml
below to /usr/share/X11/xkb/rules/base.xml
(under the variantList for English)/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
#!/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 |