danhab99

joined 2 years ago
[–] danhab99@programming.dev 10 points 3 weeks ago (1 children)

Well let's just be grateful that he put up his hand

[–] danhab99@programming.dev 2 points 1 month ago

I love sidogen/aichat a lot. It's really intuitive and easy to put in bash scripts.

[–] danhab99@programming.dev 6 points 1 month ago

There is a metadata protocol called opengraph, it's how apps get the information to display a rich preview. Basically the app takes the link as it's written in the SMS message or Twitter thread and then it tries to fetch that page and then read the open graph metadata from inside. That should give it enough to show a title description and a background image, considering the web developers implemented opengraph.

If Google is planning to use their own servers basically as a proxy then all this means is that the opengraph rich metadata is going to be a little more stale than if the app just fetch the page and generated the rich metadata itself

[–] danhab99@programming.dev 2 points 1 month ago

Yeah so I get that.. most of the US's debts is to its citizens through treasury bonds. And yeah you can't print money..

I was asking literally what would change? Like what would that change be? Like what does the world look like where the United States is not in debt?

[–] danhab99@programming.dev 2 points 1 month ago (2 children)

Realistically speaking what could actually happen in the world to make it so that we are creating value again instead of accumulating debts.

[–] danhab99@programming.dev 4 points 1 month ago

We only have one picture in the world wide web of this ballroom being built?????

[–] danhab99@programming.dev 3 points 1 month ago (2 children)

See I knew I didn't have to fucking read it

(⁠╯⁠ರ⁠ ⁠~⁠ ⁠ರ⁠)⁠╯⁠︵⁠ ⁠┻⁠━⁠┻

Why would that even be included in the summary to begin with? It doesn't make people feel good or bad to read it?

It's just repulsive unmarketable information.

Why the fuck should I read the rest of the article? I know I'll get no objective or subjective value from it, if I want the bottom of the bone dry fucking barrel I would have to read the court transcripts.

I DON'T HAVE TIME TO ASK CHATGPT TO FIND THAT FOR ME!! I have to socialize with my friends and touch grass and be healthy!

Honestly OP at this point you shouldn't've posted this thread. Lemmy isn't going to fail because of lack of engagement and low user count, it's going to fail because there are no more worthwhile links to post.

[–] danhab99@programming.dev 7 points 1 month ago

If you go to the complaints section, it's a form that sends a letter to your local state representative

[–] danhab99@programming.dev 6 points 1 month ago (8 children)

One thing I always stay weary of is all the details that were removed from the court records to fit it into a news report. Like you can't include everything and what I find out whenever I look deeper then it's not as horrible as what I thought it was.. then next time I see an article like this I don't read it bc I already know that this article is going to be just as bad as the last ones.

It's kinda like 'wolf' has been cried to me basically all my life.. like what kind of emergency/bad-thing do I actually need to respond too.

[–] danhab99@programming.dev 2 points 1 month ago

"the natural consequences of your own decisions" is the best answer I have to most things

[–] danhab99@programming.dev 1 points 1 month ago

Well .... TBH I can't really say for certain what bc I can't say for certain what was before this AI bubble.. apps? Maybe? I'm not certain about that.

[–] danhab99@programming.dev 2 points 1 month ago

Exactly that, if I change a pixel then the cryptographic signature breaks

121
RAMule (programming.dev)
 
 

It's been like this for a few days lol

 

He won't sit on a couch next to me or by himself. He might hang out with me on my bed but 80% of the time he's on the floor.

Is he hot?

Is he sad?

Can I do something to help him?

He's 2 btw

Update: it was just anxiety, he's new in my house, not sure what his rules are.. he feels much more comfy now ♥️

 

I mean on a technical level. Are the devices that make up the infrastructure of the internet hardwired with IPv4? Is the firmware on these devices impossible to upgrade remotely?

If it's just a matter of software or firmware then adoption should only take like a year but clearly that isn't the case. So what specifically is stopping us?

 

I saw this tiktok where this guy was talking about how he'd get his hands on real social security numbers.. this was a clip from a whole story he told about some criminal shit, I was too distracted by my thoughts on how to fix the exploits he used.

Block chains and cryptographic signatures would solve basically every one of his exploits. But regardless of the myriad of reasons as to why we won't adopt cryptography into American laws and bureaucracy, imagine if we did do everything involving government and policy in a cryptographically secure environment.

Imagine if everyone who is born gets assigned a gpg secret key signed by the government and that is your government ID for everything from opening a bank account to paying your taxes to claiming benefits. IMPO I think this is a perfect solution (iif you ignore the human element).

So my question is why wouldn't it be perfect, and what kind of exploits could bad actors use in a cryptographic bureaucracy?

 

I was so confident that WhatsApp was backing itself up to Google ever since I got my new pixel but I just wasn't. Then yesterday I factory reset my phone to fix something else and I lost it all. Years worth of chats from so many times in my past just aren't there, all my texts with my mom and my family, group chats with old friends... I can't even look at the app anymore, I'll never use Whatsapp as much as I used to. I just don't feel right with this change. There's no way to get those chats back and now it doesn't feel like there's any point backing up WhatsApp now! I really wanna cry like this is so unfair!! And all I had to do was check Whatsapp before I did a factory reset.. the TINIEST THING I could have done and prevented this and I didn't fucking do it!!!!!!!

How do I get past this?

 

I've watched all the YouTube videos and tiktoks about the spice and the guild navigators.. basically they're what exists instead of decision making computers.

But what do they actually do to operate the ship? Like they looked and saw some shit and now they have to do something about it.

Does the navigator have buttons and levers to configure the drive? Do they just speak words to some sort of helmsman about how to steer? Do they write out instructions? Is there some sort of telepathy or telekinesis the navigator does with the hardware?

Whenever I Google it I just find articles and videos about spice. What about SOP?

 
 

I have a massive terraform state I maintain for work. After learning about reusing resources using modules I adopted the same rule for terraform I have for other PLs "only call functions in the main func". Meaning I'm only allowed to declare modules that reference resources at the top level.

My problem is that I have modules calling modules all over the place, the average length of any of my resources is 8 names. I have values I want to share across multiple different kinds of modules that do different things. Currently I have a top level module called "constants" with output blocks to store every constant I need. It works to an extent.

The thing is that I had a similar problem when web developing in React. Prop drilling is a coding style in React where a component receives a prop just for the purpose of passing the prop to a child component, the receiving component doesn't actually need that prop for itself. React solves this by the context api which lets one component pass a value to any child component of any depth. How can we have something similar in Terraform? Even though every resource I have is defined once in code, it declares the same resources hundreds of times with different appropriate values.

I wish I could pass things like the dockerSecret to a kubernetes deployment 6 modules deep in such a way that that dependant component of a module waits for the docker secret to be created while other resources that don't depend on it can be scheduled to be created later. Prop drilling doesn't work all that well and it forces you to copy alot of code. Maybe modules aren't the best way to reuse resources.

I feel like HCL doesn't have syntax that would support such a thing idomatically. Maybe something like decorator syntax or a special type of block where you write a proper data, resource, or module block?

What do you guys think?

 
view more: ‹ prev next ›