Colombia expels ‘Israeli’ diplomats over Gaza flotilla intercept
Colombian President Gustavo Petro on Wednesday expelled all remaining ‘Israeli’ diplomats in the country over ‘Israel's’ interception of a Gaza-bound aid flotilla and reported detention of two Colombian activists.
Petro said two Colombian women, "who were engaged in human solidarity activities with Palestine," were detained by ‘Israeli’ forces in international waters.
In a statement, his office said Manuela Bedoya and Luna Barreto were part of the Global Sumud Flotilla (GSF) and called for their immediate release.
Colombia expels ‘Israeli’ diplomats over Gaza flotilla intercept
Colombian president Gustavo Petro speaks during the General Debate of the United Nations General Assembly.Roya News
like this
Maeve e ☆ Yσɠƚԋσʂ ☆ like this.
If it still works for you: Apprentice Alf’s DeDRM plugin for Calibre.
But I believe this ship has sailed after Amazon’s recent changes…
Decent (portrait/indoor) flash for Sony A7
Hiya! Any recommendations for a nice flash for the Sony A7 series?
I currently own an A7iii, but I'm debating an upgrade to the A7iv or A7v whenever it's released. I mostly shoot with my Sony 40mm G, Tamron 35-150mm, and Tamron 17-28mm.
Links to good buying guides would be great, too! (not AI generated slop recapping Amazon's top 10)
Budget is rather arbitrary as long as price/quality is upheld.
Türkiye follows US sanctions on Iran with asset freezes
Türkiye froze the assets of numerous individuals and entities connected to Iran's uranium enrichment activities on Wednesday, coordinating with broader international efforts to pressure Tehran over its nuclear program.
The decision, issued Oct. 1 under presidential decree number 10438, targets people and organizations involved in Iran's nuclear development program. The move comes as the United States imposed parallel sanctions on Iranian weapons procurement networks, marking a coordinated response to renewed concerns about Iran's nuclear capabilities.
Türkiye's asset freezes affect individuals and companies across multiple sectors, including Iranian nuclear facilities, shipping companies, energy firms, and research centers. Among the targeted entities are the Atomic Energy Organisation of Iran, several banks, and companies involved in uranium conversion and nuclear fuel production.
Türkiye follows US sanctions on Iran with asset freezes
Türkiye freezes assets of individuals and entities linked to Iran's uranium enrichment program through a presidential decree following US sanctionsNewsroom (Türkiye Today)
How to keep avoiding Google when it hamstrings Freetube [Linux]
If you have any sense of privacy, you know better than to use Google's official Youtube clients - not to mention, they're really kind of terrible.
To view Youtube video comfortably and limit Google's privacy invasions, the main third-party clients are:
- NewPipe and derivatives (Android)
- Grayjay (Android)
- Freetube (Desktop)
- Grayjay desktop - x64 only (Desktop)
Unfortunately, if you've been using those third-party clients for a long time, you know Google plays a game of cat and mouse with them, to discourage users from using them:
- Google breaks something or other (usually the player API) or Google blocks your IP because it detects a non-Google player.
- The developers of those clients play catch-up, make their clients work again for a while.
- Google breaks them again. Rinse. Repeat.
And Google now having free rein to be as abusive as they want under the Trump regime, it's not getting any better ☹️
The developers who react most quickly to Google's shenanigans are the FUTO developers behind Grayjay: when Google breaks it, usually they have a fix within hours, if not less. And there's a reason for that: they're paid to do it. Incidentally, I encourage you to purchase a FUTO license: it's money well spent to encourage FUTO. They've really earned it.
The Newpipe developers are also fairly quick to fix their client. Not always, but they do a pretty decent job.
Freetube however can take many days to get fixed. For instance, the native Freetube player is currently broken and it's been broken for a week.
When Google plays with everybody's balls, if you're on mobile, at least Grayjay will almost always get the job done, so you don't have to compromise your privacy and hit the official client.
On the desktop however, ~~unless you have an ARM64 machine and you use Grayjay as a desktop app in Waydroid - which is a totally valid solution that works great, in case you didn't know~~ [EDIT: this is incorrect: there is in fact an x64 Grayjay desktop client - Thanks @portnull@lemmy.dbzer0.com], Freetube will sadly let you down regularly for a long time.
The official workaround recommended by the Freetube developers when Google breaks their player is to use an external player. But there are two problems with that:
- If you don't use the right external players - which Google likely broke too - or the player isn't configured to use the latest and greatest Google evasion code, it's not going to work.
- When spawning Freetube with a URL (typically by LibRedirect from your browser), Freetube ignores the external player and tries to play the video with its broken internal player anyway. You can always manually tell it to use the external player after it's failed trying to play the video itself, but it's an extra step, and you end up running both Freetube and the external player just to view a Youtube video from a website.
So I figured I'd post a little guide on how to setup an external video player that works with Freetube (and gets fixed quickly when Google breaks it) and how to spawn it directly from your browser to view a video and bypass LibRedirect / Freetube entirely.
This little guide is mostly for Linux. If you're not running Linux, the principle should be the same, but the details of how to make this work are different of course.
So the player you need is SMPlayer. SMPlayer is a great mpv player frontend in its own right. Don't worry, both mpv and SMPlayer are usually available in most distros, so you can install it normally with your favorite package manager.
But the thing that makes SMPlayer great is, to play Youtube video, it can use yt-dlp as a backend to fetch the video from Youtube:
And it turns out, the developers of yt-dlp are usually very quick to unfuck Google's fuckeries and make it work again. Almost as quick as FUTO's developers: when Google breaks things, yt-dlp is usually one of the first Youtube clients to start working again.
The problem is, the version of yt-dlp that comes in most distributions is usually hopelessly behind, so it won't work with your distro's official package.
To use the latest and greatest yt-dlp with SMPlayer, you need to use the version in the Github repo. To do this:
- Clone the repo (for example in your home directory):
git clone --recurse-submodules https://github.com/yt-dlp/yt-dlp.git - Make yt-dlp available in your PATH:
ln -s ~/yt-dlp/yt-dlp.sh ~/.local/bin/yt-dlp
Then if you invoke yt-dlp from any directory, it should start it correctly:
$ yt-dlp
Usage: yt-dlp [OPTIONS] URL [URL...]
yt-dlp: error: You must provide at least one URL.
Type yt-dlp --help to see a list of all options. Then you can try if SMPlayer now plays a Youtube video correctly:
smplayer https://youtu.be/jNQXAC9IVRwFinally, configure Freetube to use SMPlayer as an external player:
Now try to play a video from Freetube: it should open SMPlayer and SMPlayer should play the video correctly.
When Google breaks yt-dlp again, simply go into the repo and do a git pull --recurse-submodules. Do this regularly until the yt-dlp folks work their magic and fix it, which should happen a lot quicker than fixing the internal Freetube player.
Finally, how to spawn SMPlayer directly from the browser:
- Install the RunWith browser extension: this little thing is a simple tool to spawn an external program from the browser and it's really underrated. Not terribly user-friendly to install but it does the job fine.
- In the RunWith extension preferences, configure RunWith like so:
Then if you right-click on a Youtube video link, you'll get an option in the context menu to open it with SMPlayer through RunWith:
I hope this helps 🙂
[Bug]: [BAD_HTTP_STATUS: 403] Potential causes: IP block or streaming URL deciphering failed
Guidelines I have encountered this bug in the latest release of FreeTube. I have encountered this bug in the official downloads of FreeTube. I have searched the issue tracker for open and closed is...69Starship420 (GitHub)
like this
Rozaŭtuno, ☆ Yσɠƚԋσʂ ☆, adhocfungus e geneva_convenience like this.
Thank you for the recommendation. I have been wanting to try out the FUTO apps (which grayjay) for a while but couldn't find it on f-droid. It looks like they have their own repo which you need to add.
Just got grayjay downloaded and it is so good!
Grayjay is really much more than a YouTube frontend. It's a cross-platform video player, which I find is the only way to watch PeerTube videos! Outside of PieFed! And I think is really the best way to end YTs reign.
Although I wish there was a web client...
Just stop using youtube...
Oh, ad Tubular to your list over Android players...
And then keep asking for videoes on other platforms...
and when I ask my favorite creators, what do I bring up as the upside? that it doesn't have ads?
that's not an upside for a lot of them.
I encourage you to purchase a FUTO license: it's money well spent to encourage FUTO. They've really earned it.
You should stop promoting FUTO's proprietary software. It is also against community rules.
You guys ever wonder if maybe if the answer is to stop stealing s*?
There are two ways to be honest with normal companies:
1/ You pay them and they stop monetizing your data
2/ You don't patronize their services and you choose a competitor instead
Unfortunately, with Google as with most other surveillance capitalism monopolies, it doesn't work that way:
1/ If you don't pay Google, they violate your privacy and abuse your data. If you pay them, they don't stop: you just gave them extra money because you're gullible.
2/ Youtube is a virtual monopoly. There is no valid competition to speak of. And unfortunately, a lot of the societal discourse now happens on Youtube. So it's kind of unavoidable.
Therefore, Google being the abusive monopoly that it is, you have no way to deal with the essential service they provide honestly and pay your fair share - which I honestly would gladly do - without compromising your privacy. They put themselves in a position to be this abusive.
Therefore, I consider my duty towards paying honestly for Youtube waived. That's why I'm happy to pay for a FUTO license for the work they do with the Grayjay client, but I'll never give Google a cent: FUTO respects me while Google spits in my face.
who is the thief here? One who wants outsized profit beyond 10 generations of children? Or the average overworked joe who hates dealing with the 3rd 2 minute ad on a 10 minute video?
Maybe realise that there's more important things to worry than denying "projected profits" from a billion dollar megacorp which steals regularly from people (in the form of bribing politicians to make policies that benefit them and disadvantage actual people, or destroying the earth for training LLMs, or stealing content to use for the same LLMs)
Unwatched a good client for ios
GitHub - fer0n/Unwatched: RSS feed based YouTube video player for iOS, macOS, tvOS
RSS feed based YouTube video player for iOS, macOS, tvOS - fer0n/UnwatchedGitHub
Thanks for that - the Freetube/SMPlayer part worked for me!
What is the full content of the Target URLs field for RunWith? Trying to get that bit working now. Thanks 😀
I mean, peertube is full of that right now and nobody wants to watch it.
There's maybe a couple of hours, a week worth of reasonable content and it's the same handful of people.
Until somebody figures out monetization on Peerube, the platform will be stuck right exactly where it is now.
Dont think we all should need to suffer because creators and ad agencies "need" to make a living. The entire internet economy is built on centralized platforms owned by big tech now. It sucks so much.
Not much remains of the original ideas of the web. People think social media is the web.
Fair enough, no content then. Those people who quite their jobs to make the streams are only doing it because they get paid. They're not going to spend 60 hours a week moving over to peertube and having to go back to their 9-5.
All the people who will make content for nothing are already on Peertube. If you don't want anything else, you're already good to go.
Very thought out write-up! I generally use Freetube, as I'm primarily a desktop user, but since it's been down, I learned how to use yt-dlp, and picked up some GUIs that sit on it to try out. It's been a little surreal watching everything as a self contained file, but almost nostalgic in a way too.
That said, I look forward to when things get patched up on the Freetube front.
It’s been a little surreal watching everything as a self contained file
Yes the main .py is quite a pile of code 🙂
It's one of those projects that grew organically and never got reorganized. I maintain a niche open-source project like that that has a few dozen kilobyte main Python file and I'm ashamed of it. But then it's so niche I don't really want to spend the time reorganizing it.
yt-dlp would benefit from that though...
Just so you know, if you like freetube, you can configure the external player to mpv, which underneath uses yt-dlp when streaming, and use the button to load the external player. Of course one can also launch smplayer, which underneath is using mpv, which underneath...
But the thing is content creators don't move out of YT cause they're there to monetize in the first place. So this thing seems never ending no matter alternatives like peertube exist.
Hmm, youtube-dl? I believe it's no longer the one to use, it's yt-dlp, and mpv has support yt-dlp for quite some time, but it could be any player as long as it supports yt-dlp. What I've noticed is that nothing gets as fast to fix these YT issues than yt-dlp. It's working fine for me on Artix for quite some time. And unless wanting ton use a browser, that's what freetube has been documenting every time receiving related bugs. See for example:
github.com/FreeTubeApp/FreeTub…
[Bug]: [BAD_HTTP_STATUS: 403] Potential causes: IP block or streaming URL deciphering failed
Guidelines I have encountered this bug in the latest release of FreeTube. I have encountered this bug in the official downloads of FreeTube. I have searched the issue tracker for open and closed is...69Starship420 (GitHub)
Hey!
Where's invidious?? the option to self-host your web yt client??
Or just using yt-dlp?
(tho, I lightly use yt nowadays, the content is getting satire...)
pip3 install yt-dlp -U.
We should all switch to Lbry its designed for content freedom. Its like youtube but works like torrent.
Its open source and much better platform but much less popular also which is what i would like to be changed in the future..
Trump administration says it will cut $8 billion for climate projects in blue states, including California's hydrogen hub
Archived copies of the article:
* archive.today
* web.archive.org — click 'continue'
* ghostarchive.org — still loading when I posted
You can also put a '.' after the '.com' in the URL
U.S. says it will cut $8 billion for climate projects in blue states
Russ Vought, director of the White House's Office of Management and Budget, and a top Trump administration official, said the U.S. Department of Energy will cut funding for energy projects in 16 Democratic states.Hayley Smith (Los Angeles Times)
like this
thisisbutaname likes this.
Republican states working on similar efforts — such as Texas, the largest producer of wind energy in the U.S. — were not among Vought’s list of cuts, despite also receiving funding from the Department of Energy.
Thats ridiculous, but I guess it's better than them cutting everything....
Photos Capture the Extreme, Beautiful Work of Climate Science
Photos Capture the Extreme, Beautiful Work of Climate Science | Quanta Magazine
Building an accurate model of Earth’s climate requires a lot of data. Photography reveals the extreme efforts scientists have undertaken to measure gases, glaciers, clouds and more.Yasemin Saplakoglu (Quanta Magazine)
As California glaciers disappear, people will see ice-free peaks exposed for the first time in millennia
The remaining glaciers of California's Sierra Nevada are vanishing
The glaciers of California's Sierra Nevada are disappearing as temperatures rise. Scientists recently found that the glaciers probably have never before melted in human history.Ian James (Los Angeles Times)
like this
Cătă e thisisbutaname like this.
60hz Displays are a slideshow
Technology reshared this.
I'm the other way. I'd rather have battery life on cell phones, and turn the refresh rate down.
On a desktop, where the power usage is basically irrelevant, then sure, I'll crank the refresh rate way up. One of the most-immediately-noticeable things is the mouse pointer, and that doesn't exist on touch interfaces.
A pure wireplumber way to switch audio devices, no pactl
wpctl set-default $(pw-dump | jaq -r '.[]|select(.type=="PipeWire:Interface:Node" and .info.props["media.class"]=="Audio/Sink")|[.id,.info.props["node.name"],.info.props["node.description"]]|@tsv' | awk -F'\t' -v d="$(wpctl inspect @DEFAULT_AUDIO_SINK@|awk -F'"' '/node.name/{print $2;exit}')" 'BEGIN{c="tofi --prompt-text \"Audio Device: \" --height 40% --width 40% --auto-accept-single true"}$2!=d&&$2!="easyeffects_sink"{a[$3]=$1;devs++;print $3|&c}END{if(devs>1){close(c,"to");c|&getline p;if(p!=""){print a[p];system("notify-send --urgency=low --icon=/run/current-system/sw/share/icons/Flat-Remix-Red-Dark/panel/audio-volume-high-symbolic.svg \""p"\" -h string:x-canonical-private-synchronous:sink-state")}}else if(devs==1){for(k in a){print a[k];system("notify-send --urgency=low --icon=/run/current-system/sw/share/icons/Flat-Remix-Red-Dark/panel/audio-volume-high-symbolic.svg \""k"\" -h string:x-canonical-private-synchronous:sink-state")}}}') >/dev/null && pw-play --volume=0.2 /run/current-system/sw/share/sounds/freedesktop/stereo/audio-volume-change.oga >/dev/null &!
there's probably a lot to improve here, took forever to get this working, did not do a cleanup pass, jfc this took forever, replace tofi with your menu of choice, thought people should have this.
wishlist: change the icon based on volume level
like this
Auster likes this.
Hey, that's the combination on my luggage!
But seriously, thanks for sharing. Looks like there's some good stuff in there to learn from.
That's tofi, the dmenu alternative I'm using, I set its height and width, the oga is a media file, that plays the same ding as a volume change so you know what sink you're playing from now.
feel free to replace tofi with dmenu or whatever
~/bin. If one has to get back to it 5 years later, it will be painful to debug
I don't like doing that because i'm working on nixos which already makes it complicated but i also have a script that fully sets up my entire system and that would add some complexity to that, plus i just have a strange aversion to making it a bash script purely because it would be the only common function in my setup that's on a bash script
and it wouldn't be that hard to convert it to one for future debugging anyway
I can see how that could be a hassle on nixos and if you don't have more scripts
FWIW, I use chezmoi for stuff like this, I guess it might be easier to make it work with nixos by setting up chezmoi in HOME, instead of defining scripts directly
You need 3 backticks to get a code formatting block.
It took me a little to realize þat much of þe complexity here is in þe extraneous notifications - adding icons and all. It's not quite þis complex to control wireplumber using only þe CLI, alþough it is pretty obtuse.
I don't think it's much worse than what you have to do with pulseaudio, TBH. Here is my Haskell take on switching devices: github.com/balsoft/lambda-laun… and Rust take on displaying device status changes as notifications: github.com/balsoft/simple-osd-… .
Both are also long and hacky
lambda-launcher/src/LambdaLauncher/Plugins/Pulseaudio.hs at master · balsoft/lambda-launcher
Application launcher in haskell. Mostly Just For Fun. - balsoft/lambda-launcherGitHub
i'd recommend rewriting this in some other shell-friendly language that can do proper text and JSON munging, because this just looks like spaghetti.
Perl comes to mind
Live: Israel says it has stopped several vessels from Gaza aid flotilla
cross-posted from: lemmy.world/post/36761957
Israeli navy is moving to block a flotilla carrying aid toward Gaza. Activists onboard are demanding humanitarian access, calling the blockade illegal. Reports say the ships are being shadowed as they approach. Situation is still developing.
Microsoft launches ‘vibe working’ in Excel and Word
Microsoft launches ‘vibe working’ in Excel and Word
Microsoft is launching new AI tools in its Office apps. A new Agent Mode comes to Word and Excel, alongside an Office Agent in Copilot chat.Tom Warren (The Verge)
like this
bacon_saber e SuiXi3D like this.
Technology reshared this.
Microsoft says its Agent Mode in Excel has an accuracy rate of 57.2 percent in SpreadsheetBench, a benchmark for evaluating an AI model’s ability to edit real world spreadsheets.
It generates 42.8% bullshit.
like this
emmanuel_car e bacon_saber like this.
If Excel got calculations right 57.2% of the time it would be completely worthless.
like this
emmanuel_car likes this.
As I’ve said many times, though not in this topic - AI is a tool to be used, and using it is a skill that needs to be learned.
For your pandemic example, that’s something that you would need to provide the AI with the context of. The joke of a “prompt engineer” being a job soon actually has merit, in that you want people who know how to use their tools the best. It’s constantly learning through iteration to give the AI a specific instruction set to get the results you want/need.
It Took Many Years And Billions Of Dollars, But Microsoft Finally Invented A Calculator That Is Wrong Sometimes | Defector
It’s not AI winter just yet, though there is a distinct chill in the air. Meta is shaking up and downsizing its artificial intelligence division.defector.com
LLMs can't count. Can't add. Can't deal with actually large datasets
How is excel a good fit for vibe-coding?
This isn’t just an LLM. It uses excel functions and features to do the counting and adding and dealing with large data sets.
It’s not “vibe coding” as much as “vibe performing steps in excel”.
Also LLMs absolutely can deal with large data sets anyway. Not sure where you got that from.
LLMs lose context over a short session. They all have input limits. Very small input limits usually. Best it can probably do is suggest formulas for you based on your natural language, maybe some copy/paste. Which means it can beat a 9 year old, great news everyone! Or show a help article on pivot tables (which the help function already does!)
Excel is very simple to work with, hence its ubiquity. LLMs also get shit wrong about half the time, way more than half with difficult things ime. Meaning they cost experienced operators time, a few studies are showing this now with coding. And are expensive as fuck. And slow as fuck. And reduce capacity for learning. Meaning they actually cap what excel can achieve, as the user won't grow at the same rate, renoving the one advantage excel actually has: the learning rate is phenomenal
The C-Suite which insisted on this integration is basically an subservient idiot themselves at this stage who doesn't understand their product, their market fit, or their userbase. They should replace thenselves with an LLM
I think you didn’t even read the article or read up about this integration.
This isn’t just an LLM, it’s Agentic AI.
AI is a tool that needs to be learned how to be used properly. Anyone can pick it up and get results that are “good enough“, but in the right hands what can be done is incredible - just like with any tool.
Look at something like minecraft as a perfect example of what can be done with a tool in the right hands.
Most people don’t understand “AI” as it is, and mistakenly think it’s just a school assignment cheating tool and a chat bot that makes things up.
People in here have been saying since LLMs can’t do maths perfectly it’s terrible for numbers, but they can’t see that it doesn’t need to do maths here because it’s in excel and excel has formulas and functions that can.
It’s crazy how the mere mention of AI makes some people lose any and all semblance of critical thinking and intelligence.
Excel is very simple to work with
Ok so your idea of excel is just what your average person might do at home with it - that’s not what or who this stuff is for.
And people will fuck up those same formulas 30% of the time (vs 45% of agent mode).
AI isn’t being forced into being the only way to do spreadsheets.
You tell it not to.
I swear none of you guys have even attempted to use AI to do data analysis. I have, I built a MCP and integrated a copilot agent into Teams which has access to specific database data, and refined the rules for it to the point where the CFO rigorously tested it (and still does) and trusts the results it returns.
It could be good to layer in standard machine learning (ML), and it already does have some features (like line of best fit).
However, in today's context AI means LLMs, and that is not a good fit due to its unpredictability.
The best you can do in any job is to care as little about them as they care about you.
They will barely read it, and they won’t care nearly as much as you do.
I resign my position as a [position], effective [DATE].
How automakers are reacting to the end of the $7,500 EV tax credit
How automakers are reacting to the end of the $7,500 EV tax credit
Tesla is raising lease prices; Ford and GM may have found a loophole.Jonathan M. Gitlin (Ars Technica)
Rozaŭtuno likes this.
What are your favorite video game openings?
essell likes this.
Homeworld.
Beautiful, moving, elegant.
A story, a tutorial, a punch in the gut
Love it.
My pick as well.
It starts off with such hope, the promise of new beginnings. Then the the initial sense that something is wrong.
Hurry back and the adagio swells as you realize the emensity of the tragedy. Then the desperate attempt to save as much of what's left as you can before fleeing.
I agree, it's a very special game.
What does it for me is the quality of the voice acting. The way I can hear their voice almost but not quite breaking in the sorrow. Superb
President Xi Jinping calls for forging ahead with determination in advancing Chinese modernization
President Xi Jinping calls for forging ahead with determination in advancing Chinese modernization
President Xi Jinping on Tuesday called on the nation to keep on working hard and forge ahead with determination in advancing Chinese modernization.CGTN
copymyjalopy likes this.
IR: Câmara aprova isenção para quem ganha até R$ 5 mil
cross-posted from: sh.itjust.works/post/47145681
Promessa de campanha do presidente Lula, texto é o único projeto previsto na pauta; proposta prevê alíquota progressiva de até 10% para rendimentos acima de R$ 600 mil por ano.
IR: Câmara aprova isenção para quem ganha até R$ 5 mil
Câmara aprova projeto que isenta do Imposto de Renda quem ganha até R$ 5 mil, promessa de campanha de Lula. Veja como fica a alíquota para rendimentos maiores.G1
Trump: Why don't you guys move half your manufacturing to the US...that way we still get your chips even if China invades?
Taiwan: Ummm. Yeah, no.
More like
Taiwan: Ummm, China is not going to invade, that is just your shitty propaganda
too entitled to take the abuse
too entitled to learn from people who are clearly smarter then they are
TSMC does have fabs in Arizona now. Next to the Intel fabs. 😆
It’s more about money and proprietary tech.
Cutting edge fabs are expensive and risky, which is why most chip companies are fabless, and they should be a state project because of the risk and expense. I’ve seen estimates of $15-$20 billion dollars to setup a new 3nm fab.
Intel, TSMC, and Samsung are the 3 companies left which run cutting edge fabs. Intel missed on a couple generations, and they are sinking. Samsung is lagging, so it remains to be seen how long they’re in the game.
TSMC figured out the new tech and Intel didn’t. TSMC picked the correct horse, and Intel didn’t. It’s my understanding Intel couldn’t switch to the TSMC process if they wanted to. The two are different enough to be incompatible.
America doesn't need half of it's national demand met by domestic production. Just enough to not need to start from scratch should China gain control over Taiwan. South Korea might already be fulfilling that role with GlobalFoundries (though that's owned by the UAE so ... ).
It'd be a nightmare trying to get the skilled foreign labor into America these days though so it's a lost cause anyway.
like this
☆ Yσɠƚԋσʂ ☆ likes this.
facebook and privacy leaks
Before we start, I want to stress that I deleted my facebook account since 2015 (almost 10 years now). Deleted = find the the delete account page, agree to delete and do not log back in. In 2012, I tried to delete but ended up logging back in due to addiction. Before I deleted, I switched the email I was using to some temp email.
Also, this is not some story I pulled out of my ass to get upvotes here on on reddit, r/nosleep. It is true and it shows how fucked up and how deep our privacy is being violated.
Anyway, as this is about privacy, here are somethings that are very disturbing:
1) Back in 2015 (months after the account was "officially deleted"), while browsing the web with a different browser but the same computer and same network, I got ads on the side from facebook showing "My Account Name and 100 like this". It even retained the profile pic I used before deleted.
2) This one is tricky, I'm not sure if I'm paranoid but it scares the shit out of me. Months ago, my family wanted to check out the menu items of a local restaurant before going there. The menu was posted on facebook and half of it is covered unless you log in.
Nobody in my family uses facebook. Nothing on phones or computers.
So we decide to create a fake account with a fake name using a temporary email. This is before the identity validation bullshit. We log on using a burner computer at a different wifi. After viewing the menu, we scrolled down a bit.
Remember, this is a blank account: no friends, no pages, no likes...etc. So there was nothing on the news feed. We clicked on some local posts, liked some others just to get the newsfeed populate.
This time we can see posts on the feed. As we scrolled down, we saw posts from this news sites and from local celebrities, game ads...etc. There was this random post. Underneath, it showed "A B C and 100 like this".
The problem? A B C is my actual last name, middle and first name !
I have never ever used A B C on any facebook accounts. Nick name, yes so like: Z C. But never A B C. In the messages of the deleted account, sometimes I use A like when a friend talk to you using your name: hey sup A. The middle B i never use.
like this
Rozaŭtuno, adhocfungus e giantpaper like this.
Meta gets data from all over, you don't need to tell them your name for them to figure it out.
What do you mean by different wifi and burner computer? Did you do anything on the device prior to visiting Facebook?
like this
giantpaper likes this.
Yup Facebook can and does scrap other websites.
Those log in with Facebook buttons tracking you all over the web even if you don't log in with them.
My guess maybe a website like LinkedIn for example had your middle name and facebook used that to build your full name on your deleted account (that's still floating around out there by the long last of it)
like this
giantpaper likes this.
Months ago, my family wanted to check out the menu items of a local restaurant before going there. The menu was posted on facebook and half of it is covered unless you log in.
Brother....
- Ask for a fucking paper menu
- Walk the fuck out
Please. Don't allow this. I walked away from a place just yesterday because they wanted me to download an app and create a login and give them my phone number just to order some fucking food. Don't tolerate this horseshit.
The funny part? It was a food truck park. I took 5 steps to my left and walked up to a different window.
- Ask for a paper menu
- Walk the fuck out
check out the menu items of a local restaurant before going there
How are they going to walk out or ask for a paper menu if they aren't there? 🤔
'Dumbphones' Are Not Private
Whenever people ask about ways to make their smartphones more private or which is the most privacy-respecting phone to get, there's always a few people confidently asserting "all smartphones are spy tools, get a dumbphone with no apps if you want to be private". Which is ridiculous advice for a few reasons
- Dumbphones usually run either proprietary operating systems or outdated forks of Android. They're almost never encrypted. They rarely get security updates. They're a lot more vulnerable than even a regular Android phone
- With dumbphones, you're usually limited to regular phone calls or SMS/MMS messaging. These are ancient communication standards with zero built-in privacy. Your ISP can read any text message you send and view metadata logs of any phone calls you make. In lots of places (like Australia where I live) ISPs are actually required to keep logs of your messages and phone calls
With even a regular Android phone you at least have access to encrypted messaging apps like Signal or Session so your conversations aren't fair game for anyone who wants to read them. Of course there are better options. iOS (not perfect but better than most bloatware-filled Android devices) and a pixel with GrapheneOS (probably the best imo) are much better options; but virtually anything out there is going to be better for privacy than a dumbphone
Edit: Thanks everyone for giving your thoughts. Some really good points I hadn't thought much about
like this
Maeve, Oofnik, Rozaŭtuno, giantpaper e adhocfungus like this.
It comes down to the hostile actor you are trying to defend against. If you are Jason Bourne and you have been burned by your agency so multiple nation-states are looking for you, then you have to go fully off-grid and live a quiet life without ever communicating with anyone in your prior life again. It doesn't matter if you are using Signal, or SMS, or even a dial-up BBS. If you are communicating with people that are also under heavy surveillance, you cannot hide.
If you want to reduce your "digital footprint," then not using google/facebook/other social media is the most worthwhile thing you can possibly do. Your phone doesn't matter. Use iOS, never install any of the social apps, use Safari in incognito mode, and you'll never be tracekd across websites again.
What happened with Firefox?
I think OP meant use Safari with the Apple's Privacy Relay thing that hides your IP and generalizes location data into a larger area, not just regular "private mode" that Safari has. Too bad it's subscription only on iCloud+, and who knows if it actually works as well as Apple claims it does.
This. A dumbphone is private in the sense that it's not collecting and transmitting a whole lot of data to Facebook, Google, etc., which is what most people are concerned about in this community.
If you also want encrypted communications, use something built for that purpose. But keep in mind, the other person will also have to have a compatible device, and probably isn't as concerned about maintaining hygiene.
like this
giantpaper likes this.
It's absolutely not. It requires extraordinary trust in Apple.
The most private and secure OS is GrapheneOS, without a doubt. Google cannot use data they do not have.
Switching from a smartphone to a dumbphone is usually not about increasing privacy in the first place.
People tend to make the switch for mental health reasons, rather than privacy ones. When your phone goes back to being a direct communication tool rather than a passtime, you tend to realize just how much time you spend during a day doing basically nothing.
Apostrophy - Ultimate Privacy and Data Security
Apostrophy provides secure smartphones and a private OS designed for true data ownership. Protect your digital identity from big tech, hackers, and surveillance.Nicole Cau (Apostrophy.ch)
Pretty sure the Punkt is my next phone and a Raspberry Pi 500+ is my next desktop.
Take me back to the start of the millennium. I'm tired of this shit.
Yes but you also have to get your phone from a hardware manufacturer who you trust, so not google or Samsung or huawei or… etc.
Fair phone maybe?
like this
giantpaper likes this.
Good point. Linux phones, even in their current state, might be a good middle ground for people with low needs.
Although there's two things I'd mostly be worried about.
1. Battery life. Smartphones, including Linux ones, aren't exactly known for amazing battery life. A dumb phone would likely last several times longer on a single charge.
2. Physical durability. Even after all those years of structural improvements, smartphones remain fairly fragile. Usually I use high durability cases with my smartphones (ideally Otterbox Defender), though I don't think anything similar is even available for any Linux phones. And of course, we all know dumb phones are generally durable enough.
With dumbphones, you’re usually limited to regular phone calls or SMS/MMS messaging.
That's kind of the point.
Sure, you can't do much with them, but by that very fact you also won't have nearly as much data to be spied on.
Likewise, you can do much more with a smartphone, but that comes with a much higher surface of attack, and you also have to work a lot harder to keep all the data away from spying.
Yes, not so difficult to spy phone calls and SMS, but it's way less risky for privacy and security as in Smartphones, full of sensitive data on an OS and tons of apps which logs and spy on you, spreading the information not only to the ISP and govs, but also to private advertising companies and others, which is way worse. Phone lines are way less dangerous for privacy and security as the Internet, log data stored by the ISP are deleted after an max. of three month, data on the internet are forever and can't be deleted, because they are spreeded everywhere.
At least in my case, I don't use my Smartphone for other things as for calls, I don't use any messenger apps nor storing sensitive data on it, desconected GPS and localisation apps. For me smartphones as such are spyware by definition, more if the include AI like they are doing currently.
And your keystrokes are logged on phones where you use Signal...
Dumbphones are more private. Privacy is on a scale, and you have less apps and systems that track you and profile you on a dumbphone.
Do you want true privacy? Don't use a phone...
like this
giantpaper likes this.
First they came for the gamers
Ok but the only server you can connect to is that one that plays that ASCII version of star wars in the term
telnet towel.blinkenlights.nl for anyone who hasn't experienced this masterpiece
even all old Nokias and flipphones and the like have an OS they're just in house developed proprietary embedded software/firmware not open sourceish like android
its how almost any sufficiently complicated device that uses PCBs works even modern washing machines and such run atleast what it basically a firmware os
yeah a smartphone with locked down hardware and graphene and open source encrypted communication is best obvs
the reason street drug dealers use burners is the customers won't all have encrypted communication they'll have sms/calls
How can you have a private phone with less security?
Edit: Certainly without security you cannot have true privacy
It is simple.
It produces significantly less data. It doesn't have all the apps you are being tracked by reporting on your every move.
It doesn't have faceid, and probably has a lot of exploits (less security), but the data it holds isn't worth securing and it doesn't provide a non-stop datamine (more privacy).
Basically, instead of having a large safe filled with gold, you have a duffel-bag with your old gym clothes. You don't need security for old gym clothes.
Someone once broke into my sister's car and stole her bag of gym clothes but I get what you're saying.
Personally I would love a dumbphone but I find a smartphone too useful (specifically map and transit apps). I wish I could have the same number for one of each and only bring the smartphone when necessary.
Your ISP can read any text message you send and view metadata logs of any phone calls you make. In lots of places (like Australia where I live) ISPs are actually required to keep logs of your messages and phone calls
Why would my Internet Service Provider have anything whatsoever to do with my dumb phone?
Yes, texts and calls aren't hidden from your mobile phone provider, they never were. I agree it's not great, and the government is likely spying on you as they have been for decades.
But alas, I don't see a solution without using a non dumb phone and encrypted apps, which will require the internet and at that point you've not got a dumb phone any more.
My Nokia 3310 still works great. Sure, the government could spy on me, but I don't discuss anything sensitive over the phone (traditionally one doesn't, for this very reason, wiretaps and the like). It's a tool for casually staying in touch and arranging to meet up ^_^
They provide internet to your device, which makes them an internet service provider. And if nothing else, they also offer fixed wireless, which makes them an internet service provider.
Sure, Comcast can't log your phone calls because they are a cable or fiber provider, but T-Mobile can absolutely log your calls, and they are still an ISP.
As others have mentioned, this is a matter of threat model. To be realistic, a sufficiently determined government will always be able to access your communications, but companies like Facebook and Google can only access them if you give it to them willingly. On the other hand, if other people you communicate with do this by themselves, then you've gone through all that effort for nothing. It's also worth pointing out that it cannot be proven that a regular phone does not have corporate spyware installed, so this may be another way your information could leak to companies.
That said, it is pretty insulting that tech companies have decided that they're simply entitled to everyone's private communication data. That for me is probably the biggest motivator in trying to avoid their services as much as possible.
a sufficiently determined government will always be able to access your communications
If you use encrypted messages and both people using the messages have a phone with disk encryption then there is literally no way for a government to gain access to your messages. That is assuming the government isn't going to torture you.
I would argue that phone that a phone that runs Android is not a dumb phone. Not having a Google account logged into your phone is a huge step towards privacy.
See:
- Mudita Kompakt
- Punkt MP02
- etc.
Also don't fall into the trap that privacy is a binary issue. There's a massive spectrum.
Exactly, taking away tools which enable you to enhance your digital privacy, or the ability to use such tools, is fundamentally a flawed way to enhance your privacy in the long term.
Same for security with rooting, and it's the same reason why the argument that "rooting makes your phone less secure" is a fundamentally flawed argument.
Yes! I hate that companies are trying to make people think thar rooting=unsafe. Then make it work safely. Root user is safe on Linux, then why it isn't on phone?
That's just boils down to user not giving root access to every app.
Exactly!
Ultimately rooting empowers users with control, and many company profit from users not having control, like Netflix, like Google with their ads, etc., so they love to make people think rooting is somehow unsafe lol
Because they don't know what could potentially be running with root access and they'd rather block everything they don't know.
Earlier this year my accountant asked me to install an app on my phone to give them access to some banking details and that app would not open the login screen without the gboard keyboard enabled, because they considered custom keyboard apps = bad. It also would not let me use password managers, so I was forced to put my banking details beyond a weaker password than any of my online accounts for random sites.
I can't speak for everyone, but if I'm using a dumb phone, I'm not going to be doing any of the things that I'm worried about them hearing.
If ICE grabs my phone right now and beats me until I lock it. They're going to be looking through my lemmy history.
I'm not going to hold a long political dissertation over SMS or during a phone call.
What I really want to at this point is a pager, a cellular Wi-Fi access point, and an 8" tablet that can run Linux and sip power so I can just pretend I don't have a device.
GrapheneOS provides users with the ability to set a duress PIN/password that will irreversibly wipe the device along with any installed eSIMs.
That's a good way to get locked up for 6 months while they 'investigate' you
What are you trying to hide RUMBA??? Ihre Papiere bitte
yup, I want no parts of that.
Here's my license, here's my phone. here's my travel laptop.
What I really want to at this point is a pager, a cellular Wi-Fi access point, and an 8" tablet that can run Linux and sip power so I can just pretend I don’t have a device.
This is basically what I was thinking. Where can I find a fully functioning 8" Linux Tablet? I feel like the rest of it is easy peasy.
Edit: In my head, I am imagining a steam deck but with the side controller bits snapped off. Someone pls make this. lol
I keep hoping the Halium project will pick up support for some small tablet, but those are almost all bootloader-locked. I don't love Halium, but anything is better than what we have, I could deal with some UBPorts.
I even looked at DIY. There's no lack of 7" touchscreens, but Pi's are apparently bad on power. There are a couple of mini clone boards that might work, but they all have tradeoffs and red flags.
The primary problem we have with putting Linux on phones is a lack of drivers. Hallium is basically fishing bits and pieces out of AOSP, then feeding that data into the Linux install. The upside is that we get pretty good power management and we get working cameras and working radios and all those creature comforts you really expect a phone to have.
The downside is that Google (and nearly every hardware manufacturer) is rather aggressively heading towards locking third parties and out of things. It's not hard to envision a world where a couple of back room deals are made and some firmware updates happen. And all of a sudden, hardware that is at any updates is not capable of running Halium.
Halium's core system partition is also read-only, so there's some lack of hacking ability there that we'd really like to see. You have to put the custom stuff you want into a separate container. Not impassable, though.
Halium is at the very least private and works fine right now. Will it continue to work? Once the eye of Sauron hits it, will it survive? Will it be sued into submission? Will it be sabotaged by Google or the hardware manufacturers?
It might very well be the crutch we need for now. But it also makes sense to get the hell off of it as soon as we can.
Okay, it's no steam deck, but the GPD-4 6xxx model looks like it supports Linux reasonably well.
gpdstore.net/blog/gpd-pocket-4…
github.com/aarron-lee/gpd-win-…
It's an 8.8 inch 180 degree touchscreen and it has a keyboard built in.
It's a pricey sausage, but not more expensive than my flagship phone.
GitHub - aarron-lee/gpd-win-tricks: Info on running linux on GPD Win devices
Info on running linux on GPD Win devices. Contribute to aarron-lee/gpd-win-tricks development by creating an account on GitHub.GitHub
It's not about having a device that's secure, it's about having a device that you use less, to the point that it's not much of an attack surface for surveillance capitalism or (possibly) hostile governments.
It's much harder to profile someone if they aren't fed a steady stream of what you say and what you click upon.
I think you're conflating security with privacy. Not that they are unrelated, but something can be e.g. unencrypted but lack telemetry.
Not that dumbphones are inherently private, but I don't think they're less private either. They're just what you use if you have no need for all the smartphone functions.
Idk, being locked in to using only communication protocols that are known to be roughly wide open seems like kind of a privacy non-starter, right? Sort of fails the attempt before you even start, no?
Edit: a wiser person than me reads the rest of the thread before a comment like the above, but I'm not them sadly. (AKA, plenty of good points made by others)
I suppose that begs the question of whether or not privacy (as used by this community) inherently means private in the colloquial sense, like the way a diary is private. Because to me, a e.g. public static website with no kind of profiling of its users is privacy-respecting, but obviously not private in the colloquial sense—it's a public resource.
I do use SMS sometimes and I use it strictly for things that I'm happy to be basically public. Same for using other protocols like unencrypted email.
A stock smartphone is also locked in to mandatory telemetry, like a stock dumbphone. The practical difference is that there's a much smaller community for installing custom FOSS OSes onto dumbphones compared to smartphones.
Colombia Expels Remaining Israeli Diplomats Amid Gaza Aid Tensions
Colombia's president Gustavo Petro ordered on Wednesday that all remaining Israeli diplomats in the country are to be expelled
Archived version: archive.is/newest/swedenherald…
Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.
copymyjalopy likes this.
Kemi Badenoch pledges to scrap UK climate law
Kemi Badenoch’s Conservative Party has pledged to ditch the U.K.’s flagship climate law if they get back into government, in the latest signal that the party is firmly walking back on net zero commitments.
Kemi Badenoch pledges to scrap UK climate law
Kemi Badenoch’s Conservative Party has pledged to ditch the U.K.’s flagship climate law if they get back into government, in the latest signal that the party is firmly walking back on net zero commitments.Abby Wallace (POLITICO)
like this
copymyjalopy e essell like this.
Shock new poll shows that adults increasingly think political violence is necessary to ‘get country back on track’
Majority of those surveyed still disagree with political violence
like this
copymyjalopy, adhocfungus e essell like this.
US | Idaho judge bars the release of graphic photos from crime scene where Bryan Kohberger killed 4
A judge in Idaho is blocking the release of graphic photos taken by investigators after Bryan Kohberger killed four University of Idaho students in 2022
copymyjalopy likes this.
US citizen sues after twice being detained by immigration agents
US-born Leo Garcia Venegas says ‘I just want to work in peace’ after agents in Alabama said his ID card was fake
copymyjalopy likes this.
US to provide Ukraine with intelligence for long-range strikes in Russia, WSJ reports
The United States will provide Ukraine with intelligence for long-range missile strikes on Russia’s energy infrastructure, the Wall Street Journal reported on Wednesday, as it weighs whether to send Kyiv weapons that could put more targets within range.
Archived version: archive.is/20251002011422/reut…
Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.
copymyjalopy likes this.
The title was intriguing because you would think it's younger generations what would have this burden.
Do you remember why it's Gen x instead?
oh I managed to find a podcast version which wasn't paywalled for me wsj.com/podcasts/the-journal/s…
Basically, Gen X got screwed by timing. They were the guinea pigs for the whole "take out massive federal loans for college" experiment. College costs quadrupled right as they were graduating high school, and the idea was that getting a degree was the way to get a good job. They've had these loans for over 20 years now, and the interest has been compounding into an absolute monster. A loan of 75k turning into 300k is a perfect example of how insane the interest accrual has been.
On top of that, as gen x were trying to buy houses and start families, they couldn't always make payments. Their loan servicers told them to just pause payments, but the interest kept piling up during that time. As more and interest kept getting piled on top of the principal, they end up paying interest on their interest. So the whole thing turned into a debt trap in disguise.
And the final nail was when Biden admin dangled loan forgiveness, telling everyone to consolidate their loans to qualify. So they did, but this officially rolled all that unpaid interest into their principal, making their total debt explode overnight. Then the forgiveness plan got killed by the courts, and the next administration came in with a pay up or else attitude. They followed the rules for a program that vanished, and now they're stuck with an even bigger bill as they head into retirement. It's a total cluster fuck.
UK once again demands backdoor to Apple’s encrypted cloud storage
New order in September narrowed access request down to data of UK citizens.
copymyjalopy likes this.
Apple holding its ground against fascist anti-privacy demands is like the one topic where the anti-Apple brigaders don’t jump in to tell us about how Apple is an evil anti-customer machine.
{posted from my iPhone}
They are still evil anti-customer machine, but reasonable people can acknowledge when they are doing something positive even when it's done for selfish reasons.
Also, their PR person is a joke.
“We are gravely disappointed that the protections provided by ADP are not available to our customers in the UK given the continuing rise of data breaches and other threats to customer privacy.”
So if you cared that much, why did you refuse to add iCloud end-to-end encryption for 11 years?
Democratic Leadership Now as Unpopular With Base as GOP Leadership Was When Trump Took Over the Party
Democratic leadership is now as unpopular with its base of voters as the GOP was in 2014, just a year before Trump took over the party, according to a new Pew Research poll. "These are conditions for real change," said progressive journalist David Sirota.
Over 400 People Have Been Charged With “Pregnancy-Related Crimes” Since Dobbs, Report Finds
The report from Pregnancy Justice warns that their numbers are likely an undercount.
Israeli Official: Palestinians Who Don’t Evacuate Gaza City Deemed “Terrorists”
About 500,000 remain, cut off from any provisions coming from the south, including food, water, fuel, and medicine.
Archived version: archive.is/newest/truthout.org…
Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.
copymyjalopy likes this.
EU leaders give 'broad support' for drone wall and using frozen Russian assets to aid Ukraine
The European Commission will now fine tune a Roadmap for defence set to be released in two weeks, before leaders convene for another summit to make decisions.
Archived version: archive.is/newest/euronews.com…
Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.
copymyjalopy likes this.
A Once Unstoppable Luxury Housing Market Is Starting to Crack
Luxury Market Slowdown
- Luxury home sales in the U.S. dropped 0.7% year-over-year for the three months ending August 31, marking the lowest level since 2013, according to Redfin.
- Price growth also slowed: median luxury sale price rose 3.9%, down from 6.1% the previous year.
- Economic uncertainty and volatile household wealth—especially after the April tariff shock—have made wealthy buyers more cautious.
Regional Trends
- Dallas–Fort Worth: Prices returning to pre-pandemic norms; inventory rising; buyers rushing to purchase before interest-rate cuts drive prices up.
- San Francisco Bay Area: August sales above $5 million fell 13% year-over-year.
- Miami: Sales dropped 19.4%, despite a 9.8% rise in median luxury prices; low inventory is driving prices higher.
- Tampa: Hurricane damage and rising inventory led to a 9.4% drop in sales and a 5.5% dip in prices.
Where Sales Are Rising
- Indianapolis: Luxury sales rose 19.1%; inventory up 16.1%; homes selling quickly, including multimillion-dollar estates.
- Fort Worth: Sales up 14%; listings jumped 25.7%; spec homes selling within days.
Buyer Behavior & Market Sentiment
- Buyers in the $2.5M+ range are less rate-sensitive but more value-conscious.
- Luxury prices, inflated during COVID, are now normalizing.
- Life events (job changes, family growth, etc.) are pushing some sellers back into the market.
https://www.wsj.com/real-estate/luxury-homes/luxury-housing-market-slowing-d3338a4b
Israel Illegally Boards Humanitarian Flotilla Heading to Gaza
Participants on the Global Sumud Flotilla are being detained by the Israeli military and taken into custody.
Archived version: archive.is/newest/dropsitenews…
Disclaimer: The article linked is from a single source with a single perspective. Make sure to cross-check information against multiple sources to get a comprehensive view on the situation.
copymyjalopy likes this.
Meta plans to sell targeted ads based on data in your AI chats
Meta plans to use data from your interactions with AI products to sell targeted ads on Facebook and Instagram.
like this
copymyjalopy, adhocfungus e essell like this.
Apple Shelves Vision Headset Revamp to Prioritize Meta-Like AI Glasses
Apple Inc. has hit pause on a planned overhaul to its Vision Pro headset to redirect resources toward a more urgent effort: developing smart glasses that can rival products from Meta Platforms Inc.
Archived version: archive.is/20251001224143/bloo…
eldavi
in reply to geneva_convenience • • •like this
geneva_convenience likes this.