Trump team leaks AI plans in public GitHub repository (www.theregister.com)
from bytesonbike@discuss.online to technology@lemmy.world on 16 Jun 05:43
https://discuss.online/post/21950606

The AI.gov repository and staging site vanished when we asked questions, but don’t worry – we captured backups

#technology

threaded - newest

stm@lemmy.dbzer0.com on 16 Jun 06:44 next collapse

Archived backup here

Baleine@jlai.lu on 16 Jun 11:27 next collapse

Complete archive: …softwareheritage.org/…/ai.gov;visit=swh:1:snp:36…

GreenKnight23@lemmy.world on 16 Jun 18:24 collapse

fucking gross. it’s JavaScript.

0ndead@infosec.pub on 16 Jun 22:39 collapse

Wut

wischi@programming.dev on 16 Jun 11:41 collapse

Any backups of the repository itself (and not the GitHub rendering)?

stm@lemmy.dbzer0.com on 18 Jun 07:36 collapse

not that i know of

RejZoR@lemmy.ml on 16 Jun 07:30 next collapse

They are even dumber than Leslie Nielsen as American president in his parodies.

latenightnoir@lemmy.blahaj.zone on 16 Jun 07:35 collapse

This was the feeling!!! I couldn’t put my finger on just how this entire thing felt to me, you’ve cleared the skies and allowed the light of recollection to meet my shores!

It feels like 70s-80s slapstick!

IsThisAnAI@lemmy.world on 16 Jun 09:51 next collapse

Obligatory fuck Trump

Releasing your code and related resources is SoP.

We had a guy who fixed up no less than 20 repos in our small company cleaning up API keys that were accidentally published. This isn’t uncommon at all.

Venus_Ziegenfalle@feddit.org on 16 Jun 10:15 collapse

I think part of that is that it conjures up cold war era associations.

latenightnoir@lemmy.blahaj.zone on 16 Jun 10:55 collapse

Definitely! Those “outside time and space”/“post-modern purgatory” vibes are strong nowadays. Every day feels like making busy until the storm hits.

Tetsuo@jlai.lu on 16 Jun 08:58 next collapse

Well good luck to you guys in the US. This AI government will be extremely dangerous. An all knowing advertisement algorithm reaching deep in government data with an unsafe LLM on top? Ouch.

overload@sopuli.xyz on 16 Jun 10:24 next collapse

Move fast and break things is not good when government is involved.

als@lemmy.blahaj.zone on 16 Jun 11:07 next collapse

I want off Mr Bone’s wild ride

cmder@lemmy.world on 16 Jun 11:41 next collapse

Super earth’s managed democracy was supposed to be satire…

burgerpocalyse@lemmy.world on 16 Jun 17:28 collapse

whats wrong with managed democracy? did you see how quickly a new president was elected when the previous one perished during the invasion?

FlashMobOfOne@lemmy.world on 16 Jun 12:29 next collapse

I hate that all of the worst things Donald is planning are slated for July 4.

kerntucky@infosec.pub on 16 Jun 18:11 collapse

I’m out of the loop; what’s being planned for the 4th of July?

FlashMobOfOne@lemmy.world on 16 Jun 18:53 collapse

That’s the deadline Donald set for the passage of the Big Beautiful Bill as well.

titey@jlai.lu on 16 Jun 16:20 next collapse

DB_PASS=“postgres” 😬😬😬

Jakeroxs@sh.itjust.works on 16 Jun 17:16 next collapse

Is this real lmao

ArtVandelay@lemmy.world on 16 Jun 23:30 collapse

Unfortunately no, it seems. Somebody at least had the bare minimum sense to let GitHub generate the .gitignore for them, which includes most common environment files. github.com/gsa-tts-archived/ai.gov/…/.gitignore

forgeddit@sopuli.xyz on 16 Jun 23:58 collapse

It’s from another repo and literally just an example env for an empty local docker DB: archive.softwareheritage.org/browse/…/directory/?…

Crozekiel@lemmy.zip on 16 Jun 17:25 next collapse

so, uh… can you ELI5 this for those of us that don’t know anything?

ohshit604@sh.itjust.works on 16 Jun 17:29 next collapse

Postgres, SQLite, etc are tools for database management, things like user data, application data and so on are collected here.

Edit: the DB_PASS=“postgres” is the default password when setting up a Postgres database.

