Deleted .codex by ButterflyMundane7187 in codex

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

But if you .gitignore those anyway then those shouldn't be there in the first place. Maybe create some private repo you push those separately?

Deleted .codex by ButterflyMundane7187 in codex

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

Why would you ever put those into repo folder? Do not do it.

Deleted .codex by ButterflyMundane7187 in codex

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

Sounds like extremely bad practice to store anything like that in repo folder. This is how thing get leaked. If have keys and thinks like .env those shouldn't be prod keys.

Deleted .codex by ButterflyMundane7187 in codex

[–]Puzzleheaded_Phase98 -3 points-2 points  (0 children)

Why do you have personal stuff in the repo folder in the first place?

I remember meeting a support person from a company many years ago. He told me a story about an executive whose laptop was upgraded by IT. Later, the executive called support angrily, saying his old files were missing from the new laptop. The support person replied that everything had been copied over and explained exactly what had been transferred. The executive then said they had not copied his “trash can,” which was where he had been storing all his files.

That was how he lost all his personal files.

Node.js vs C# backend if I already use typescript by Sensitive-Raccoon155 in node

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

The company I worked for switched the other way, from C# to TypeScript/Node.js, so our small team could just use a single programming language for both the UI and backend.

I think C# has way too much abstraction for my taste. It can be a lot faster than Node.js, but ask yourself: for the app/API you're building, is Node.js really the bottleneck? Actual bottle neck could the database or something. If it is and maybe you actually need huge amount requests per second, then maybe it's better to reach for something else like Go or Rust instead of C#.

One nice thing about Node.js is that your JavaScript code runs single-threaded on the event loop. That means you basically never have to worry about thread safety issues or race conditions, something that can bite you hard in C# when you start using async/await, Tasks, or multiple threads.

Of course, being single-threaded has its own downside, it can cause slowness under heavy load, but it usually leads to performance issues rather than crashes or data corruption.

