Victoria to cut 1,000 public service jobs
The job cuts come after top bureaucrat Helen Silver was given the task of streamlining Victoriaâs public service. â Read more
Robertson sees off Wu to make UK Championship quarters
Neil Robertson cruises to a 6-1 win over Wu Yize and reaches the quarter-finals of the UK Championship in York. â Read more
LibreOffice 26.2 Alpha 1 Released For Testing
The first alpha release of the LibreOffice 26.2 open-source and cross platform office suite is now available for testing ahead of its official release in February⊠â Read more
X.Org Serverâs xkbcomp Updated For Four Security Issues Dating Back Years
Red Hatâs Peter Hutterer announced the release today of xkbcomp 1.5, the CLI utility used for compiling X Keyboard Extension (XBD) keyboard descriptions for the X.Org Server. Driving this new xkbcomp release are fixes for four security issues⊠â Read more
Italian luxury giant Prada buys Versace â at a discount
The $1.38bn (ÂŁ1.04bn) deal between the two Italian fashion giants is well below the roughly $2bn Versace was sold for in 2018. â Read more
đ§ź USERS:1 FEEDS:2 TWTS:1543 ARCHIVED:91380 CACHE:2795 FOLLOWERS:22 FOLLOWING:14
More than 1 million people left homeless by deadly floods in South-East Asia
More than 1,300 people are dead and 1.2 million displaced following devastating flooding and landslides in South-East Asia. â Read more
Michael and Susan Dell Donate $6.25 Billion To Encourage Families To Claim âTrump Accountsâ
Michael and Susan Dell pledged $6.25 billion to boost participation in the new âTrump Accountsâ child investment program. âThe historic gift has little precedent, with few single charitable commitments in the past 25 years exceeding $1 billion, much less multiple billions,â notes the Associate ⊠â Read more
Day 2 was pretty tough on my old hardware. Part 1 originally took 16 minutes, then I got it down to 9 seconds â only to realize later that my solution abused some properties of my particular input. A correct solution will probably take about 30 seconds. đ«€
Part 2 took 29 minutes this morning. I wrote an optimized version but havenât tested it yet. I hope itâll be under a minute.
Python 1 feels really slow, even compared to Java 1. And these first puzzles werenât even computationally intensive. Weâll see how far Iâll make it âŠ

Advent Of Vim 2 - The âgâ Commands Part 1 â Read more
AoC Day #1 solution (mu): https://gist.mills.io/prologic/d3c22bcbc22949939b715a850fe63131
Thinking about doing Advent of Code in my own tiny language mu this year.
mu is:
- Dynamically typed
- Lexically scoped with closures
- Has a Go-like curly-brace syntax
- Built around lists, maps, and first-class functions
Key syntax:
- Functions use
fnand braces:
fn add(a, b) {
return a + b
}
- Variables use
:=for declaration and=for assignment:
x := 10
x = x + 1
- Control flow includes
if/elseandwhile:
if x > 5 {
println("big")
} else {
println("small")
}
while x < 10 {
x = x + 1
}
- Lists and maps:
nums := [1, 2, 3]
nums[1] = 42
ages := {"alice": 30, "bob": 25}
ages["bob"] = ages["bob"] + 1
Supported types:
int
bool
string
list
map
fn
nil
mu feels like a tiny little Go-ish, Python-ish language â curious to see how far I can get with it for Advent of Code this year. đ
đ§ź USERS:1 FEEDS:2 TWTS:1542 ARCHIVED:91362 CACHE:2785 FOLLOWERS:22 FOLLOWING:14
More than 1,000 dead after extreme flooding across Asia
Indonesia, Thailand and Sri Lanka are reeling from flooding that has killed hundreds in each country and destroyed communities. â Read more
Day 1 was surprisingly finnicky. A lot of people got it wrong, apparently. Me too. đ€Ł

