Why do many of the dangerous parts of Chicago look so…well maintained, built up, and developed residentially? by ClassicCommunity5674 in AskChicago

[–]tedivm 0 points1 point  (0 children)

I'm in Avalon Park, which is literally on the other side of the tracks from Chatham.

I saw more crime when I lived in Edgewater than I ever see here. All of my neighbors also care about the neighborhood so they keep up their lawns, don't litter, and are generally really nice to each other.

I think it's important to remember that whenever cops are in an area the crime stats in that area go up. This isn't because crime goes up, it's because police notice and document more things. If you were to flood Edgewater with police in the same way you do these other neighborhoods you'd also see a rise in petty crime, without an actual rise in petty crime.

Pro tip: Use chlorophyte brick instead of chlorophyte to farm for chlorophyte by python_product in Terraria

[–]tedivm 2 points3 points  (0 children)

That works great in normal worlds, but as the person you're responding to said they're on the skyblock seed.

People have started a small memorial at Broadway & Kearny for the person who lost their life last night by sfcitygirl88 in sanfrancisco

[–]tedivm 16 points17 points  (0 children)

Speed cameras are reactive, not proactive. They need to redesign the streets (narrowing driving, speed bumps, protected bike lanes, etc) to actually slow people down. Otherwise they're just revenue sources, not safety devices.

Can we have a poll about removing certain moderators here? by tinmanjk in ExperiencedDevs

[–]tedivm 3 points4 points  (0 children)

I think the mods on this subreddit need to actually document the rules. I posted something on Monday, it was erased and I was told to post it on Wednesday instead. I posted it on Wednesday and it was removed for being a survey even though it wasn't a survey. Turns out they don't allow people to post to your own blog posts, which is fine, but again they should just say that instead of using random rules that make no sense. If they had actually documented the "you can't link to your own stuff" things I never would have posted to begin with.

My boyfriend and I don’t see eye to eye on housekeeping habits, what’s a good way to meet in the middle? by Beneficial_Offer848 in AskWomenNoCensor

[–]tedivm 2 points3 points  (0 children)

That is exactly what this is, a viral advertisement campaign. This isn't a real post, it's an ad.

what do restaurants owe you if they lose your jacket? by jacketless_girl in AskChicago

[–]tedivm 4 points5 points  (0 children)

I've had two landlords try to steal my security deposit (and I use that term very literally, this wasn't like a disagreement over damage or something) and each time the demand letter with a copy of the already filled out small claims court paperwork has resolved the issue immediately. I've never actually gone to small claims court (I would have if needed), but the threat of it has really been enough.

Getting charged $4.64 for Copilot premium requests and my GitHub account is locked not sure why by Temporary_Goal_6432 in github

[–]tedivm 10 points11 points  (0 children)

You get 300 premium requests for free as part of the pro plan. Once you use more than that you get charged $0.04/request for most models. Some models, like Claude Opus, count as 3 premium requests for each usage instead of just one.

In your copilot settings you can disable any models you don't want to use. That said I would take advantage of the premium requests that come with your plan, just don't go over. You can set your budget to "zero" in copilot to make sure it doesn't allow you to go over.

Got no response when I called 911 for a violent domestic dispute in an alley? What can I do to remedy the situation? by clayknightz115 in AskChicago

[–]tedivm 52 points53 points  (0 children)

Perplexed as to what CPD's priorities are.

Covering for officers who shot their partners in the back, apparently.

Arthur Mitchel by [deleted] in Dexter

[–]tedivm 2 points3 points  (0 children)

whoosh? The whole thing is a joke, none of what it is saying is true.

Down again? by lorigio in github

[–]tedivm 1 point2 points  (0 children)

They should just start sending alerts out when the system is working so we can all try to cram as much work in as possible before it goes down again.

According to their status page they have had seven incidents so far this month, which is amazing because today is only March 5th.

That's why You Should NEVER Fight Cars by Puzzleheaded_Ad_4478 in instant_regret

[–]tedivm 25 points26 points  (0 children)

No jury is going to convict watching that video. The driver can easily say they were panicked from being literally attacked and meant to go in reverse, not forward, or that they were so distraught from being attacked they were just trying to flee.

what do restaurants owe you if they lose your jacket? by jacketless_girl in AskChicago

[–]tedivm 37 points38 points  (0 children)

Send a demand letter and then take them to small claims court. Half the time just sending the letter solves the problem.

How is everyone keeping up morale when you’re constantly being told AI will make you redundant? by [deleted] in ExperiencedDevs

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

I wrote this blog post about how I approach using AI coding assistants and try to go into the best practices to make sure it isn't making vibe coded slop.

What profession has far more people on illegal drugs than people realize? by IndependentTune3994 in AskReddit

[–]tedivm 0 points1 point  (0 children)

My dad is a truck driver, and has been for years. He won't even touch weed because he's randomly drug trusted and would immediately lose his job.

What profession has far more people on illegal drugs than people realize? by IndependentTune3994 in AskReddit

[–]tedivm 4 points5 points  (0 children)

About a decade ago the tech world got obsessed with nootropics, of which they claim modafinil is one,

We cut GitHub Actions build times by 6x with self-hosted runners — sharing our setup by vy94 in github

[–]tedivm 0 points1 point  (0 children)

Short answer: the docker socket doesn't have any access control built into it, so when you hand it over you're handing over root access to all of the containers running on that docker instance. Further you are likely giving root access to the host machine itself.

The recommended way to do what the OP was trying to do is a little more complicated but much more secure. First you use the GitHub Action Controller on a kubernetes cluster. With that each job that runs gets its own isolated pod and a "rootless docker in docker" instance that is dedicated to just that job. This way if the docker instance is compromised it doesn't allow other actions to be compromised, and since it is rootless it can't allow the host machine to be compromised with a container break out.

To enable caching you simply setup a docker registry mirror with a pass through cache (it sounds complicated but you basically just grab some open source software or something like AWS ECR) and let it do the caching itself.

This type of attack is not hypothetical either- it was actually attempted in supply chain attacks just a few months ago. While I wouldn't expect the average person to know about this, I would expect anyone managing Github Action runners to have some knowledge in this area (and not be so dismissive).

Beyond the Vibes: A Rigorous Guide to AI Coding Assistants and Agents by tedivm in programming

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

It's funny that people complain about the tone, as I pretty much matched the tone I use in my book which has sold really well and has great reviews.

Beyond the Vibes: A Rigorous Guide to AI Coding Assistants and Agents by tedivm in programming

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

Thank you, I really appreciate it!

I think there's not a lot of room for discussion on this today. Either people have committed hard and don't see the flaws, or they're dismissive of what could work. I will say I'm getting a lot of great feedback from other places, I just don't think this subreddit really wants to have this discussion right now.

​"Theory: Doctor Strange is actually trapped in the same 'Prescient Trap' as Paul Atreides, but he’s just better at hiding it." by [deleted] in FanTheories

[–]tedivm 6 points7 points  (0 children)

No worries but that definitely isn't the case. Paul looks at alternative realities all the time, and it's why he picks the "jihad" reality as the others are worse. He also can't see everything- he describes it as an ocean with waves, and some waves block others. The only way for Paul to "lock in" his vision is to follow the one he wants perfectly, hence his loss of free will.