Hacker Newsnew | past | comments | ask | show | jobs | submit | hadem's commentslogin

This is just pathetic. He’s acting like a jealous high school boyfriend.


Thank you for sending me down the rabbit hole of automating my RDWC system :-) Seriously, it's the blending of many hobbies into one! I've been eyeing the Atlas Scientific Whitebox T1 now as it seems to allow me to start small, learn, and add new sensors/probes.


No problem, glad it was useful for someone. It really is so many different hobbies and sciences all wrapped into one, it's easy to get entralled. Even getting a system like RDWC which is what I run too, airtight is an adventure. All of the atlas gear is great from a DIY and budget perspective, you'll end up with professional grade feedback about your environment.


I really wanted to like this website but I find the lack of password and magic links a very annoying way to authenticate to the website. I also imagine the magic link would confuse many users who are used to a traditional login form with email address and password.

I admit, this site caught my attention but I refuse to have to check my email, for a link that doesn't resolve behind my firewall, just to authenticate to the site (every single time).

Honestly, Goodreads without an account is more useful than this site with an account. At least I can search and read reviews on Goodreads without an account.


To clarify on the magic link, you only have to do that the first time. The authentication in the backend remembers you when you go back to the site, automatically logging you in. Ideally you'll only have to check your email once.


This is assuming you're always on the same device, don't clear cookies, don't use multiple browsers/profiles, don't mask your browsing in other ways, don't use rotating/temporary emails, etc. I logged in three times today and needed a magic link each time. My password manager would have autocompleted correctly in any of those situations... were there a password field to use.

I've gone weeks not logging into services like Slack before just to avoid dealing with trying to get into associated email accounts. Magic links are one of my least favorite "convenience" paradigms to emerge over the past couple years: they're less efficient, less secure, and more annoying/confusing friction for many users, and reinforce a reliance on email at a time when many people are trying to wean off it.

Best of luck with the rest of the site though!


You too found The Flashbulb via what.cd? Soundtrack to a Vacant Life is an incredible album.


Yes I sure did. That album may have been a vanity house "staff pick" too, I don't recall. Pink and What felt like magical places... Terra Firma, what a massive tune. https://youtu.be/HwbVnFR-XP4


I also found Flashbulb via what.cd vanity. Good stuff


My first two guesses are usually AUDIO and RENTS if it helps ¯\_(ツ)_/¯


I use WEIRD, my completely untested and I researched intuition being that knowing common consonants are in a word isn’t helpful unless you get the right place, but knowing the vowels is. At least that was my logic when I first played and my brain produced WEIRD.

I’m sure it’s far from optimal, but I continue to use it because I obviously understand how I came to choose it, and it “works” and survivor bias is powerful :)

I recall seeing HN posts from people working out “optimal” starting words and guess patterns, but I just like mine :)


I use ADIEU to get 4 wovels, likely the same reason you picked AUDIO.


SLATE/ROUND/PICKY has been a 8/8 for getting the correct word on the 4th guess since I started using it.


Is this why I can't get last place? :-)

I wanted to see how many "levels" there were so I started to click the button repeatedly just to end the game. Then I noticed the "you did better than X%" message. I can't get first but can I get last!?

Even using keyboard events, it still says I'm better than 1%. Either someone is still...more wrong/faster...or 1% is the lowest it can go? Haha!


maybe they're going over more than you're staying under.


Are you sure...? I've been using Firefox as my default browser on iOS for awhile now.


It's Safari (WkWebView) dressed up as Firefox. That's all Apple lets them do.


As in Firefox is not rendering content with Gecko, it's rendering via WebKit?


Yes. You aren't allowed alternate browser engines on iOS. Every browser in the App Store is Safari wrapped in different skins.


My understanding is it's not going to prevent transmission but it can help in reducing transmissions, thus reducing infections.


> I don't know of a quick vim command that lets me quickly select, delete, replace, yank, or change the full contents of a scope in a whitespace-sensitive language.

I'm sure there are better ways, but you could v9G$ to select from the current line to the end of line nine. Or v9j select the next nine lines, v9k previous nine, etc.


But compare the ergonomics of:

  1. yi{
To:

  1. Find line number of start of scope.
  2. Decide on easiest way to get there, and either:
     - kk
     - 5k
     - 37G
  3. Find the end of the scope. 
  4. Decide how to grab it. Then:
     - y9G$
     - y3j
     - V, jjj, y

I hope maybe I've made my case that it's more awkward, right? That is not to say that I don't know how to do it. It's just that, in the one case, I can do the job in one thoughtless action that lives so deeply in my muscle memory that I barely even consciously remember what the actual keystrokes involved are. By contrast, in the other, it takes several steps, some of which are likely to be small pauses to decide how to do the next step.


You're both just making the case that you shouldn't use vim to write code.

More modern editors (e.g. VS Code) and modern IDE's (e.g. IDEA, CLion, Visual Studio) make either indenting absolutely trivial.


I think you may have misunderstood?

My main editor is IDEA, followed by vscode and emacs. But all three are set to vim mode. Vim itself has actually never been my primary editor; I generally only use it when I'm sshed into servers.

The thing that vim mode gets me is twofold: It (mostly) unifies the editing interface among all of those editors, and it allows me to edit code more quickly.

The thing I was talking about above is not indenting - my autoformatter does that for me. The thing I was talking about is (a sort of hacky version of) syntactically aware editing that allows me to quickly do large-scale operations without having to explicitly fiddle with the cursor.


I think that by installing vim on all your editors, you are missing out on a lot of productivity.

You are basically giving precedence to text edition over code edition. When you use an IDE, you are editing code, not text, and that IDE's key bindings are optimized for that purpose.

I suggest you take the time to learn native key bindings to whatever tool you picked and see where that gets you, you'll be surprised after a few weeks.


You took the words right out of my mouth. I'm in the exact same boat. I use more than one editor but I always install the vim plugin. It provides an instant speed boost to using that editor efficiently and quickly. We don't switch editors _that_ often, but at the same time, remember trying to remember keyboard shortcuts for TextMate, then Sublime Text, the VSCode, then IDEA, etc.? With the vim plugins, editing text is now the same across all editors.


I'd you're using Neovim, you can also make use of Tree-Sitter to navigate across the parsed syntax tree. There are many plugins to do that, e.g.

https://github.com/nvim-treesitter/nvim-treesitter-textobjec...

or

https://github.com/David-Kunz/treesitter-unit

(The latter is created by me)


Or you could use Neovim with Treesitter for selections that use the language grammars.

https://github.com/nvim-treesitter/nvim-treesitter#increment...


Unless you are a beginner, the "decide on easiest way to get there" shouldn't exist. It should be muscle memory.


Like others have mentioned, I'm not a fan of the subscription model either. After watching the demo video and reading through your site, I instantly went to download the app in the app store, only to be disappointed in, yet another subscription.

I'd gladly pay for the software and repurchase at major releases (if I wanted to upgrade)! I'm not looking for more subscriptions though. Give it a thought. I'd like to be one of the paying customers :-)


Thanks for your feedback! At what price would you consider the app for a one time purchase?


This probably sounds odd, but I'd be happy with the subscription's yearly price, or even a little more. It's not the price that bothers me, it's the subscription aspect to me.

The application is sold as, "with data longevity in mind", but the subscription model makes me feel like that is only the case while I pay for a subscription. From what I read in some of your other comments, that may not be the case, but it's still a worry. What if I can't access my notes/data in the future unless I have an active subscription?


Thanks again for your input! Yes, the app remains fully functional forever, with the limitation being that you cannot add new notes. Sounds like I need to make this more clear in the docs.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: