Earlier quoted context omitted.
Many products would have been better off by declaring them as feature complete and only continuing fixing bugs. Unfortunately, this happens rarely due to misalignment with employment incentives I believe.
This is the reason I believe there should be a framework/mechanism for dying companies to open source their works. this way they can continue to live on forever or at least have a way to influence something better.
Ask HN: What Happened to Evernote?
151–160 of 282 posts
Re: Ask HN: What Happened to Evernote?
#152Re: Ask HN: What Happened to Evernote?
#153Re: Ask HN: What Happened to Evernote?
#154https://help.evernote.com/hc/en-us/articles/360052560314-Ins... (Windows/Mac)
I've archived this install package in case the URL dies.
Edit: This is version 7.14.1
Re: Ask HN: What Happened to Evernote?
#155Maybe this is just me getting old, but I feel like Evernote has only gotten worse since I started using it over 10 years ago. Back then it was just a list of notes with some formatting and sync capabilities - perfect. These days they have added all these extra features which I don't need, and which have made the whole app slow and terribly clunky. When I use the iPad app it takes several seconds to load notes or sear…
Syncthing and your favorite text editor has been great for me. Setup is fairly easy and you depend on no offical service other than people hosting a relay server which you could also host. A little more setup and DIY, but at least the experience will remain the same for a long time.
Re: Ask HN: What Happened to Evernote?
#156Earlier quoted context omitted.
Obsidian. It's markdown based, so simple at the base, but you can go wild with plugins ( including latex, graph visualisations, dynamic queries across notes, etc.), and it supports metadata, tags, etc. if you want to. You can sync with anything supporting text files ( Git, Dropbox, Google Drive, etc) or pay a bit for their ens to end encrypted service that works great.
Another vote for Obsidian here. Its the first 'note taking' system I actually _use_ (even evernote wasn't as frictionless for me). Not an issue for me, but others might be concerned about its (lack of??) mobile support. I do all my work on desktops and sync thru git, so its not been a problem for me.
Re: Ask HN: What Happened to Evernote?
#157Earlier quoted context omitted.
Obsidian. It's markdown based, so simple at the base, but you can go wild with plugins ( including latex, graph visualisations, dynamic queries across notes, etc.), and it supports metadata, tags, etc. if you want to. You can sync with anything supporting text files ( Git, Dropbox, Google Drive, etc) or pay a bit for their ens to end encrypted service that works great.
Another vote for Obsidian here. Its the first 'note taking' system I actually _use_ (even evernote wasn't as frictionless for me). Not an issue for me, but others might be concerned about its (lack of??) mobile support. I do all my work on desktops and sync thru git, so its not been a problem for me.
Re: Ask HN: What Happened to Evernote?
#158Earlier quoted context omitted.
I wouldn't mind using it but their license keeps me away.
What is it about their license that bothers you? It seems pretty fair to me... Free for personal use, pay for commercial, unless you are a nonprofit or a single employee company. Did I miss something? (I assume you mean EULA: https://obsidian.md/eula )
This Agreement shall be governed by the laws of the Province of Ontario and the laws of Canada applicable in that Province. Any action or proceeding arising from or relating to this Agreement may only be brought in the courts located in Kitchener, Ontario and each party irrevocably submits to such exclusive jurisdiction and venue.
Re: Ask HN: What Happened to Evernote?
#159Maybe this is just me getting old, but I feel like Evernote has only gotten worse since I started using it over 10 years ago. Back then it was just a list of notes with some formatting and sync capabilities - perfect. These days they have added all these extra features which I don't need, and which have made the whole app slow and terribly clunky. When I use the iPad app it takes several seconds to load notes or sear…
Evernote has only gotten worse since I started using it over 10 years ago That is the modern business model. First you build something so good it becomes indespensible then you squeeze money out of it until your customers hate you just enough to not stop using you.
Re: Ask HN: What Happened to Evernote?
#160Earlier quoted context omitted.
Notion
I find it telling that notion managed to break the core web concept of the hyperlink by implementing their own version of the tag. If I middle-click on a link to open it in a new tab, I paste-insert my clipboard content _into the link text_ instead (I'm on Linux). That's just horrible.
It's actually the browser's default behavior to do what you're describing! Inside a `contenteditable` element, links no longer behave as links -- they aren't clickable, and hovering over the link doesn't show a preview of the HREF attribute in the browsers I've tested. So in order for links to do link things, we have to fight the browser and re-implement these behaviors.
Here's a codesandbox with no JS to demonstate this: https://codesandbox.io/embed/optimistic-resonance-jbyeef?fon...
I created a task to track this bug internally. I think we can probably solve by calling preventDefault for the middle-click event if it bubbles up from inside a link.