FBI subpoenas the web registrar behind Archive.is
FBI subpoenas the web registrar behind Archive.is
The FBI is subpoenaing a web domain registrar for information on the mysterious owner of the snapshotting site Archive.today.Stevie Bonifield (The Verge)
like this
Camera Capabilities Unlocked From A Mouse
Camera Capabilities Unlocked From A Mouse
There is a point where taking technology for granted hides some of the incredible capabilities of seemingly simple devices. Optical mice are a great example of this principle, using what are more o…Hackaday
adhocfungus likes this.
52 year old data tape could contain Unix history
Bell bottom-era tape unearthed, could contain lost piece of Unix history
: It might have the first-ever version of UNIX written in CLiam Proven (The Register)
US senators look for way out of shutdown at rare weekend session
US senators look for way out of shutdown at rare weekend session
The record shutdown is now in its 39th day and has affected everything, from food aid to air travel.Al Jazeera Staff (Al Jazeera)
Comic books
Where can we find comic books?
Looking mostly for indies which always turns out to be a challenge.
I know:
http://libgen.io/
http://getcomics.info/
http://allcomicbooks.us/
http://newcomic.info/
http://readcomics.website/
https://www.ysk-comics.com/en
https://comics-all.com/Right now I'm specifically looking for stuff from Ignition Press, Silver Sprocket, Oni Press, Mad Cave etc.
like this
Nyligen presenterade Sky News Data and Forensics team resultaten från en månader lång granskning av plattformen X algoritm. Granskningen resulterade i en problematisk och allt för tydlig slutsats.
Zohran Mamdani wins: what’s next in the fight against the billionaires?
Zohran Mamdani wins: what’s next in the fight against the billionaires?
Yesterday, self-described 'democratic socialist' Zohran Mamdani sent shockwaves through Wall Street as he won the New York mayoral race in the heart of American capitalism.Revolutionary Communists of America (Revolutionary Communist Party)
La seducente danza gravitazionale dell'uccello africano fluttuante - Il blog di Jacopo Ranieri
La seducente danza gravitazionale dell'uccello africano fluttuante - Il blog di Jacopo Ranieri
Quando il pregio coreografico di una sequenza del movimento dei corpi alberga nella staticità, piuttosto che il dinamismo? La risposta, in questo caso, è rintracciabile direttamente nell’approccio umano a una determinata attività del mondo: il volo, …Jacopo (Il blog di Jacopo Ranieri)
European-style-Royalty Anime Suggestions
South Korean solar firm cuts pay and hours for Georgia workers as US officials detain imports
South Korean solar firm cuts pay and hours for Georgia workers as US officials detain imports
A South Korean solar company says it will temporarily reduce pay and working hours for about 1,000 of its 3,000 employees in Georgia because U.S. customs officials have been detaining imported components for solar panelsJEFF AMY Associated Press (ABC News)
adhocfungus likes this.
World’s Largest Cargo Sailboat Completes Historic First Atlantic Crossing
World’s Largest Cargo Sailboat Completes Historic First Atlantic Crossing
The 136-metre-long vessel had to rely partly on its auxiliary motor and its remaining sail after the aft sail was damaged in a storm.MI News Network (Marine Insight)
adhocfungus likes this.
JD Vance hopes his Hindu wife converts to Christianity, sparking debate on interfaith marriage
JD Vance recently told a packed college arena that he hopes his Hindu wife would someday convert to Christianity, thrusting into the spotlight the deeply sensitive challenges facing interfaith couples.
Experts who have counseled hundreds of couples who don’t share religious beliefs say the key is respect for each other’s faith traditions and having honest discussions about how to raise their children. Most agree that pressuring or even hoping the other would convert could prove damaging to a relationship, and all the more so for a couple in the public arena.
like this
MPV: The Ultimate Self-Hosted Media Solution You're Probably Sleeping On
cross-posted from: lemdro.id/post/31558391
TL;DR: Stop running a Jellyfin server. MPV can directly play anything from your NAS, stream YouTube ad-free, handle literally every codec, and is infinitely customizable. It's like vim for video.
Why I ditched my Jellyfin setup
I used to run Jellyfin on my NAS. Transcoding, web interface, the works. Then I realized... why am I running a whole server stack when MPV can just directly play files from my NAS with zero setup?
What MPV Actually Is
MPV is a command-line video player that plays literally everything. But it's way more than that - it's a video engine you can build workflows around.
The Basics That Blow Minds
Direct NAS streaming (zero server needed):
mpv smb://192.168.1.100/media/movies/whatever.mkv mpv nfs://nas.local/shows/season1/*
No transcoding. No server. No web interface overhead. Just direct file access with perfect quality and zero latency.YouTube (and 1000+ sites) with ZERO ads:
brew install yt-dlp mpv "https://youtube.com/watch?v..."
That's it. Ad-free YouTube in your video player with all your custom keybinds. Works with Twitch, Vimeo, Twitter, Reddit, literally hundreds of sites via yt-dlp.Play entire directories:
mpv /Volumes/NAS/shows/BreakingBad/Season1/*
Boom. Instant binge session. Space bar skips to next episode. No library scanning, no metadata scraping, just files.
Workflows That Changed My Life
1. The "Watch Anywhere" Setup
Mount your NAS shares in Finder (or /etc/fstab for auto-mount). Now MPV treats your entire media library like local files. Add this to your shell config:
alias play="mpv" alias tv="mpv /Volumes/NAS/shows/" alias movies="mpv /Volumes/NAS/movies/"2. YouTube as Your Streaming Service
alias yt="mpv" alias ytm="mpv --no-video" # audio only for music
Now:
-yt "youtube-url"= instant ad-free playback
-ytm "youtube-playlist"= whole playlists as audio
- Keep your YouTube history/recommendations in browser, watch in MPV
3. Picture-in-Picture for Anything
Addontop=yesto config, resize window small = instant PiP for any video source while you work. Works with live streams, security cameras, whatever.
4. The "No Plex Shares Needed" Share
Send someone an SMB/NFS share to your media. They install MPV. They can now browse and play your media library like it's local. No Plex accounts, no streaming limits, no transcoding quality loss.
5. Live Stream Monitoring
mpv http://192.168.1.50:8080/stream.m3u8
Home security cameras, baby monitors, anything streaming HLS/RTMP = instant monitoring with keybind controls.
Customization That Makes Jellyfin Look Basic
My Config (vim-style keybinds + YouTube controls)
Saved as~/.config/mpv/mpv.conf:
input-default-bindings=no > add speed 0.1 < add speed -0.1 j seek -10 k cycle pause l seek 10 LEFT seek -5 RIGHT seek 5 UP add volume 5 DOWN add volume -5 . frame-step , frame-back-step m cycle mute f cycle fullscreen s cycle sub a cycle audio 0 seek 0 absolute-percent 1 seek 10 absolute-percent 2 seek 20 absolute-percent 3 seek 30 absolute-percent 4 seek 40 absolute-percent 5 seek 50 absolute-percent 6 seek 60 absolute-percent 7 seek 70 absolute-percent 8 seek 80 absolute-percent 9 seek 90 absolute-percent [ add speed -0.25 ] add speed 0.25 SPACE cycle pause ESC set fullscreen no i script-binding stats/display-stats S screenshot video profile=gpu-hq scale=ewa_lanczossharp cscale=ewa_lanczossharp hwdec=auto-safe vo=gpu screenshot-format=png screenshot-png-compression=9 screenshot-directory=~/Downloads cache=yes demuxer-max-bytes=150M osd-level=1 osd-duration=2000 save-position-on-quit=yes keep-open=yes alang=jpn,jp,eng,en slang=eng,en ytdl-format=bestvideo[height<=1080]+bestaudio/bestProfiles for Different Content
[anime] profile-desc="Anime settings" deband=yes [lowpower] profile-desc="Laptop battery mode" profile=fast hwdec=yes
Use with:mpv --profile=anime episode.mkv
Scripts That Make It Insane
MPV supports Lua/JS scripts. Drop them in~/.config/mpv/scripts/and they just work.Must-have scripts:
- sponsorblock - Auto-skips YouTube sponsors/intros/outros
curl -o ~/.config/mpv/scripts/sponsorblock.lua \ https://raw.githubusercontent.com/po5/mpv_sponsorblock/master/sponsorblock.lua- quality-menu - Change YouTube quality on the fly
- autosubsync - Auto-fixes subtitle timing
- playlistmanager - Visual playlist editor
- mpv-discordRPC - Show what you're watching on Discord
Advanced Workflows
Watch Parties (Syncplay)
Install syncplay, point it at MPV, now you and friends watch your NAS content together in perfect sync. No Plex share limits, no quality loss.
Audio Streaming
ytm "youtube-playlist-url" # or mpv --no-video /Volumes/NAS/music/*
No GUI needed. Terminal command plays audio, you use keybinds (k=pause, j/l=skip, etc). Or just minimize and use as background music player.For GUI: IINA (Mac) is literally just MPV with a pretty interface and uses your MPV config.
Frame-by-Frame Analysis
Built-in keybinds (.and,in my config) step forward/back frame-by-frame. Perfect for animation analysis, sports breakdown, debugging video issues.
Automated Workflows
# Watch anything in clipboard mpv $(pbpaste) # Random episode mpv "$(find /Volumes/NAS/shows -name "*.mkv" | shuf -n1)" # Continue last watched (auto position restore) mpv /Volumes/NAS/shows/CurrentShow/*Why This Beats Jellyfin For Me
Pros:
- Zero server maintenance
- No transcoding = perfect quality
- Plays literally any codec without setup
- Way faster (direct file access)
- Keyboard-driven workflow
- Works offline/online seamlessly
- Infinitely scriptable
- Cross-platform (Linux/Mac/Windows)Cons:
- No pretty web UI (I consider this a pro)
- No user management (just use OS permissions)
- No watch tracking (unless you script it)
- No mobile app (VLC on phone + SMB works though)
Who This Is For
- You're comfortable with terminal/config files
- You want maximum quality (no transcoding ever)
- You prefer keyboard controls
- You value simplicity over features
- You already have a NAS/file server
- You want YouTube ad-free without browser extensions
Getting Started
# macOS brew install mpv yt-dlp # Linux sudo apt install mpv yt-dlp # Windows scoop install mpv yt-dlp
Create config at:
- Mac/Linux:~/.config/mpv/mpv.conf
- Windows:%APPDATA%/mpv/mpv.confMount your NAS shares, point MPV at files. Done.
Resources
EDIT: Holy shit, didn't expect this response. Common questions:
Q: But I need to share with family who aren't technical
A: IINA (Mac) or mpv.net (Windows) give them a normal GUI that uses MPV underneath. Or just... teach them?play movie.mkvisn't rocket science.Q: What about mobile?
A: VLC on phone + SMB share to your NAS. Or just use MPV on desktop/laptop like a civilized person.Q: No watch history tracking?
A:save-position-on-quit=yesremembers position per file. For tracking across devices, write a simple script or just... remember what you watched?Q: This sounds like gatekeeping
A: It's literally a config file. If you can set up Jellyfin, you can handle this.
User Scripts
🎥 Command line media player. Contribute to mpv-player/mpv development by creating an account on GitHub.GitHub
adhocfungus likes this.
Can't seed a new torrent unless the leech is also listening on an open port
Using Transmission 4.0.5 on Mint 22.2.
I've been running a seedbox for some time now but have never made a new torrent before. I've got a file I want to make publicly available but for some reason can't seed it normally.
On the seedbox, Transmission is bound to an open port, and I added the best 20 trackers from this repo to the torrent. I also have a client I'm trying to test uploading to, but it can't seem to connect to the seedbox unless I also open the port on the leech client. Once I do it works normally, but I was under the impression only the seeder needed to be on an open port in order for clients to connect. Am I wrong and it's expected that both seeder and leecher have open ports? Would really appreciate some help!
GitHub - ngosang/trackerslist: Updated list of public BitTorrent trackers
Updated list of public BitTorrent trackers. Contribute to ngosang/trackerslist development by creating an account on GitHub.GitHub
like this
Always good to double check, but yes, I used canyouseeme and the port is definitely open.
That means TCP should be working as expected with the current configuration. Note those port test websites are only testing TCP, not UDP.
A few menu options below the one for port forwarding
I'm not familiar with ProtonVPN configuration so can't guide you much there, presumably if the port forwarding option only allows for one setting then maybe it's doing both TCP/UDP? I dunno..
there’s another for configuring the connection as OpenVPN(TCP), OpenVPN(UDP), or Wireguard.
Don't worry about that one, that's for configuring the VPN client you will be using to connect to the VPN server. It should not affect the port forward itself unless ProtonVPN is doing something odd.
I’ve had other issues in the past and Transmission’s internal port testing thing
Yeah I wouldn't rely on that, the internet port test inside the torrent client isn't always reliable. But in theory it should show up as open all the time if you have a stable open port :/
Could I be missing a step with the trackers?
Doubt it being a tracker issue, they update themselves on their own schedule usually.
I also have a client I’m trying to test uploading to, but it can’t seem to connect to the seedbox
Maybe should have asked this before - can the test torrent client see that there is a seed on the torrent? Or does it load the torrent but just isn't seeing any seeds or peers at all? The open trackers take a bit to update themselves with a new torrent hash so sometimes it just takes a bit before the torrent client sees a seed and begins downloading from it.
I’m not familiar with ProtonVPN configuration so can’t guide you much there, presumably if the port forwarding option only allows for one setting then maybe it’s doing both TCP/UDP? I dunno..
Maybe that's a good place for me to do some digging, but this is an issue specific to the new torrent I made. Things I download first seed just fine, and at much higher rates when I have the port open, so I think that's working normally regardless of any TCP/UDP stuff under the hood.
can the test torrent client see that there is a seed on the torrent?
I think I misread this. No, neither client sees any peers, but when viewing the trackers within the client, the trackers are reporting peers. I'll keep what I originally typed in the spoiler below.
::: spoiler Tap for spoiler
Yes. Incidentally, when I opened the port on the leech client, a few other leechers joined the swarm as well, but I was only ever able to upload anything to my own test client. Even once the upload finished, neither client uploaded anything to those other leechers either. A few hours later, the count (looking from both seed and leech client) went back down to 1 seeder and 1 leecher.
Um. Just out of curiosity, I checked the peer list again, and while I'm still the only leecher, some of the trackers are now showing multiple seeders? I definitely only ever uploaded anything to myself, how is that possible?
:::
How China's State-Led Strategy Outmaneuvered Market-Driven Tech
The Planning Advantage
How China's State-Led Strategy Outmaneuvered Market-Driven TechDialectical Dispatches
Firefox Forcing LLM Features - equk's blog
"Mozilla has been adding in llm & ai related features to Firefox for a while, enabling them by default without asking the user... The main problem with this is users are having this forced on them with no gui option to disable these features."
Article contains instructions for disabling the LLM through about:config.
Firefox Forcing LLM Features - equk's blog
Mozilla forcing llm features and providing no gui for users to disable themequk.co.uk
like this
reshared this
Firefox Forcing LLM Features - equk's blog
"Mozilla has been adding in llm & ai related features to Firefox for a while, enabling them by default without asking the user... The main problem with this is users are having this forced on them with no gui option to disable these features."Article contains instructions for disabling the LLM through about:config.
Firefox Forcing LLM Features - equk's blog
Mozilla forcing llm features and providing no gui for users to disable themequk.co.uk
Looks like science, lies like propaganda. Inside a new wave of climate misinformation
An AI analysis shows that climate deniers increasingly use charts, data visuals, and academic design to appear trustworthy. Researchers warn that fact-checking alone can’t counter the power of these deceptive aesthetics.
Dressing up climate misinformation up as science
An AI analysis shows that climate deniers are using data visuals to appear trustworthy. Fact-checking can’t counter the power of these deceptive aesthetics.Sarah DeWeerdt (Anthropocene Magazine)
like this
Oh. My. Lord.
Lol.
This has been the opposite case, like forever. (Except the ai part)
"An AI analysis shows that climate deniers increasingly use charts, data visuals, and academic design to appear trustworthy. Researchers warn that fact-checking alone can’t counter the power of these deceptive aesthetics."
Its the same tactics on both sides even. Show shit tons of anecdotal evidence and call it proof of this bullshit or that bullshit
Edit: and this isn't an invitation to hear your own bullshit so please dont.
Thousands of mosquitoes are being dropped by drone over islands in Hawaii. Here’s why
Since mosquitoes thrive in the warmer tropical habitats in the low elevations of Hawaii’s islands, the remaining honeycreepers found a refuge higher up in the mountains of islands such as Maui and Kauai, he explains.Now, this is changing. “With climate change, we are seeing warmer temperatures and we’re watching the mosquitoes move up the mountains,” he says. “(In places like Kauai) we’re watching the populations of birds there just completely plummet.”
https://www.cnn.com/science/hawaii-mosquitoes-rare-birds-drones-c2e-spc
Race for icebreakers heats up amid Arctic power struggle
Race for icebreakers heats up amid Arctic power struggle
The United States has agreed to purchase 11 of these giant ships from Finland in a bid to counter the push from Russia and ChinaIgnacio Fariza (Ediciones EL PAÍS S.L.)
Taiwan's vice president calls for closer EU ties in rare address to international lawmakers
cross-posted from: scribe.disroot.org/post/552237…
Archived versionTaiwan’s deputy leader urged the European Union to boost security and trade ties with the self-governing island and support its democracy in the face of growing threats by China, in a rare address to a group of international lawmakers in Brussels on Friday.
“Peace in the Taiwan Strait is essential to global stability and economic continuity, and international opposition against unilateral changes to the status quo by force cannot be overstated,” Vice President Bi-Khim Hsiao told lawmakers assembled for a China-focused conference in the European Parliament building.
While Hsiao did not formally address the whole EU Parliament — the European trade bloc does not have formal diplomatic relations with Taiwan — her visit drew ire from China.
“In an era marked by increasing fragmentation, volatility and rising authoritarianism, this gathering affirms something vital — that democracies, even when far apart, are not alone,” she added to a standing ovation in a small chamber of the European Parliament.
Hsiao also called on the lawmakers from countries including Germany and Spain to collaborate more on trusted supply chains and AI technology with Taiwan, the island off China’s east coast that Beijing claims as part of its territory and says must come under its rule.
...
Taiwan's vice president calls on EU to strengthen security and trade ties in face of China threat
Taiwan's deputy leader has urged the European Union to strengthen security and trade ties with Taiwan and support its democracy amid growing threats from China. Vice President Bi-Khim Hsiao addressed international lawmakers in Brussels on Friday.Sam McNeil (AP News)
“octo condannata ad uscire dal letto” (come questo sabato mattina ci ho messo 1 ora per alzarmi dal letto quando non volevo)
Oggi è sabato, e quindi… aridaje, non credo di dover ripetere per l’ennesima volta quali sono le vibe mortali del mio fine settimana. Di conseguenza, anche oggi ci sono accadimenti e realtà che forse fanno ridere, seppur non dovrebbero… del tipo di cosa succede quando arriva l’ora di alzarmi dal letto, al mio orario benedettissimo […]
Settlers set fire to Palestinian home, attack farmers, journalists in occupied West Bank
A group of illegal settlers stormed the outskirts of the Abu Falah village and torched the one-story home, causing parts of the house to burn, local sources told the state news agency Wafa.Israeli forces raided the area and opened fire at residents who gathered near the scene, though no injuries were reported, the agency said.
The UN warned on Friday of a sharp rise in illegal Israeli settler violence against Palestinians in the occupied West Bank, reporting 264 settler attacks in October alone, the highest monthly toll in nearly two decades.
“That’s the highest monthly toll in nearly two decades of record keeping, averaging more than eight incidents every single day since 2006,” UN spokesperson Farhan Haq said, citing the Office for the Coordination of Humanitarian Affairs.
In a separate attack, Palestinian farmers, journalists, and foreign activists sustained fractures and bruises after illegal settlers assaulted them during an olive-harvesting activity in the town of Beita, south of Nablus, Wafa said.
Mohammad Hamayel, deputy mayor of Beita, said that illegal settlers attacked participants harvesting olives in the Qamas Mountain area.
The Palestinian Red Crescent Society said its medical teams treated several injured people and transferred them to hospitals, but did not specify a number.
Among those injured were foreign solidarity activists, paramedics, and journalists, including Reuters reporter Raneen Sawafta and two journalists from Al Jazeera, according to local sources cited by Anadolu.
In a landmark opinion last July, the International Court of Justice declared Israel’s occupation of Palestinian territory illegal and called for the evacuation of all settlements in the West Bank and East Jerusalem.
like this
The human body as an input controller?
Cross-posted from fediverse user @peachy@goto.micromail.me
Is there such a thing as a configurable full-body input controller for computers? Is anyone working on that? I know there is work on controlling computers directly with the brain, which will be ace for people with full paralysis, but what I’m interested in is something that goes in the other direction - using more of the body. Think Tom Cruise’s interface in Minority Report but better.
Sitting, or even standing, to work at a computer takes its toll on the body, especially the back. Our bodies didn’t evolve to be so static while we’re awake. Emerging from a flare-up of a slipped disc, it has got me thinking of better ways to interface with machines.
Imagine the following:
You come to see me in my studio to see how I and my colleagues do image editing and graphic design in GIMP 4.0. Some of us are stood in front of large displays but no one seems to be using a keyboard, mouse or graphics tablet. I appear to be doing a dance routine from a music video... As I bounce my knee up and across my body you see that the Move tool has been selected. As I raise my left fist above my head it is as though I am holding shift to toggle “Pick a layer or guide”. I draw my right hand across my body with my thumb and forefinger pinched and the selected layer moves with me. Finally, I quickly raise both hands, like I'm flipping over a table and my project is saved and closed. Now that I’ve stopped moving around so energetically you notice that my stylish and comfortable cotton loungewear and gloves have small sensors dotted around them. I explain that the position of these sensors relative to each other and to the space have been mapped to traditional keyboard and mouse inputs via my operating system.
Moving to the next workspace you see my colleague Babs. Her white hair pokes out above a VR headset and she has a number of small cameras tracking her movement to the soundtrack of Chinese classical music. She is an elder and a veteran and even contributed some of the code that makes this stuff work, back in the day. She says it was no big deal; she mostly just connected up different programs, some of which Hollywood has been using since the 1990s.
Her movements are slow and smooth. It looks like she’s doing Qi Gong or Tai Chi or something. Raising a hand in front of her heart you see the Filters menu open and lowering it slowly the menu scrolls down to Enhance. Gracefully stepping sideways and lowering her hand further, Heal Selection is highlighted in the submenu. Turning her hand palm-up launches the plugin. She tells you that one of her first contributions to the interface was to make the body position tolerances configurable by the user in their desktop settings.
Lastly you watch my cousin Tommy at work. When we met I told you about how a head injury had left him partially paralysed and unable to speak. He too is using a VR headset, but instead of having cameras pointed at him he has a HD sonar array. His disability was caused by an error in the police’s facial-recognition software and understandably he’s had a thing about cameras ever since. The bad guy got away and he never caught the bus he was running to catch. Every couple of days he asks whether Nancy’s cameras are still disconnected from the network, which they always are.
Tapping his ring-finger once on the armrest of his wheelchair selects the Text tool. Turning his head to the side, he purses his lips and sweeps his face back around to make his text box. You see his mouth moving but there is no sound. “Hi, nice to meet you” appears in his projects new text layer. “You too” you reply. Twitching his right shoulder you see his text layer is duplicated, blinking twice and nodding his head replaces the text with what you just said. He must have used speech-to-text to record your words to his desktop clipboard and then pasted them into the text field. Pressing his index finger against the arm rest and looking toward the ceiling brings the new text layer to the top of the stack.
Running the same sequence of movements again, a third text layer becomes visible onscreen. “I’d never edited a picture in my life until I got into this tech as part of my physiotherapy treatment. My cousin ended up offering me this job and now I can work faster than anyone else here, especially Babs. I’m pretty sure she’s just here for fun but none of us mind.”
#tech #health #disability #GIMP #solarpunk
Post by 🐚 📷 Jack Burton🌛 🎸, @peachy@goto.micromail.me
The human body as an input controller. Is there such a thing as a configurable full-body input controller for computers? Is anyone working on that? I know th…goto.micromail.me
Border Patrol commander admitted he lied about tear gas incident, judge says, as she restricts use of force by immigration agents in Chicago
Border Patrol commander admitted he lied about tear gas incident, judge says, as she restricts use of force by immigration agents in Chicago
The judge's order limits the force of force during immigration protests.James Hill (ABC News)
like this
Marjorie Taylor Greene calls out Trump’s blatant lie on inflation
The MAGA representative is continuing her break with the Republican Party—and the president himself.
MAGA Representative Marjorie Taylor Greene is still one of the few GOP members to rebuke Trump and his lies in any meaningful way.
Taylor Greene spoke freely in an interview with CNN’s Kaitlan Collins on Thursday night. “The president says there’s virtually no inflation, and that grocery prices are going down,” Collins asked the Georgia representative. “Do you agree with him on that?”
“No, I go to the grocery store myself. Grocery prices remain high. Energy prices are high. My electricity bills are higher here in Washington, D.C., at my apartment, and they’re also higher at my house in Rome, Georgia, higher than they were a year ago,” MTG said. “Affordability is a problem, and I’m a mom. My kids are 22, 26, and 28. That’s the generation I worry about the most, and they’re having a very hard time.”
adhocfungus likes this.
Meta estimates that it earns 10% of its revenue from scams, report says
These fraudulent ads purport to offer a product or service that isn't actually real, and may be intended to solicit payments from less savvy users.
copymyjalopy likes this.
In Grok we don’t trust: academics assess Elon Musk’s AI-powered encyclopedia
DHS head reportedly authorized purchase of 10 engineless Spirit Airlines planes that airline didn’t own
Wall Street Journal reports Kristi Noem arranged purchase to expand deportation flights and for personal travel
The secretary of the US Department of Homeland Security (DHS), Kristi Noem, reportedly authorized the purchase of Spirit Airlines jets before discovering the airline didn’t actually own the planes – and that the aircraft lacked engines.
The bizarre anecdote was contained in a Wall Street Journal report released on Friday, which recounted how Noem and Corey Lewandowski -- who managed Donald Trump's first winning presidential campaign -- had recently arranged to buy 10 Boeing 737 aircraft from Spirit Airlines. People familiar with the situation told the paper that the two intended to use the jets to expand deportation flights -- and for personal travel.
Those sources also claimed Immigration and Customs Enforcement (ICE) officials had cautioned them that buying planes would be far more expensive than simply expanding existing flight contracts.
adhocfungus likes this.
Da Oeuf
in reply to LiamBox • • •Coming from a country whose economic growth has become completely dependent on scraping the internet.
It's one rule for you and another for capital which has captured the state.
like this
dcpDarkMatter likes this.
Hyperrealism
in reply to LiamBox • • •like this
arachnibot likes this.
rozodru
in reply to LiamBox • • •Telorand
in reply to LiamBox • • •tlmcleod
in reply to Telorand • • •technocrit
in reply to LiamBox • • •There are dozens of active serial killers on the loose in the US today
Gerrard Kaonga (unilad)robot_dog_with_gun [they/them]
in reply to technocrit • • •