jrollans.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
Red Hat hit by npm supply‑chain attack - here's how to stay safe
Days after IBM and Red Hat announced a master security plan for open-source software, Red Hat suffers a major breach of its own. Here's what you can do about it.
https://www.zdnet.com/article/red-hat-hit-by-npm-supply-chain-attack-how-to-stay-safe/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
Apple is bringing age verification to Texas this week
Apple will introduce age verification in the App Store for users in Texas starting on Thursday, June 4th. The move, as spotted by MacRumors, comes just days after a federal appeals court allowed Texas' App Store Account…
https://www.theverge.com/tech/942761/apple-texas-age-verification-app-store
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Survey reveals you want one simple thing from AI, and it’s not more bells and whistles
More features and integrations are welcome, but they’re not the main event.
https://www.androidauthority.com/what-matters-in-an-ai-tool-poll-results-3674187/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Gemini Go is here to replace Assistant on your Android Go phone
Android Go devices are finally joining the Gemini party.
https://www.androidauthority.com/google-starts-gemini-go-rollout-3674174/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
I've tested a lot of tablets - these are the best tablet deals I found ahead of Prime Day
We found the best early deals on iPads, Samsung tablets, and more, ahead of Amazon's Prime Day sale later this month.
https://www.zdnet.com/article/best-early-amazon-prime-day-tablet-deals-2026/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
🛡️ KWI LIAN — INFRASTRUCTURE EDITION v4.07
Schluss mit Cloud-Zwang. 100% digitale Souveränität für Behörden & KMUs.
Mit dem Release der v4.07 transformiert sich KWI LIAN von einer Office-Extension zur schlüsselfertigen, behördenneutralen KI-Infrastruktur. Kompromisslos sicher, unbestechlich und sofort einsatzbereit.
#DigitaleSouveränität
#LibreOffice #Linux #OpenSource
#KI #SchleswigHolstein #Staatskanzlei
Nvidia is already planning N2X and N3X chips — the goal is the Star Trek computer
Jensen Huang, chief executive officer of Nvidia Corp. | Bloomberg via Getty Images Just in case you were wondering, Nvidia's RTX Spark isn't supposed to be a one-off. The company is not just flirting with becoming the f…
https://www.theverge.com/tech/942588/nvidia-rtx-spark-n2x-n3x-r2-d2-star-trek-star-wars-plan
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
How AI agents will transform your customer service - despite 3 hurdles
A new survey of 6,500 service pros shows investments in agentic AI are essential for business success.
https://www.zdnet.com/article/how-ai-agents-are-transforming-customer-service/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
🚀 Hexadecimal isn’t just for programmers; it powers everything from embedded systems and memory addressing to IoT devices and firmware development.
Need quick, accurate HEX ↔ DEC ↔ BIN conversions? Try this handy tool from CircuitDigest:
🔗 https://circuitdigest.com/calculators/hex-calculator
Whether you're debugging microcontrollers, analyzing memory maps, or learning computer architecture, this calculator can save valuable development time.
💡 Pro Tip: Understanding hexadecimal makes reading datasheets, registers, and machine-level data dramatically easier.
What’s the most interesting project you've used HEX values in? 👇
#Electronics #Programming #EmbeddedSystems #IoT #Engineering #Microcontroller #Arduino #ESP32 #RaspberryPi #Tech #Coding #Developer #STEM #ComputerScience #Hardware #DIYElectronics #Innovation #Makers #CircuitDesign #Technology #Firmware #OpenSource #CodingLife #Learning #GeekLife #TechCommunity #DigitalElectronics #EngineeringLife #EmbeddedProgramming #CircuitDigest
The best Qi2 batteries for iPhone and Pixel
Compact power banks have gotten a lot faster in the past year — and it’s not just their USB-C charging speeds that have received a boost. The newest Qi2.2-certified models can wirelessly charge an iPhone 16 or later at …
https://www.theverge.com/gadgets/939362/best-magsafe-qi2-2-batteries-power-banks
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
As AI gets better, it reveals an empty promise
This week we've got tandem hands-ons with Google's new Gemini AI agent - Spark - from my colleagues David Pierce and Jay Peters. Their takeaways are similar: It's so effective that it's scary. Spark knew that David's do…
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
WebRTC messenger architecture, sealed-sender push, encrypted signalling, looking for threat-model critique
A WebRTC messenger where message content never touches a server and the push layer can't see who's messaging whom
Android app, solo-built. Trying to find out where the architecture breaks before I scale it.
The core idea. Messages travel through direct WebRTC data channels (DTLS/SRTP) between two phones. No server stores, reads, or relays content. Group chats use a gossip protocol, sender fans out to a few reachable members who relay onward, members who come online late fetch missing messages from any peer who has them.
The supporting infrastructure, and what each piece can see.
* Signalling: needed to set up any WebRTC connection. I use a Cloudflare Worker (ephemeral, nothing persisted). The SDP/ICE payload is encrypted with the recipient's public key before it leaves the sender, and the two participants are addressed by opaque per-session hashes. The relay forwards ciphertext between unlinkable identifiers.
* Push wake-up: FCM, because Android. Sealed-sender design: the wake-up payload is encrypted to the recipient's public key, and the sender's identity is inside that envelope. The push layer sees who's receiving (it must, that's how push works), not who's sending. The FCM request is also forwarded via a Cloudflare Worker so Google doesn't see the sender's IP either.
* TURN relay: Cloudflare again, for restricted networks. Carries encrypted packets only, like any TURN.
The code is open source (GPLv3).
I wrote a detailed white paper explaining the full architecture on my landing page: https://www.mindtheclub.com
Mainly interested in where the design assumptions break. The sealed-sender piece, I'd like to know if the threat model I'm assuming there is too generous.
#infosec #privacy #WebRTC #cryptography #Android #FOSS #PeerToPeer #Opensource
I want to take a moment to add to my previous post because I really want to get this off my chest and I feel like this platform is the perfect place to do this:
I am not criticizing Microsoft and Apple without just cause. I have long had a bone to pick with both companies.
Apple: proprietary, walled garden.
Microsoft: proprietary with no respect for user configuration changes or privacy.
For a while, I used Apple because I felt it was more secure and offered better hardware. However, this isn't entirely the truth.
Furthermore, I used Microsoft because it was convenient for gaming and workflow. However, once they forced all of my security settings back to their default configurations after an update, I had enough. That's when I realized Microsoft has absolutely no respect for me as a user and treats their users like a guest in their own house.
From my understanding, this is a fairly common evolution for tech majors. One day, I decided I wanted big tech out of my life and I kicked Windows off my computer for good and never looked back. I stopped using Meta's platforms and I am making the jump to GrapheneOS today. As much as it pains me to stick money in Google's pocket, I am purchasing an unlocked Google Pixel 10 Pro today and de-Googling my life.
As I have progressed through my cybersecurity degree, I have grown to value open-source software, transparency, and internet freedom. How can I ensure I have a strong security posture if the companies I am handing my data over to lack transparency?
Why does Meta deserve to have my government issued ID when they repeatedly sell people's data and can't seem to go a year without a major data breach?
Why does Google deserve to have unfettered access to my phone's root?
Why does Microsoft deserve to decide what ports I can close or what firewall changes I can make by reverting all of them as soon as they roll out an update?
It is my humble opinion that the conveniences people choose to accept in their life are precisely what landed us in the boat we're in to begin with. Subscription after Subscription, a complete lack of transparency, and absolutely no respect for our privacy and security.
While I understand Mastodon is largely for like-minded people, which is why I found my way over here, I hope that others will begin to realize how dangerous this is for our future and follow suit.
With that said, we should absolutely push back against legislation that aims to turn us into a mass surveillance state (i.e., California's AB 1043). This is where it starts but where does it end? I recall well over a decade ago people switching to Netflix because it was "cheaper" than traditional cable and people accepting MTX in video games because it was "only for cosmetics." Where did that get us? "What is this, horse armor?"
https://www.reddit.com/r/pcmasterrace/comments/13yiyxw/it_all_started_with_the_horse_armor/
#foss #linux #opensource #internetfreedom #civilliberties #privacy
👉 Le code complet et les détails sont ici : https://privatebin.blablalinux.be/?b6f675e146e55782#7Ug4YDhJT1dfsvwGrZKYJLhwJnZ5AGhrB6gnKgzRBHq2
Microsoft Won.
In the beginning, Steve Ballmer famously called Linux a "cancer" because its copyleft mechanism threatened Microsoft's proprietary software license margins. They tried to destroy it with FUD. They lost because open source's community-driven distribution velocity was unstoppable.
Then, Microsoft pivoted. They bought GitHub. It was an acquisition of a software supply chain.
And now, Microsoft extinguishes: they use an LLM to launder the logic of GitHub repositories, rendering the licenses written inside of them completely toothless. By making the code inside a repository something that can be synthesized on demand, Microsoft shifts the economic leverage away from developers and locks it into the platform that can host and generate code.
#Microsoft #Linux #GitHub #OpenSource #AI #LLM #SoftwareDevelopment #Agentic #Coding #CodingAgent #FOSS_LLM
AT&T wants to charge you more for a faster entry-level fiber internet plan
AT&T is giving its fiber internet plans a big shake-up.
https://www.androidauthority.com/att-fiber-internet-plans-shake-up-3674040/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Who’s that mystery caller? This free tool checks if it might be scammy
Malwarebytes now has a free reverse phone lookup tool for checking whether that missed call looks suspicious.
https://www.androidauthority.com/malwarebytes-free-reverse-phone-check-launch-3674058/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
The OS debate isn't just about workflows; it’s a compliance battleground for your fundamental digital rights.
🍎 macOS is a proprietary walled garden.
🪟 Windows is a telemetry funnel for corporate data collection.
🐧 Linux is Free and Open Source Software (FOSS). It represents native digital sovereignty.
Look at California’s shifting legislative landscape. Last year’s Digital Age Assurance Act (AB 1043) tried to force operating systems to mandate user age-gating. Lawmakers are trying to correct the mess via AB 1856 to exempt open-source developers but the new bill just pushes the surveillance pipeline further down, forcing browsers to silently track and broadcast user age brackets across the web.
When state laws treat technology as a top-down surveillance mechanism, proprietary systems will gladly bake enforcement right into their closed-source kernels.
FOSS isn't just a development model anymore; it's a critical tool for internet freedom and operational self-defense.
#Freedom #FOSS #Privacy #AB1043 #AB1856 #DigitalRights #OpenSource #Fediverse
PlayStation is getting back to what it’s good at
PlayStation used its most recent State of Play showcase to make it clear where its focus is. After a series of costly live-service stumbles, it's getting back to focusing on premium, narrative-driven, single-player game…
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Am Freitagabend blitzt es wieder! ⛈️ Das nächste Binärgewitter steht vor der Tür. Macht euch bereit für eine ordentliche Ladung Technik, Web-Entwicklung und Open Source Absurditäten. Wer ist beim Live-Stream dabei?
Welche Themen brennen euch diese Woche unter den Fingernägeln?
#Binärgewitter #Podcast #TechTalk #WebDev #OpenSource #LiveStream #Linux #Geek
The May 2026 FreeBSD Foundation Newsletter is here!
This month, we’re sharing:
- A reminder that FreeBSD Day is June 19, plus a simple way to celebrate (and support the Foundation) through the FreeBSD Foundation Shop
- BSDCan + the FreeBSD Developer Summit are coming up June 17–20 in Ottawa (Dev Summit runs June 17–18). Registration is open.
Read the full newsletter: https://freebsdfoundation.org/news-and-events/newsletter/may-newsletter/
RE: https://mastodon.social/@Mastodon/116686738841941842
According to the @EUCommission #TechSovereignty package, released today, the #EU is currently reliant on foreign providers for over 80% of its critical digital products, services, and infrastructure. We're thrilled to see the Commission acknowledge that this is an issue, and lay out a strategy to fix it.
We view this announcement as validation of Mastodon’s mission at the highest level; the Commission’s strategy is grounded in European values that Mastodon shares including security, sustainability, and human-centric design.
What’s more, the EU's explicit strategy is to build and deeply invest in #OpenSource offerings across the entire technology stack. The significant nature of this commitment provides institutional validation and will bring significant policy, funding, and competitive advantages to open source projects like #Mastodon.
#Fediverse #OpenWeb #SocialWeb #SocialMedia #FOSS #OSS
AodeRelay boostedThe @EUCommission just released a statement positioning open source as central to #Europe’s #TechSovereignty.
We couldn’t agree more. #OpenSource is critical to a robust and independent society.
Here’s our full statement: https://blog.joinmastodon.org/2026/06/europes-new-tech-strategy-puts-open-source-front-and-centre/
#Mastodon #Fediverse #SocialWeb #OpenWeb #DigitalSovereignty
The @EUCommission presented the EU Tech Sovereignty Package today WITH an Open Source Strategy! 🚀 These plans promote "European open alternatives to non-EU proprietary solutions in critical domains."
It's very encouraging that the EU is choosing #opensource. The EDIC Digital Commons is a great vehicle for for this. I'm also happy with the recognition for the national OSPO's and the official establishment of an EU OSPO network. 🇪🇺
Link to the Open Source Strategy: https://lnkd.in/e3S8fnEf
Palantir without a black box: Neo4j announces open alternative
The merger of the data analysis platform Neo4j and GraphAware's police software Hume is intended to create an open alternative to Palantir.
#IT #KünstlicheIntelligenz #OpenSource #Palantir #Security #Übernahme #Wirtschaft #news
Microsoft bringt Linux-Container fürs WSL
Microsoft baut eine eigene Container-Plattform ins Windows Subsystem for Linux ein – samt CLI, API und SDK für Windows-Anwendungen.
#Containerisierung #IT #OpenSource #Microsoft #Softwareentwicklung #Windows #WSL #news
The @EUCommission just released a statement positioning open source as central to #Europe’s #TechSovereignty.
We couldn’t agree more. #OpenSource is critical to a robust and independent society.
Here’s our full statement: https://blog.joinmastodon.org/2026/06/europes-new-tech-strategy-puts-open-source-front-and-centre/
#Mastodon #Fediverse #SocialWeb #OpenWeb #DigitalSovereignty
The Arlo Video Doorbell 2K plunges to its all-time low price of $30
The doorbell originally retailed for $129.99, so this drop to its all-time low price of $30 is an absolute steal.
https://www.androidauthority.com/arlo-video-doorbell-2k-deal-3673941/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Some of you have been asking why the #EU digital policy account isn't on the #Fediverse..
Well, today they are! Go follow the official #DigitalEU account: @digitaleu for updates about #OpenSource, #Tech and #DigitalSovereignty, and much more!
Today is a good day for the open source community. Stay tuned for more announcements.
Der Call for Papers für den #LinuxDayAT 2026 ist eröffnet! Bis zum 8. August können Informationsstände, Vorträge und Lightning-Talks über unser Online-Formular eingereicht werden.
Wir haben dieses Jahr bewusst keine thematischen Einschränkungen vorgegeben.
Was rund um #Linux, #OpenSource und #freieHardware findet ihr interessant? Wir freuen uns auf viele spannende Einreichungen.
How do we ensure that the #opensource components we build upon are also sustainably maintained? 🤔
@opensource organized a conference on Open Source Procurement today.
70% to 90% of all software contains open source components. 60% of those are run by 1 person. That's a fragile ecosystem.
With a purchasing volume of 116 billion euro, the Dutch gov can make an impact - if they reserve a portion of funding for open source projects in every procurement (MVOI).
More info: https://lnkd.in/eKD7xBS2
@opensource shout-out to @kirschner , for his post about the 500 million euro that the German government spends each year (!) on Microsoft licensing, while asking how much #opensource we could have procured and developed with a fraction of that money. During @nlnet 's presentation.
Not sure I’m allowed to leak this yet, but the new MISP dashboard is kind of crazy.
We didn’t just refresh the old one, we rewrote it completely, and it comes with a whole set of new features and capabilities that change the game quite a bit.
Perplexity launches Bumblebee: How its new read-only dev scanner differs from Chainguard https://zdnet.com/article/perplexity-launches-bumblebee-how-its-new-read-only-dev-scanner-differs-from-chainguard/ via @ZDNet & @sjvn
This ensures your developers' laptops have the most up-to-date, #OpenSource tools.
Trans teens have something to say
By the time the Children's Hospital closed its doors to trans patients, Sage had already stopped taking testosterone. A nonbinary high school student, they originally received treatment for the rapid onset of puberty. T…
https://www.theverge.com/features/940977/trans-teens-pediatric-care-closing
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
8 ChatGPT tricks most people still aren’t using
Most people barely scratch the surface of ChatGPT. These habits help unlock its real potential.
https://www.androidauthority.com/8-chatgpt-tricks-most-people-still-arent-using-3671748/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Latest One UI roadmap suggests bad news for Galaxy S22, Z Flip 4, Z Fold 4 users
We weren't expecting Samsung to bring One UI 8.5 to these older flagships, and this roadmap provides more evidence.
https://www.androidauthority.com/samsung-one-ui-8-5-roadmap-galaxy-s22-3673742/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Motorola’s new $600 Android phone is already embarrassing the Pixel 11
The Motorola Edge 2026 looks like quite the package.
https://www.androidauthority.com/motorola-edge-2026-embarrassing-google-pixel-11-3673495/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
🐧 Hardware-Monitoring für einen Ubuntu-Fileserver — in einer Session gebaut! 🚀
~50 Interaktionen, ca. 30 Minuten. Ergebnis:
▫️ sensors.sh — CPU (Package + 6 Cores), NVMe, ACPI Temps
▫️ disks.sh — SMART für HDD (20TB Exos) + NVMe SSD
▫️ system.sh — CPU, RAM (DDR5-Slots!), GPU, BIOS, Mainboard via dmidecode
▫️ mergerfs.sh — Pool-Übersicht: Belegung, Inodes, Berechtigungen
▫️ updates.sh — apt update/upgrade + Neustart-Check
▫️ check-all.sh — Master-Script, läuft alles durch
▫️ mail.sh — Mail-Versand via SMTP
▫️ Custom opencode Skill „log-summary" — liest Log, fasst zusammen, sendet per Mail
▫️ Cron-Job: täglich 01:00 → Check → Zusammenfassung → Mail 📧
Jeden Morgen eine kompakte Übersicht im Postfach — alle Temperaturen einzeln, SMART-Status, Storage, Updates. Nur Alarme wenn was nicht stimmt.
Tech-Stack: Ubuntu 26.04, smartmontools, lm-sensors, dmidecode, mergerfs, opencode AI, Python smtplib, cron
#Linux #SysAdmin #Monitoring #HomeLab #mergerfs #SMART #OpenSource #Automation
thanks to: #qwen36plus
#Linux App Summit 26 #OpenSource
"Erfolgskonzepte von Containern, etwa Docker, auf den Linux-Desktop übertragen..."
EU Abgeordnete suchen künftig mit Qwant
Things are moving veeeery slowly
Read more https://www.heise.de/news/Im-EU-Parlament-Google-wird-als-Standard-Suchmaschine-durch-Qwant-ersetzt-11316264.html
a-fsa.de/e/3Q3
Link to this page: https://www.a-fsa.de/de/articles/9552-20260603-eu-abgeordnete-suchen-kuenftig-mit-qwant.html
Link with Tor: http://a6pdp5vmmw4zm5tifrc3qo2pyz7mvnk4zzimpesnckvzinubzmioddad.onion/de/articles/9552-20260603-eu-abgeordnete-suchen-kuenftig-mit-qwant.html
Tags: #EU #Parlament #GAFAM #Google #Qwant #Suchmaschinen #Ersatz #Ecosia #USA #Linux #München #OpenSource #Suchindex #Transparenz #Informationsfreiheit #Anonymisierung
Google must let publishers opt out of AI Search features, rules UK
Online publishers are getting more control over whether their websites appear in Google's AI Search features, thanks to a UK regulatory ruling. The new conduct rule imposed by the Competition and Markets Authority (CMA)…
https://www.theverge.com/tech/942302/google-search-ai-overviews-uk-cma-publisher-opt-out
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Na, #BadenWürttemberg, wollen wir da wirklich hinter #Bayern zurückstehen?
#DigitaleSouveränität würde auch unserem Bundesland sehr gut stehen, denke ich!
#JuraBubble #Justiz #Microsoft #Linux #OpenSource #Recht #Rechtsstaat #Justiz #Unabhängigkeit #Trump #Gates #Özedemir #Grüne
The Fitbit Air might be messing up the one thing it’s supposed to do well
That's not exactly a confidence-inspiring start.
https://www.androidauthority.com/google-fitbit-air-tracking-issues-3673689/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Linux App Summit 2026: Treffen der Linux-Desktop-Avantgarde
Die Linux-Desktop-Community diskutierte auf dem Linux App Summit 2026, wie man Linux-Systeme sicherer, robuster und komfortabler machen kann.
#Containerisierung #Gnome #IT #KDE #Linux #LinuxDesktop #OpenSource #Security #news
Google resets Gemini rate limits alongside new Gemini 3.5 Flash model deployment
The new Gemini 3.5 Flash variant in Antigravity will have a higher endurance on harder tasks.
https://www.androidauthority.com/google-gemini-3-5-flash-antigravity-update-3673711/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Microsoft literally wants to ‘make people addicted’ to AI
Many big tech companies prioritize user engagement, but few outright say they want to get people addicted.
https://www.androidauthority.com/microsoft-ai-make-people-addicted-3673699/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Google just made it ridiculously easy to 3D print your own Fitbit Air bands
Hobbyists and third-party brands now have the design specs needed to create their own Fitbit Air bands.
https://www.androidauthority.com/google-fitbit-air-custom-bands-3673696/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Bernie Sanders pushes for 50% public ownership of American AI companies — proposes AI sovereign wealth fu…
The U.S. Senator is arguing that since AI companies use public data to generate a lot of revenue, the public should benefit from it as well. He also said that the people should have a say in the direction of AI by givin…
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Grab this RTX 5070 gaming PC with a 7800X3D from CyberPowerPC for under $1,960 right now — exclusive discount available on 4K-ready pre-buil…
Save $210 on this powerful CyberPowerPC gaming rig, powered by the AMD Ryzen 7 7800X3D and the all-impressive RTX 5070, alongside a 1TB SSD and 32GB of DDR5 RAM, all for just $1,959.99.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
SK hynix to double memory wafer capacity within five years, chairman says — AI-driven shortage will persist until at least 2030
SK hynix will double its memory wafer capacity within five years, SK Group chairman Chey Tae-won told reporters at Computex in Taipei on June 2nd.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Tom's Hardware Unfiltered: Computex 2026, Day 1 — night markets, taking the MRT train, and a slew of demos
The Tom's Hardware team in Taipei reports back on what they've been up to as Computex 2026 begins to gather momentum. Take a look at how we're making
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Take home Gigabyte's Aero X16 gaming laptop for just $1,389.99 and save $610 — packed with 32GB of RAM and a powerful RTX 5070 GPU
Gigabyte's Aero X16 packs 32GB of RAM, a 1TB SSD, and a powerful Nvidia RTX 5070 GPU all for $1389.99 in this Best Buy deal.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
AMD ‘had to re-engineer’ the Ryzen 7 5800X3D for a re-release — 10th Anniversary Edition chip had ‘a whole body of engineering work’ put into it
AMD just reintroduced the Ryzen 7 5800X3D, but it wasn't as simple as spinning up the old manufacturing process, as the original bonding method TSMC used was no longer available.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
RT @HowToAI_: Sie können jetzt 70B-LLMs auf einer 4GB-GPU ausführen. AirLLM verwendet "Layer-weise Inferenz." Statt das gesamte Modell zu laden, lädt, berechnet und löscht es eine Schicht nach der anderen. 100% Open Source.
mehr auf Arint.info
#AI #AirLLM #GPU #LLM #MachineLearning #OpenSource #arint_info
I saw the first Nvidia RTX Spark laptops - these 4 models will lead the new ultrabook boom
Nvidia just announced its new RTX Spark CPU on models from all the major PC brands. These ones look the most interesting.
https://www.zdnet.com/article/all-the-new-pcs-powered-by-nvidias-new-n1x-cpu/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
Microsoft's first reasoning model is one of 7 AIs just released at Build - what we know so far
Microsoft AI has fully joined the conversation with MAI-Thinking-1, alongside new coding, image, and voice models.
https://www.zdnet.com/article/all-the-new-ai-models-microsoft-just-launched-at-build/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
I'm a phone reviewer - these are the 5 early Prime Day phone deals I'd recommend
Amazon Prime Day is still weeks away, but top phone deals from Samsung, Google, and Motorola are already live.
https://www.zdnet.com/article/best-early-amazon-prime-day-phone-deals-2026/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
I found 15 Amazon deals on editor-approved tech already live for Prime Day
Amazon's Prime Day sale returns this month. These are our favorite early deals you can shop now.
https://www.zdnet.com/article/best-early-amazon-prime-day-deals-2026/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
Ubuntu 26.04 is the OS for the AI agentic era, says Canonical's Mark Shuttleworth - here's why
Canonical's pitch starts with snaps and security.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
Why I never let my Android recycling bin sit full for 30 days - and how I empty it
Android keeps deleted files in the Trash for 30 days, but I don't wait that long. Here's why I clear them manually.
https://www.zdnet.com/article/never-let-android-recycling-bin-sit-full-how-to-empty/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
Prime Day 2026 is coming in June and will be 4 days long - here's what Amazon just unveiled
The retailer just revealed the sale dates for Amazon Prime Day, which is set to kick off June 23.
https://www.zdnet.com/article/amazon-prime-day-2026-dates/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
God of War Laufey is coming to the PS5
Sony ended its big State of Play showcase with a major reveal: the next God of War. The new title is called God of War Laufey, and is once again developed by Sony's Santa Monica Studio. Currently, the game doesn't have …
https://www.theverge.com/entertainment/941516/god-of-war-laufey-ps5-trailer
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Here’s seven bloody minutes of Wolverine on the PS5
At its big State of Play show on Tuesday, Sony shared new look Marvel's Wolverine, the next big title from Insomniac Games that's launching exclusively on PS5 on September 15th. Dressed in the iconic yellow Wolverine ou…
https://www.theverge.com/games/939378/marvels-wolverine-playstation-trailer-state-of-play-june-2026
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
PlayStation State of Play June 2026: All the news and trailers
While the majority of Summer Game Fest takes place over the weekend, Sony is getting a jump on things with its next State of Play showcase, which airs on June 2nd at 5PM ET. It’s coming at a pivotal time for the PlaySta…
https://www.theverge.com/entertainment/940913/playstation-state-of-play-june-2026-news-trailers
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
I held the next-gen handheld
The new MSI Claw with Intel Arc G3 Extreme. | Photo by Sean Hollister / The Verge Intel couldn't catch a break. Layoffs. Shakedowns. Crashing CPUs torpedoing its reputation, sending desktop gamers fleeing to AMD. Apple …
https://www.theverge.com/games/941360/intel-arc-g3-extreme-msi-claw-next-gen-handheld-preview
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Microsoft’s first advanced reasoning AI is here
Microsoft announced a bunch of new in-house AI models at Build 2026, including a new "flagship" model: MAI-Thinking-1. It's an ambitious step into model development for Microsoft, which introduced its initial in-house m…
https://www.theverge.com/tech/941664/microsoft-ai-model-reasoning-mai-thinking-1-build-2026
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Seit sehr vielen Jahren setze ich auf Drucker der Marke Brother. Sie sind robust, gebraucht oft günstig zu haben und auch Ersatzteile bekommt man günstig ohne irgendwelchen DRM quatsch.
Die Drucker werden von der Treiber Seite her auch sehr gut unter Linux unterstützt, einstecken und los gehts.
Das einzige was schon immer doof war: die Software um die Firmware zu updaten gibt es nur für Windows und MacOS. Jetzt kann man versuchen die Software via Wine oder in einer Windows VM auszuführen, aber das hat bei mir nie wirklich geklappt. In der Regel wurde der Drucker nicht gefunden.
Das fand ich bisher nicht tragisch, denn wenn der Drucker tut was er soll: warum dann zwangsläufig updaten.
Heute wollte ich bei meinem HL-3172CDW jedoch das Wlan einrichten, und siehe da der Drucker unterstützt nur WEP als Wlan Verschlüsselung. Okay das ist wirklich ein Manko.
Also schnell geschaut, und ja die Software für Firmware Update gibt es immer nur noch für Windows und OSX, und nein Sie tut es immer noch nicht unter Wine oder ner VM.
Paar erfolglose Versuche später bin ich dann bei folgendem Python Script gelandet: https://github.com/CauldronDevelopmentLLC/oh-brother
Damit war ich dann auch in der Lage meinen Drucker zu updaten. Nach dem Update stand dann auch WPA für das Wlan zur Verfügung.
Wie das ganze funktioniert ist aber echt interessant, denn viel Magie ist wirklich nicht notwendig. Die notwendigen daten werden via SNMP gesammelt, daraus wird eine XML mit der Spezifikation des Druckers gebaut. Diese wird an den Update Server von Brother geschickt und man bekommt den Link zur aktuellen Firmware File. Diese wird dann via nc oder ftp auf den Drucker geschoben und der erledigt den Rest.
Der Prozess ist recht „streamlined“ und warum es Brother nicht schafft dafür ein Linux Script etc. bereit zustellen weiß ich nicht. Wahrscheinlich kann man das ganze auch problemlos in Shellscript bauen.
Wer genauer wissen will wie das ganze intern funktioniert kann sich folgende Blog Beiträge geben:
https://www.earth.li/~noodles/blog/2015/11/updating-hl3040cn-firmware.html
https://cbompart.wordpress.com/2014/02/05/printer-update/
http://pschla.blogspot.com/2013/08/resurrecting-brother-hl-2250dn-after.html
#brother #hardware #linux #opensource @bjoernGoogle has a private navy. It's maintained by the firm whose founder now runs the Pentagon.
This is not a thriller. This is Tuesday in America Inc.
Somewhere in Bass Strait right now, a US government cable ship is maintaining Google's Internet.
#technology #internet #geopolitics #google #underseacable #submarinecable #osint #opensource #bigtech
https://www.keystone-collective.org/googles-private-navy-the-deputy-secretary-of-defence-the-seabed-and-a-coincidence-so-tidy-it-practically-files-its-own-maritime-notice/
Microsoft Scout is a new AI personal assistant built on OpenClaw
Much like Google, Microsoft is launching its own version of OpenClaw. Microsoft Scout is an always-on assistant that integrates into Microsoft 365 apps like Outlook, OneDrive, and Microsoft Teams, allowing businesses to…
https://www.theverge.com/news/939713/microsoft-scout-assistant-openclaw
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Microsoft designed some new Android-based hardware, and it’s not at all what you’re expecting
Project Solara has some big dreams about an AI agent-first OS, but will it live up to the hype?
https://www.androidauthority.com/microsoft-solara-3673611/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Open source app could finally free WHOOP users from expensive subscriptions
Project taps WHOOP tracker data without a subscription — but with some big caveats.
https://www.androidauthority.com/open-source-whoop-app-3673542/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Google is playing with a new look for voice search
Here's your first look at the Google app's new voice search animation.
https://www.androidauthority.com/google-app-voice-search-animation-3673537/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
7 new features coming to your phone with the June 2026 Android Drop
From fake call detection to an AI-powered wardrobe, here is every major upgrade heading to your device this month.
https://www.androidauthority.com/june-2026-android-drop-3673129/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
This new Google Play Books tool makes jumping back into a book easier than ever
Now you can get instant recaps and answers right inside the app.
https://www.androidauthority.com/google-play-books-book-insights-3672922/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
These Android phones will support AirDrop via Quick Share this month
Google says AirDrop support is coming to more Android phones this month, and here's the full list.
https://www.androidauthority.com/quick-share-airdrop-android-phones-june-2026-3673112/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Google’s got an easy new way to keep you safe from scam calls
The clever new system is built on the backbone of RCS.
https://www.androidauthority.com/google-fake-call-detection-3673248/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Last day at the office before my June world tour of travel. I'm excited for the most part, but also know I'll be homesick pretty bad this time. Nearly 3 weeks on the road is a lot, no matter how amazing your destinations are.
The Pixel Watch 5 may have surfaced again, this time somewhere much drier
Four Google model numbers have appeared in India’s BIS database, possibly pointing to Pixel Watch 5 variants.
https://www.androidauthority.com/google-pixel-watch-5-bis-database-listing-3673529/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Ableton is letting musicians build browser-style extensions for Live
Hack your DAW. | Image: Ableton Ableton already has Max for Live, which allows users to build MIDI effects, synths, and samplers for its digital audio workstation (DAW). But now with its Extensions SDK, features can be …
https://www.theverge.com/tech/941674/ableton-live-extensions-sdk-music-daw
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
iPhones could get groundbreaking bill-splitting tool Android introduced in 2019
Google introduced something similar to Android seven years ago.
https://www.androidauthority.com/iphone-bill-splitting-3673477/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
I just published a new FOSS app/service age attestation/verification tracker to track which FOSS apps/services can be used with a peace of mind, without giving out sensitive data "to protect children"
https://odysee.com/@fossery-tech:4/foss-app-service-age-attestation-verification-tracker:f219856ceb
#AgeAttestation #AgeVerification #Privacy #FOSS #OpenSource #FosseryTech
Amazon Music starts playing ads for some Prime users, but the US is safe… for now
Amazon sets the record straight on changes to ads in Music Prime.
https://www.androidauthority.com/amazon-music-prime-ads-3673452/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
ASUS finally brings OLED to the ROG Ally, but there’s a big catch
The new ROG XBOX Ally X20 can be yours only if you're willing to pay for a pair of AR glasses too.
https://www.androidauthority.com/asus-rog-xbox-ally-x20-3673440/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Amazon’s four-day Prime Day begins on June 23rd
Amazon bucked its usual tradition of having Prime Day in July. Prime Day 2026 is happening in June, kicking off in just a few weeks. Prime members will get access to many deals starting June 23rd at 3:01AM ET through Ju…
https://www.theverge.com/gadgets/940021/amazon-prime-day-2026-june-dates-deals
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
There are so many initiatives within the Dutch gov to choose ethical tech, and then you find out about this..
The NL Wallet, the Dutch gov version of the identification service that's being build by all EU member states, will only be available for citizens with a Google or Apple account 🤦♀️
I thought we wanted to be less reliant on US Big Tech companies, not more. @MinisterieEZK
#EUpolicy #opensource #digitalsovereignty #NLwallet #TheNetherlands
Motorola Edge 2026 arrives with the biggest design change in years, and you might love it
The afforadable Moto Buds 2 also get a new Pantone shade.
https://www.androidauthority.com/motorola-edge-2026-launched-pantone-olive-3673363/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
This easy prompt trick gave me better AI-generated images - no matter the model
Having trouble getting the right image out of ChatGPT, Gemini, or another AI tool? Try this foolproof prompt.
https://www.zdnet.com/article/beginner-ai-image-prompt-tip-chatgpt-gemini/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
🚀 Das Programm der Workshop-Tage 2026 ist live!
Die 35. Workshop-Tage – unsere Jubiläumsausgabe – finden vom 8. bis 10. September 2026 in Rapperswil statt. Freut euch auf spannende Workshops, inspirierende Begegnungen und wertvolle Impulse für eure Arbeit.
Die Workshop-Tage bieten praxisnahe Weiterbildung rund um Open Source, digitale Technologien und aktuelle Themen aus der IT-Welt.
Werft einen Blick ins Programm und sichert euch euren Platz in dem Workshop, der euch am meisten begeistert.
📜 Programm: https://workshoptage.ch/programm-2026/
🎟️ Tickets: https://eventfrog.ch/de/p/wissenschaft-und-technik/workshop-tage-2026-7467500009728006275.html
Wir freuen uns auf euch!
#CHOpen #WorkshopTage #OpenSource #Weiterbildung #Rapperswil
Ihr möchtet nicht, dass LLMs eure #OpenSource Projekte mittelbar kopieren, ohne dass die #GPL (o.ä.) verletzt wird?
Könnte so klappen: Projekt auf #Codeberg hosten, aber alle Quellen mit git-crypt verschlüsseln. Den Schlüssel bekommen alle, die per Mail versichern den Code ausschließlich auf eigener Infrastruktur unverschlüsselt abzulegen. D.h. kein Hochladen per LLM-API oder in öffentliche Repos. Kollaboratives Arbeiten funktioniert nach wie vor per MR zwischen Menschen mit Schlüssel.
Rust Coreutils 0.9.0: weniger unsafe, mehr Tempo
Nach einem Audit der Firma Zellic schließt uutils/coreutils 0.9.0 zahlreiche TOCTOU-Lücken, reduziert unsafe-Code und beschleunigt I/O per Zero-Copy.
#IT #OpenSource #Programmiersprachen #Programmierung #Rust #Softwareentwicklung #news
Apple Car Key Support Coming to Future Mahindra Vehicles
Apple's Car Keys feature appears to be coming to future vehicles made by Indian maker Mahindra, based on code changes discovered by MacRumors in Apple's Wallet app backend. Car Keys allows an iPhone or Apple Watch with …
https://www.macrumors.com/2026/06/01/apple-car-key-support-mahindra-vehicles/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #MacRumors [MacRumors]
Hands-on with Asus’ ROG Azoth Extreme Edition 20 mechanical keyboard – when carbon fiber isn’t enough, As…
Asus’ latest gaming keyboard celebrates two decades of ROG with gold-plated accents, 8K polling, transparent switches and keycaps, an OLED touchscreen, and a hefty $599 asking price to match its 4.6-pound weight with it…
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Asus shows off updated Zenbook and Strix Scar laptops, along with a TUF-based Gaming desktop — a refreshed look on laptops takes center stage
Here at Computex 2026 in Taipei, Asus held an early press event to showcase its updated Zenbook, Expertbook, and Strix Scar laptops, along with the new TUF T700 gaming desktop.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
AMD Radeon RX 9070 GRE review: thoroughly midrange
AMD's $549 Radeon RX 9070 GRE offers strong high-refresh-rate 1080p and 1440p gaming performance as it launches globally at Computex 2026. But a lower price tag could have truly changed the midrange game.
https://www.tomshardware.com/pc-components/gpus/amd-radeon-rx-9070-gre-review
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Noctua announces new thermal pad for AMD chips in partnership with Carbice — product will work with processors in AM5 and AM4 sockets
Noctua has entered the thermal pad market in partnership with thermal pad maker Carbice, featuring the new NT-CP1 designed for AM5 and AM4 Ryzen CPUs.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Windows Server vulnerability can grant system privileges with just a malformed packet — domain controllers are being exploited in the wild
9.8-rated Windows Server vulnerability can grants system privileges with just a malformed packet — domain controllers being exploited in the wild
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
RT @nv_pavlichenko: Heute veröffentlichen wir Mellum2: unser erstes "ernstes" LLM.
mehr auf Arint.info
#AI #LLM #MachineLearning #Mellum2 #OpenSource #TechRelease #arint_info
Nvidia's RTX Spark could caplitalize where Qualcomm's Arm-based efforts have not — following the expiration of Qualcomm's Windows on Arm deal, Nvidia stands poi…
Nvidia unveiled the RTX Spark superchip on May 31st ahead of its GTC Taipei event, putting a 20-core Arm-based Grace CPU and a Blackwell RTX GPU on a single package.
https://www.tomshardware.com/laptops/nvidia-enters-the-windows-pc-market-with-rtx-spark
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Qualcomm aims Snapdragon C laptop chip at the budget laptop segment, as manufacturers feel the DRAM squeeze — analysts warn sub $500 laptop market may disappear before 2028
Qualcomm announced the Snapdragon C Platform on May 28th, ahead of Computex 2026 in Taipei.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Google’s wallpaper-based Gemini redesign is finally rolling out to users
The changes currently appear to be limited to Gemini’s floating overlay UI.
https://www.androidauthority.com/google-gemini-material-you-redesign-3673288/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
Asus' world-first OLED esports monitor can hit 540Hz at 1080p — ROG Strix OLED model among four fresh offerings
Three of Asus’ new ROG monitors use OLED panels, while the fourth leverages “Fast IPS”
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Seven hospitalized after toxic gas fire at SK hynix advanced memory plant — Cheongju 4th campus incident today led to all 3,600 staff being evacuated
Thousands of SK hynix employees fled their factory stations earlier today as a fire broke out in a room where fluorine gas was used.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Bambu Lab Launches Big Bed Slinger: A2L — company's 'H2S Lite' is half the cost of H2S at just $469
Or get the combo for $569
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
256GB of dual-channel RAM hits mass market thanks to Origin Code — quad-rank CUDIMM packs 128GB of DDR5-8000 into a single module
Origin Code reveals the brand's Vortex 4R DDR5-8000 256GB (2x128GB) CUDIMM memory kits at Computex 2025.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Tom's Hardware Unfiltered: Computex 2026, Day 0 — peek behind the curtain to see how we're covering the biggest…
Our team is on the ground in Taipei for Computex 2026. For the first time, we're peeling back the curtain to show you exactly how we're covering it, documenting our trials and tribulations during the massive event.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Nvidia says RTX Spark chip will support all major anti-cheat and DRM technologies — Fortnite, Valorant, D…
Microsoft and Nvidia are working together to bring popular anti-cheat software to the new RTX Spark chip, allowing support for all major multiplayer games. So far, Fortnite is the only game that runs on Windows-on-Arm d…
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Supermicro shows off Vera Rubin NVL72 rack with all-new type of coolant — company claims coolant offers 1,000 times higher electrical impedance over standard cooling
Supermicro demonstrates upcoming servers based on AMD’s EPYC ‘Venice’ CPUs, MI450 accelerators, and Nvidia’s Vera Rubin-based solutions.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Save 78% on Nord's latest Complete VPN package — 27 months of online protection for $107
Pick up 27 months of NordVPN coverage for just $107. Fast VPN connections, anti-virus protection, and a password manager for only $3.99 per month.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Acer’s PM131QT portable monitor is a 12.3-inch touchscreen with magnetic mounting, a built-in kickstand, and 5-point touch – 1920 x 720 IPS screen has pogo pins for a keyboard, and …
Are you looking for a compact monitor for multiple uses around the home and on the go? Acer’s new PM131QT might be just what you’re looking for.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
Resourceful runner 'can race my own ghost' using homemade Meta Ray-Ban Display app — also adds bonus coins, mini leaderboard, and more
Video demonstrates brand-new gamified running app for the Meta Ray-Ban Display glasses.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
AMD promises 13% uplift with new EXPO ‘Ultra Low Latency’ overclocking on DDR5 DIMMs — automatic memory overclocking delivers 4% improvement over standard…
AMD’s upcoming EXPO ‘Ultra Low Latency’ automatic memory overclocking promises a 13% improvement over standard DDR5 speeds, as well as a 4% jump compared to standard EXPO.
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TomsHardware [Tom's Hardware]
This $4 router reboot timer is the cheap internet fix I didn't know I needed - and it works reliably
I've tried so many methods to reboot my router, but the best solution costs less than a cup of Joe.
https://www.zdnet.com/article/router-rebooter-review/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
New PC? This MX Linux version is the best distro for you
MX Linux has released a version that includes certain features and software that make it a brilliant option for computers that are 1-3 years old.
https://www.zdnet.com/article/mx-linux-xfce-ahs-might-be-the-best-distribution-for-newer-hardware/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
You can play Angry Birds on Android Auto, plus 4 more popular games - here's how
In addition to the built-in Gamesnacks, these titles will make car downtime less boring.
https://www.zdnet.com/article/play-angry-birds-on-android-auto-plus-more-games/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
RFC 1163 updating the Border Gateway Protocol or BGP was published in June 1990 https://cromwell-intl.com/networking/routing.html?s=mb #IPnetworking #OpenSource #Linux
Home Depot will give you a free Ryobi power tool with this battery set - and I'd recommend it
Save 57% on this Ryobi lithium-ion battery set for your power tools, and get the tool of your choice totally free. Here's what to know.
https://www.zdnet.com/article/ryobi-tool-bogo-deal-home-depot/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
My top 7 laptop-bag essentials now, after decades of remote work
Have gear, will travel: Here are the gadgets powering my mobile office this summer.
https://www.zdnet.com/article/my-tech-laptop-bag-essentials/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #ZDNet [ZDNet]
@tog @tdr112 Oh we missed that. But we will be in the Hackerspace tonight... @chillicampari and me... #opensource #linux #digitalsovereignty anybody? And I bring a contact from a university in Austria who is writing about #fediverse and Ireland.... anybody? CU l8r
Pebblebee’s Halo can help track lost items and keep you safe, and it’s on sale for $50
If you’re planning to travel this summer, both a Bluetooth tracker and a personal safety device can come in handy, especially if you’ll be exploring on your own. The Pebblebee Halo combines those two gadgets into one, a…
https://www.theverge.com/gadgets/941273/pebblebee-halo-bluetooth-tracker-personal-safety-deal-sale
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Meta’s smart glasses lead grows as Apple reportedly hits another delay
Apple's favorite launch date continues to be "later."
https://www.androidauthority.com/apple-smart-glasses-delayed-again-3673233/
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #AndroidAuthority [Android Authority]
@gamingonlinux I run a small-time #Voxelibre server (a #Minecraft clone) with weekly meet-up (a window of only 4 hours/week), for the @ActuallyAutistic and #ADHD community (who are into #OpenSource). I have tons of fun doing this.
I also post a few video clips and highlights each week.
More info:
https://docs.autis.toque.im/
#gaming
I love when I come across YouTube videos coming from people advertising themselves as a "Linux expert" and then you hear "well, I've been daily driving Linux for 3 years".
You dumb sweet summer child, you.
Meta’s own AI was exploited to hijack Instagram accounts
Meta's AI support chatbot helped hackers hijack Instagram accounts, as reported earlier by 404 Media. In a video shared on Telegram, a hacker shows how they could take over an account by asking Meta's chatbot to switch …
https://www.theverge.com/tech/941179/meta-instagram-ai-support-chatbot-exploit-hacked
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]
Anthropic has officially filed to go public
After months of speculation about whether OpenAI or Anthropic would be first in their race to IPO, Anthropic on Monday reached a key milestone: filing to kick off the process with the U.S. Securities and Exchange Commis…
#Tech #Technology #TechNews #AI #Gadgets #Software #Cybersecurity #Apple #Google #Microsoft #Startup #OpenSource #TheVerge [The Verge]