A survey of 1,047 US college students on GenAI: 55% use the tech for brainstorming ideas, 18% now question the value of college more than they used to, and more.
Key findings
- Most students are using generative AI for coursework, but many are doing so in ways that can support, not outsource, their learning.
- Performance pressures, among other factors, are driving cheating.
- Nearly all students want action on academic integrity, but most reject policing.
- Students have mixed views on faculty use of generative AI for teaching.
- Generative AI is influencing students’ learning and critical thinking abilities.
- Students want information and support in preparing for a world shaped by AI.
- On the whole, generative AI isn’t devaluing college for students—and it’s increasing its value for some.
Survey: College Students’ Views on AI
Key findings from Inside Higher Ed’s student survey on generative AI show that using the evolving technology hasn’t diminished the value of college in their view, but it could affect their critical thinking skills.Colleen Flaherty (Inside Higher Ed | Higher Education News, Events and Jobs)
RyzenZPilot - Intelligent Power Management for AMD Ryzen
🚀 RyzenZPilot
⚡ Your intelligent autopilot for AMD Ryzen performance & efficiency! 🎯
🔥 Your all-in-one solution for dynamic power management – right from your system tray! 💪
Boost your productivity and save energy: RyzenZPilot automatically switches between optimized power profiles based on your active applications. Whether gaming 🎮, video editing 🎬, or office work 📊 – your Ryzen system always runs in the perfect mode!
🤖 What is RyzenZPilot?
RyzenZPilot integrates intelligent power management functionality to enhance productivity and efficiency for AMD Ryzen users. It allows automatic power profile switching based on active processes, manages system performance dynamically, and provides seamless system tray integration. The tool runs completely in the background and intelligently controls your AMD Ryzen processor's energy settings. 🧠 Forget about manual profile switching in Windows power options – RyzenZPilot monitors your active processes and automatically selects the optimal profile!
⭐ Core FeaturesSystem Tray Integration
for full power management,
Worker Thread Architecture
for region-specific performance optimization, and
Automatic Profile Detection
to intelligently switch power modes. This allows for operation that is 100% invisible to other applications.
🎯 Intelligent Autopilot: Automatic switching between "Silent" 🤫, "Balanced" ⚖️, and "Performance" 🔥 profiles
📍 System Tray Integration: Runs invisibly in the taskbar – one click gives you full control!
⚡ Multi-Threading Architecture: Responsive GUI + separate worker thread for optimal system performance
🔧 Easy Configuration: Define which applications trigger which power profiles
🚀 Autostart Options: Starts minimized or visible – exactly as you prefer
🔍 Debug Mode: Advanced analysis tools for power users and developers
💾 Minimal Resource Usage: Runs efficiently in the background without system impact
Free download: tetramatrix.github.io/RyzenZPi…
RyzenZPilot - Intelligent Power Management for AMD Ryzen
⚡ Automatic performance and efficiency control for your Ryzen system directly from the system tray!tetramatrix.github.io
Three years of building no-code software for grassroots political organizations
Three years of building no-code software for grassroots political organizations
What is no-code? No-code is primarily a type of software that allows you to create more software, customized for your needs, starting fro...Conjure Utopia
The promise of Rust
The promise of Rust
The part that makes Rust scary is the part that makes it unique. And it’s also what I miss in other programming languages — let me explain! Rust syntax starts simple. This function prints a number:...fasterthanli.me
Technology Channel reshared this.
End of 10: Support for Windows 10 ends on October 14, 2025.
cross-posted from: programming.dev/post/36679745
::: spoiler Comments
- Lemmy;
- Hackernews;
- Lobsters.
:::
If you bought your computer after 2010, there's most likely no reason to throw it out. By just installing an up-to-date Linux operating system you can keep using it for years to come.I will pin this post till the end of October, due to the importance of this.
End of 10: Support for Windows 10 ends on October 14, 2025.
cross-posted from: programming.dev/post/36679745
::: spoiler Comments
- Lemmy;
- Hackernews;
- Lobsters.
:::
If you bought your computer after 2010, there's most likely no reason to throw it out. By just installing an up-to-date Linux operating system you can keep using it for years to come.I will pin this post till the end of October, due to the importance of this.
End of 10: Support for Windows 10 ends on October 14, 2025.
cross-posted from: programming.dev/post/36679745
::: spoiler Comments
- Lemmy;
- Hackernews;
- Lobsters.
:::
If you bought your computer after 2010, there's most likely no reason to throw it out. By just installing an up-to-date Linux operating system you can keep using it for years to come.I will pin this post till the end of October, due to the importance of this.
Raoul Duke likes this.
End of 10: Support for Windows 10 ends on October 14, 2025.
::: spoiler Comments
- Lemmy;
- Hackernews;
- Lobsters.
:::
If you bought your computer after 2010, there's most likely no reason to throw it out. By just installing an up-to-date Linux operating system you can keep using it for years to come.
I will pin this post till the end of October, due to the importance of this.
Why “caffè” may not be “caffè”
Every time when I think I finally “got” Unicode, I get kicked in the back by this rabbit hole. 😆 However, IMHO it is important to recognise that when moving data and files between operating systems and programs that you’re better off knowing some of the pitfalls. So I’m sharing something I experienced when I transferred a file to my FreeBSD Play-Around notebook. So let’s assume a little story…
It’s late afternoon and you and some friends sit together playing around with BSD. A friend using another operating system collects coffee orders in a little text file to not forget anyone when going to the barista on the other side of the street. He sends the file to you, so at the next meeting you already know the preferences of your friends. You take a look at who wants a caffè:
armin@freebsd:/tmp $ cat orders2.txtMauro: cappuccinoArmin: caffè doppioAnna: caffè shakeratoStefano: caffèFranz: latte macchiatoFrancesca: cappuccinoCarla: latte macchiato
So you do a quick grep just to be very surprised!
armin@freebsd:/tmp $ grep -i caffè orders2.txtarmin@freebsd:/tmp $
Wait, WAT? Why is there no output? We have more than one line with caffè
in the file? Well, you just met one of the many aspects of Unicode. This time it’s called “normalization”. 😎
Many characters can be represented by more than one form. Take the innocent “à
” from the example above. There is an accented character in the Unicode characters called LATIN SMALL LETTER A WITH GRAVE. But you could also just use a regular LATIN SMALL LETTER A and combine it with the character COMBINING GRAVE ACCENT from the Unicode characters. Both result in the same character and “look” identical, but aren’t.
Let’s see a line with the word “caffè” as hex dump using the first approach (LATIN SMALL LETTER A WITH GRAVE):
\u0063\u0061\u0066\u0066\u00E8\u000Ac a f f è (LF)
Now let’s do the same for the same line using the second approach:
\u0063\u0061\u0066\u0066\u0065\u0300\u000Ac a f f è (LF)
And there you have it, the latter is a byte longer and the two lines do not match up even if both lines are encoded as UTF-8 and the character looks the same!
So obviously just using UTF-8 is not enough and you might encounter files using the second approach. Just to make matter more complicated there are actually four forms of Unicode normalization out there. 😆
- NFD: canonical decomposition
- NFC: canonical decomposition followed by canonical composition
- NFKD: compatible decomposition
- NFKC: compatible decomposition followed by canonical composition.
For the sake of brevity of this post and your nerves we’ll just deal with the first two and I refer you to this Wikipedia article for the rest.
Normal form C (NFC) is the most widely used normal form and is also defined by the W3C for HTML, XML, and JavaScript. Technically speaking, encoding in Latin1 (or Windows Codepage 1252), for example, is in normal form C, since an “à” or the umlaut “Ö” is a single character and is not composed of combining characters. Windows and the .Net framework also store Unicode strings in Normal Form C. This does not mean that NFD can be ignored. For example, the Mac OSX file system works with a variant of NFD data, as the Unicode standard was only finalized when OSX was designed. When two applications share Unicode data, but normalize them differently, errors and data loss can result.
So how do we get from one form to another in one of the BSD operating systems (also in Linux)? Well, the Unicode Consortium provides a toolset called ICU — International Components for Unicode. The Documentation URL is unicode-org.github.io/icu/ and you can install that in FreeBSD using the command
pkg install icu
After completion of the installation you have a new command line tool called uconv
(not to be mismatched with iconv
which serves a similar purpose). Using uconv
you can transcode the normal forms into each other as well do a lot of other encoding stuff (this tool is a rabbit hole in itself 😎).
Similar to iconv
you can specify a “from” and a “to” encoding for input. But you can also specify so-called “transliterations” that will be applied to the input. In its simplest form such a transliteration is something in the form SOURCE-TARGET that specifies the operation. The "any"
stands for any input character. This is the way I got the hexdump from above by using the transliteration 'any-hex'
:
armin@freebsd:/tmp$ echo caffè | uconv -x 'any-hex'\u0063\u0061\u0066\u0066\u00E8\u000A
Instead of hex codes you can also output the Unicode code point names to see the difference between the two forms:
armin@freebsd:/tmp$ echo Caffè | uconv -f utf-8 -t utf-8 -x 'any-nfd' | uconv -f utf-8 -x 'any-name' \N{LATIN CAPITAL LETTER C}\N{LATIN SMALL LETTER A}\N{LATIN SMALL LETTER F}\N{LATIN SMALL LETTER F}\N{LATIN SMALL LETTER E}\N{COMBINING GRAVE ACCENT}\N{<control-000A>}
Now let’s try this for the NFC form:
armin@freebsd:/tmp$ echo Caffè | uconv -f utf-8 -t utf-8 -x 'any-nfc' | uconv -f utf-8 -x 'any-name'\N{LATIN CAPITAL LETTER C}\N{LATIN SMALL LETTER A}\N{LATIN SMALL LETTER F}\N{LATIN SMALL LETTER F}\N{LATIN SMALL LETTER E WITH GRAVE}\N{<control-000A>}
You can also convert from one normal form to another by using a transliteration like 'any-nfd'
to convert the input to the normal form D (for decomposed, e.g. LATIN SMALL CHARACTER A + COMBINING GRAVE ACCENT) or 'any-nfc'
for the normal form C.
If you want to learn about building your own transliterations, there’s a tutorial at unicode-org.github.io/icu/user… that shows the enormous capabilities of uconv
.
Using the 'name'
transliteration you can easily discern the various Sigmas here (I’m using sed
to split the output into multiple lines):
armin@freebsd:/tmp $ echo '∑𝛴Σ' | uconv -x 'any-name' | sed -e 's/\\N/\n/g'{N-ARY SUMMATION}{MATHEMATICAL ITALIC CAPITAL SIGMA}{GREEK CAPITAL LETTER SIGMA}{<control-000A>}
If you want to get the Unicode character from the name, there are several ways depending on the programming language you prefer. Here is an example using python that shows the German umlaut "Ö"
:
python -c 'import unicodedata; print(unicodedata.lookup(u"LATIN CAPITAL LETTER O WITH DIAERESIS"))'
The uconv
utility is a very mighty thing and every modern programming language (see the Python example above) also has libraries and modules to support handling Unicode data. The world gets connected, but not in ASCII. 😎
reshared this
US poll finds 60 percent of Gen Z voters back Hamas over Israel in Gaza war
US poll finds 60 percent of Gen Z voters back Hamas over Israel in Gaza war
A new survey has revealed a sharp generational split in United States attitudes towards Israel’s war on Gaza, with younger voters showing unprecedented support for Hamas as Israel carries out a genocide.MEE staff (Middle East Eye)
like this
Chatbots can be manipulated through flattery and peer pressure
Researchers convinced ChatGPT to do things it normally wouldn’t with basic psychology.
Chatbots can be manipulated through flattery and peer pressure
Researchers were able to manipulate ChatGPT into breaking its own rules through peer pressure and flattery.Terrence O'Brien (The Verge)
like this
Technology Channel reshared this.
Traffic to government domains often crosses national borders, or flows through risky bottlenecks
Sites at yourcountry.gov may also not bother with HTTPs
Traffic to government domains often crosses national borders, or flows through risky bottlenecks
: Sites at yourcountry.gov may also not bother with HTTPsSimon Sharwood (The Register)
essell likes this.
Chrome increases its overwhelming market share, now over 70%
No matter how hard other browsers try, people stubbornly do not want to leave Chrome, and its market share is now above 70%.
https://www.neowin.net/news/chrome-increases-its-overwhelming-market-share-now-over-70/
like this
US reportedly suspends visa approvals for nearly all Palestinian passport holders
Restrictions to prevent travel for healthcare and college and come after denying visas to Palestinian Authority leaders
Archived version: archive.is/20250901035359/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.
Flotilla with Greta Thunberg on board sets sail for Gaza
Hundreds of activists are aboard the Global Sumud Flotilla with the intention to bring humanitarian aid to Gaza.
Archived version: archive.is/newest/dw.com/en/fl…
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.
like this
Chinese eSports firm worked with AMD on 1,000 Hz gaming monitor primed for 2026 debut
Yes, it uses a TN panel, but local dimming technology and Black Frame Insertion should enhance visuals.
Connecticut Man's Case Believed to Be First Murder-Suicide Associated With AI Psychosis
Several suicides have been blamed on AI. This appears to be the first homicide.
like this
Thousands of Tesla SUVs recalled in Australia over software fault that ‘can increase risk of injury’
All 2025 Tesla Model Y variants affected by issue that risks window closing on body parts ‘with excessive force’
Trust Issues
comiCSS #206: Trust Issues
comic with 4 panels in a 2x2 grid. The same character says Trust issues? Of course I have trust issues! You see, I've been working with CSS for a while already... (over a dark gray background) ...And, in CSS, this is gray...comicss.art
like this
[Opinion] How the IDF Central Command chief enables war crimes in the West Bank
If the situation were normal, someone appointed as head of the Israeli army's Central Command – which includes occupied territory in which 3.5 million Palestinians and 520,000 Israeli Jews live – would presumably have begun his term by meeting with the mayors of Palestinian cities and villages.
Archived version: archive.is/20250901044105/haar…
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.
Poland, Baltic, Nordic States urge new EU funds for border security
Facing escalating drone incursions and hybrid threats, five EU border states are demanding fresh Commission funding to boost aerial defences and protect civilians
Archived version: archive.is/newest/euractiv.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.
At least 250 killed in 6.0-magnitude earthquake in Afghanistan
Hundreds of other people were injured in the quake, which struck Jalalabad near the border with Pakistan.
Archived version: archive.is/newest/nbcnews.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.
At least 250 killed in 6.0-magnitude earthquake in Afghanistan
At least 250 people have been killed and over 500 injured in Afghanistan after a 6.0-magnitude earthquake hit the country on Monday, Taliban officials said.Mushtaq Yusufzai (NBC News)
Australian report raises concerns over age-verification software ahead of teen social ban
There was high accuracy for those over 19, but not for those up to three years on either side of the limit.
Australian report raises concerns over age-verification software ahead of teen social ban
There was high accuracy for those over 19, but not for those up to three years on either side of the limit. Read more at straitstimes.com.ST
The deadly toll on journalists in the Gaza war
With foreign media barred, Palestinians have reported alone, facing the ‘most deliberate effort to kill and silence’ them ever
Archived version: archive.is/20250901045416/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.
Australia | Man arrested after allegedly ramming car through front gates of Russian consulate in Sydney
Police called to Woollahra following reports of ‘unauthorised vehicle’ parked in driveway, with 39-year-old then crashing through gates, police allege
Archived version: archive.is/newest/theguardian.…
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.
Steam users in the UK will need a credit card to access “mature content” games
cross-posted from: piefed.social/post/1204179
Steam is now complying with the Online Safety Act
Steam users in the UK will need a credit card to access ‘mature content’ games
Valve has started rolling out age verification checks for Steam users in the UK. Brits will need a credit card on their Steam account to access mature games.Tom Warren (The Verge)
like this
That is actually a relatively mild solution that makes the age verification almost bearable...
...which is terrible, because age verification as a whole is a terrible concept. Would have been nice if a big player like Steam is working against it, but I also never expected they would, they are commercial after all.
English councils pay private landlords millions in incentives to house homeless families
Exclusive: Data gathered by Generation Rent shows 37 councils spent £31m in 2024-25 in one-off payments to individual landlords
essell likes this.
[Patch Notes] 0.3.0 Hotfix 12
0.3.0 Hotfix 12
- Made adjustments to the Azmadi, the Faridun Prince fight:
- Slightly increased cooldown of most of his skills.
- Decreased the damage of most of his skills.
- Fixed not being able to Dodge Roll through his lacerate attacks.
- Fixed a bug where Skeletal Warriors could incorrectly be created without reserving Spirit.
Early Access Patch Notes - 0.3.0 Hotfix 12 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 11
0.3.0 Hotfix 11
- Killing the bosses in The Khari Crossing no longer turns off the entrance to Skullmaw Stairway.
- Fixed the Derelict Mansion bosses sometimes failing to drop loot and open the arena doors.
- Fixed achievement count icons incorrectly displaying in the chat, since there's currently no achievement list.
- Fixed a client crash that could occur when using the Tempest Bell Skill.
- Fixed 2 instance crashes.
Early Access Patch Notes - 0.3.0 Hotfix 11 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 10
0.3.0 Hotfix 10
- Fixed a bug where Zolin would grant you Breach Atlas Passive Skill Books for defeating the King of the Mists, instead of from defeating Xesht.
- Fixed a client crash when displaying a character with the Merit of Service Unique Shield equipped.
- Fixed 3 instance crashes.
This patch has been deployed without restarting the servers, you will need to restart your client to receive the client fixes.
Early Access Patch Notes - 0.3.0 Hotfix 10 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Announcement] Introducing the Third Edict Mystery Box
We've just released the Third Edict Mystery Box, a new mystery box without duplicate microtransactions! Many of these microtransactions have a varying number of thematic variations. Check out the contents of the box below!
Video: What's in the The Third Edict Mystery Box?
Please note that currently the Third Edict Mystery Box is available only in Path of Exile 2.
There are 56 microtransactions (including variations) that you can find in The Third Edict Mystery Box. Many of these microtransactions have a varying number of thematic variations, and you'll never receive a duplicate copy of a variation that you have already opened. For example, if you open one variant of a microtransaction, you may later receive another variant, but you'll never get a duplicate! Check out the full details at pathofexile2.com/mysterybox
Early Access Announcements - Introducing the Third Edict Mystery Box - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 9
0.3.0 Hotfix 9
- Fixed a bug where Siphon Elements had an incorrect starting gem level in the Gemcutting menu.
- Fixed a bug where Lightning Warp was missing the Remnant tag.
- Fixed a bug where Grim Feast could not be engraved in the Gemcutting menu.
- Fixed a bug where interacting with the Wardrobe Decoration would open the cosmetics panel for all players in the hideout.
- Fixed a bug where the Earnings Tab was hidden if you had the 'Hide remove only tabs' option enabled.
- Fixed a client crash that could occur with The Devouring Diadem Unique Helmet.
- Fixed a client crash that could sometimes occur when viewing a Gem Stash Tab.
- Fixed 5 other client crashes.
- Fixed 3 instance crashes.
This patch has been deployed without restarting the servers, you will need to restart your client to receive the client fixes in this patch. The update will be made available on PlayStation and Xbox as soon as the respective clients have passed certification.
Early Access Patch Notes - 0.3.0 Hotfix 9 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 8
0.3.0 Hotfix 8
- Temporarily disabled the Unique Item Fairgraves' Curse from dropping until we can fix a client crash caused by it.
Early Access Patch Notes - 0.3.0 Hotfix 8 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 7
0.3.0 Hotfix 7
- Fixed a bug where the Grip of Kulemak Unique Item was dropping outside of the associated Abyss content.
- Azmadi, the Faridun Prince now deals approximately 33% less Damage with most of his abilities. Some of his more notable abilities (red flash ones) have less of a reduction, and are thus still mostly lethal.
Early Access Patch Notes - 0.3.0 Hotfix 7 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 6
0.3.0 Hotfix 6
- The Boss of The Excavation area in Act Four no longer just randomly instantly kills you after doing his Wall Skill sometimes.
Early Access Patch Notes - 0.3.0 Hotfix 6 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 5
0.3.0 Hotfix 5
- Fixed a bug where characters in Standard were unable to access The Ziggurat Refuge if they gained access to it before 0.3.0.
- Fixed an instance crash.
Early Access Patch Notes - 0.3.0 Hotfix 5 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 4
0.3.0 Hotfix 4
- Fixed a bug where Abysses in areas that spawned 2 or more Pits required you to kill too many monsters before the Pits opened.
Early Access Patch Notes - 0.3.0 Hotfix 4 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 3
0.3.0 Hotfix 3
- Fixed a bug where Raging Spirits was not being triggered by Elemental Weakness.
- Fixed a bug where a checkpoint in the Hunting Grounds could sometimes trap players in blocking environmental doodads.
- Fixed 2 instance crashes.
Early Access Patch Notes - 0.3.0 Hotfix 3 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
[Patch Notes] 0.3.0 Hotfix 2
0.3.0 Hotfix 2
- Temporarily disabled the Demonfire Ember Fusillade Skill Effect microtransaction due to a crash that is occurring. We will re-enable this microtransaction once we're able to patch in a fix for this crash.
- Fixed a bug where the Wrath Aura was not granting additional Lightning Damage.
- Fixed a bug where the slowing debuff from the water in Solitary Confinement was not affected by Slow Potency.
- Fixed a bug where the Minions from Skittering Stone Support were not visually moving.
- Fixed 3 instance crashes.
Early Access Patch Notes - 0.3.0 Hotfix 2 - Forum - Path of Exile
Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.Path of Exile
Whostosay
in reply to Saleh • • •Although this question is framed in the shittiest way possible, I would still support Hamas over the IDF because only one of these organizations are guilty of genocide.
Easiest call I've ever made.
Raoul Duke likes this.
BarneyPiccolo
in reply to Whostosay • • •geneva_convenience
in reply to BarneyPiccolo • • •