Login
Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

50 check-ins occurring around 291212f88d857732278d.

2024-01-10
04:48
Add RemiMath::Conv module and the Unit enum.

Straight brute-force right now. There might be a way to make this
more elegant, but for now it works. check-in: 0ce7a5a91c user: alexa tags: trunk

2024-01-05
07:26
Copyright update time check-in: 5841ed07b4 user: alexa tags: trunk
2023-11-16
10:00
Bump version, tag as v0.12.0 check-in: 057ba45f36 user: alexa tags: trunk, v0.12.0
2023-11-11
10:30
Change a literal. Use a .try instead of a .nil? check-in: 8e87f7615f user: alexa tags: trunk
2023-11-10
09:29
Add #stop and #drain methods to the ConcurrentLogger class check-in: 4d7fc4f647 user: alexa tags: trunk
2023-11-02
09:47
Better value handling check-in: e235365fd6 user: alexa tags: trunk
2023-10-27
00:20
Fix newline handling when sanitizing logger output. check-in: 319b588739 user: alexa tags: trunk
00:20
Fix typo in RemiLib.sanitize. Add specs. check-in: ed8eb53b73 user: alexa tags: trunk
2023-10-26
23:42
Add Logger#noColors and Logger#sanitizeOutput. Add basic specs for Logger. check-in: 3d8be76692 user: alexa tags: trunk
23:40
Add RemiLib.sanitize check-in: 2993f45407 user: alexa tags: trunk
2023-10-15
07:32
Better docs generation check-in: 325123221d user: alexa tags: trunk
07:29
Add a TODO check-in: 2614be8ba3 user: alexa tags: trunk
04:34
Add IO#readBytes check-in: 91a330132d user: alexa tags: trunk
2023-10-12
09:54
Add some missing IO convenience extensions check-in: f0a4e6d54b user: alexa tags: trunk
2023-10-03
00:07
Fix #numLeadingZeros and #numLeadingOnes. Add some more tests. check-in: df94dce895 user: alexa tags: trunk
2023-10-01
11:45
This new needs an extra space check-in: 895adb03c3 user: alexa tags: trunk
11:43
Merge and integrate the strings-cleanup branch check-in: 94c11ed11f user: alexa tags: trunk
11:41
Add missing & check-in: 6e1e0630ca user: alexa tags: trunk
11:40
Add the removeQuotes parameter to RemiLib.splitAsArgs. Add tests for this function. Closed-Leaf check-in: 7413c43d46 user: alexa tags: strings-cleanup
11:34
Minor incompatible change: Fix edge cases in RemiLib.buildWrapped. check-in: f7f729c115 user: alexa tags: strings-cleanup
10:55
Minor cleanups to strings.cr (mainly comments, also some type annotations) check-in: 99b1e4ee9e user: alexa tags: strings-cleanup
2023-09-30
22:06
Remove some of the type arguments and adjust the comments to accurately explain the intention.

Also add some missing methods. check-in: edc81b7c65 user: alexa tags: trunk

22:03
Fix some return values check-in: 9b1631392a user: alexa tags: trunk
21:59
Whoops, fix a typo check-in: 6fc6bfae80 user: alexa tags: trunk
21:58
Add a bunch of type information to the argument parsing code.

Doesn't really change anything except make intentions clearer. check-in: bc3e5cb279 user: alexa tags: trunk

2023-08-22
06:00
Bump revision, tag as v0.11.2 check-in: 21ad78004a user: alexa tags: trunk, v0.11.2
2023-08-01
05:30
Whoops, forgot to rename some variables check-in: b27d8c291c user: alexa tags: trunk
05:04
Fix copyright check-in: 24507d4151 user: alexa tags: trunk
05:03
Fix the JobPool running too many tasks at once.

This was caused due to a Job completing its task before sending a
message through the channel that it was finished. But the channel's
capacity was what the code was originally using to limit the number of
jobs. This resulted in JobPool doing all the work as quickly as
possible (and ignoring @workers), but then having each Job to line up
to say "I'm finished". check-in: 13f8ec772a user: alexa tags: trunk

2023-07-24
09:00
Revert change check-in: 6a41b84c55 user: alexa tags: trunk
08:55
Ensure that the number of running jobs is actually <= the workers check-in: f73d89d646 user: alexa tags: trunk
08:55
Improve a comment check-in: 4c321fe257 user: alexa tags: trunk
2023-07-21
06:51
Inline some more check-in: f1d5b0cdfd user: alexa tags: trunk
05:50
Ease type restriction on size parameter check-in: d80c7300a8 user: alexa tags: trunk
05:46
Typo check-in: d2d3452a1f user: alexa tags: trunk
05:38
Fix writing to MmappedFiles.

This was due to my misunderstanding of mmap()'s interaction with the
file descriptor. check-in: 60e80246e3 user: alexa tags: trunk

2023-07-20
07:36
Fix MmappedFile#pos= check-in: a063fbe278 user: alexa tags: trunk
2023-07-18
07:20
Bump revision, tag as v0.11.1 check-in: d11b05328e user: alexa tags: trunk, v0.11.1
07:17
When creating an MmappedFile for writing, if the file already exists
and a different size is requested, delete the file and recreate it.

Also add File.createEmpty method. check-in: 9ecc819e85 user: alexa tags: trunk

06:11
Fix MmappedFile#writeInt24 check-in: d29341edad user: alexa tags: trunk
04:59
A few more position fixes (off by one) check-in: d98025ce86 user: alexa tags: trunk
04:55
Fix position checking check-in: 681b30fcfe user: alexa tags: trunk
04:40
Clarify some documentation strings. Fix a method name. check-in: 9bf2146c0f user: alexa tags: trunk
04:38
Add missing writeInt8 methods check-in: 0cc5e7a7fe user: alexa tags: trunk
03:18
add MmappedFile#open? method. check-in: a99459eb5e user: alexa tags: trunk
2023-07-17
05:13
Update readme, bump version. Tag as v0.11.0 check-in: d52d513ca4 user: alexa tags: trunk, v0.11.0
05:01
Fix missing handling of littleEndian? parameter in writeUInt24 check-in: 471b5714ad user: alexa tags: trunk
04:58
MmappedFile should not be available on non-Unix platforms. check-in: d9703b07e7 user: alexa tags: trunk
04:49
Improve MmappedFile with write support, and better define exactly what
the class is supposed to do.
check-in: 8eb094002a user: alexa tags: trunk
03:29
Fix example check-in: ec690d0002 user: alexa tags: trunk