Businesses that send SMS messages now need to register their IDs
Organisations using branded identifiers in their text messages to consumers will need to register them by July 1, 2026, or risk being mistaken for a scam. â Read more
New warning for Ozempic-style drugs over risk of suicidal thoughts
Australiaâs medicines regulator issues a safety warning over the potential risk of suicidal thoughts and behaviours when taking Ozempic-style drugs. â Read more
South-east Qld population set to reach 4.5m despite rising property prices
The analysis by KPMG reveals the population in the south-east corner has grown by as much as 2.2 per cent over the past five years, above the national average of 1.5 per cent. â Read more
đ§ź USERS:1 FEEDS:2 TWTS:1541 ARCHIVED:91350 CACHE:2778 FOLLOWERS:22 FOLLOWING:14
Victoria shivers through coldest start to summer in 30 years
Melbourneâs temperature is not forecast to rise above 16C today, making it the coldest December 1 since 1996. â Read more
Gold Coast urged to curb car dependence after light rail loss
With the population heading toward 1 million, the Gold Coast is being urged to overhaul its transport system or risk becoming defined by traffic. â Read more
Info to Decipher Secret Message in Kryptos Sculpture at CIA HQ Auctioned for Nearly $1M
An anonymous reader shared this report from the Associated Press:
The information needed to decipher the last remaining unsolved secret message embedded within a sculpture at CIA headquarters in Virginia sold at auction for nearly $1 million, the auction house announced Friday. The winner will get a pri ⊠â Read more
Live: Joyce to make decision on move to One Nation in ânext couple of weeksâ
Newly minted independent Barnaby Joyce says heâll make his decision on whether heâll defect to One Nation in the next couple of weeks. Follow live. â Read more
The last man on the moon: Can you ace this weekâs history quiz?
From reality TV and heist movie remakes to manâs last step on the moon â how well do you know this week in history? â Read more
Features Expected For Linux 6.19: ASUS Armoury, Many Intel Bits, AMD GCN 1.0/1.1 Enhanced
With the Linux 6.18 kernel likely being released later today, here is a look at some of the features on the table for the next kernel cycle, Linux 6.19. The list is based on changes queued in various â-nextâ branches ahead of the Linux 6.19 merge window. Thereâs always the possibility of last minute change of plans or objections raised by Linus Torvalds, but this should provide an early look at some of the features more ⊠â Read more
Live: Piastriâs Qatar Grand Prix pole piles pressure on Norris
Oscar Piastri starts on pole for the Formula 1 Qatar Grand Prix, with F1 championship leader Lando Norris feeling the pressure in second. Follow live. â Read more
Home prices keep climbing but interest rate outlook removes some heat
National home values rose 1 per cent in November, according to Cotalityâs monthly index, which was the third straight month of gains above 1 per cent. But the pace of growth did moderate as the prospect of rate cuts faded. â Read more
Advent of Code 2025 starts tomorrow. đ„łđ
This year, Iâm going to use Python 1 on SuSE Linux 6.4, writing the code on my trusty old Pentium 133 with its 64 MB of RAM. No idea if that old version of Python will be fast enough for later puzzles. Weâll see.