Take Reddit’s Karma system or Upvotes/Downvotes for example, they’re stored in a database and however Reddit wants to utilize that data Postgres makes it easy to call upon it.

I’m sure others can give more detailed responses, I’m typing this out in a rush.

theherk@lemmy.world on 16 Jun 19:52 collapse

Interesting that you chose Reddit as an example. They have a fascinating origin story with respect to data mart. Early Reddit had just two tables: Thing and Data, where Thing was metadata about types and Data was a three column table with: type, id, and value.

Wrap your head around that. All of Reddit, two tables. A database couldn’t be less normalized (final boss of normal forms) and they did it in an rdb. So horrific it’s actually kind of cool.

ohshit604@sh.itjust.works on 17 Jun 00:05 collapse

Interesting that you chose Reddit as an example.

I was in a rush! Honestly it was the quickest thing I could come up with on the spot, plus database tools are something I lack a lot of knowledge about so I really couldn’t go in depth even if I wanted to.

Appreciate the history behind Reddit’s database!

crookfingerjake@lemmy.world on 16 Jun 17:30 next collapse

The type of database they are using is called “postgres”, which is also it’s password.

joyjoy@lemmy.zip on 16 Jun 18:36 next collapse

I will assume this is just the password they use in development. But they should probably be using pglite.

SocialMediaRefugee@lemmy.world on 16 Jun 23:14 collapse

They should’ve used “1234”

faythofdragons@slrpnk.net on 17 Jun 02:16 collapse

That’s the combo on my luggage!

lepinkainen@lemmy.world on 16 Jun 19:48 next collapse

It’s like having your password set to “password”

forgeddit@sopuli.xyz on 16 Jun 23:54 collapse

The person you replied to doesn’t know what they’re talking about. It’s just an example password used for running a local empty DB for development and has nothing to do with production or even test databases.

You can see this in the readme: archive.softwareheritage.org/browse/…/directory/?…

See my longer previous comment if you want to know more. And again, not defending this project, but this whole comment chain was just misinformation.

Nobilmantis@feddit.it on 16 Jun 21:05 collapse

I mean it is called “.env_example” afterall… Probably a env file to use for testing, no?

forgeddit@sopuli.xyz on 16 Jun 23:46 collapse

I’m really shocked by the confidence people have here with clearly zero knowledge.

“.env_example” is literally just the example/template which is only updated if new “config” items are needed and it doesn’t contain actual secrets.

Developers copy “.env”/prod and “.env_local” files, which are used for the specific environments. These are in .gitignore so that they’re not accidentally pushed to .git.

For production the “.env” is generated during deployment from secrets in a locked up environment. (I mean they COULD fuck this up, but there’s no evidence of this AFAIK)

The example postgres password is simply a “hello world” type password that is often used when running a local docker image of the DB so you can get a full dev environment running in a couple minutes, as mentioned in the readme.md: github.com/gsa-tts-archived/ai-gov-api

It’s not even a testing environment, it’s a temporary local/dev DB just so you can test your code.

I am NOT defending this project, but holy shit this thread is full of misinformation and I had to correct this.

JcbAzPx@lemmy.world on 16 Jun 17:31 next collapse

Only silver lining right now is these idiots might just be too stupid to pull off creating their evil empire.

PTSDwarrior@lemmy.ml on 16 Jun 18:45 next collapse

This reminds me of an interview with a Ukrainian soldier, who said of the Russians “we are lucky they are so fucking stupid”. If only that translated into less air superiority by Russia, because that’s where Ukraine struggles.

match@pawb.social on 16 Jun 18:58 next collapse

Second term same as the first?

surph_ninja@lemmy.world on 16 Jun 19:06 collapse

That’s actually why I’d say the GOP is the “lesser evil” compared to Dems, because they ultimately want the same thing but the Dems are competent enough to pull it off without people noticing.

For example, everyone’s rightly going after Trump’s deportation schemes, but very few of them realize Trump is still isn’t keeping up with Biden’s deportation numbers. So the Dems end up being better fascists by doing it quietly.

Analog@lemmy.ml on 16 Jun 19:09 next collapse

Project 2025 is the lesser evil? Compared to?

surph_ninja@lemmy.world on 16 Jun 19:28 collapse

Compared to Dems doing the same thing covertly. As I explained in the comment you’re replying to.

corsicanguppy@lemmy.ca on 17 Jun 00:02 collapse

“explained” seems to be doing a lot of heavy lifting.

You papered something, but I didn’t see an explanation per se.

