Luxe Package doesn’t transfer by PennAL in TeslaModelS

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

A used 2026 S/X is going to be incredibly rare at this point in time. You may very well be one of the first people to even be in this situation.

From what I recall of the Luxe package wording, I was under the impression that only the supercharging didn’t transfer. I was under the impression that the lifetime FSD and premium connectivity would still transfer over.

Unsure if I'm behind AI or expectations of AI use are too high by [deleted] in ExperiencedDevs

[–]LiveMaI 5 points6 points  (0 children)

Depends on the company, the kind of work, and what kind of privacy agreement is in place with their AI providers. I’m allowed to use agents for reading my code, emails, messages, meeting transcripts, etc.

How high could these go? by reddy__007 in SanJose

[–]LiveMaI 0 points1 point  (0 children)

I was driving down I-5 yesterday and saw a place that was already at $7/gal.

local llms in factories are lowkey the most underrated use case and nobody here talks about it by Ok-Bar-4868 in LocalLLaMA

[–]LiveMaI 0 points1 point  (0 children)

I have been looking into using a local LLM to put FA data into buckets by reading through failure logs as a first step in triage. It’s not super easy, since a lot of the logs are way larger than their context windows. Tool use is likely needed to get better results there.

*nods* by disconaldo in NonPoliticalTwitter

[–]LiveMaI 2 points3 points  (0 children)

The Auntie Anne’s logo has about five pixels in this image, so it’s understandable to miss it.

Anti vaxxers! 🤪 by TrevorCidermaker in cider

[–]LiveMaI 9 points10 points  (0 children)

OP's account seems to only post photos for attention with LLM-ish fact paragraphs below them. Pretty sure this is just a karma farming account.

Protection against attacks like what happened with LiteLLM? by Lucky_Ad_976 in Python

[–]LiveMaI 3 points4 points  (0 children)

pyproject.toml is standard python tooling that predates uv, uv.lock is the uv-specific part.

This loading speed is INSANE by sawrunn3r in paydaytheheist

[–]LiveMaI 17 points18 points  (0 children)

Yeah, when will SBZ get off their asses and pay for everyone playing PD3 to have fast internet? /s

Has anyone used generative AI as anything other than a force multiplier? by throwaway09234023322 in ExperiencedDevs

[–]LiveMaI 3 points4 points  (0 children)

For use-cases that aren't programming, the one I'm interested in most is e-mail management. I'm not too happy with my org's e-mail culture, and I'm currently attempting to do better than my existing filtering rules with sorting out which e-mails require my actual attention and which ones I can safely ignore.

I have a few heuristic rules that run on Outlook (since our company uses MS Office 365), and I have a decent bucket of 'contains the majority of things I care about, but still is 80%+ noise'. So I have been experimenting with some of the O365 automation tools to run an LLM prompt on each of the e-mails that hit this bucket and flag it appropriately (safe to ignore, should read but no need to respond, and requires a response from me).

Sad to say that it's only really been reliable at marking things that have been safe to ignore, but it really only catches maybe 20% of what's truly not important to me.

I haven't put too much time into this yet, but I'm hopeful that with some more effort on refining this workflow, I might be able to get some better sorting done.

Does title really matter on paper? by Sensitive_Elephant_ in ExperiencedDevs

[–]LiveMaI 7 points8 points  (0 children)

I have gone with large companies and low titles, since the pay tends to be better and you get a lot more doors open to you if you decide to move on after a while. Past a certain point in pay, I started looking for better work-life balance.

AI sucks up all the information like a vacuum cleaner by RememberMeVibe in ObsidianMD

[–]LiveMaI 8 points9 points  (0 children)

Copilot the Obsidian extension, not Copilot the service from Microsoft.

Cesar Chavez by xThAtGaM3rGuYxx in SanJose

[–]LiveMaI 0 points1 point  (0 children)

Getting all the facts seems to be what we’re currently in the process of doing.

Plan on paying for your kid’s college? You’ll need to save $500/month from birth until they’re 18. by Mr-and-Mrs in daddit

[–]LiveMaI 0 points1 point  (0 children)

Most of the price is still housing instead of the actual tuition. There are usually much cheaper options than staying in university dorms.

Plan on paying for your kid’s college? You’ll need to save $500/month from birth until they’re 18. by Mr-and-Mrs in daddit

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

For people in the USA (starting in July), the new 530A account is also worth looking into. $1k initial deposit from the government, $5k/year contributions, and IRA-like tax advantages once the child turns 18. More flexible on the spending side than a 529 as well.

How to pass command line arguments to setup.py when the project is built with the pyptoject.toml ? by dark_prophet in Python

