I hereby claim:
- I am yinghau76 on github.
- I am yinghau76 (https://keybase.io/yinghau76) on keybase.
- I have a public key whose fingerprint is 6B63 06F9 0B68 E377 0D48 F7B7 BDA3 F0E0 8ED3 2141
To claim this, I am signing this object:
| #!/bin/sh | |
| git diff --name-only "$@" | while read filename; do | |
| git difftool "$@" -t araxis --no-prompt "$filename" & | |
| done |
| src = $(wildcard *.c) | |
| obj = $(src:.c=.o) | |
| LDFLAGS = | |
| myprog: $(obj) | |
| $(CC) -o $@ $^ $(LDFLAGS) | |
| .PHONY: clean | |
| clean: |
I hereby claim:
To claim this, I am signing this object:
| ~/tmp $ go build -gcflags=-S test-1.go | more | |
| # command-line-arguments | |
| "".main t=1 size=256 value=0 args=0x0 locals=0x70 | |
| 0x0000 00000 (/Users/patrick/tmp/test-1.go:7) TEXT "".main(SB), $112-0 | |
| 0x0000 00000 (/Users/patrick/tmp/test-1.go:7) MOVQ (TLS), CX | |
| 0x0009 00009 (/Users/patrick/tmp/test-1.go:7) CMPQ SP, 16(CX) | |
| 0x000d 00013 (/Users/patrick/tmp/test-1.go:7) JLS 231 | |
| 0x0013 00019 (/Users/patrick/tmp/test-1.go:7) SUBQ $112, SP | |
| 0x0017 00023 (/Users/patrick/tmp/test-1.go:7) FUNCDATA $0, gclocals·7d2d5fca80364273fb07d5820a76fef4(SB) | |
| 0x0017 00023 (/Users/patrick/tmp/test-1.go:7) FUNCDATA $1, gclocals·5ef976c2593056b9243adf402ae9d952(SB) |
| "font_face": "Fira Mono", | |
| "font_size": 17, | |
| "line_padding_bottom": -3, | |
| "line_padding_top": -3, |
| /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain user;killall Finder;echo "Open With has been rebuilt, Finder will relaunch" |
| namespace 'dsym' do | |
| desc 'Archive dSYM' | |
| task :zip do | |
| App.config_without_setup.build_mode = :release | |
| App.config_without_setup.distribution_mode = true | |
| app_bundle = App.config.app_bundle('iPhoneOS') | |
| app_dsym = app_bundle.sub(/\.app$/, '.dSYM') | |
| app_dsym_zip = "#{app_dsym}-#{App.config.version}.zip" | |
| if !File.exist?(app_dsym_zip) or File.mtime(app_dsym) > File.mtime(app_dsym_zip) |
| To make ChrUbuntu the default, run: | |
| sudo cgpt add -i 6 -P 5 -S 1 /dev/sda | |
| To make Chrome OS the default again, either turn off Developer Mode, or run: | |
| sudo cgpt add -i 6 -P 0 -S 1 /dev/sda |
| mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging> |
| sudo sysctl -w net.inet.ip.fw.enable=1 |