Try again? Start by pointing to where the Dems started their insurrection, so I can compare.

lorski@sopuli.xyz on 16 Jun 21:26 next collapse

Fascism is not measured by immigration alone.

surph_ninja@lemmy.world on 16 Jun 21:55 collapse

‘Well hold on, it’s not fascist when Dems do it.’

webadict@lemmy.world on 16 Jun 21:29 next collapse

I don’t remember when the Democrats deported my neighbor or when they called self-proclaimed Nazis good guys or when they wanted to take away food stamps from single mothers or when they wanted to make voting harder or when they didn’t want to ban child marriage or when they wanted to take away the only source of food and housing for children, people with disabilities, and the elderly or when they wanted to ban vaccines or when they wanted to ban abortion or when they wanted to make being queer a child sex crime or when they ignored all of science, but I guess they were just too smart to do any of that.

surph_ninja@lemmy.world on 16 Jun 21:43 collapse

Then you have a terrible memory, or more likely just don’t pay attention when Democrats are in office.

I’m about to come back and edit multiple sources into this. One sec. Done. Thanks for making my point exactly. Dems are more dangerous because y’all are lulled to sleep when they’re in office. By your own admission, you straight up don’t even notice when a Dem does this shit.

latimes.com/…/la-na-immigration-judge-20160306-st…

www.reuters.com/graphics/…/akpeoeoerpr/

theintercept.com/…/ukraine-weapons-neo-nazis-bob-…

responsiblestatecraft.org/azov-ban-lifted/

amp.cnn.com/…/may-11-end-of-covid-and-public-heal…

www.msnbc.com/msnbc/amp/msna263456

dcist.com/…/dc-democrats-sue-to-stop-ranked-choic…

apnews.com/…/wisconsin-jill-stein-harris-trump-la…

npr.org/…/delta-ceo-asks-cdc-to-cut-quarantine

jacobin.com/…/biden-wall-street-medicare-for-prof…

www.commondreams.org/…/biden-water-privatization

washingtonpost.com/…/democrats-transgender-republ…

webadict@lemmy.world on 16 Jun 22:59 collapse

Don’t hide behind the shitty half-assed news reports, you coward. Just name the actual Democrat that fired their vaccine board, so we can end this. Just name the actual Democrat that banned abortion federally, instead of posting fifteen useless articles. Just name the Democrat that kept child marriage protected because it’s easier. Just name the Democrat that deported my neighbor, specifically, since you seemed to have known him. Just name the Democrat that implemented a voting suppression measure, assuming you can find one within the last 25 years, instead of you saying that’s the same thing as ranked choice, which have been challenged by Republicans in every single instance (and this is the only instance you found for Democrats, if you could call it that, lol). Just name the Democrat that called queer people slurs openly and wants them tried for child sex crimes.

It should be so easy, right? If they’re the same, just fucking name them.

surph_ninja@lemmy.world on 16 Jun 23:20 collapse

‘You must name the person who banned my specific neighbor, because I refuse to acknowledge the existence of anything that does affect me personally and directly.’

_haha_oh_wow_@sh.itjust.works on 17 Jun 13:23 next collapse

are they? They’re just incompetent in different ways. Not sure competent is how I’d describe them, they are a mess: The last election is proof of that.

surph_ninja@lemmy.world on 17 Jun 14:25 collapse

Yeah, you’re not wrong. Really it’s that the Dems have better control of and coordination with the media outlets.

Which is also why the Dems are super big on social media censorship. They feel it’s a threat to their media control.

_haha_oh_wow_@sh.itjust.works on 17 Jun 15:11 collapse

I disagree with you there, GOP has just as much control over media outlets, but the extent of control differs depending on which outlets you’re talking about.

surph_ninja@lemmy.world on 17 Jun 15:34 collapse

Ehh. There’s certainly some outlets that coordinate with the GOP on talking points, but it’s not direct control and coordination like the Dems practice with media outlets.

It’s more like the GOP and conservative outlets are receiving marching orders from the same oligarchs. The Dems are overtly directing their media partners.

None of this is speculation. We’ve seen the email leaks on both sides to prove it.

JigglySackles@lemmy.world on 18 Jun 18:30 collapse

Democrats aren’t without blame but the idea that republicans are a better option is an insane take. That you think we’d be worse off now had we had a Democratic president and congress is absolutely insane.

surph_ninja@lemmy.world on 18 Jun 18:58 collapse

