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
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] BUILD FAILURE | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Total time: 18.246s | |
| [INFO] Finished at: Tue Nov 12 14:06:04 PST 2013 | |
| [INFO] Final Memory: 9M/240M | |
| [INFO] ------------------------------------------------------------------------ | |
| [ERROR] Failed to execute goal on project loki: Could not resolve dependencies for project com.memeo:loki:jar:0.0.1-SNAPSHOT: Could not find artifact org.mapdb:mapdb:jar:0.9.8-SNAPSHOT -> [Help 1] | |
| [ERROR] | |
| [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. |
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
| # honnef.co/go/implements | |
| ../../.go/src/honnef.co/go/implements/main.go:134: scope.NumEntries undefined (type *types.Scope has no field or method NumEntries) | |
| ../../.go/src/honnef.co/go/implements/main.go:135: scope.At undefined (type *types.Scope has no field or method At) |
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
| git log --decorate -1 | head -1 | grep -Po '(?<=tag: )[0-9.{4}]+' | head -1 |
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
| <head> | |
| <script> | |
| <!-- | |
| var s,q,w,h,m,p,i; | |
| function randomFromInterval(from, to) { | |
| return Math.floor(m() * (to - from + 1) + from); | |
| } |
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
| {{EPOLLIN|EPOLLOUT, {u32=36219585, u64=36219585}}}, 512, 65000) = 1 | |
| recvfrom(3, "GET /thor/zVB1j9zL6b%2BFZQ%252FP"..., 1024, 0, NULL, NULL) = 961 | |
| socket(PF_FILE, SOCK_STREAM, 0) = 10 | |
| ioctl(10, FIONBIO, [1]) = 0 | |
| epoll_ctl(8, EPOLL_CTL_ADD, 10, {EPOLLIN|EPOLLOUT|EPOLLET, {u32=36219777, u64=36219777}}) = 0 | |
| connect(10, {sa_family=AF_FILE, path="/home/web/sock.sock"}, 110) = 0 | |
| getsockopt(10, SOL_SOCKET, SO_ERROR, [152529956721655808], [4]) = 0 | |
| writev(10, [{"GET /thor/zVB1j9zL6b+FZQ%252FPLd"..., 981}], 1) = 981 | |
| recvfrom(3, 0x7fffc49d1c3f, 1, 2, 0, 0) = -1 EAGAIN (Resource temporarily unavailable) | |
| epoll_wait(8, {{EPOLLIN|EPOLLOUT|EPOLLHUP, {u32=36219777, u64=36219777}}}, 512, 60000) = 1 |
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
| import re | |
| import sys | |
| f = open(sys.argv[1]) | |
| content = f.read() | |
| for i in filter(lambda x: not re.match(r'^#', x.strip()), re.split('startup|;', content)): | |
| if i.strip(): | |
| print "startup" + i + ";" |
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
| object Telugu { | |
| def main(args: Array[String]) = { | |
| var a = 0; | |
| for(a <- 0x0C01 to 0x0C39) { | |
| print(a.toChar); | |
| } | |
| } | |
| } |
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
| set-option -g status on | |
| set-option -g status-interval 2 | |
| set-option -g status-utf8 on | |
| set-option -g status-justify "centre" | |
| set-option -g status-left-length 120 | |
| set-option -g status-right-length 90 | |
| set-option -g status-left "#(~/code/tmux-powerline/status-left.sh)" | |
| set-option -g status-right "#(~/code/tmux-powerline/status-right.sh)" |
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
| #include <sys/mman.h> | |
| #include <stdlib.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <unistd.h> | |
| #include <fcntl.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #define INDEX(B, P) ((P) - (B)) |
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
| ; boot.asm | |
| ; BIOS loads boot sector at 0000:7c00 | |
| mov ds, 0x07c0 | |
| mov ah, 0x0 | |
| mov al, 0x6a | |
| int 0x10 | |
| xor cx, cx | |
| begin: |