@lyse@lyse.isobeef.org Damn. That was stupid of me. I should have posted examples using 2026-03-01 as cutoff date. đ
In my actual test suite, everything uses 2027-01-01 and then I have this, hoping that thatâs good enough. đ„Ž
def test_rollover():
d = jenny.HASHV2_CUTOFF_DATE
assert len(jenny.make_twt_hash(URL, d - timedelta(days=7), TEXT)) == 7
assert len(jenny.make_twt_hash(URL, d - timedelta(seconds=3), TEXT)) == 7
assert len(jenny.make_twt_hash(URL, d - timedelta(seconds=2), TEXT)) == 7
assert len(jenny.make_twt_hash(URL, d - timedelta(seconds=1), TEXT)) == 7
assert len(jenny.make_twt_hash(URL, d, TEXT)) == 12
assert len(jenny.make_twt_hash(URL, d + timedelta(seconds=1), TEXT)) == 12
assert len(jenny.make_twt_hash(URL, d + timedelta(seconds=2), TEXT)) == 12
assert len(jenny.make_twt_hash(URL, d + timedelta(seconds=3), TEXT)) == 12
assert len(jenny.make_twt_hash(URL, d + timedelta(days=7), TEXT)) == 12
(In other words, I donât care as long as itâs before 2027-01-01. đđ )
ULTRA FAST generic sync.Map built by Brad Fitzpatrick
1 points posted by pj â Read more
Sydney FC great fumes over alleged handball in Wanderersâ ALM win
Sydney FCâs four-match winning streak comes to a crashing halt, but its 1-0 loss to Western Sydney has sparked debate about what constitutes a handball. â Read more
đ§ź USERS:1 FEEDS:2 TWTS:1540 ARCHIVED:91337 CACHE:2777 FOLLOWERS:22 FOLLOWING:14
Comment on Ubuntu 26.04 Snapshot 1 is Available to Download by Bethany Marshall
Great post â I found the examples really helpful. Thanks for sharing! â Read more
Police seize $8.4m in assets after alleged illicit tobacco raids in the NT
Police have seized about $8.4 million in assets, including two cars and a jet ski, and almost 1 million cigarettes, following an operation targeting the NTâs illicit tobacco trade. â Read more
đ§ź USERS:1 FEEDS:2 TWTS:1539 ARCHIVED:91318 CACHE:2764 FOLLOWERS:22 FOLLOWING:14
Damage from Cyclone Fina exposes NTâs need for new Darwin hospital
A new Royal Darwin Hospital would cost more than $1 billion to build, and likely take a decade or more to deliver. So who has the political bravery to commit? â Read more
Wine 10.20 Released With VKD3D 1.18 Upgrade For Direct3D 12
Wine 10.20 is out as the newest bi-weekly development release of this open-source software enabling Windows applications and games to run on Linux. This is also with Wine 11.0 stable quickly approaching⊠â Read more
#ptpol #presidenciais2026 #debates
#CatarinaMartins x #AndréVentura
0 - sei que hå um debate que não comentei: ainda não o vi mas provavelmente irei comentå-lo em diferido um dia destes. Para castigo, agora regresso aos comentårios com um debate com o #Ventura, e jå prevejo berraria, atropelos, desconversanço⊠Mas pronto, ao menos do outro lado estarå a #CMartins que é muito mais agradåvel de se ouvir. Porque é a TVI, o debate estå propositadamente atrasado - e tivemos 6 minutos de publicidade.
1 - caso de exploração de imigrantes no Alentejo: era o tema da pergunta e AV decide falar em vez disso de outra coisa, e o entrevistador a insistir que AV nĂŁo estĂĄ a falar da pergunta que foi feita. AV continua e diz que se hĂĄ problemas Ă© culpa da Catarina Martins. Catarina Martins aponta a mentira na acusação de AV. Aponta a hipocrisia de AV e Ă© acusada de mentir - ela diz âdiga o que quiserâ, e segue em frente. Explica os problemas das propostas de AV (no parlamento) para a imigração, dĂĄ o exemplo do jogador de futebol que marcou golo ontem. AV acusa BE de explorar grĂĄvidas (mentira), e depois mistura imigração legal e ilegal. Bangladesh e tal. Catarina Martins diz que ri de AV sempre que quiser. AV fala de bandalheira, entrevistador tenta calar AV e falha 1/n
Rust vs go which grpc server is faster on real traffic
1 points posted by pj â Read more
Vulkan 1.4.335 Released With The Very Notable VK_EXT_present_timing
Vulkan 1.4.335 released a few hours ago as the latest iteration of this high performance graphics and compute API. With being just a week since the prior update and given the US Thanksgiving week, itâs on the lighter side in terms of issues addressed. There is one new extension though and itâs a big one: VK_EXT_present_timing is finally merged⊠â Read more
@prologic@twtxt.net Your gitea thinks the LICENSE file in the yarn repository is SSPL-1.0 instead of GNU AGPL 3.0,
and I canât help but giggle at that
yarnd installation has been properly fixed.
cat /etc/mokou/yarnd.conf
exec=/usr/pkg/sbin/daemonize -c/var/db/yarnd -u www -p /var/run/yarnd.pid /usr/pkg/sbin/chpst -e /usr/local/etc/yarnd /usr/local/sbin/yarnd -b 127.0.0.1:[classified information]
I know this might seem a bit overengineered, but the previous command until now had the secrets exposed on the process list
đ§ź USERS:1 FEEDS:2 TWTS:1538 ARCHIVED:91283 CACHE:2735 FOLLOWERS:22 FOLLOWING:14
Piastri says helping Norris win F1 title was discussed and dismissed
Oscar Piastri says McLaren raised the prospect of the Australian helping his teammate Lando Norris win the Formula 1 world championship, but it was rejected. â Read more
UK To Tax Electric Cars by the Mile Starting 2028
The UK government will levy a pay-per-mile tax on electric and plug-in hybrid vehicles starting April 2028, UKâs finance minister Rachel Reeves announced, a measure designed to offset some of the fuel duty revenue that will disappear as drivers shift away from petrol and diesel cars. Electric vehicles will be charged 3 pence per mile and plug-in hybrids 1.5 pence per mile, pa ⊠â Read more
Zlib-ng 2.3.1 Released With More CPU Performance Optimizations
Zlib-ng 2.3.1 is out today as the first stable release in the v2.3 series for this Zlib replacement that carries a variety of performance optimizations for speedier compression/decompression⊠â Read more
Better Technology, Worse Motivation: GenAIâs Mediocrity Trap
While generative AI (GenAI) promises productive efficiency, it can paradoxically lead to lower-quality work. We conducted an experiment with professional illustrators and found that AI assistance flattens the quality curveâit accelerates initial gains but sharply diminishes the returns on sustained effort. Faced with this, a significant number of professionals made a strategic choice: they sacrificed the final quality to save time.
From http://www.jin-li.org/uploads/1/1/4/5/114595093/ai_and_motivation.pdf
I havenât read this and canât vouch for it; seems vaguely AI-boostery. Still, the conclusions are interesting. This seems to be the picture that is emerging about generative AI generally: most people donât like it and find that degrades the quality of work. Coders seem to like it and think that it helps them, but in fact it makes the slower, less productive, and more bug prone.
By all measures itâs a bad technology. We should just be honest about it. There is no need to make excuses for multi-trillion-dollar corporations.
Ubuntu 26.04 âResolute Raccoonâ Snapshot 1 ISOs Published
Canonical announced today the Ubuntu 26.04 âResolute Raccoonâ Snapshot 1 images as their first monthly ISO snapshots of the upcoming Ubuntu 26.04 LTS release⊠â Read more
Tired to re-enable the Ege route to git.mills.io today (after finishing work) and this is what I found đ€Ż Tehse asshole/cunts are still at it !!! đ€Ź â So letâs instead see if this works:
$ host git.mills.io 1.1.1.1
Using domain server:
Name: 1.1.1.1
Address: 1.1.1.1#53
Aliases:
git.mills.io is an alias for fuckoff.mills.io.
fuckoff.mills.io has address 127.0.0.1


PS: Would anyone be interested if I started a massive global class action suit against companies that do this kind of abusive web crawling behavior, violate/disregards robots.txt and whatever else standards that are set in stone by the W3C? đ€
đ§ź USERS:1 FEEDS:2 TWTS:1537 ARCHIVED:91256 CACHE:2715 FOLLOWERS:22 FOLLOWING:14