Meet Mark Chen and Jakub Pachocki. The two people shaping the future of OpenAI’s research
The two people shaping the future of OpenAI’s research
An exclusive conversation with Mark Chen and Jakub Pachocki, OpenAI’s twin heads of research, about the path toward more capable reasoning models—and superalignment.Will Douglas Heaven (MIT Technology Review)
Technology reshared this.
like this
Facial recognition vans to be rolled out across police forces in England
Under the plans, 10 live facial recognition (LFR) vans will be used by seven forces across England to help identify "sex offenders or people wanted for the most serious crimes", according to Home Secretary Yvette Cooper.
The tech, which has been trialled in London and south Wales, will be subject to strict rules, the Home Office said, but human rights groups have warned it is "dangerous and discriminatory".
Amnesty International UK said the plans should be "immediately scrapped", with facial recognition proven to be "discriminatory against communities of colour".
Facial recognition vans to be rolled out across police forces in England
Ten live facial recognition vans will be deployed - but human rights groups argue the tech is "dangerous and discriminatory".Sky News
like this
Technology reshared this.
Facial recognition vans to be rolled out across police forces in England
Under the plans, 10 live facial recognition (LFR) vans will be used by seven forces across England to help identify "sex offenders or people wanted for the most serious crimes", according to Home Secretary Yvette Cooper.
The tech, which has been trialled in London and south Wales, will be subject to strict rules, the Home Office said, but human rights groups have warned it is "dangerous and discriminatory".
Amnesty International UK said the plans should be "immediately scrapped", with facial recognition proven to be "discriminatory against communities of colour".
Facial recognition vans to be rolled out across police forces in England
Ten live facial recognition vans will be deployed - but human rights groups argue the tech is "dangerous and discriminatory".Sky News
Facial recognition vans to be rolled out across police forces in England
Under the plans, 10 live facial recognition (LFR) vans will be used by seven forces across England to help identify "sex offenders or people wanted for the most serious crimes", according to Home Secretary Yvette Cooper.
The tech, which has been trialled in London and south Wales, will be subject to strict rules, the Home Office said, but human rights groups have warned it is "dangerous and discriminatory".
Amnesty International UK said the plans should be "immediately scrapped", with facial recognition proven to be "discriminatory against communities of colour".
Facial recognition vans to be rolled out across police forces in England
Ten live facial recognition vans will be deployed - but human rights groups argue the tech is "dangerous and discriminatory".Sky News
like this
Online Safety Act - shutdowns and site blocks
Online Safety Act - shutdowns and site blocks
Report incorrectly blocked sites on UK ISP and mobile networks.Report mobile and Internet Service Providers blocking sites
Now you see me, now you don’t: how subtle ‘sponsored content’ on social media tricks us into viewing ads
Now you see me, now you don’t: how subtle ‘sponsored content’ on social media tricks us into viewing ads
Scientists find that people mostly avoid social media ads when they see them, but many ads blend in seamlessly.Angharad Brewer Gillham (Frontiers | Science news)
Temperature records broken as extreme heat grips parts of Europe
Extreme heat is breaking temperature records across Europe, early measurements suggest, and driving bigger and stronger wildfires.
In south-west France, records were broken on Monday in Angoulême, Bergerac, Bordeaux, Saint-Émilion and Saint-Girons. Météo France said the “often remarkable, even unprecedented, maximum temperatures” in the region were 12C above the norm for the last few decades.
In Croatia, air temperature records were set in Šibenik, at 39.5C, and Dubrovnik, at 38.9C, while large forest fires raged along its coasts and ripped through neighbouring countries in the Balkans.
Beyond Europe, dozens of temperature records were broken across Canada, and record-breaking heat above 50C in Iraq was blamed for a nationwide blackout.
Temperature records broken as extreme heat grips parts of Europe
Unprecedented temperatures causing difficulties in south-west France, Croatia, Italy and Spain with wildfire destruction across Europe up 87%Ajit Niranjan (The Guardian)
Issues posting comments or Posts on some Threads
I have hade issues posting on lemmy threads. Both commaenta and a normal post. Is this because I use a VPN?
Example:
I have successfully replied to a comment in the "gaming" section of Lemmy (once). A while later I wanted to post a thread, or comment, but simply can't because 'a problem occurred' or something similar.
AI start-up Perplexity makes surprise bid for Google Chrome
AI start-up Perplexity makes surprise $34.5bn bid for Google Chrome
One technology industry investor called the $34.5bn offer a "stunt" that is much lower than Chrome's true value.Osmond Chia (BBC News)
like this
Technology reshared this.
It's a gimmick to get publicity. But if it happens, the company has to generate revenue to pay it off.
Guess how browser makers make money off a 'free' product?
Couchpotato, sonarr alternatives in 2025
like this
Ett av de projekt som Föreningen för Digitala Fri- och Rättigheter (DFRI) driver är att ta fram en ny och bättre digital legitimation. Anledningen till varför det behövs en bättre e-legitimation anger de tydligt i projektbeskrivningen.
blog.zaramis.se/2025/08/13/for…
För en bättre e-legitimation - Svenssons Nyheter
För en bättre e-legitimation. Ett av de projekt som Föreningen för Digitala Fri- och Rättigheter (DFRI) driver är att ta fram en nyAnders_S (Svenssons Nyheter)
Serving a simple website from a Jail with Bastille
In this short little howto we will be setting up a simple Jail via Bastille and host a static website.
Beware: The article assumes that sudo is configured. You can of course also use doas or switch to root, if you so desire. Some commands need root rights to work – keep that in mind as you go along!
First, we need to install Bastille itself.
$ sudo pkg install -y bastille
After installing, we enable the bastille service.
$ sudo sysrc bastille_enable=YES
And finally we start it.
$ sudo service bastille start
The next step on the list is to acually alter the bastille config to adapt it to our needs. Beware that in this guide I assume that you’ve installed FreeBSD with ZFS – or that you have a ZFS pool on hand that we can leverage. By default FreeBSD calls this pool zroot (Which can be altered during the install of FreeBSD). If you do not use ZFS be sure to not alter the variables below – the default is not leveraging ZFS.
Edit the configuration file.
$ sudo vim /usr/local/etc/bastille/bastille.confbastille_tzdata="Europe/Berlin"...bastille_zfs_enable="YES"bastille_zfs_zpool="zroot"...
In my case, as you can see, I’ve adapted the timezone and set up ZFS for the coming Bastille Jails. Be sure to alter the timezone according to your needs.
Next up is creating a loopback interface.
$ sudo sysrc cloned_interfaces+=lo1$ sudo sysrc ifconfig_lo1_name="bastille0"
Start the newly created interface after creating it.
$ sudo service netif cloneup
Now we can move on to the bootstrap phase. The following command will get the newest release (As of this time) and prepare the environment.
$ sudo bastille bootstrap 14.3-RELEASE update
Alright, with that done we can create our first Jail.
The command given will create a Jail named “web” and give it the IP address of 10.0.23.60. Also specifying the interface after the IP address is important.
Note: Be sure to alter the given address to your own needs!
$ sudo bastille create web 14.3-RELEASE 10.0.23.60/24 vtnet0
So far so good. Check if the Jail is created with the “list” option to bastille.
$ sudo bastille list
If the output shows our newly created Jail called “web” we are good to go.
Now we want to enter our freshly created Jail to continue the setup.
$ sudo bastille console web
First, let’s install pkg and update the repository.
# pkg# pkg update
Next we’ll install the needed software (Webserver) to host our website. We also install a editor – pick the one your prefer (In this example we’ll use vim).
# pkg install -y lighttpd vim
Enable Lighttpd and start it afterwards.
# sysrc lighttpd_enable="YES"# service lighttpd start
We could now configure Lighttpd to our needs and change quite some settings. But in the interest of keeping it simple we will use the default configuration for now. If however you want to change things you can always take a look into the configuration directory which can be found under /usr/local/www/lighttpd (Multiple config files).
By default Lighttpd serves the directory /usr/local/www/data (Document Root). This is where we will put the needed files of our little website.
But, the directory “data” is not yet created. So let us just do that.
# cd /usr/local/www/# mkdir data# chown www:www data
Make sure the owner is set correctly since Lighttpd will by default leverage the user www and group www.
Final stretch ahead. Let’s cd into the directory and clone a simple website from git – After installing git of course.
# pkg install -y git-lite# cd data# git clone github.com/jhx0/bsd-website.gi… mv bsd-website/* .
Our frehsly cloned site should now be moved into the data directory.
The only thing left to do is opening your webbrowser of choice on our client system and navigation to the IP address previously configured.
$ firefox 10.0.23.60
Finsihed!
Beware: This is a default setup – There are many ways to improve this!
Look into the configuration of Lighttpd, esp, considering security related alterations.
Have fun everyone.
Stay Open!
Streamio whilst traveling
Hello me hearties.
I have a question about the Streamio app/Service.
I travel full time and with all the paid streaming services requiring a 'home' IP address I'm now looking for alternatives.
Streamio seems to fit the bill, however I have one question. Although I will be streaming to one or maybe 2 devices, I would probably like to use REAL DEBRID, But, Can I use different IP addresses, for example, one week I might be in Japan, the next week I'll be in Thailand.
In my case would it be best to purchase my own private IP from a VPN provider?
Any advice would be awesome.!
Thank you
like this
This might be of use?
stremio-addons.net/addons/aios…
"AIOStreams consolidates multiple Stremio addons and debrid services into a single, easily configurable addon. It allows highly customisable filtering, sorting, and formatting of results and supports proxying all your streams through MediaFlow Proxy or StremThru for improved compatibility and IP restriction bypassing."
I use this addon, but not for the proxy stuff.
Do not use Real Debrid and use TorBox, do not make problems with IPs as explained here:
support.torbox.app/en/articles…
I use it and now it works very well, first I used Real Debrid.
if you want my referral:
torbox.app/subscription?referr…
Can I Use My Account With Many Different IP's? | TorBox Help Center
TorBox can be used anywhere!support.torbox.app
Wildlife team 'devastated' by Holt Heath fire animal deaths
A group that has been searching the burnt remains of a heath fire for surviving animals has said it is "devastated" by the loss of wildlife.
The Dorset Heaths Partnership is made up of 10 organisations working together to protect and enhance the Dorset heathlands
Paul Attwell is the partnership's team manager and said the blaze, which started at Holt Heath near Wimborne in Dorset on Saturday morning, was "horrendous".
Wildlife team 'devastated' by Holt Heath fire animal deaths
The Dorset Heaths Partnership found more than 50 dead reptiles on Tuesday.Curtis Lancaster (BBC News)
Rare Sowerby's Beaked Whale washes up in Norfolk
A Sowerby's Beaked Whale, a poorly known deep sea species, has perished after washing up on a beach in Norfolk.
The animal was found in The Wash near Holme-next-the-Sea on Wednesday 6 August by a member of the public, who alerted it to British Divers Marine Life Rescue. By the time a BDMLR representative arrived at the scene, the whale had died, according to Wild Ken Hill on Facebook.
The whale was found to be a female. At this time of year females move south from Arctic breeding grounds – and it may be that this individual was with a young animal.
dflemstr likes this.
Who said you can move furniture with a bike?
I saw this bike made by an independent bike shop for himself.
It's an electric longtail and can carry a 300kg europallet, plus the toolbox on the front, plus an extra person or material on the bike rack!
Here is the link to the shop website: cycles-penet.fr/
Cycles Penet Frères – Fabrication de vélos rallongés personnalisés
Artisan assemblant des vélos longtails, robustes et durables au meilleur prix du marché.www.cycles-penet.fr
like this
Musk threatens Apple and calls OpenAI boss a liar as feud deepens
Musk threatens Apple and calls OpenAI boss a liar as feud deepens
Relations between the two tech bosses have soured amid a slew of lawsuits and social media digs.Liv McMahon (BBC News)
AI companion apps are on track to generate $120M+ in revenue in 2025, and in H1 there were 60M downloads of this kind of app, up 88% YoY
Holy shit. And I thought I was alone.
Where the hell are we heading as humanity?
AI companion apps on track to pull in $120M in 2025 | TechCrunch
The number of AI companion apps has grown more than 60% since 2024.Sarah Perez (TechCrunch)
like this
Technology reshared this.
China has built the world’s largest bullet-train network
China has built the world’s largest bullet-train network
And there’s a lot more to come. But is it a waste of money?The Economist
like this
New Uvalde Records Reveal Details About School Safety Concerns and Shooter’s Behavioral Issues
The release is part of a settlement agreement in a lawsuit that news organizations brought against state and local governments. The fight continues to get the Texas Department of Public Safety to release its own records.
35 Union Pacific train cars derail near Texas town, no injuries reported
Authorities say 35 cars of a Union Pacific train derailed near a small Texas town but there were no injuries reported and no evacuations ordered.
https://apnews.com/article/train-derailment-texas-union-pacific-f9682fd217599b61291b672f20d36692
Brazilian Court Allows Boeing to Continue Hiring Local Engineers
A Brazilian court has ruled that Boeing can continue hiring engineers, rejecting a lawsuit that sought to limit the US planemaker's recruitment practices.
Brazilian Court Allows Boeing to Continue Hiring Local Engineers
A Brazilian federal court has rejected a lawsuit seeking to restrict Boeing's recruitment of local engineers, allowing the US planemaker to continue its hiring practices in the country.Prachi Patel (Simple Flying)
UK | Government expands police use of live facial recognition vans
The Home Office says the technology helps locate suspects but civil liberties groups warn of heightened surveillance.
US | Trump administration to review 19 Smithsonian museums to ensure exhibits are ‘patriotic’
White House letter orders review as part of a broader push to assert oversight over cultural institutions
Archived version: archive.is/20250812215326/theg…
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.
A proposito delle meduse che hanno bloccato la maggiore centrale nucleare di Francia - Il blog di Jacopo Ranieri
A proposito delle meduse che hanno bloccato la maggiore centrale nucleare di Francia - Il blog di Jacopo Ranieri
Considerando attentamente l’esiziale vulnerabilità di un asset strategico come una grande centrale elettrica alimentata mediante l’utilizzo di carburante nucleare, è significativo il potenziale problematico di collocarla presso quello che costituisce…Jacopo (Il blog di Jacopo Ranieri)
Israel's army formed special intel unit to 'justify killing' of hundreds of Gaza journalists
Israel's army formed special intel unit to 'justify killing' of hundreds of Gaza journalists
The unit, called the ‘Legitimization Cell,’ was established by the military intelligence directorate, which includes Unit 8200thecradle.co
like this
World's largest sovereign wealth fund divests from Israeli companies
World's largest sovereign wealth fund divests from Israeli companies
The decision by Norway followed revelations of the fund's stake in an Israeli jet engine manufacturerthecradle.co
like this
like this
i hope the safe guards in place for the members of the ethics committee guard against (a) leader(s) who get to decide on future members of the ethics committee.
i say this because the united states also has such committees but both our president and our congresspeople sabotage it by either refusing to certify new members or appoint members with conflicts of interest (eg fossil fuels executives in charge of the environment protection agency).
The Math Hack You Didn’t Know Was in Your Credit Card
What Is the Luhn Algorithm? The Math Behind Secure Credit Card Numbers
Find out how this simple algorithm from the 1960s keeps your wallet safeJack Murtagh (Scientific American)
like this
Is it worth paying a direct download website?
Is it worth paying for a direct download website? When downloading for free it takes 6-8 hours (and for some reason it got interrupted and failed, so I have to attempt again) but if I paid for it I could download it in 3 minutes. I'm worried that the free version just doesn't support having a download take that long, so it will be impossible to obtain.
I'm not sure if it is safe, nor stupid to do so though. Specifically, I'm talking about torbobit (dot) net
Would you consider torrenting (from non-private torrents) safer than ddl? I can either pay the ddl or a vpn and use a torrent. Idk.
Thank you.
it honestly depends on how much you use the service.
i had an account for a while to a site that shut down. while i had it i was downloading a bunch of different files, not necessarily pirated stuff.
i'd say if torrents isn't a viable option and you would be using that site downloading at least 500 mb worth of data a day, it might be worth it. if something you want is available only on one of these sites, it depends on how bad you want it and how soon you want it.
New data shows No Kings was one of the largest days of protest in US history
New data shows No Kings was one of the largest days of protest in US history
The historic number of No Kings protesters and their expansive geographic spread are signs of a growing and durable pro-democracy movement.Erica Chenoweth (Waging Nonviolence)
like this
Butter made from carbon tastes like the real thing, gets backing from Bill Gates
cross-posted from: lemmy.world/post/34272214
A California-based biotechnology startup has officially launched the world's first commercially available butter made entirely from carbon dioxide, hydrogen, and oxygen, eliminating the need for traditional agriculture or animal farming. Savor, backed by Microsoft co-founder Bill Gates through his Breakthrough Energy Ventures fund, announced the commercial release of its animal- and plant-free butter after three years of development.The revolutionary product uses a proprietary thermochemical process that transforms carbon dioxide captured from the air, hydrogen from water, and methane into fat molecules chemically identical to those found in dairy butter. According to the company, the process creates fatty acids by heating these gases under controlled temperature and pressure conditions, then combining them with glycerol to form triglycerides.
Butter made from carbon tastes like the real thing, gets backing from Bill Gates
A company in Batavia, Illinois is making butter in a way you've never seen before. No animals, no plants, no oils; this butter is made from carbon.Tara Molina (CBS Chicago)
like this
We focus too much on efficiency and cost sometimes. Sometimes efficiency is only a "nice to have" while being outweighed by practicality, convenience, safety, and any of the other factors we choose to make a priority.
It is expensive and inefficient for an airplane to have two engines instead of just one. We do it anyway because it's required for safety and redundancy. We made that the priority, and that was an active choice. We need to start making more active choices about what the priority is when it comes to our energy futures. All priorities have tradeoffs. Cost and efficiency have their own tradeoffs. Question it when people tell you that things can't be done because of "cost" or "efficiency". When they do that they're presupposing what the priority is, but often it's billionaires trying to cut corners to make themselves richer at our expense, our safety, our futures. We can do inefficient things. Sometimes it's even the right choice.
Or we could burn more coal so we can generate the energy needed for synthetic gasoline…
The problem is, people can, do, and will use that exact same argument to say we don't need any more solar panels or wind turbines, because we don't need and can't use or store the excess power for anything and that's why we need to keep thermal plants as backup for base load generation. Look, when we produce too much electricity, the electricity cost goes to zero and negative! It's "wasteful and inefficient"! But these two problems can solve each other. Synthetic fuels (doesn't have to be gasoline, hydrogen is step 1, methane/LNG is a bit more manageable as a chemical fuel. As long as the carbon source is atmospheric, then it and other synthetic hydrocarbons are carbon neutral to burn) provide an on-demand energy sink/storage method that can support and drive more electrification and renewable power, it just has to be part of a consistent and systemic approach with strict regulation and a clear view of the big picture (something sorely lacking these days).
Nailed it.
We need a solar grid that can meet our demand during a 9-hour, overcast, low-angle winter day. That same grid will be producing more than 4 times as much power as we need during a 15-hour, high-angle summer day, even after we include air conditioning loads.
We need massive, seasonal loads to soak up that excess power and keep solar profitable.
Fake butter isn't going to do it, but things like desalination, hydrogen electrolysis, and Fischer-Tropsch hydrocarbon production are all likely candidates.
tane69
in reply to Davriellelouna • • •