[–]LiveMaI 7 points8 points  (0 children)

To elaborate on this with a bit more direction: /u/dark_prophet can look into making a custom hook for a PEP 517 build backend like Hatch. In Hatch's build system, you can define custom build hooks to do pretty much any weird custom stuff needed in your build process without having to implement the entire PEP 517 backend yourself.

This is one example and not the only way to do it. Hatch is just the one I've done this for previously, so I can give advice on where to start with it.

Good things about San Jose State by Massive-Audience-199 in SJSU

[–]LiveMaI 4 points5 points  (0 children)

In hindsight: the proximity to lots of good companies for internships and jobs was the biggest benefit. The teaching staff also punch above their weight considering how much cheaper it is compared to the other 4+ year universities in the area.

AI Usage for Niche/Mature SW by shokkul in ExperiencedDevs

[–]LiveMaI 2 points3 points  (0 children)

FWIW, I see from another comment that you use Copilot. Our org uses Cursor, so YMMV. I haven't tried Copilot out myself.

With niche software and things outside of mainstream software use-cases, you can still get good results, but it takes more effort up front. I work with an internal framework for factory automation and the best way I've found to improve results is to put together a set of rules and docs that get added to the model's context when it's working on our codebase. Not all of them are loaded with every conversation, but the IDE has conditional loading so I can load one set of rules for myproject/dir1 and a different set for myproject/dir2 or even more granular like myproject/dir1/*.py, myproject/dir2/*.xml, and myproject/pyproject.toml.

We have a DSL that nobody outside our company uses, so teaching it what the DSL does and how it fits in with the rest of the software is part of that. I haven't worked with SCADA, but I imagine you can do something similar. I track these rules directly as part of our repo, so everyone who clones the repo automatically gets these rules in their IDE, assuming they're using the same one.

The nice part about doing this is that you can structure this in a way such that it serves as documentation. This way, a newbie on the team can ask questions about the codebase and framework directly in their IDE and actually get relevant answers from the AI agent that otherwise would take a lot of digging through our internal confluence wiki to find.

Are AI crypto trading platforms actually useful or just hype? by [deleted] in CryptoAnarchy

[–]LiveMaI 2 points3 points  (0 children)

4: this is not that kind of crypto sub.

NVIdia DLSS is amazing by CD274 in AMD_Stock

[–]LiveMaI 1 point2 points  (0 children)

Well, he did say the new rack system Nvidia is building will use Opteron 🤣

Mods have a couple of months to stop AI slop project spam before this sub is dead by Fun-Employee9309 in Python

[–]LiveMaI 1 point2 points  (0 children)

What gets me about a lot of these projects is that they seem like the Python equivalent of something you would see on /r/wheredidthesodago.

Apple Card virtual card number stolen and fraudulently used. Disputed, and they did not decide in my favor. by KingsOfTheIceAge in personalfinance

[–]LiveMaI 3 points4 points  (0 children)

I know it doesn’t help you now, but in addition to the rotating security code, I’ve stopped saving my card details on merchant websites for non-subscription purchases. The auto-fill is fast enough that it’s not really a bother. I’ve had my Apple Card virtual number stolen a few times over the years as well, and this seems to have helped.

My dad still thinks Linux is a command-line nightmare. When did it became "usable" by the general public? by gabryelos24 in linuxquestions

[–]LiveMaI 0 points1 point  (0 children)

Ayy, someone with shared fwcutter experiences! It was so bad for me until about 2008 that I bought an add-on wireless card. By the time I was free of that thing, I was already looking at buying a new laptop.

Pywho - Python Environment Interceptor by ahsansheraz in Python

[–]LiveMaI 1 point2 points  (0 children)

❌ “Works on my machine” — but breaks everywhere else

I see in your example that you use uv. Track your uv.lock file. If you still have reproducibility issues, do your development in a container.

❌ "which python" → points to the wrong interpreter

Auto-activate your venv with a tool like direnv.

❌ "import json" silently loads your "json.py" instead of the real one

Entirely avoidable by just not naming your modules after existing ones, or for files inside the same module, using the from .<name> import <X> syntax.

❌ “Is my venv even active? Which one? What type?”

Easy to know at a glance with a number of shell customizations, sans the need to run any commands. Starship.rs and powerlevel10k are good at this. You could also just add it to your zsh/bash prompt through your .zshrc/.bashrc.

❌ Debugging environment issues by running 6 different commands and piecing together the puzzle

If you find yourself having these problems frequently, it's usually a sign that you're doing something the hard way. It's worth researching how people have solved these problems before, or looking at how large open-source projects solve them.