Last year, we spent 51 days at sea during the passage from Japan to Canada, it was the hardest thing we had ever done. We kept a physical logbook of daily happenings onboard. This is that logbook, revised, and with a ton of extra notes.
@neauoire I read the previous one on your website start to finish. I may just end up reading this as well. 👍
@samebchase It's a bit more polished, and every day/chapter has new images, we added all the recipes we cooked on the trip too.
@neauoire awesome, will check it out!
@samebchase Lemme know which version you try, epub/mobi/pdf and how well it renders for you. We've only done limited testing :)
@neauoire Hey, cool -- I've been publishing ebooks for years, but I've always used Calibre. What are you using directly in the command line?
@mdm pandoc :)
taking a moment to muse about markup compilers
@neauoire @mdm i have been recently poking around with Racket’s Scribble but as a port to Janet†, and previously looked in to texinfo’s markup. I also encountered halibut and booklit by accident https://booklit.page/ which seem to follow similar ideas††.
The generic \command{par}{ameter} markup seems to get an extreme amount of mileage for very little parsing requirement since everything is the same grammar. Plus it ships with the advantage that patching new typography is easy since you can just add \mycustomdate{1B302} in
†Janet is a small, embeddable Lisp derivative in C. ††this is not an endorsement of those tools, but primarily the generic \foo{..} syntax and the spirit those tools work with.
taking a moment to muse about markup compilers
@icedquinn @mdm we had used it on the Reform manual, since we already had it installed I don't think we needed to look further.
re: taking a moment to muse about markup compilers
re: taking a moment to muse about markup compilers
@neauoire Very neat tool! I can see a use for pandoc in automatically converting the Word Doc submissions we get into a simple form of html that we can start working with.
I'll have to try and see how it works with our very customized html we use for textbooks (pandoc apparently supports a "subset" of html).
@neauoire May be this (from my blog) is of interest to you, regarding "The Go Programming Language" book typesetting.
https://rkrishnan.org/posts/2016-03-07-how-is-gopl-typeset.html
@neauoire how does the actual markup and styling work, is it CSS based? i have a few short stories lying around that i want to wrap up and bundle one day :>
@dom It is, have a look here to see how we put it together :) https://github.com/hundredrabbits/thebook
@neauoire so clean! really useful resource, thank you!
buying my copy any moment now, i'm thinking i'll read one entry per day to catch up in real time
@dom let us know if you have any question :D
@neauoire thanks for sharing this, both of you. :)
@neauoire Ish, why does itch.io ask for my address when trying to buy this? :/
@xiroux can I see what form you get? You shouldn't even need an account. Maybe we accidentally set a shipping address, lemme see..
@xiroux could you try now?
@neauoire Yay! It does not ask for it anymore. Thank you!
@neauoire I annot wait to have space to read this. I think I"m going to save it for just the right noment. It looks beautiful :)
@neauoire I'm looking forward to reading this in full! My dad is going to love it, too.
@hecanjog I hope you two like it :)
@neauoire Do you want typo reports, if we come across them?
@ajroach42 yes! The book is 200 pages long, I bet there's a ton.
Actually, even better, could you turn the fixes into PRs?
https://github.com/hundredrabbits/thebook/blob/main/north_pacific_logbook.md
@neauoire Can and will. Also, really looking forward to this. The idea of long distance sailing appeals to me in the abstract.
@ajroach42 Well, if you have any question on how to make this idea concrete, let us know :)
@neauoire We'll see how I feel after reading this.
@neauoire I'm excited to read this! I didn't read it previously when it was up on the web, and I've been looking forward to it since you posted a photo of it on a kindle.
I saw you were curious how the various versions render. I'll be using the mobi file with a 10th generation kindle. I'll let you know if I notice anything weird :)
@dstn we have the same setup so it should work pretty good :)
@neauoire just bought it, eager to read it! Merci :)
@kornifex enjoy :D
@neauoire I'm disappointed, there is not even DRM with this book. It doesn't look serious 😄
@zabow SORREY
@neauoire new drawings ? instant buy !
remembering when I was waking up in the middle of the night to catch the daily updates of the log 😋
@tbd the writing has been polished a bit, and all the recipes are explained. We tried to translate a lot of the japanese vocab that we used too :)
@tbd @rek you should play the 100R soundtrack in the background.
https://aliceffekt.bandcamp.com/album/hundred-rabbits
@neauoire Was this mostly written with left and images assembled using pandoc?
@dualhammers yeah! very good workflow. We also used Calibre to make the Kindle version. And ps2pdf to add the cover to the body of the book :)
@neauoire niiice! Yeah, linux seems to be the place to be as a writer. The tools for text are so good.
makes me wonder if I go the way I've been going with my notes if that will make an easy workflow down the line
@dualhammers What markup language do you use for your notes?
@neauoire Right now basic markdown, but I plan on uploading them in a way that they can also be viewed as plaintext instead of converting them
@dualhammers well, markdown is an excellent candidate to turning things into books :) The travel log was written entirely in mardown with a handful of latex blocks.
@dualhammers @neauoire that’s ironic, the whole point of markdown is to be viewable as plain text without conversion, do you feel like it fails at that goal?
@dualhammers @neauoire i don’t want to lend the concept of markdown any undue mystique. but it is one of the stated goals that any syntax should adhere as close as possible to existing informal formatting conventions used in email mailing lists, news groups. whether it, and its various extensions do succeed at this *should* be treated with some skepticism
Building and releasing epub/mobi/pdf through the command line is super fun. Unix really nails the assemblage of text files and formats, I first read about this in The Art Of Unix Programming, but I feel like the tools have probably gotten a lot better since.