summary refs log tree commit diff
Commit message (Collapse)AuthorAge
...
* Remove mayJune McEnroe2017-02-14
|
* Add W command in vimJune McEnroe2017-02-06
|
* Add nasd functionJune McEnroe2017-02-01
|
* Highlight Ruby symbols as stringsJune McEnroe2017-01-30
|
* Remove broken gem bin path from pathJune McEnroe2017-01-26
|
* Remove macOS keyboard layoutJune McEnroe2017-01-25
| | | | Does not work in all apps.
* Use 127.0.0.1 instead of localhost in SSH configJune McEnroe2017-01-22
|
* Set shiftwidth=2 for sh and zshJune McEnroe2017-01-22
|
* Add short descriptions to C utilitiesJune McEnroe2017-01-21
|
* Update READMEJune McEnroe2017-01-21
|
* Use zsh for shell scriptsJune McEnroe2017-01-21
|
* Group git aliasesJune McEnroe2017-01-20
|
* Clean up zshrcJune McEnroe2017-01-20
|
* Set PATH manuallyJune McEnroe2017-01-20
|
* Switch back to 10-minute increments in clockJune McEnroe2017-01-20
| | | | And do it properly this time.
* Modulo next hour by 24 in clockJune McEnroe2017-01-20
|
* Switch clock to 6-minute graduationsJune McEnroe2017-01-19
|
* Revert "Show one digit of each hour in clock"June McEnroe2017-01-19
| | | | This reverts commit a3555612b6814bdfce0cbc6110891e61252d3980.
* Display fuzzy clock in tmuxJune McEnroe2017-01-19
|
* Show one digit of each hour in clockJune McEnroe2017-01-19
|
* Add fuzzy clockJune McEnroe2017-01-19
|
* Include host in tmux status lineJune McEnroe2017-01-19
|
* Add include so that pbcopy.c compiles on FreeBSDJune McEnroe2017-01-08
|
* Implement pbcopy and pbpaste in CJune McEnroe2017-01-06
| | | | | | | | | Ted Unangst broke my netcat implementation of pbpaste with this commit: <https://github.com/openbsd/src/commit/bb978d8>, which, when /dev/null is attached to stdin, causes nc to exit and never read from the socket. Turns out the core functionality of netcat can be implemented in about 50 lines of C.
* Add custom keyboard layout for macOSJune McEnroe2017-01-03
|
* Add gdbinitJune McEnroe2016-12-23
|
* Clean up tmux.conf a bit moreJune McEnroe2016-12-01
|
* Remove iTerm tux profileJune McEnroe2016-12-01
|
* Use C-e C-e to switch tmux windowsJune McEnroe2016-11-24
|
* Set tmux status colors BLACKJune McEnroe2016-11-10
|
* Update pbd.c styleJune McEnroe2016-10-16
|
* Update xx.c styleJune McEnroe2016-10-16
|
* Remove rpn.cJune McEnroe2016-10-16
|
* Add JRP_DUMPJune McEnroe2016-10-10
|
* Split jrp nops on dword boundariesJune McEnroe2016-10-10
|
* Fix jrp dop pushesJune McEnroe2016-10-10
| | | | | Pushing zero on a qop boundary would break because zero is the sentinal value for code.dop.
* Allocate two pages of stack for jrpJune McEnroe2016-10-09
|
* Fix jrp snprintf lenJune McEnroe2016-10-09
| | | | I hate calculations like these.
* Rewrite jrpJune McEnroe2016-10-09
|
* Fix jrp prompt snprintfJune McEnroe2016-10-08
|
* Add quote to jrp and refactor jitJune McEnroe2016-10-08
|
* Fix jrp build -leditJune McEnroe2016-10-08
|
* Fix jrp mmap MAP_ANON callsJune McEnroe2016-10-08
|
* Fix jrp OR opJune McEnroe2016-10-08
|
* Set up jrp input loopJune McEnroe2016-10-08
|
* Implement jrp JITJune McEnroe2016-10-08
|
* Implement jit_hop and jit_hop for jrpJune McEnroe2016-10-07
|
* Keep stack top in rdi in jrpJune McEnroe2016-10-07
|
* Swap stacks in OP_CALL and wasteful OP_RELO in jrpJune McEnroe2016-10-07
| | | | NEED MORE BYTES.
* Add runtime functions to jrpJune McEnroe2016-10-07
| | | | | | The current JITed code causes a misaligned stack error when calling into C code. Need to find a way to align the RPN stack to 16 bytes, or swap back to the C stack before a CALL.
eping.me.uk> 2013-04-15t0109: test more URLsJohn Keeping In order to ensure that we don't access $HOME at some point after initial startup when rendering a specific view, run the strace test on a range of different pages. This ensures that we don't end up reading a configuration later for some specific view. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgitrc.5.txt: Specify when scan-path must be defined before.Jason A. Donenfeld Several options must be specified prior to scan-path. This is consistant source of user confusion. Document these facts. Suggested-by: Lukas Fleischer <cgit@cryptocrack.de> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2013-04-10ui-snapshot.c: Prepend "V" when guessing ref namesLukas Fleischer In cgit_print_snapshot_links() we strip leading "v" and "V", while we currently only prepend a lower case "v" when parsing a snapshot file name. This results in broken snapshot links for tags that start with an upper case "V". Avoid this by prepending a "V" as a fallback. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10t0107: Skip ZIP tests if unzip(1) isn't availableLukas Fleischer Note that we cannot use skip_all here since some tests have already been executed when ZIP tests are reached. Use test prerequisites to skip everything using unzip(1) if the binary is not available instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10tests/: Do not use `sed -i`Lukas Fleischer "-i" isn't part of the POSIX standard and doesn't work on several platforms such as OpenBSD. Use a temporary file instead. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-10Add branch-sort and repo.branch-sort options.Jason A. Donenfeld When set to "name", branches are sorted by name, which is the current default. When set to "age", branches are sorted by the age of the repository. This feature was requested by Konstantin Ryabitsev for use on kernel.org. Proposed-by: Konstantin Ryabitsev <mricon@kernel.org> 2013-04-10t0109: chain operations with &&John Keeping Without '&&' between operations, we will not detect if strace or cgit exit with an error status, which would cause a false positive test status in this case. Signed-off-by: John Keeping <john@keeping.me.uk> 2013-04-10cgit.c: Do not restore unset environment variablesLukas Fleischer getenv() returns a NULL pointer if the specified variable name cannot be found in the environment. However, some setenv() implementations crash if a NULL pointer is passed as second argument. Only restore variables that are not NULL. See commit d96d2c98ebc4c2d3765f5b35c4142e0e828a421b for a related patch. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2013-04-09t0107: Use `tar -z` for gzip'ed archivesLukas Fleischer