Commit Graph

27248 Commits (d6b6b955d396343951d2731459da62d9d1cf7e03)

Author SHA1 Message Date
John Benediktsson faa7fde557 tools.ps: enable use from command-line. 2015-04-09 10:43:43 -07:00
John Benediktsson 24101fbaeb tools.hexdump: enable use from command-line. 2015-04-09 10:43:20 -07:00
John Benediktsson 174f0f02a1 math.extras: change kelly criterion tests to use ratios. 2015-04-02 08:03:49 -07:00
John Benediktsson a4c0ae98c5 math.extras: adding the Kelly criterion. 2015-04-01 21:34:54 -07:00
John Benediktsson ea2547aae3 editors.emacs: fix doc typo. 2015-04-01 15:57:06 -07:00
Doug Coleman 7895e0fcaa io.launcher.windows tests: Use unique-file instead of temp-file. Fixes 2015-04-01 15:44:55 -07:00
John Benediktsson ab399c8ae4 Factor.app: update copyright. 2015-04-01 14:59:23 -07:00
John Benediktsson ce48bb2ebf robohash: adding a robot-based hashing tool. 2015-04-01 14:56:23 -07:00
John Benediktsson 5e1c0580d7 tools.echo: adding "echo" tool. 2015-04-01 14:51:32 -07:00
John Benediktsson 197b944c7e tools.grep: adding "grep" tool. 2015-04-01 14:41:41 -07:00
John Benediktsson b8cbe9d64d tools.uniq: adding "uniq" tool. 2015-04-01 14:37:53 -07:00
John Benediktsson becc1bc728 tools.tree: adding "tree" tool. 2015-04-01 14:37:39 -07:00
John Benediktsson a1b3886327 tools.seq: adding "seq" tool. 2015-04-01 14:37:00 -07:00
John Benediktsson 54595382ff tools.move: adding "move" tool. 2015-04-01 14:31:02 -07:00
John Benediktsson 24bd7c098f tools.copy: adding "copy" tool. 2015-04-01 14:30:49 -07:00
John Benediktsson 2e56aebcb2 tools.cat: adding "cat" tool. 2015-04-01 14:26:22 -07:00
John Benediktsson be1a8d085d tools.which: enable use from command-line. 2015-04-01 14:22:11 -07:00
John Benediktsson 44bfc19e3b tools.dns: enable use from command-line. 2015-04-01 14:18:31 -07:00
John Benediktsson 96ea327702 metar: adding METAR and TAF weather parsers. 2015-04-01 14:07:40 -07:00
John Benediktsson 59ec7f599e text-to-speech: simple cross-platform text-to-speech. 2015-04-01 14:05:55 -07:00
John Benediktsson 05b087fb07 text-to-pdf: simple text to pdf utility 2015-04-01 14:05:01 -07:00
John Benediktsson 9a12c7125c picomath: implementation of picomath.org small math words. 2015-04-01 14:03:53 -07:00
John Benediktsson dc0833a4c4 flip-text: fun with text flipping. 2015-04-01 14:03:09 -07:00
John Benediktsson 2a17c47736 enigma: implementation of Enigma cipher machine. 2015-04-01 13:57:25 -07:00
John Benediktsson 79b8ee5a24 colors.flex-hex: implementation of "flex hex" color algorithm. 2015-04-01 13:55:39 -07:00
Doug Coleman 299e4ff3ce forestdb.ffi: Update for latest ffi changes. 2015-03-27 13:32:48 -07:00
John Benediktsson e164fcf431 http.parsers: parse a "simple request". 2015-03-11 17:48:28 -07:00
Doug Coleman 0fda669750 growable: Multiply growable size by 2 instead of 3 when growing.
http://stackoverflow.com/questions/1100311/what-is-the-ideal-growth-rate-for-a-dynamically-allocated-array
Fixes #1284.
2015-03-11 16:53:20 -07:00
John Benediktsson 7c30ae8ab6 gobject.ffi: fix windows dll name. 2015-03-08 08:51:53 -07:00
John Benediktsson e237b49f83 websites.factorcode: fix <br> so maybe our string>xml example works. 2015-03-03 07:12:22 -08:00
John Benediktsson 3a12615b12 xml.writer: adding a test for pprint-xml fix. 2015-02-28 16:40:13 -08:00
John Benediktsson c7f440e097 xml.data: fix issue with empty tags not being printed use shortened <tag/> format. 2015-02-28 16:00:00 -08:00
John Benediktsson e243a886d3 xml.data: adding tests for tags assoc protocol. 2015-02-28 15:37:06 -08:00
John Benediktsson 102aa2cbc1 xml.data: make tags support assoc protocol as documented. 2015-02-28 15:34:24 -08:00
Björn Lindqvist 1d251f7b6a VM: new function visit_object to replace trace_object 2015-02-28 14:14:30 -08:00
Björn Lindqvist 6b29c0ea00 VM: refactoring to remove redundancy in retainstack|datastack_to_array 2015-02-28 14:14:30 -08:00
Björn Lindqvist 0798928996 VM: cleanup of some infrequently used functions that can be replaced with direct code
also replacing some bitshifts with easier to understand multiplies and
divides, they are equally fast nowadays
2015-02-28 14:14:30 -08:00
Björn Lindqvist ab75e3b05d VM: splits out the little ugly scan_next-object + goto-loop into a function trace_card() 2015-02-28 14:14:30 -08:00
Björn Lindqvist 8e91ca3e31 VM: simplification of the trace_partial_objects function 2015-02-28 14:14:30 -08:00
Björn Lindqvist a43a455990 VM: the unmarker classes are not needed, easier to just send the unmask pattern to the trace_cards function directly 2015-02-28 14:14:30 -08:00
Björn Lindqvist b5a206c587 VM: new function visit_mark_stack() to factor out the mark stack iteration 2015-02-28 14:14:29 -08:00
Björn Lindqvist 667e5768ba VM: it's confusing that slot_visitors are called "workhorse" sometimes, let's standardize the name "visitor" 2015-02-28 14:14:29 -08:00
Björn Lindqvist 5490c50217 VM: visit_roots and visit_contexts where always called in tandem, make a new method visit_all_roots that calls them both 2015-02-28 14:14:29 -08:00
Mark Green fe2c2d23de Adding help for <model-field> and <action-field>. 2015-02-21 18:39:04 -08:00
Doug Coleman ec896cd5ad images.tiff: Fix partial refactor rollback and offeset typo. 2015-02-13 20:53:36 -08:00
Doug Coleman 7f40cadf8b images.tiff: Fix infinite loop bug exposed by AFL test suite. IDFs are found at certain offsets, then the next offset is after the IDF. If a next-offset is its own previous offset, then it would loop. Now we record the offset and stop if it would loop. 2015-02-13 14:58:18 -08:00
Doug Coleman 857e60db5b alien.libraries: Cannot include alien.libraries.finder here for docs. 2015-02-13 11:31:56 -08:00
Benjamin Pollack e6fecadb04 Explicitly reference find-library in alien docs
Factor 0.98 added a great find-library library, but unless you already know it
exists, you're probably not going to discover it.  This attempts to help with
that by adding a few cross-references with the add-library word and the main
alien article.
2015-02-11 17:38:44 -08:00
Benjamin Pollack 1eda99257d Fix typo in hash-set documentation 2015-02-11 17:38:44 -08:00
John Benediktsson 1728e99254 opencl: remove <size_t> (use size_t <ref> instead). 2015-02-11 17:38:44 -08:00