And that’s an accidental admission that you didn’t notice when the Dems were doing this stuff. Exactly my point.

JigglySackles@lemmy.world on 18 Jun 23:13 collapse

So when did the democrats send out ICE and DHS en masse country wide? Or how about when they deployed the Marines against peaceful protestors? Did the democrats do those things without my notice? I’ll be shocked.

Edit: Ooo let’s throw in a bonus of illegal cuts to NIH, purging of the vaccine panel, and gutting of multiple federal agencies and workers. I’m sure that all the people caught in those broad pointless layoffs sure are glad the fucking democrats weren’t in, they might have still had jobs!

surph_ninja@lemmy.world on 19 Jun 02:35 collapse

Hahahaha. I love it. Commenters just can’t stop making my point for me. ‘I never heard of the Democrats doing anything like that!’ Yeah, that’s exactly my point, genius.

www.reuters.com/graphics/…/akpeoeoerpr/

aclu.org/…/how-can-3-year-old-represent-himself-c…

mn.gov/governor/newsroom/press-releases/?id=1055-…

JigglySackles@lemmy.world on 19 Jun 06:18 collapse

Because what you provide aren’t equivalent events at all. Looking at two of your three recent examples (I’m not going to tackle every single link you’ve put throughout this thread.) (And ignoring that the 3 things you provided here are not even related to the things I said)

In the case of children being left without representation, it happened, it’s heinous it was also infrequent enough to be a big deal as I do recall that issue. Now it’s happening frequently.

In the case of the national guard, that was ordered at a state level for riots , not by an overreavhing president for a peaceful protest, and never involved deploying marines in conjunction. On top of that his deployment of them was not immediate, though the gop pushed for them to be more immediate. There are legitimate times for calling in military support, such as when riots overwhelm local law resources.

You are putting up these sources as if they are equivalent and irrefutable proof of dems being worse. I am not saying bad things didn’t happen under them. I said from the start that they have their own share of fuckups. But I am saying that the total, frequency, and severity are incredibly less as well as the general responses to these failures being better overall. It’s such a stark difference, as to make your opinion that the GOP being a lesser evil insane.

If you spent some time critiquing the events you link in relation to current events you would see how flat it falls as a comparison. Yes, shit happens under every single government and candidate and party. But to sit here and pretend that the gop are the “lesser evil” is blind at beast and willful ignorance or a propaganda narrative at worst.

Treczoks@lemmy.world on 16 Jun 21:12 next collapse

I consider this as the final confirmation that he wants to bring the government down.

Duamerthrax@lemmy.world on 16 Jun 21:49 collapse

Trump just wants people bowing to him. His handlers are the ones with real plans. Don’t let Peter Thiel run away to Argentina.

InternetCitizen2@lemmy.world on 17 Jun 00:54 next collapse

More like don’t let them bring Argentina here. Their current president is an ancap and the inspiration behind doge.

Freefall@lemmy.world on 17 Jun 02:06 collapse

Trump is the disposable face of something much darker. He is a tool.

humanspiral@lemmy.ca on 16 Jun 21:34 next collapse

What do we want? sKYNET!!!

When do we want it? As soon as it can beat beginner atari chess?!?!

pinball_wizard@lemmy.zip on 17 Jun 16:16 collapse

When do we want it? As soon as it can beat beginner atari chess?!?!

There’s no time! We’ll have to just go for it! (apparently)

RememberTheApollo_@lemmy.world on 16 Jun 22:06 next collapse

The stupid is intensifying. They both a) know they can’t run a government and b) are in a rush to make something that will do all the work so they can sit back and rake in the money. No, this is not about actually making the country better because objectively LLMs suck and were never intended for such tasks.

kinther@lemmy.world on 17 Jun 00:38 collapse

They are too generic and lack the specialization needed to do such tasks. It will only end in disaster

PunkRockSportsFan@fanaticus.social on 16 Jun 22:11 next collapse

I dream of the day the People collectively have had enough and just drag the bastards into the street and beat them until they can bastard no more.

One can dream…

neuromorph@lemmy.world on 17 Jun 01:31 collapse

He’s hiding behind glass. He won’t know fresh air ever again.

SocialMediaRefugee@lemmy.world on 16 Jun 23:14 next collapse

It is like a bunch of evil kids are in control

thepenismightier@lemm.ee on 17 Jun 03:26 collapse

It’s exactly like that.

