<feed xmlns='http://www.w3.org/2005/Atom'>
<title>preproc/pipelinepreprocess, branch v0.1.0</title>
<subtitle>Miscellaneous OCR related utilities and packages</subtitle>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/'/>
<entry>
<title>Update usage string, and comments</title>
<updated>2019-08-22T09:40:57+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-22T09:40:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=a60577af86c64001773e31f1691bf4853efc4772'/>
<id>a60577af86c64001773e31f1691bf4853efc4772</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve timing of queue checks</title>
<updated>2019-08-22T09:27:53+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-22T09:23:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=24763c95d26535b093476b1c6b21dcbceb1ff55c'/>
<id>24763c95d26535b093476b1c6b21dcbceb1ff55c</id>
<content type='text'>
Now each queue is checked every 3 minutes, though the channel for each
queue check request won't be rechecked until any previous job is completed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now each queue is checked every 3 minutes, though the channel for each
queue check request won't be rechecked until any previous job is completed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix process finishing by closing dl channel</title>
<updated>2019-08-22T09:23:19+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-22T09:23:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=bdedc2ca1e6fbcbc06cd124f1729a341bc13afe8'/>
<id>bdedc2ca1e6fbcbc06cd124f1729a341bc13afe8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle errors properly with goroutines</title>
<updated>2019-08-20T16:22:32+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-20T16:21:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=7ba8858782bf0b2f998ccc15f91d839074df94fc'/>
<id>7ba8858782bf0b2f998ccc15f91d839074df94fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle errors correctly in main parts of program</title>
<updated>2019-08-20T15:52:34+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-20T15:52:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=45de180dec57496b965c04285659a5a199cea603'/>
<id>45de180dec57496b965c04285659a5a199cea603</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Substantially improve problematic object listing part of API</title>
<updated>2019-08-20T15:26:02+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-20T15:26:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=522e1481f5544362027b006d5fe34609f3d366bc'/>
<id>522e1481f5544362027b006d5fe34609f3d366bc</id>
<content type='text'>
Switch to regular non-concurrent stuff, concurrency is better handled
by the main program anyway. Now we handle errors properly, and things
are way simpler.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Switch to regular non-concurrent stuff, concurrency is better handled
by the main program anyway. Now we handle errors properly, and things
are way simpler.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add basic OCR support, and reorganise code</title>
<updated>2019-08-20T15:11:03+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-20T15:11:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=9f588a71e9a2d7ad179890d0fc19372fae047b04'/>
<id>9f588a71e9a2d7ad179890d0fc19372fae047b04</id>
<content type='text'>
The previously committed thing didn't work, as listobjects was sending
to a channel synchronously, so it was never being received.

The current API isn't great, mixing synchronous and non-synchronous things,
not handling errors consistently, and generally is over complicated. That
will be fixed soon.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The previously committed thing didn't work, as listobjects was sending
to a channel synchronously, so it was never being received.

The current API isn't great, mixing synchronous and non-synchronous things,
not handling errors consistently, and generally is over complicated. That
will be fixed soon.
</pre>
</div>
</content>
</entry>
<entry>
<title>Split aws implementation from main.go in pipelinepreprocess</title>
<updated>2019-08-20T09:25:29+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-20T09:25:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=bd8688f692bc8cf8836893bf42fdc46e8fb236bf'/>
<id>bd8688f692bc8cf8836893bf42fdc46e8fb236bf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Export qmsg type</title>
<updated>2019-08-20T09:17:54+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-20T09:17:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=075ea41484e745940021406e124a34a72b396e8e'/>
<id>075ea41484e745940021406e124a34a72b396e8e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix pipelinepreprocess segfaults</title>
<updated>2019-08-19T16:19:11+00:00</updated>
<author>
<name>Nick White</name>
<email>git@njw.name</email>
</author>
<published>2019-08-19T16:19:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rescribe.xyz/cgit/cgit.cgi/preproc/commit/?id=fa5868074ba517c07849ca4bc0b51199d120eb61'/>
<id>fa5868074ba517c07849ca4bc0b51199d120eb61</id>
<content type='text'>
These were caused by using non-pointer methods, which meant that the
values set in Init() were not saved.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These were caused by using non-pointer methods, which meant that the
values set in Init() were not saved.
</pre>
</div>
</content>
</entry>
</feed>
