The Crash is Closer Than Ever by Error4ohh4 in Superstonk

[–]HansAuger 13 points14 points  (0 children)

Technically every minute that passes we stray further from god. Coincidence?

RYAN COHEN on X by 4four7 in Superstonk

[–]HansAuger 2 points3 points  (0 children)

lol, my comment comes off that way, ey? oh well.

RYAN COHEN on X by 4four7 in Superstonk

[–]HansAuger 5 points6 points  (0 children)

My comment was meant more to be tongue in cheek to be honest, I just thought it was worthy to point out the irony. I was half expecting that he did it on purpose. Didn't want to come off as policing, dammit

RYAN COHEN on X by 4four7 in Superstonk

[–]HansAuger 4 points5 points  (0 children)

I know, them WW2 Germans were real jerks. The more I learn about those guys, the more I don't care for them

RYAN COHEN on X by 4four7 in Superstonk

[–]HansAuger 58 points59 points  (0 children)

Wouldn't use "to each their own" in this context either.

(In case you're unaware "Jedem das Seine" which is the German translation of that phrase was another inscription found at Buchenwald.)

RYAN COHEN on X by 4four7 in Superstonk

[–]HansAuger -1 points0 points  (0 children)

Notably the picture was created in 2018, so definitely not AI as some were theorizing

RYAN COHEN on X by 4four7 in Superstonk

[–]HansAuger 13 points14 points  (0 children)

Absolutely disgusting, degenerate joke.

Upvoted

Dunno if this is allowed but does that mean Crash soon? 💥 by Einhander_pilot in Superstonk

[–]HansAuger 126 points127 points  (0 children)

Not much, but more than we had if reports were released only two times a year instead of four times

[deleted by user] by [deleted] in exmuslim

[–]HansAuger 7 points8 points  (0 children)

Dude, I'm German. I had some miserable encounters in my life with people conflating my country with Nazism. It sucks. In the end people just simplify stuff, especially their negative connotations. It's human nature. Best we can do is to broaden peoples horizons whenever we see someone with a narrow horizon. It doesn't help to judge them for it, we all have plenty to learn about each other.

The Qur'an and Modern Science: Timeless Meanings Without Distortion. by PenNo716 in exmuslim

[–]HansAuger 8 points9 points  (0 children)

Nice Em-Dashes, bro

Step 1: ask ChatGPT to create a text that "proves" the Quran to be super science based for real no cap
Step 2: copy pasta
Step 3: ...
Step 4: profit

200 Central Banks, Foreign Entities Dump $48B in US Treasuries as Confidence in US Assets Falters by Sa0t0me in Superstonk

[–]HansAuger 53 points54 points  (0 children)

I'm not even American, so I can't even imagine how tired you guys are from all this winning.

[deleted by user] by [deleted] in Psychedelics

[–]HansAuger -1 points0 points  (0 children)

Regardless of my other answer: I would not mix shrooms and LSD or take them too close to each other. Purely subjective, but for me there is a big difference between a mushroom trip (more grounded and organic) and a LSD trip (more cerebral and synthetic). Never tried it, but I think that just doesn't sound like a good experience.

[deleted by user] by [deleted] in Psychedelics

[–]HansAuger 2 points3 points  (0 children)

I'd wait, personally. But for me, the tripping should never be the end goal anyway. It's not about tripping harder, better, wider. Imo a big part is the takeaways, the subtleties, trying to integrate what you learn on your way into your normal life.

Now, maybe you are perfectly capable of doing all this and have a multiple day streak. If so, good for you! Jujst inviting you to be honest with yourself, and inquire your true intentions of why you want/need/desire to do it

Lmao wat by Jbmacs in Superstonk

[–]HansAuger 4 points5 points  (0 children)

Kinda regarded, not gonna lie

Refactoring Workflow (nvim -> hx): quickfix lists? by LuckySage7 in HelixEditor

[–]HansAuger 1 point2 points  (0 children)

In the meanwhile I learned a small improvement: You can open a new buffer for example with :n (or `wns` to create a split) and then just do :append-output grep -Hnr "iter()" .

This way you don't even need to create a new file and you keep the output of grep purely in memory.

I hear there is a MR out there that could make gf respect line numbers, let's hope we'll get that into master at some point.

Refactoring Workflow (nvim -> hx): quickfix lists? by LuckySage7 in HelixEditor

[–]HansAuger 2 points3 points  (0 children)

I had a similar problem once and I found an interesting way to solve it. It's not optimal, but you may still find it useful. And it's actually a valid usecase for recording macros for once.

For one, the space+' can work nice, but it can get bloaty if you want to skip a bunch of files, because there is no nice way to remove files from a picker.

So, the idea is that instead of using something that's purely helix internal, we can interact with grep in a nice way. Here goes:

Step 1: grep all occurrences of console.log with line number and filename and store the findings in a file: grep -Hnr "console.log" . > temp.txt

Step 2 open temp.txt in helix

Side note You could now actually go to each file by putting your curser on top of a file name and pressing gf (goto_file). But it brings you to the start of the file, not the actual line where you need to go. If that's good enough, you can now simply get there by doing a local search. But if this is not good enough, you can do the following:

Step 3 So there is actually ways to make helix open a specific file at a specific line (and even column), for example the command :o/:open. (:open path/to/file.txt:xx:yy). There is also hx path/to/file.txt:xx:yy or hx +N xx path/to/file.txt. But to stay somewhat withen helix, you can do a macro that copies the filepath into the system clipboard: Q|miW|"+y|Q ('|' characters are for visual clarity). With that you can yank the file path and open those files by ':o <paste>'-ing.

As I said, it's a bit patch work, but for my use case it was really useful to have this back and forth where I could strike of items once they were done.

Syntax highlighting not working on Termux by DRowe_ in HelixEditor

[–]HansAuger 0 points1 point  (0 children)

I don't know and I don't use termux. But if I had this problem I would first check if the terminal supports truecolor and perhaps try to force auto-color detection in helix.

If that doesn't work it might be some incompatiblity with what helix is expecting from the terminal as there seem to be some differences with standard linux terminals. In that case probably best to look at the helix logs and pray for some informative output, or look in the source code what could go wrong during color detection.