I'm concerned about the HTTP requests that fire off every time I navigate to a new page. E.g. navigating to my "Thursday 10th Jan 2019" note triggers [1]. It even includes a cookie in the request. Not completely private, it would seem, as you're very clearly collecting metadata about my app usage habits, even though it's not strictly required for the app to function properly. [1]: POST https://trys-tiny-tracking.now.…
Fair point, this is the beginnings of a basic hit counter that I'm working on. As there's no server (it's CDN hosted on Netlify), there's no way to see if anyone's even using the site. It's waaaaay less intrusive that GA, or other tracking tools. It's simply picking up page views - ignoring IP and any identifiable information (cookies obvs. included). It also respects do not tracking indicators in your browser. Tiny…
Show HN: JournalBook – Privacy centric, offline first, personal journal app
61–70 of 114 posts
Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#62A real journaling app, for the hackernews crowd, must have syncing between any kind of device (imo), including the terminal. My solution is just nextcloud syncing text files, though that may be overkill. Anyone have a good or even elegant solution for web/phone/terminal text file syncing?
Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#63From time to time I try these fancy journaling apps. A few weeks later I have to go through the hassle of converting the data to my good old plain text file journaling format.
There are some journaling apps that target this mindset. This one[1] was posted a few days ago (in comments) and stores your notes as markdown in plain text. There are others (I am working on one as well, but its not ready). If the app forced a particular naming convention (e.g. 2018-05-10.md) would that be too restrictive? [1]: ( https://github.com/fabiospampinato/notable ).
Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#64Disclaimer: I'm building one based on a API/SDK architecture. https://github.com/wallix/datapeps-sdk-js
Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#65Is there something "bad" about journaling in a text editor and syncing that to dropbox?
For a while now I've been using pieces of paper which I file in numerus currens style and keep inside shoeboxes. Many tend to be thicker "fiche de la police"-type cardboard so the whole thing stays up even if there are also many loose folded-in-half A4 sheets. OTOH I've almost lost notes in the laundry and still rescued them with the hair dryer.
It's also hard to represent equations and diagrams in most note-takers. Interfaces, as the etymology suggests, really get in your way! The one drawback is to find oneself occasionally without paper. But again in a pinch even business cards and receipts (you can photocopy the termal paper at home later) are possible hacks.
(Numerus currens is like paper nosql: when you file a new note, first you quickly browse through your archives for similar topics, otherwise you number it max_N+1. If there's something similar with number 110, you might number 110/A, 110/B, 110/C; if something that belongs with 110/B comes, it's filed as 110/B/1... but you can never shake the whole thing out and lose the order, so I wouldn't recommend this system to people with large dogs or small children.)
Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#66Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#67Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#68Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#69this does not work in firefox .... really works only in chrome
Re: Show HN: JournalBook – Privacy centric, offline first, personal journal app
#70Here is my privacy centric, offline first, personal journal bash script EDITOR=vim journal() { mkdir -p ~/journal/`date +%Y` $EDITOR ~/journal/`date +%Y`/`date +%m-%d` } alias j=journal
It has gone through multiple forms, once where i created a new file everyday, and it wasnt automated much. One day I realized I could be even MORE lazy and started automating a bit. Now i have one file, with a heading for each day. I have the vim command saved as an alias now 'journal'. It opens up the file, moves to the end, and enters insert mode :p
alias journal='vim "+normal Go" +startinsert /worklog/start_20160426'