Pakistan rocked by new suicide bombing, dozens of casualties reported
Militant groups allegedly receiving support from Afghanistan have escalated their attacks on Pakistani police and security forces in recent weeksthecradle.co
Militant groups allegedly receiving support from Afghanistan have escalated their attacks on Pakistani police and security forces in recent weeksthecradle.co
COLUMBUS — Jeremiah Smith tied an Ohio State record with four touchdown catches and also had career highs with 12 receptions for 217 yards as the seventh ...ASSOCIATED PRESS (The Blade)
The Lost Atomic Update on Loongson CPU
Link: jia.je/hardware/2026/09/24/loo…
Discussion: news.ycombinator.com/item?id=4…
The Murky History of Soviet-Born Tetris
Link: thereader.mitpress.mit.edu/the…
Discussion: news.ycombinator.com/item?id=4…
DeepSeek Elastic Compute (DSec)
Link: arxiv.org/abs/2609.22978
Discussion: news.ycombinator.com/item?id=4…
Large-scale agentic training and evaluation with large language models (LLMs) rely on isolated, stateful execution environments in which models inspect repositories, invoke tools, execute commands, and interact with task-specific services.arXiv.org
Despite a 2024 announcement that arms shipments to Israel would be suspended, independent investigations have found that military cargo from Canada to Israel has continued to flow 'uninterrupted'thecradle.co
Note: These are my learning notes from my current phase. I am keeping them as I wrote them so I can look back and see my progress.
watched a 1 hour history of linux, basically where it cme from, how it came by and the early struggles(on 1.5x).
A bash script is a file containing sequence of command executed but bash program line by line. like a file where the command lines are saved so you dont need to retype them everytime.
downloaded and install linux, and ubuntu and did the installation. used sudo hostnamectl set hostname devbox and then used sudo nano /etc/hosts to edit my terminal name.
the superuser shell uses # as it anchor while normal user uses $ sign.
i wrote my first script. to write your script you need the she bang which tell the terminal how to run the script. #!/bin/bash and you follow it with your script.
echo command litrary echos whatever you write back to you. read pauses the script so you can input and $ holds the value of your variable. to write a date now here is how to write.
#!/bin/bash
echo “Today is `date` or $(date)”
echo “where do you want the response to be”
read “path”
echo “This is all the responses in this path”
ls “$path”
Note: $(…..) means run the command inside the bracket.
“$name means the name is holding a value.
chmod u+x filename makes the file executable, before that, the file is just text.
\n is new line
-e make it easy to interpret the \n. without the -e, it will not render in a new line. it will render literary.
done < .txt. this take input from the text file. Let say the text file name is name.txt. to take input from it, i will use <name.txt.
$1 this mean you input data at the execution point. e.g ./name Wale. output would be “My name is wale”
| COMMAND | WHAT IT DOES |
|---|---|
| ls | → list directory |
| ls > output.txt | → list directory → save output to file |
| cat output.txt | → display contents of file |
| ls output.txt | → list the file itself |
| echo macho | → produce "macho" |
| echo macho > file | → produce "macho" → Overite the existiing file |
| done < output.txt | → takes input from the text file |
i=1
while [[ $i -le 5 ]](logic, if i is less or equal to 1)
do(action)
echo “$i” (write i)
(( $i += 1) (add 1 everytime till it equals to 5)
done (done)
i=1 (var name)
for i in {1…5} (logic)
do (action.. )
echo “$i”(write)
done(done)
eg.
fruit=”apple”
case fruit $fruit in
“apple”)
echo “This is a red fruit.”
;;
“orange”)
echo “This is an Orange fruit”
;;
*)
echo “This is not a fruit.”
;;
esac
bash will check if there is apple in the script and return what echos the text for apple and if it couldn’t find it. it returns what was set to *).
To debut a script that isnt working, you use set -x at the section where you think the error is or you could just put it after the shebang and it will run through the script and give you the feedback.
Cron automatically runs commands/scripts at scheduled times.
Think:
"Run this script for me every day at 2 AM."
* * * * *
│ │ │ │ │
│ │ │ │ └── weekday
│ │ │ └──── month
│ │ └────── day of month
│ └──────── hour
└────────── minute
You don't need to memorize every possible combination yet.
crontab -l
→ See your scheduled cron jobs.
crontab -e
→ Edit/add your cron jobs.
0 0 * * * /path/to/script.sh
Means:
Run script.sh at 00:00 (midnight), every day.
And:
*/5 * * * * /path/to/script.sh
means:
Run it every 5 minutes.
Don't spend time memorizing things like:
0 0 1-7 * *
0 6 * * 1-5
*/17 2-4 3-8 ...
LAN → ETHERNET
MAC(media access control) address is an identifier for each system.
CSMA(carrier sense multiple access) → any share transmition that carries date eg cable network or wifi.
bandwidth is the rate at which a transmiter carries data.
Exponential Backoff: to fix the network traffic by making one computer wait in a random time (e.g 1.3secs) to transmit data to reduce collusion.
Collusion domain: this is using a netwrok switch which sit betwen small network ( Read more on this)
Routine: Allocating a communition line for their exclusive use
Circuit switch: **
message switching: **
Hop count: The number of hops a message tales along a route is called the hop count
Packet: A small pieces of message that contains the destination address on the network so router know where to forward them.
IP: this is internet protocol. an identifier.
Congestion control: Load balance
TCP IP:
internet control message protocol(ICMP)
Border gateway protocol(BGP)
IoT
ipv4: is a 32bit data that allows for 232 ip addresses or about 4.3billion unique ips(4 digits)
ipv6: a 128bit data that allows for 2128 unique ips. (38 digits)
IP types - Static and dynamic IP
Static: is a permanent IP address whike dynamic is a temporary Ip address
Types:
!image.png
DNS caching: This temporary stores the inital data results which results to faster response to queries.
Time to live (TTL) refers to the amount of time or “hops” that a packet is set to exist inside a network before being discarded by a router. TTL is also used in other contexts including CDN caching and DNS caching.#learning #bash #linux #newbie #software #coding #development #engineering #inclusive #community
Note: These are my learning notes from my current phase. I am keeping them as I wrote them so I can...TUNDE OGUNMODEDE (DEV Community)
Iranian officials offered a ceasefire and the reopening of the Strait of Hormuz on the sidelines of the UNGA, based on the previous MoU signed by Washington and Tehran in Junethecradle.co
ASML says it sold 'absolutely nothing' in Europe in 2026
Link: tomshardware.com/tech-industry…
Discussion: news.ycombinator.com/item?id=4…
DualShockers just posted:
10 Action Games Where the User Score is Higher Than the Critic Score
10 action games that gamers have ranked higher than critics over the years and why.
Demonstrators carry placards denouncing vulture funds and excessive landlord profitsC. P. S. (TodoAlicante)
Bond market pointing to rising inflation, interest rate and recession risk
By David Taylor
Bond yields are the highest they've been in 20 years as inflation fears rip through global financial markets. It's a warning the financial squeeze is set to get worse before it gets better.
abc.net.au/news/2026-09-27/mul…
#StockMarket #EconomicTrendsandIndicators #PersonalFinance #Currency #DavidTaylor
Price hike could be offset with smaller pipes, water utility says
By Rani Fletcher
Businesses impacted by recent water bill hikes have rallied against a TasWater suggestion to replace existing pipes with narrower ones in order to save on meterage costs.
The eight-point consensus also includes a shared call for Iran to uphold its nuclear commitmentsthecradle.co
The residents and wind farm on the frontline of Australia's energy wars
By James Tugwell
Gawara Baya is the largest wind farm to reach construction since Labor introduced a renewables investment scheme. More than 2,000km north of Canberra, residents say net zero is a dream ruining their home.
Air to Ground Message:
DELAYCODE TAILSWAP DUE TO LIGHTNING STRIKE
Area: Jersey Shore, NJ, USA
Type: De Havilland Dash 8-Q400
A: #ae99a3912bb
F: #f66a547cbdf
TEHRAN (Tasnim) – Israeli regime forces stormed Palestinian towns and refugee camps while illegal settlers damaged agricultural land across the occupied West Bank on Friday, in a series of incidents reported by the Palestinian news agency Wafa.Tasnim News Agency
How I changed teaching after AI managed to do all my homework assignments
Link: thelastsoftwareengineer.substa…
Discussion: news.ycombinator.com/item?id=4…
AI forced me to abandon evidence-based best pedagogy practices, focus on oral and written exams, and redo most assignments. Here is what we did in 17-645...Christian Kästner (The Last Software Engineer?)
TEHRAN (Tasnim) – At least 11 security personnel have been killed and 30 others wounded in a suicide bombing at a roadside police checkpoint in Dera Ismail Khan district in Pakistan’s northwestern Khyber Pakhtunkhwa province on Saturday, police said.Tasnim News Agency
Source 1: furaffinity.net/view/31076598/
Source 2: furaffinity.net/gallery/kenket…
Source 3: furaffinity.net/user/kenket/
Source 4: d.facdn.net/art/kenket/1554468…
(Reference ID: 27024)
hax shite sierranova tangletorn blotch. . . There is probably more art in my scraps folder then the main one.. I stream often over on T ...www.furaffinity.net
'When fear takes over': Responding to the DRC's largest Ebola outbreak
By Brianna Morris-Grant
Amid the largest Ebola virus outbreak recorded in the DRC's history, healthcare workers try to keep the system running.
abc.net.au/news/2026-09-27/ebo…
#Ebola #Health #PublicHealth #BriannaMorrisGrant
Amid the largest Ebola virus outbreak recorded in the DRC's history, healthcare workers try to keep the system running.Brianna Morris-Grant (ABC News)
How Australia's defence force is turning AI into a 'silicon commander'
By Tom Lowrey
Militaries across the world, including Australia, are rapidly adopting artificial intelligence to pilot drones and analyse intelligence. But experts worry "automation bias" could be creeping in.
abc.net.au/news/2026-09-27/def…
#DefenceIndustry #AI #FederalGovernment #GovernmentandPolitics #FederalParliament #TomLowrey
Militaries across the world, including Australia, are rapidly adopting artificial intelligence to pilot drones and analyse intelligence. But experts worry "automation bias" could be creeping in.Tom Lowrey (ABC News)
What young people want to know about the law
By Joseph Baronio
From criminal records and phone privacy to social media, consent and hanging out with mates, a lawyer breaks down some of the legal traps every young Australian, and their parents, should know about.
Gazan children are returning to school but war is still front of mind
By Caitlin Kelly
Children are returning to schools and makeshift education facilities in Gaza but the war has left its mark on their studies.
TEHRAN (Tasnim) – The United States has withheld Iraqi funds in recent months despite the Iraqi government’s support for the Trump administration’s ban on Iranian flights to Iraqi airports, according to a source familiar with the matter.Tasnim News Agency
Rock, Paper, Shotgun just posted:
TALON TOWERS is a Fumito Ueda-coded parkour platformer about hopping around massive structures while avoiding falling to your foggy doom
If your game immediately makes me think of any of Fumito Ueda's in any sort of way, the likelihood is that I am to play it. There are only so many Ueda games (three, by my count) and there will only be so many (hopefully more that upcoming ...
Show HN: Reladraw – A diagram language where you decide where to place things
Link: github.com/reladraw/reladraw
Discussion: news.ycombinator.com/item?id=4…
Contribute to reladraw/reladraw development by creating an account on GitHub.GitHub
NDIS housing provider goes bust as liquidator questions missing cash
By Jessica Longbottom
Dozens of investors put their savings into the Fairy Meadow House project in Wollongong which raised some $10 million, but nothing was ever built.
abc.net.au/news/2026-09-27/ndi…
#PeopleWithDisability #Bankruptcy #HealthPolicy #DisabilityAccess #JessicaLongbottom
Victoria considers 'emergency extractions' of wildlife as bird flu spreads
By Annie Brown
With the spread of H5 bird flu around Australia, Victoria is looking for ways to protect threatened species.
abc.net.au/news/2026-09-27/thr…
#AvianInfluenza #EndangeredandProtectedSpecies #Wetlands #AnnieBrown
TEHRAN (Tasnim) – Iraq is holding direct talks with the United States to exempt some Iraqi airports from US sanctions targeting Iranian airlines and allow flights to resume for humanitarian purposes, the Iraqi prime minister’s office said Saturday.Tasnim News Agency
China, US agree to AI dialogue, $42b in tariff cuts during state visit
The tariff reductions are set to apply to US exports such as agricultural goods, wood and cosmetics.
abc.net.au/news/2026-09-27/pre…
#WorldPolitics #Tariffs #Trade #Economy #AI
The tariff reductions are set to apply to US exports such as agricultural goods, wood and cosmetics, as well as US imports including small appliances, toys, decorations.ABC News
A string of high-profile rape cases in India has reignited nationwide protests and public debate over women's safety, highlighting how deeply ingrained patriarchal mindsets and an overstretched, backlogged judicial system have failed to curb sexual v…AFP (IOL)
Automattic has a new board after failed attempt to put CEO on leave
Link: techcrunch.com/2026/09/25/auto…
Discussion: news.ycombinator.com/item?id=4…
After days of upheaval at Automattic, following a failed attempt to remove CEO Matt Mullenweg, the company has a new board.Sarah Perez (TechCrunch)
DualShockers just posted:
10 Most Anticipated Monsters in Monster Hunter Wilds Ascendance
With a new expansion on the horizon, plenty of old favorites could return, fitting perfectly with the sky high setting of Monster Hunter Ascendance.
The summit has stabilized Sino-American relations without stabilizing the Gulf – and regarding the Gulf, Beijing has offered words, not leverage. Join us on Telegram,…A A (Strategic Culture Foundation)
The overwhelming message from the Trump-Xi summit in Washington, DC, this week was: China holds the cards. From trade, to rare earth minerals, to technology ...Rachel Blevins (YouTube)
Caitlin Johnstone- Tech plutocrats are the high-budget expression of the “everyone is twelve now” theory.thealtworld (TheAltWorld’s Newsletter)
Source 1: furaffinity.net/view/46180229
Source 2: furaffinity.net/view/46184182
(Reference ID: 5375)
YCH for skandrake done by me and my friend murtiaz. . COMISSIONS ARE OPEN!www.furaffinity.net
Just randomly met Tech Nine in Upper Arlington. So Wild. Such a super chill and nice guy too. byu/Intelligent_Mess_957 inColumbusIntelligent_Mess_957 (reddit)
Rania Khalek- As Washington wages war on the ICC, Noura Erakat (@4noura) says Israel is the smokescreen for protecting something much bigger: US imperial impunity.thealtworld (TheAltWorld’s Newsletter)
The Orwellian condition that Britain is sliding into is awesome. Join us on Telegram, X, and VK. Contact us: info@strategic-culture.su So, “Britain is back” and…A A (Strategic Culture Foundation)
Insider Gaming just posted:
NYT Connections Hints Today (#1204)—Answers for Sunday, September 27
Welcome to another NYT Connections guide! In this handy walkthrough, you'll find the best NYT Connections hints, answers, and tips anywhere.
JOIN OUR VIP COMMUNITY & SUPPORT TRUTH: https://www.youtube.com/channel/UCnZyq79a74Q_m8V8cjlLolA/joinGiveSendGo: https://givesendgo.com/jacksonhinklethediveL...Jackson Hinkle Official (YouTube)
DualShockers just posted:
10 PS5 Metroidvanias That Respect Your Time
If you’re looking for games that don’t demand a full workday’s worth of your time, try these ten PS5 Metroidvanias that respect your time.
Rock, Paper, Shotgun just posted:
Suplex and shatter glass enemies after being in prison for committing a cardinal crime in the psychological horror beat 'em up Brokensides
Just hearing that a game has mashed two genres together does not generally excite me. It's a useful shorthand, maybe, but there's only so many roguelike deckbuilders I can take. Once in a while, however, a mashup comes along that makes me ...
Our socials libranet.de/display/0b6b25a8-1…
How to keep enjoying programming in a world of LLMs
Link: discourse.haskell.org/t/how-to…
Discussion: news.ycombinator.com/item?id=4…
Are you steering towards AI burnout? Afraid of loosing your job to someone with little programming skills, no aspirations to quality, and a huge Claude account? Disappointed about the code quality in your projects, or worse in “your” own code? This i…Haskell Community
Source 1: furaffinity.net/view/57288496/
Source 2: d.furaffinity.net/art/firael/1…
Source 3: t.me/+GtO3pP1fTthmNDRi
Source 4: t.me/c/1858420480/309
Source 5: t.me/c/1742304101/959?thread=9…
(Reference ID: 3604)
This is not a competition between them; it is just a comparison of the pros and cons of using each.
For me, I have about 6 months of experience with Arch Linux—specifically focused on running local large language models (LLMs). I want to cover how easy each is to use, which one is good for techies, and whether people who are both gamers and techies like me should use Linux or not. Another trending topic I want to address is how much Linux helps when running local models, specifically LLMs.
Using Arch Linux has been a fun experience for me. You get the pseudo-feeling of using a computer for the very first time, and it was a great experience overall. I even dual-booted it without using any USB drive. Yes, Arch Linux was my very first experience with a Linux distribution. Currently, I am using Hyprland on Arch Linux, and more specifically, I am using Celestia Shell, which has been an amazing setup.
Before going deeper, I want to clarify my laptop specs:
CPU: Intel Core i5-11400H
GPU: NVIDIA RTX 2050 (4 GB VRAM, 95W TGP)
RAM: 16 GB DDR4
Storage: 1 TB SSD
1. Beginner Friendliness: How Hard Is Arch Linux Really?
We all know which OS wins the beginner category: Windows. It is designed so seamlessly that even a child can use it. If you are brand new to computers, Windows is naturally where you start.
However, we are talking about developers and tech enthusiasts here. Is Arch Linux really as hard as people claim?
To be honest, it isn't. It is definitely a lengthy setup process, and a wrong move during installation can corrupt your data, but if you enjoy tech, it is actually a lot of fun. Take my experience: I set up Arch Linux without a USB drive. I created a virtual installer using disk partitioning, booted into that partition, and boom—Arch was ready to install.
From there, it was just setting up system configurations using terminal commands. It didn't feel overly difficult for me because I was already familiar with Git Bash, which uses a Linux-based terminal.
If you are a developer, you won't find setting up Linux impossible. In fact, every developer should try it at least once. No matter what field of software development you go into, you will eventually interact with terminals—especially Linux-based ones.
2. Everyday Convenience: Apps & Gaming
Almost every tool used for coding is available natively on Linux, along with a few developer tools that are exclusive to it. Installing packages is straightforward, and the Arch Linux community (and the AUR) is extremely active, so finding the software you need for your workspace is rarely an issue.
For gamers, Linux can present a few hurdles—you cannot easily install pirated or third-party game repacks made strictly for Windows. However, playing games through Steam (via Proton) works amazingly well.
Because Linux uses significantly fewer background resources than Windows, gaming performance can improve drastically. On my machine, games like Red Dead Redemption 2, Ghost of Tsushima, and Minecraft run drastically smoother on Linux. In fact, I consistently get around 15 to 20 FPS more compared to Windows. In Red Dead Redemption 2, with high-to-ultra settings configured, it yields up to 25 FPS more and runs like an absolute charm.
While there are pros and cons depending on whether a game relies on intrusive kernel anti-cheat, Linux handles single-player titles and AAA games surprisingly well if you want smooth performance with optimized settings.
3. Customization & Control
Linux takes a massive lead when it comes to customization. You can build and configure literally every part of your desktop environment to your exact liking.
Windows, on the other hand, is restrictive. It limits how much you can modify, telemetry can feel intrusive, and you don't have full control over background tasks. With Linux, you truly own your system. Freedom and total control are easily the biggest reasons people make the switch.
4. Workspace & Daily Productivity
If your daily workflow heavily relies on native Microsoft Office apps, Linux might require some adjustment. While alternatives like LibreOffice exist, die-hard users of MS Office will need to rely on web versions inside a browser.
Setting up a general shared office workstation is often simpler on Windows. Linux environments (especially custom setups like tiling window managers) are tailored heavily around your personal preferences. If someone else sits down at your customized Linux setup, they might struggle to navigate it.
5. Why Linux Is Superior for Running Local LLMs
Large Language Models require a massive amount of system resources. In my case, I run 4B to 7B parameter models on my GPU.
I get noticeably better performance on Linux compared to Windows. Windows consumes a large portion of your system RAM and VRAM just idling after boot. In contrast, a minimal Linux setup takes up a fraction of system memory, leaving almost all your RAM and processing power dedicated entirely to your actual tasks.
If you regularly run local LLMs or work on machine learning projects, Linux is an absolute game-changer.#ai #linux #llm #programming #software #coding #development #engineering #inclusive #community
This is not a competition between them; it is just a comparison of the pros and cons of using...Sanskar Garg (DEV Community)
Modern Object Pascal Introduction for Programmers
Link: castle-engine.io/modern_pascal
Discussion: news.ycombinator.com/item?id=4…
Modern Object Pascal Introduction: units, classes, generics, memory management, exceptions and more.castle-engine.io
Insider Gaming just posted:
Minecraft Adds More Than 300,000 New Players Every Day
More than 300,000 people play Minecraft for the first time on an average day, XBOX CEO Asha Sharma says, even after 425 million copies sold.
Kotaku just posted:
Comedic Filmmaker John Wilson Discovers Foundational Metaphor In The History Of Concrete
Building off his HBO series, Wilson’s feature length poetic odyssey examines why it’s hard to get excited about the future when the present visibly crumbles
Wiz
in reply to ACARS Drama • • •