Viewing profile — igemnace
igemnace
HN member- Joined
- Sat, Jun 17, 2017, 6:24 AM UTC
- HN karma
- 27
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About igemnace
Socials: - github.com/igemnace
Interests: Books, Fitness, Gaming, Hacking, Healthcare, Networking, Mentorship, Open Source, Philosophy, Privacy, Science, Programming, Technology, Web Development
---
Recent public activity
-
comment
Comment #36420555
I like this video from minutephysics to get an intuitive sense for it: https://www.youtube.com/watch?v=tmNXKqeUtJM It addresses a different question (Why is the Solar System Flat?)…
-
comment
Comment #33906311
As I understand it, Vivaldi is Chromium, with a custom chrome UI rendered as a React app run similarly to an extension, but more privileged. The source they publish there are the c…
-
comment
Comment #33906284
A lot of features Vivaldi has are definitely "nice-to-have" level, especially stuff they seemingly put in for fun like Philips Hue integration. But there are some very functional s…
-
comment
Comment #31696348
I use both. I mainly still keep mutt for encryption and signing. For general, day-to-day use, I prefer aerc because I grok its configuration more -- I believe one of its key advant…
-
comment
Comment #31051947
Just because you use async/await doesn't mean you can't use Promise.all. In fact, my immediate intuition with the await examples was to parallelize with Promise.all. await Promise.…
-
comment
Comment #30940766
I actually address that directly in the blog post. I do use Markdown and Pandoc. But going extremely lean on the HTML, editing the documents directly is pretty refreshing. I'd go s…
-
comment
Comment #30937992
https://ig.emnace.org I write my pages as plain HTML documents. Pretty refreshing! I have a blog post detailing the rationale: https://ig.emnace.org/articles/simplicity-of-web-page…
-
comment
Comment #15429954
It's not a find replacement at all, even! fzf just actually calls find by default, so a naked call to fzf will actually give you the same results as find | fzf. Search specifically…
-
comment
Comment #15272934
`const` doesn't mean immutable data. It means immutable variables, i.e. you can't reassign to `const` variables. You can mutate the data regardless (push to an array, add a new key…