sloppy_diffuser

u/sloppy_diffuser@sh.itjust.works
0 posts · 520 comments

Recent posts

No posts.

Recent comments

I dont have any experience with any of these but you may find some options by searching for web3 or dapp storage solutions. Example best of list.

web3/dapps are an attempt at making fully decentralized web applications using blockchain and other decentralized technologies. Since storing large volumes of data on a blockchain isnt the best idea, projects like IPFS and others on the first link I shared emerged to fill the gap.

Supply and demand in dating social spaces, virtual or in person.

In person non-dating social interactions have been steadily declining.

When all the red pill shit first started coming out it was ironically more about self-improvement followed by pick up artist tacticts once you got your shit together.

Still misogynistic at the time and it just continues to get worse. Rather than put in the work to improve themselves, they'd rather go all handmaid's tale.

Been on a GLP-1/GIP compounded injection for a year. Lost 90lbs.

I physically have a hard time overeating on fats/protiens. Like I want to vomit. Meat consumption is way down from before.

Simple carbs like starches and sugar I can overinduldge on but seem to get sick faster than before taking the medication.

It mostly helps with food related cravings but its not a silver bullet. I can still fallback to emotional eating under high stress and fluctuate +5 lbs with water retention. Its just much easier to recover.

I lost about 1/3 the weight on my own tracking everything. With the medication it tripled the rate of loss and I didn't need to track anymore. I'm much more able to trust my body and hunger signals developing a healthier relationship with food.

strongly encouraged for me means my entire bonus is tied to skilling up with LLMs.

"cite-or-stop" with journaling, role definitions, subagents to control context windows, and shifting as much of the work as possible to deterministic scripts has yieled pretty high-quality results.

Expensive af though. Like the self-review skill I maintain before engineers put their code up for human review will find 30-40 things on average, where only a small handful are false positives, can burn 10% of a $20/mo plan's utilization in a single run on a moderately sized PR. The default one my company setup in our source control usually finds 1-5 things and only 0-2 are of any value.

on Who can relate? · c/autism · 3 pts · 66d

Sounds like one hell of a dopamine hit. Like the self-induced pressure from procrasting injected with steroids, topped with a drizzle of adrenaline, and dusted with the strongest speed humanity has to offer.

Personal anecdote and not a doctor, but mine went away, or rather is managed, with weight loss assisted with GLP-1.

In retrospect I wasn't being honest with myself in regards to how much I was eating or the quality of said food.

When I first started GLP-1, my appetite (really cravings) mostly went away and junk food beyond a tiny handful made me incredibility sick with flu-like symptoms.

Now that I'm at my goal weight, still taking a maintenance dose of GLP-1, I can cheat a bit more without side effects, but a burger and fries or a pizza will absolutely trigger my IBS to this day if the meal is over ~500 calories.

Eating clean and not overindulging has caused the opposite problem. I have to supplement fiber or I won't poop for a week. Its not uncomfortable constipation either, there just isn't a lot of waste there to eliminate.

Good luck on your pooping journey!

edit: Also seconding a bidet!

I work with a Swift fan. They'll cut you if you talk smack, lol. I don't get her appeal but the observation of her fans is real.

The contrast and how vivid it is look off from what I remember. Hardware for rendering has improved a lot since it came out. Maybe the animation masked the "simplicity" for lack of a better term.

on *Permanently Deleted* · c/linux · 9 pts · 70d

https://grapheneos.org/usage#web-browsing

Chromium and their particular fork have much better exploit hardening via sandboxing.

My understanding is Firefox has better anti-fingerprinting and uBlock origin via manifest v2 support (or v2 features ported to v3).

The argument often used is malicious ads. Sandboxing and hardening largely mitigates ads that contain exploits, but it doesn't protect against social engineering, crypto mining, tracking, etc.

So I guess it comes down to your threat model and desired experience.

I personally prefer the uBlock origin experience, but an ad free experience and escape from targeted advertising was my target opsec when venturing into privacy.

Pebble Time 2.

Mostly sleep and step counting. Media controls on occasion. Just got it so not had a chance to customize it much yet.

Coming from, in order: Garmin Vivoactive 5, 4, 3, 2, Pebble Time, Pebble OG.

Preferred the healthstats on the Garmin out of the box. Great indicator if I'm getting sick based on its measurements or if I'm not being as active as I should be.

My experience is you have to close as many degrees of freedom as possible. Its tedious as hell for generating quality code.

Its great at debugging if you require it to manage its context window by delegating tasks to scoped subagents, generate evidence with references, and verify that evidence with a minimal reproducible example. Expensive... I've seen them run for a solid 30 minutes before responding back (not including the "thinking" log), but it usually finds the issue.

A similar technique can be used for code generation but again it burns tokens and takes awhile. Have it generate and verify isolated reference implementations for anything nontrivial. Much easier to review with the rest of your domain and layered on complexity stripped out. The "thinking" log is interesting to watch as it bangs it head against bad assumptions or documentation and needs to start digging into dependency source code to work it out.

Only then apply the implementation to your project from the reference implementation. Takes breaking down the tasks though to small enough units and closing those degrees of freedom.

Anecdote on degrees of freedom: This one didn't require a reference implementation in particular. I was reviewing a PR (LLM assisted, I wasn't the authoring dev) to add signature validation to OAuth tokens. It duplicated the entire header/token parsing logic. It needed that path closed with a pointer to where the existing logic was and explicit requirements to enhance it. Refactor was great upon reviewing and the PR size was reduced by more than half.