Xerxos@lemmy.ml on 16 Jun 23:30 next collapse

Just waiting for the first decision made because of AI hallucinations.

With this government? You might get disappeared to a black site because a LLM “decided” that you probably are a terrorist…

brucethemoose@lemmy.world on 17 Jun 00:41 next collapse

“all-in-one API” that will allow agencies to connect their systems to models from OpenAI, Google, and Anthropic

This is a huge red flag to me.

It means:

  • They are ignorant of existing APIs and standards that are exactly this. Uh, MCP or OpenAI API? Which everyone already uses?
  • They have zero interesting in models they can host themselves, or from cheaper providers. Or, heaven forbit, finetune for their own work.
  • They have zero interest in actually useful tools. Like, say, SGLang’s cached hosting and fast fill-in-the-blanks formatting which is perfect for say, processing government forms.

In other words, it’s just full corporate AI Bro capture. And shitty.

One of the consequences is that it will be very bad, unfortunately.

Donkter@lemmy.world on 17 Jun 03:54 collapse

What’s sad is that this is a consequence not just of this admins shittiness but of a long enshittification of our government.

Not only do government jobs pay a mediocre salary until you get really really far in the org, a fact that only gets worse as the idea of a middle class lifestyle gets gutted, but for decades now, working a government job has become less and less prestigious. It used to be that there were always plenty of loonies who found pride in being a “public servant” and thought the best place to use their genius was in government.

Now, as we see, there’s no one in these positions with even cursory knowledge of how these programs work.

And there’s definitely no millennials or zoomers fresh out of tech school that would debase themselves to working in government who would be able see these flaws in two seconds.

Deflated0ne@lemmy.world on 17 Jun 14:44 collapse

Long term enshitification is a feature of our capitalistic way of thinking. i/e never thinking beyond the next financial quarter.

Edit - And that is why we will 100% lose to China. Central planning will always outperform market chaos. Literally 100% of the time. Better, faster, cheaper. They plan ahead. They look ahead decades. We look ahead only 1 quarter. Just 1. They’ll make 5 year plans and be very public about it to attract VC money to the rugpull. But 1 bad quarter and the whole enterprise is parted out and sold off to the highest bidder.

JacksonLamb@lemmy.world on 17 Jun 00:57 next collapse

Speedrun to Idiocracy.

JargonWagon@lemmy.world on 17 Jun 02:16 collapse

A new PB!

Deflated0ne@lemmy.world on 17 Jun 14:42 next collapse

Can’t wait for some serbian hacker with Xx69 in their name multiple times to destroy the US government because one of Elon’s script kiddies left 42,069 security holes in the fucking system.

Gonna be awesome. lmao.

WorldsDumbestMan@lemmy.today on 17 Jun 18:26 collapse

I’m on it!

LePoisson@lemmy.world on 17 Jun 14:46 next collapse

Edit: this was meant to be a reply to a comment on here about how the Dems/Republicans are the same where dude threw in a bunch of links to “show” stuff that the links didn’t actually show. So deserved down votes I suppose but will leave this here.

Not sure if they have a terrible memory, I think you just have poor reading comprehension. Just glancing through a few of the articles you sent trying to “gotcha” some poster(s) here shows you didn’t even read them. If you did read them you did a bad job understanding the material.

Just for the deportation example: Biden’s deportation and immigration enforcement was not the same as Trump’s now. Biden was aggressively going after actual criminals and he was working to create a path to citizenship for folks that have been here illegally for years and put down roots and contributed to our economy. Now we’re seeing ICE rounding up people for nothing more than their skin color and a “suspicion” they’re not documented. So, just straight up racism.

You included an article where the Dems wanted to keep the green party off a ballot, ok … And? They’re not trying to keep people from voting or suppress the vote. They were trying their best to not have a spoiler candidate on the ballot and felt that aligned with the state’s election laws.

Anyways, I wouldn’t call the parties the same when you can just look at what policies and legislation passed under Democrats vs Republicans. Easy example - the affordable care act.

Jax@sh.itjust.works on 17 Jun 18:59 collapse

I have a sneaking suspicion you’re in the wrong post dude

LePoisson@lemmy.world on 17 Jun 19:32 collapse

That was meant to be a reply to another post you’re right. Not sure how that happened. Whoopsies! ¯\_(ツ)_/¯

sirico@feddit.uk on 17 Jun 18:40 collapse

Inb4 unpatchable backdoor in environment directory