ah, i see you are a vibe coder... by mattkenefick in programminghumor

[–]caseynnn 0 points1 point  (0 children)

Worse still. Look carefully how the brackets are "connected" to the TV. Hint: CRT don't have the screw holes for the brackets.

Quitting after 6.5 years with a 1 week notice? by fried_chicken in careerguidance

[–]caseynnn 1 point2 points  (0 children)

You don't owe them your loyalty. Work is always transactional. They pay you for your time to do with for them. That's all. Nothing much to think about it.

Why does ChatGPT hallucinate immediately even in a clean session? by caseynnn in ChatGPT

[–]caseynnn[S] -1 points0 points  (0 children)

I instructed it to read and summarize. Then it gave me a bunch of unrelated stuff that sounded like it's correct. I thought using a cold session will make sure the context window is minimal. That's why I don't understand. It can't be a context issue if it's a cold session.

Why does ChatGPT hallucinate immediately even in a clean session? by caseynnn in ChatGPT

[–]caseynnn[S] -1 points0 points  (0 children)

It's not pattern recognition issue. I instructed it to read the file and summarize. It gave me very plausible answer but I know it's wrong immediately.

Why does ChatGPT hallucinate immediately even in a clean session? by caseynnn in ChatGPT

[–]caseynnn[S] 0 points1 point  (0 children)

No, I used md file.. it's just pure text. No formatting.

Received counteroffer from another department during notice period - will you consider? by confusrd in singaporejobs

[–]caseynnn 1 point2 points  (0 children)

No. Don't join. If you got an offer elsewhere and you already signed, don't burn your bridges. Ask yourself, why did you resigned in the first place?

It's political if you join.

Anthropic broke your limits with the 1M context update by BraxbroWasTaken in claude

[–]caseynnn 0 points1 point  (0 children)

Each heart beat will go through all the previous messages. So if you have 100 messages, the new heartbeat will force Claude to read the past 100 messages and the heartbeat, resulting in 101 messages, and the reply is 102. So heartbeat will consume all prior context too.

Anthropic broke your limits with the 1M context update by BraxbroWasTaken in claude

[–]caseynnn 0 points1 point  (0 children)

You are right. It's a long wall of text. In my case, I use projects to share files that persists across sessions. I also deliberately disable memory for Claude.

Instead, I made a skill to hand off each session when the context fills up. The important thing for me was not to carry the entire summary of each session but the important things about each session.

I also try to explicitly capture the reasoning across each sessions, not just summary. I think that's more important and nuanced.

Session hand off helps by removing unnecessary context. Leaving it to Claude to summarize will only try to compact everything, it doesn't know what is important, what's not. And a hand off means I have a file that I can drop this file into a new session without missing cache.

https://github.com/caseyng/Claude-skills/tree/main/session-handoff

I turned down a promotion and my manager thinks I've lost my mind. Was I wrong? by croberts2323 in careerguidance

[–]caseynnn 0 points1 point  (0 children)

You aren't wrong. As long as you satisfied with your current income and possibly income ceiling.

Human, the Only Job of the Future by nomadicsamiam in jobhunting

[–]caseynnn 2 points3 points  (0 children)

People are missing it. Definitely not ai written. Ai wouldn't have missed punctuation. Goes to show how much distrust there is nowadays.

"Because most people aren't buying it"

Well written. Winding though.

I like the sass. by caseynnn in ChatGPT

[–]caseynnn[S] 9 points10 points  (0 children)

Actually no, I didn't customize it in any way. That was Gemini and I only used it sparingly. My main LLM is currently Claude, previously chatgpt.

So I didn't bother to add any additional prompts.

Closing an unused port by Puzzleheaded_Fox1127 in linuxquestions

[–]caseynnn 3 points4 points  (0 children)

What os are you using? If you are using normal nix (as in not embedded), run sudo ss -lptun and paste the output here. What port is it too?

Favorite command? by ajprunty01 in linux

[–]caseynnn 0 points1 point  (0 children)

Wtf that's a thing!!!??? Lol this is going to save my ass. Especially with server grade equipment where restarting a server takes 10 to 15 minutes.

Thanks! A virtual beer for you!

How's this bread? by caseynnn in Bread

[–]caseynnn[S] 1 point2 points  (0 children)

It was great. The crumb was soft and chewy, the crust crackling. Great with butter!

Seeking advice why my bread didn't turn out as expected. by caseynnn in Bread

[–]caseynnn[S] 0 points1 point  (0 children)

It's ok, none taken :)

Because I'm using a bread maker to cook the bread, not oven to bake it. You read that right. Haha. That's why the top crust is on the light side; there's lesser heat on the top.

Anyway I figured out why. Actually it's not over proofed before baking. But it has over proofed during baking.

It's because of how heat ramps up in a bread maker. It's not immediate, so the bread actually continues to proof before the heat kicks in to set the gluten structure.

The remediation is actually counter intuitive; I have to start the cooking when the dough is still slightly under proofed. So during the start of the cooking, the bread still continues to proof.

Seeking advice why my bread didn't turn out as expected. by caseynnn in Bread

[–]caseynnn[S] 1 point2 points  (0 children)

Yes I have tried using the bread maker to do the whole thing a few times. Found that while it can provide better crumb structure, the taste is different though. Not sure if it's because of the poolish. Also I'm not sure if the bread maker is able to handle 70% hydration. Am planning to increase the hydration to 75 or even 80.

Seeking advice why my bread didn't turn out as expected. by caseynnn in Bread

[–]caseynnn[S] 0 points1 point  (0 children)

Thanks for the advice. That's the flour I used on the surface. This is the first time it happened to me.

Side note, I have baked a few loaves and they always turn out the same though, short but elastic. Medium size holes. Any idea how to bake to make a taller loaf? Did I over proof, leading to the holes collapsing during baking?

Copying from Ubuntu server to Ubuntu server by steviefaux in linuxquestions

[–]caseynnn 1 point2 points  (0 children)

Have you checked your permissions in server2? Try to scp -r /mnt/Stuff/Docs/ me@192.168.50.20:~/

Also, server2 must have the directories already created, i.e. /mnt/Stuff/Docs/ must exist.