summary refs log tree commit diff
path: root/.bin (follow)
Commit message (Collapse)AuthorAge
* 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 dbe688285900b81c7e46ab7a6f74ecdfefa2856a.
* Show one digit of each hour in clockJune McEnroe2017-01-19
|
* Add fuzzy clockJune 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.
* 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.
* Add OP_HIGH to jrpJune McEnroe2016-10-06
|
* Define IMMED_PUSH macro in jrpJune McEnroe2016-10-06
|
* Rearrange OP_PUSH so immediate is high dword in jrpJune McEnroe2016-10-06
|
* Use custom typedefs in jrpJune McEnroe2016-10-06
|
* Generate some test code in jrpJune McEnroe2016-10-06
|
* Use rbp instead of r15 in jrpJune McEnroe2016-10-05
|
* Begin JRPJune McEnroe2016-10-05
|
* Use long type in rpnJune McEnroe2016-10-04
|
* Process argv in rpnJune McEnroe2016-10-04
|
* Fix whitespace handling in rpnJune McEnroe2016-10-04
|
* Add @ to rpnJune McEnroe2016-10-04
|
* Add ! to rpnJune McEnroe2016-10-04
|
* Add quoting to rpnJune McEnroe2016-10-04
|
* Try ops first in rpnJune McEnroe2016-10-04
|
* Add radix to rpnJune McEnroe2016-10-04
|
* What am I even doing?June McEnroe2016-10-03
| | | | | It's Monday night and I've had a lot to drink because I didn't like what Monday day was like. Ain't that just the way?
* Clean up error handling in pbdJune McEnroe2016-09-18
|
* Add pbcopy and pbpaste using pbdJune McEnroe2016-09-17
|
* Check child status in pbdJune McEnroe2016-09-17
|
* Factor out spawn in pbdJune McEnroe2016-09-17
|
* Add initial pbd implementationJune McEnroe2016-09-17
| | | | Error handling in C is tedious.
* Use err(3) in xxJune McEnroe2016-09-15
|