Readit News logoReadit News
nigma1337 commented on Psychedelic Mushrooms Hit the Market in Oregon   nytimes.com/2023/10/23/us... · Posted by u/lxm
swalling · 2 years ago
What's missing from this article is that people are reaching for this because the standard medical treatment for these disorders, SSRIs, are pretty terrible. In the mild case, the common side effects are blunting of your emotions and sexual dysfunction. So you don't have panic attacks, but you live in a gray fog and your relationships suffer. In the worst case, they cause suicidal ideation. Psychedelics also have psychiatric risks that can be severe and unpredictable, but they don't require prolonged, daily dosages to be effective.
nigma1337 · 2 years ago
> In the mild case, the common side effects are blunting of your emotions

Isn't this the primary effect, more than a side effect? Atleast in my case, it's been super helpful, going from jumping between a 1 to 7 in mood, to just lie around 4-5-6.

nigma1337 commented on What every software developer must know about Unicode in 2023   tonsky.me/blog/unicode/... · Posted by u/mrzool
davidham · 2 years ago
Is it just me, or is anyone else seeing what looks like the mouse pointer of everyone else reading the page, like 1,000 little ants on the screen
nigma1337 · 2 years ago
Distracted me from reading the article, I just started chasing other people around.
nigma1337 commented on Ask HN: Any interesting books you have read lately?    · Posted by u/theycallhermax
nigma1337 · 2 years ago
Recently finished The DevOps Handbook[1].

Had a lot of nice insight into good ways of doing DevOps, and I found the examples from real companies incredibly helpful in understand how the concepts help in the real world.

nigma1337 commented on Build your own Docker with Linux namespaces, cgroups, and chroot   akashrajpurohit.com/blog/... · Posted by u/ghostfoxgod
diego_sandoval · 2 years ago
The fact that containers are such a simple technology always makes me think this:

Why is it still necessary to have whole, full-blown OS filesystems inside of our containers, if their purpose is running a single binary?

Dependencies/dynamic libraries are decent reason, sure. But wouldn't it make more sense to do things "bottom-up"? i.e. starting from an empty filesystem, and then progressively adding the files that are absolutely necessary for the binary to work, instead of the "top-down" approach, which starts from a complete OS filesystem and then starts removing the things that are not needed?

nigma1337 · 2 years ago
Lots of examples without the entire OS as other comments mention, an example would be Googles distroless[0]

[0]: https://github.com/GoogleContainerTools/distroless

nigma1337 commented on XML is the future   bitecode.dev/p/hype-cycle... · Posted by u/tannhaeuser
gnulinux · 2 years ago
I've been working in the tech industry in the US for about 5 years. Ever since I knew myself I've been coding. From middle school to high school, given any problem, like Sudoku, or keeping up daily chores, my solution was Programming! Programming wasy homebase. Then I studied it in uni, thought I was kinda good at it, and loved it.

But when I started working in the industry, I realized that it's absolutely exhausting. Hype after hype, fad after fad, modern after modern, refactor after refactor. I have a workflow, I know how to build apps. Then one day director of Ops comes and completely and utterly changes the workflow. Ok fine, I'm young, will learn this. Month passes, it is now Terraform. Ok fine I'm young, will learn this. Now we're serverless. Ok fine, will learn. Now everything is container. Ok. Now everything microservice. K. Now turns out lambdas aren't good, so everything is ECS. OK will rewrite everything...

Look I'm not even complaining. But it feels like I'm stuck in a Franz Kafka novel. We just keep changing and changing the same things again and again because that's the new way to do. Big distraction. Destroys your workflow. Forget about all the util scripts you wrote last 6 months being useless.

I don't even know how I would do it. Maybe I would do this the same way if I had any power. But that doesn't change the fact that it's a bit ridiculous. Fun but tiring. Entertaining but exhausting. Cute but frustrating.

nigma1337 · 2 years ago
I have such a fear for this, that things i invest time/energy into today will be obsolete in half a year, and my time would be essentially "wasted".

As others say, learning the fundamentals will, and trying to get some more general skill out of every tech fad.

(although, full rewrite every 6 months is excessive imo)

nigma1337 commented on Ask HN: Side project of more than $2k monthly revenue? what's your project?    · Posted by u/max_
pimterry · 2 years ago
I run HTTP Toolkit (https://httptoolkit.com) which passed $2k a couple of years back. No longer a side project, as it's made enough money for me to work on it full time for a fair while now, but it certainly started that way, and it's still a one-man show (plus many wonderful open-source contributors).

I suspect that'll be a common theme in answers here though: if you have a side project making $2k a month, in most of the world that's enough for you to go full-time and try to take it further. If you can make $2k/month on something working only part-time, you can definitely make a lot more if you focus on it.

On your questions: HTTP Toolkit is a desktop app (plus a mobile app and other components for integrations) but it's an Electron app that effectively functions as a SaaS (with a freemium subscription model) that just happens to have a component that runs on your computer. And actually getting to $2k wasn't overnight at all - it took a couple of years of slow steady slog. A few inflection points that made a notable difference (releasing rewriting support & Android support particularly) but mostly it was a matter of "just keep pushing", trusting the trajectory would keep going, and steadily grinding upwards. It's great where it is now, but it's hard work - a solo business is not for the faint of heart!

nigma1337 · 2 years ago
I absolutely love how easy it was to capture requests through ADB with your tool, only solution i could find which just worked out of the box.
nigma1337 commented on Ask HN: Someone is proxy-mirroring my website, can I do anything?    · Posted by u/stanislavb
sagarpatil · 3 years ago
What’s the motivation for someone to proxy mirror a site?

Does copied content even rank in Google? How are they driving the traffic to it?

nigma1337 · 3 years ago
Motivation is money, the proxy site is serving their own ads.

According to OP, it ranks pretty well on bing.

nigma1337 commented on Hetzner continues its growth in the US with a new location   hetzner.com/news/12-22-cl... · Posted by u/matteocontrini
nigma1337 · 3 years ago
Does anyone have any experience running kubernetes on hetzner? We're currently using DOKS, but are strongly considering setting something up on bare metal servers, as digital ocean are rather expensive (compared to hetzner that is)
nigma1337 commented on AI found a bug in my code   joel.tools/codegen/... · Posted by u/crummy
lmarcos · 3 years ago
The Copilot I would like to use goes like this:

1. I write code

2. Copilot gives me good suggestions about potential improvements on my code

3. I asses the suggestions

4. Back to 1

nigma1337 · 3 years ago
I've been using SonarLint[0] for a while for this, as it not only finds code smells, but also if i do things in a weird way, like doing for(i=0;i>array.length-1;i++){console.log(arrray[i]} instead of just doing for(const element of array).

[0]: https://www.sonarsource.com/products/sonarlint/

u/nigma1337

KarmaCake day88December 9, 2021View Original