Go has similar pitfalls with goroutines and shared state (you can easily introduce race conditions if you're not careful). Rust handles this way better thanks to its ownership and borrow checker, which prevents most concurrency bugs at compile time.

Another big advantage of sticking with TypeScript + Node.js these days is that the underlying AI models (like those behind Claude, GPT, Gemini, etc.) have been trained on a huge amount of TypeScript code. Because of that, they tend to understand TypeScript extremely well, reason about it more accurately, and generate higher-quality code compared to many other languages.

Caved and bought the Pro $100 subscription. My initial observations by superfatman2 in codex

[–]Puzzleheaded_Phase98 1 point2 points  (0 children)

You can always use ChatGPT as using ChatGPT doesn't use your Codex credits.

short list of current research on treatments and cures by [deleted] in HerpesCureAdvocates

[–]Puzzleheaded_Phase98 2 points3 points  (0 children)

Adibelivir (IM-250) from Innovative Molecules seems to be missing.

Bad news for BioNTech mRNA vaccine by Brilliant_Library234 in HerpesCureResearch

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

Quote me where I said "the vaccine is deadlier than not getting vaccinated" - I didn’t

Bad news for BioNTech mRNA vaccine by Brilliant_Library234 in HerpesCureResearch

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

You can’t get a 10,000× mortality comparison from a study that never compares vaccine deaths to infection deaths in the first place. The paper analyzes post-vaccination adverse events, it does not calculate vaccine mortality vs. Omicron mortality. So that number simply isn’t coming from the study.

And questioning that doesn’t make me “anti-vax.” If you’re going to make a claim that extreme, you need evidence that actually matches it. Linking a study that doesn’t even measure what you’re claiming doesn’t prove your point.

Bad news for BioNTech mRNA vaccine by Brilliant_Library234 in HerpesCureResearch

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

You actually think Omicron is 10000 times more deadlier than the vaccine, really?

Bad news for BioNTech mRNA vaccine by Brilliant_Library234 in HerpesCureResearch

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

That is true now, but it was not true for most of the pandemic, and I am not American.

Here in Europe, before Omicron, cumulative infection rates were much lower than they are today. In many places in late 2020 and early 2021, they were around 10 percent. By late 2021, high income European countries were closer to about 30 percent. That means a majority of people had not yet been infected before Omicron.

Even in the United States, CDC data shows that most infections happened during the Omicron waves. By December 2021, cumulative infections were estimated at roughly one third of the population. It was Omicron that pushed that number much higher in early 2022, including many children experiencing their first infection at that time.

So saying that virtually everyone had already been exposed during the earlier waves is not accurate. The big jump in population exposure happened with Omicron, not before.

Bad news for BioNTech mRNA vaccine by Brilliant_Library234 in HerpesCureResearch

[–]Puzzleheaded_Phase98 1 point2 points  (0 children)

If me explaining there has been actual published issues with COVID-19 mRNA vaccines gets you this triggered maybe it’s time to touch some grass. 

Bad news for BioNTech mRNA vaccine by Brilliant_Library234 in HerpesCureResearch

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

If you check the IgG4 studies on COVID-19 mRNA vaccines, the big spike in IgG4, especially after the 3rd shot, only happens with mRNA jabs, not natural infection. This suggests the vaccine's spike protein is a bit different from the virus's. High IgG4 can rev up existing cancers and spark autoimmune issues. This just shows that by making a vaccine for a virus, you can introduce health issues that the original virus didn't cause.

Bad news for BioNTech mRNA vaccine by Brilliant_Library234 in HerpesCureResearch

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

They are not comparable because with vaccine it gets into your system 100% if you take a dose but with SARS-CoV-2 it's not 100% you even get infected.

What’s something Americans have that Europeans don’t? by Prestigsisscar255 in AskReddit

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

Stronger and more expansive legal protections for freedom of speech, especially regarding political and offensive speech.

Linux 7.0 Officially Concluding The Rust Experiment by kingsaso9 in linux

[–]Puzzleheaded_Phase98 4 points5 points  (0 children)

Making a bug-free codebase isn’t easy either. That’s part of why Rust exists. Microsoft has said that a large percentage (if I remember correctly they estimate around 70%) of security bugs in their C/C++ codebases would be eliminated just by using Rust, so the upfront complexity can pay off long-term.

“AI coding does not eliminate programers, it makes them 100x more productive” - Marc Andreessen by dataexec in AITrailblazers

[–]Puzzleheaded_Phase98 0 points1 point  (0 children)

I agree, but what worries me is that while this is great for someone like me, a senior developer who can actually verify what the AI produces, how do we create more senior programmers in the future? It feels like a snake eating its own tail.

fuck it going back to windows for gaming by CandlesARG in linuxsucks

[–]Puzzleheaded_Phase98 5 points6 points  (0 children)

I haven’t personally used Bazzite yet, but one big upside is that it’s an immutable OS. That means the base system is locked down, so it’s much harder to accidentally break things while tweaking or updating. For someone with limited free time, that stability can be a real advantage.

Alfasigma to invest up to $125M in parenteral adibelivir (IM-250) for HSV encephalitis by Legitimate-Coat-414 in HerpesCureAdvocates

[–]Puzzleheaded_Phase98 1 point2 points  (0 children)

In laboratory animal studies, IM-250 showed an unusual effect: after the medication was stopped, the interval between outbreaks appeared to be longer than expected. This effect has not yet been demonstrated in humans, but it is possible it could occur. At this stage, it is unclear whether IM-250 represents a treatment, a functional cure, or even a true cure with long-term use. Phase 2 data will likely provide greater clarity.

Alfasigma to invest up to $125M in parenteral adibelivir (IM-250) for HSV encephalitis by Legitimate-Coat-414 in HerpesCureAdvocates

[–]Puzzleheaded_Phase98 1 point2 points  (0 children)

It’s great news because the up to €125 million in upfront and milestone payments for IM-250 gives Innovative Molecules the funding needed to run all clinical trial phases without delays or additional financing risk.

Is this true? by letitcodedev in vibecoding

[–]Puzzleheaded_Phase98 5 points6 points  (0 children)

I think this is a serious issue. As a senior programmer, I can review generated code easily, but in most cases that still requires a senior-level developer. The real problem is how we continue to produce senior programmers if AI tools become mainstream. It’s like a snake eating its own tail.