about summary refs log tree commit diff homepage
path: root/server.c (follow)
Commit message (Expand)AuthorAge
* Use PascalCase for constantsJune McEnroe2018-09-30
* Send now in mapJune McEnroe2018-08-25
* Calculate min and max meta for map server-sideJune McEnroe2018-08-25
* Add g for flipJune McEnroe2018-08-23
* Replace client with rudimentary CP437 supportJune McEnroe2018-08-21
* Shrink the torus and rearrange struct TileJune McEnroe2018-08-21
* Remove spawnsJune McEnroe2018-08-21
* Set client sockets SNDBUF to twice tile sizeJune McEnroe2018-07-25
* Revert "Do not set non-blocking on client sockets"June McEnroe2018-07-24
* Do not set non-blocking on client socketsJune McEnroe2018-07-24
* Use EV_SETJune McEnroe2018-07-24
* Add ARRAY_LEN macroJune McEnroe2018-07-19
* Add server map generationJune McEnroe2018-07-17
* Tabify sourceJune McEnroe2018-07-17
* Use anonymous unionJune McEnroe2018-04-09
* Miscellaneous code cleanupJune McEnroe2018-03-05
* Pass message structs by valueJune McEnroe2018-03-05
* Clean up spawn constantsJune McEnroe2018-03-05
* Rename Tile timestamps {create,modify,access}TimeJune McEnroe2018-03-05
* Remove leading blank linesJune McEnroe2017-09-27
* Assert client coords are valid after movementJune McEnroe2017-09-03
* Relicense AGPLJune McEnroe2017-09-03
* Remove clientRemove call from clientCastJune McEnroe2017-09-01
* Add four additional spawnsJune McEnroe2017-08-29
* Add respawningJune McEnroe2017-08-28
* Use MakefileJune McEnroe2017-08-26
* Add license to C filesJune McEnroe2017-08-24
* Clean up unnecessary kevent initializersJune McEnroe2017-08-13
* Remove MADV_NOSYNCJune McEnroe2017-08-08
* Completely retry if a send fails during a broadcastJune McEnroe2017-08-08
* Reverse order of main loopJune McEnroe2017-08-08
* Turn off SIGPIPE at the socket levelJune McEnroe2017-08-08
* Split tile access and modifyJune McEnroe2017-08-02
* Madvise RANDOM and NOSYNCJune McEnroe2017-08-01
* Fix removing clients from clientCastJune McEnroe2017-07-31
* Don't dump tiles in coreJune McEnroe2017-07-31
* Use designated initializers for messagesJune McEnroe2017-07-31
* Show other clients' cursorsJune McEnroe2017-07-31
* Track tile access countsJune McEnroe2017-07-31
* Handle large movesJune McEnroe2017-07-31
* Track color only client-sideJune McEnroe2017-07-30
* Add tile create and access timestampsJune McEnroe2017-07-30
* Initial commitJune McEnroe2017-07-30
ct'>Use Z_FILTERED strategyJune McEnroe 2021-09-21Recalculate various lengths only as neededJune McEnroe This actually speeds things up quite a bit, saving roughly a second on a big PNG screenshot. Almost all the remaining time is spent in deflate. 2021-09-21Rewrite pngo, add explicit optionsJune McEnroe Interesting to see how my code habits have changed. 2021-09-16Fix /* **/ comment matchingJune McEnroe 2021-09-15Remove typer, add downgrade to READMEJune McEnroe 2021-09-15Set bot mode on downgradeJune McEnroe 2021-09-15Enter capsicum in downgradeJune McEnroe 2021-09-15Factor out common parts of downgrade messagesJune McEnroe Also bump the message cap to 1024 because that is ostensibly useful for replying to older messages. 2021-09-14Add downgrade IRC botJune McEnroe 2021-09-14Sort by title if authors matchJune McEnroe There are probably better things to sort by but title definitely always exists. 2021-09-13Swap-remove tags as they're foundJune McEnroe This makes it even faster. From ~1s on a sqlite3.c amalgamation to ~0.85s. 2021-09-12Replace htagml regex with strncmpJune McEnroe Since ctags only ever produces regular expressions of the form /^re$/ or /^re/ with no other special characters, instead unescape the pattern and simply use strncmp. Running on a sqlite3.c amalgamation, the regex version takes ~37s while the strncmp version takes ~1s, producing identical output. Big win! 2021-09-11Also defer printing comment for lone close-parensJune McEnroe 2021-09-10Publish "git-comment"June McEnroe 2021-09-10Add git comment --pretty optionJune McEnroe 2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe This fixes badly indented comments. 2021-09-08Up default min-repeat to 30 linesJune McEnroe 2021-09-08Handle dirty lines in git-commentJune McEnroe 2021-09-08Document and install git-commentJune McEnroe 2021-09-08Add repeat and all options to git-commentJune McEnroe 2021-09-08Add group threshold to git-commentJune McEnroe