Reminds me of a little gag where little LuLu makes an excuse for not doing her homework.
Homework? I thought you said housework. I spent all night vacuuming.
Longer answer: My editor does not start wars. I use whatever is convenient. Most of the time I am on visual studio code but I'll use anything. Well, anything except emacs I guess. I don't think I have ever actually used emacs.
Nice! Was an opportunity to install F droid also, didnโt know it can be installed like a normal app, I was under the impression it was an OS replacement. This is neat, perhaps we can deploy textlog #mobilenotesfollow app there? cc @paratonerprofilefollow
@archivist_eyes๐profilefollowYour mind is also supposed to create happiness, not just to receive it. You're supposed to find solutions, to invent, to imagine, to remember, to love. This much we always forget.replied to@ku๐คprofilefollowHai I am ku:
Same here! Though I don't even remember which r/ brought me here.
@ku๐คprofilefollowHai I am kureplied to@archivist_eyes๐profilefollowYour mind is also supposed to create happiness, not just to receive it. You're supposed to find solutions, to invent, to imagine, to remember, to love. This much we always forget.:
Still in Quebec City, which has a pretty sizable street population once you come down from the hill where the tour groups go. We had to basically step over some guys sharing a glass pipe on the only stairs up the hill yesterday; I have teenagers so this bothered me.
Later, my youngest and I were talking and he says "why don't the police do something about that?"
He's showing me the first season of Mob Psycho, so I say
You know how Mob's little brother Ritsu wants to clean up the school so there are no people who will bully Mob, and so he allies with the power hungry student council president and frames all the bullies to get them expelled and the whole situation eventually becomes really corrupt and authoritarian and Ritsu feels to blame even though he started out with good intentions? Life is really like that...
And so my guess is that Quebec is in the portion of the cycle that's reacting to harsh and unfair policing of the past. Someday a mayoral candidate will get elected on the promise of cleaning it all up and the cycle will begin again.
Anyway Mob Psycho is a good show.
it's unfortunate these kinds of obvious non-starters for a functional society can only ever be discussed on both extremes of the political spectrum. It shouldn't be a question that degeneracy has no place in public settings.
Do you code in silence or do you listen to music? If so, what kind of music do you prefer? Personally, I prefer Synthwave, vaporwave or the occasional country.
Occasionally silence if I forget to turn on music. Otherwise, death grips and a curated EDM playlist are on rotate. It keeps me moving fast. But also Steve Reich's Music for 18 Musicians albums go hard for long session, distraction-free music
Often silence, for me. I could create a (narrow) bell curve of problems where I listen to music. If I'm doing light enough work then I don't tend to listen to music, probably just out of habit - but as I approach problems of a certain complexity then I do prefer music. I just find that complexity band is narrow and past it I need to turn off the music.
I would like to widen my music band. My preference is usually ambient - I like Gaussian curve and Hiroshi Yoshimura
i'm trying to express through a math equation the relationship between power, number of people, corruption and time. corruption = (time in a position of power * power)/number of people who have power
what do you think?
I suspectโand this is the interesting partโthat there are significant cultural differences in this regard. In fact, the reputable Spanish books on autism that I have read don't address this topic (if I remember correctly).
Unless I am attracted to the person I almost never maintain eye contact while talking to them. Iโm from Greece btw, doing eye contact is normal, I see others do it, so I diverge there.
Definitely people here do intense full locked eye contact, which I canโt do, unless Iโm attracted to the person as I said. Even then Iโll move a bit around the face because itโs uncomfortable even then. But others just lock in completely I see them doing it.
OK. I guess that Greece may be similar to Spain. I feel comfortable hanging with greeks, in Greece and elswhere. Then, if I don't look at the eyes, but others do. I guess that I'm very good at masking that I don't look at the eyes. I never got a comment related to eye contact.
I donโt think itโs something people notice immediately and consciously think this is wrong to make a comment, they will probably just not feel the same connection or feel something is off about you in general or think that youโre busy thinking other things. Itโs not the only case to not make eye contact with someone, you might just not like them. Thatโs probably what they will sense.
These days Ive been learning how to deal with guilt and feeling gulti about things I didn't cause. NGL is hard man, how do you start cntl-z your brains on that
Really glad to be using Haskell for work - especially in today's climate with agentic coding.
Our team uses containers to keep our development environment consistent across team members, though, and most agent sandbox approaches want to either offload your work fully to the cloud or they want to sandbox the agent harness process itself.
We're not ready for full cloud based development (yet?) and sandboxing just the agent doesn't work for us when the agent needs to run docker.
#haskellnotesfollow#ainotesfollow
... because letting the agent run docker gives them a too-easy escape hatch from their sandbox.
So we're currently stuck with using VMs. This turns out to be tricky but seems do-able.
My current approach is to provision a VM image and use Incus for the execution. My main goal is to keep my current workflow of local/non-agent dev working seamlessly and share the source with the VM/agent.
This means sharing my working dirs with the agent VM but overlaying artifact dirs from VM-owned block devices so we don't take too big of an IO perf hit.
I also don't want the agent to be able to git push so that means we need some quirky git config to rewrite origin paths and thread through some agent specific PATs ("thanks" GitHub) for read-only repo access. These ALSO need to be threaded through to the development containers - they need to clone private repos.
... in the end, this seems to work but I haven't lived with it for long.
There are still some quality of life issues to work out, but I think it'll work out.
At this point, I've removed all coding agents from my host - and that's nice.
It's tangential to the sandboxing topic, really. I started the first post with a broader intent in mind and then elaborated on the sandboxing setup I'm working on.
For AI-assisted coding, though, it's nice because Haskell provides a lot of feedback earlier in the development process compared to lots of other languages. It tends to work once it compiles (obviously not all the time).