This file contains hidden or 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
{ | |
"version": 0, | |
"dependencies": [ | |
{ | |
"importpath": "github.com/vektra/errors", | |
"repository": "https://github.com/vektra/errors", | |
"revision": "c64d83aba85aa4392895aadeefabbd24e89f3580", | |
"branch": "master" | |
}, | |
{ |
This file contains hidden or 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
=== RUN TestAll | |
=== RUN TestAll/Parallel | |
=== RUN TestAll/Parallel/TestCreate | |
=== RUN TestAll/Parallel/TestCreateEmptyPriority | |
=== RUN TestAll/Parallel/TestUniqueFailure | |
=== RUN TestAll/Parallel/TestGet | |
--- PASS: TestAll (0.03s) | |
--- PASS: TestAll/Parallel (0.00s) | |
--- PASS: TestAll/Parallel/TestCreate (0.01s) | |
--- PASS: TestAll/Parallel/TestCreateEmptyPriority (0.01s) |
This file contains hidden or 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 main | |
import ( | |
"encoding/json" | |
"fmt" | |
"net" | |
"net/http" | |
"sync" | |
) |
This file contains hidden or 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 bash | |
set -eo pipefail | |
main() { | |
} | |
main "$@" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
Unhandled exception: page fault on write access to 0x00000011 in 32-bit code (0x00993e1c). | |
Register dump: | |
CS:001b SS:0023 DS:0023 ES:0023 FS:1007 GS:000f | |
EIP:00993e1c ESP:0033f99c EBP:00000000 EFLAGS:00210246( R- -- I Z- -P- ) | |
EAX:00000011 EBX:0071c592 ECX:00000003 EDX:00000090 | |
ESI:00fe6d20 EDI:00000000 | |
Stack dump: | |
0x0033f99c: 00fe6d20 7001ee4a 006c4934 0033f9b8 | |
0x0033f9ac: 00000090 00000000 00000000 0033fa20 | |
0x0033f9bc: 7002222d 006c4934 00000011 0071c592 |
This file contains hidden or 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
type scoresArray [500]int64 | |
func (a scoresArray) Len() int { | |
return len(a) | |
} | |
func (a scoresArray) Swap(i int, j int) { | |
a[i], a[j] = a[j], a[i] | |
} | |
func (a scoresArray) Less(i, j int) bool { |
This file contains hidden or 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
cat /usr/share/dict/words| egrep '^[bcdfghjklmnpqrstvwxz]([bcdfghjklmnpqrstvwxz]i|i[bcdfghjklmnpqrstvwxz])[bcdfghjklmnpqrstvwxyz]$' | sed 's/i/y/' | pbcopy | |
bybb | |
byck | |
byff | |
bygg | |
bykh | |
bylk | |
byll | |
bynd |
This file contains hidden or 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
mov ax, [edi+10Eh] | |
shr ax, 8 | |
and eax, 7 | |
imul eax, 28000h | |
shr eax, 10h | |
add ebx, eax |
This file contains hidden or 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
VARS=$(heroku config --shell --app shyp-api-int) | |
heroku config:set --app "$APPNAME" $(echo $VARS) | |
# USER_EMAIL: devops\[email protected] |