Searching We.Love.Privacy.Club

Twts matching #GO
Sort by: Newest, Oldest, Most Relevant

Tailwind CSS Lets Go 75% Of Engineers After 40% Traffic Drop From Google
Adam Wathan, the creator of the popular CSS framework Tailwind CSS, has let go of 75% of his engineering team – reducing it from four people to one – because AI-generated search answers have decimated traffic to the project’s documentation pages.

Traffic to Tailwind’s documentation has fallen roughly 40% since early 2023 despite th … ⌘ Read more

⤋ Read More

SteamOS Continues Its Slow Spread Across the PC Gaming Landscape
An anonymous reader quotes a report from Ars Technica: SteamOS’s slow march across the Windows-dominated PC gaming landscape is continuing to creep along. At CES this week, Lenovo announced it will launch a version of last year’s high-priced, high-powered Legion Go 2 handheld with Valve’s gaming-focused, Linux-based OS pre-installed starting in J … ⌘ Read more

⤋ Read More
In-reply-to » I think this is finally a good metaphor to talk about “simple” software:

@prologic@twtxt.net Yep! I like that this distillation metaphor makes it explicit: You have to go ahead and actually distill something. It doesn’t happen automatically. The metaphor acknowledges that this is work that needs to be done by someone.

⤋ Read More

Microsoft Office Is Now ‘Microsoft 365 Copilot App’
Longtime reader joshuark shares a report: As spotted by Bluesky user DodgerFanLA, going to Office.com now greets you with the following helpful explainer: “The Microsoft 365 Copilot app (formerly Office) lets you create, share, and collaborate all in one place with your favorite apps now including Copilot.*”

Never has an asterisk been more relevant to me than following the wor … ⌘ Read more

⤋ Read More

I came across this on “Why Is SQLite Coded In C”, which I found interesting:

“There has lately been a lot of interest in “safe” programming languages like Rust or Go in which it is impossible, or is at least difficult, to make common programming errors like memory leaks or array overruns.”

If that’s true, then encountering those issues means the programmer is, simply, horrible?

⤋ Read More

AMD Releases GAIA 0.15 - Positioning It As A Framework/SDK For Building AI PC Agents
Last year AMD announced GAIA as short for “Generative AI Is Awesome”. It started off as a Windows-only AI demo but over time added Linux support along with introducing different AI agents. For going along with AMD’s AI announcements at CES 2026, AMD released GAIA 0.15 where they are now positioning this software as a framework/SDK for building AI PC agents… ⌘ Read more

⤋ Read More

UK Government’s New Pension Portal Operator Tells Users To Wait for AI Before Complaining
Capita, the UK outsourcer that won a $323 million contract to administer the nation’s Civil Service Pension Scheme for 1.7 million members, has responded to a disastrous portal launch by asking users to hold off on complaints until its new AI chatbots go live.

The service launched on December 1 and … ⌘ Read more

⤋ Read More

Interference With America’s GPS System ‘Has Grown Dramatically’
86 aircraft were affected by an incident in Denver ,and 256 more in Dallas-Fort Worth, America’s Federal Aviation Admistrationtold the Washington Post:

The pilots flying into Denver International Airport could tell something was wrong. In urgent calls to air traffic controllers, they reported that the Global Positioning System was going haywire, forc … ⌘ Read more

⤋ Read More

MTV’s Music-Only Channels Go Off the Air
An anonymous reader shares a report: MTV shut down many of its last dedicated 24-hour music channels Dec. 31. The move, announced back in October, affected channels around the world, with the U.K. seeing five different MTV stations going dark. These include MTV Music, MTV 80s, MTV 90s, Club MTV, and MTV Live. As Consequence notes, MTV Music – which launched in 2011 – notably ended it … ⌘ Read more

⤋ Read More
In-reply-to » @lyse A "Hello World" binary is ~372KB in size. I currently have peephole optimization and deac code optimizations in play, and a few other performance related ones, but nothing too fancy. I have a test case that ensures fib(35) doesn't regress too badly as I continue to evolve the language.

@prologic@twtxt.net Not bad for a start, ey! Looking forward to see you going down these rabbit holes and opening one can of worms after the other. :‘-D Very, very impressive, hats off to you. :-)

⤋ Read More

Things I’ve learned along the way:

  1. Writing self-contained and barely tied up programs didn’t go as well as I’d have thought
  2. Reverse engineering (to put it that way) an open source library
  3. Acceptance of non-Make build systems

⤋ Read More
In-reply-to » I'm going to write the T.P.D.D. subcommand for Mikuru now

It turns out doing such a thing all at once can obliterate one’s bandwidth if unchecked.

Also I was greeted with the most non-explanatory compiler error to date:

go build -v -o mikuru ./cmd

no errors

echo $?
1

⤋ Read More
In-reply-to » Why the hell do I have to git add everything!? Is it not enough for the file(s) to be already checked in from the get go?

@shinyoukai@neko.laidback.moe Because you might not want to commit all changed files in a single commit. I very often make use of this and create several commits. In fact, I like to git add --patch to interactively select which parts of a file go in the next commit. This happens most likely when refactoring during a feature implementation or bug fix. I couldn’t live without that anymore. :-)

If you have a much more organized way of working where this does not come up, you can just git commit --all to include all changed files in the next commit without git adding them first. But new files still have to be git added manually once.

⤋ Read More
In-reply-to » Hmm, mine also resolves a leading tilde in these variables. And if $HOME is not specified it tries to resolve the user's home directory by user.Current().HomeDir. Maybe that's overkill, I have to check the XDG spec.

Ok, the standard library implementation is wonky at best, at least in regards to XDG, because it really doesn’t implement it properly. https://github.com/golang/go/issues/62382 I stick to my own code then. It doesn’t properly support anything else than Linux or Unixes that use XDG, but personally, I don’t care about them anyway. And the cross-platform situation is a giant mess. Unsurprisingly.

⤋ Read More
In-reply-to » @lyse Well, I used SnipMate years ago (until 2012). IIRC, it’s more than just “insert a bit of text here”, it can also jump to the correct next location(s) and stuff like that. Don’t remember why I stopped using it.

@movq@www.uninformativ.de Thanks! I’ll have a look at SnipMate. Currently, I’m (mis)using the abbreviation mechanism to expand a code snippet inplace, e.g.

autocmd FileType go inoreab <buffer> testfunc func Test(t *testing.T) {<CR>}<ESC>k0wwi

or this monstrosity:

autocmd FileType go inoreab <buffer> tabletest for _, tt := range []struct {<CR>    name string<CR><CR><BS>}{<CR>   {<CR>   name: "",<CR><BS>},<CR><BS>} {<CR>  t.Run(tt.name, func(t *testing.T) {<CR><CR>})<CR><BS>}<ESC>9ki<TAB>

But this of course has the disadvantage that I still have to remove the last space or tab to trigger the expansion by hand again. It’s a bit annoying, but better than typing it out by hand.

⤋ Read More

The tt URLs View now automatically selects the first URL that I probably are going to open. In decreasing order, the URL types are:

  1. markdown media URLs (images, videos, etc.)
  2. markdown or plaintext URLs
  3. subjects
  4. mentions

I might differentiate between mentions of subscribed and unsubscribed feeds in the future. The odds of opening a new feed over an already existing one are higher.

⤋ Read More

Updated Linux Drivers Posted For Legion Go & Legion Go S Configuration
Open-source developer Derek J. Clark continues leading the efforts on improving the Lenovo Legion Go series hardware support under Linux. Posted today was the second iteration of the HID driver work for the Legion Go and Legion Go S for configuration support with the built-in controller HID interfaces… ⌘ Read more

⤋ Read More

@zvava@twtxt.net By hashing definition, if you edit your message, it simply becomes a new message. It’s just not the same message anymore. At least from a technical point of view. As a human, personally I disagree, but that’s what I’m stuck with. There’s no reliable way to detect and “correct” for that.

Storing the hash in your database doesn’t prevent you from switching to another hashing implementation later on. As of now, message creation timestamps earlier than some magical point in time use twt hash v1, messages on or after that magical timestamp use twt hash v2. So, a message either has a v1 or a v2 hash, but not both. At least one of them is never meaningful.

Once you “upgrade” your database schema, you can check for stored messages from the future which should have been hashed using v2, but were actually v1-hashed and simply fix them.

If there will ever be another addressing scheme, you could reuse the existing hash column if it supersedes the v1/v2 hashes. Otherwise, a new column might be useful, or perhaps no column at all (looking at location-based addressing or how it was called). The old v1/v2 hashes are still needed for all past conversation trees.

In my opinion, always recalculating the hashes is a big waste of time and energy. But if it serves you well, then go for it.

⤋ Read More

KDE’s “This Week In Plasma” Will Become Less Frequent Without New Volunteers
The This Week In Plasma series written by KDE developer Nate Graham has been a great way to keep-up with all of the interesting KDE Plasma desktop developments over the past eight years. This Week In Plasma is regularly featured on Phoronix and always provides an interesting weekend look at the very newest innovations to land in Plasma. Unfortunately, This Week In Plasma will become less frequent or even go on hiatus without new volu … ⌘ Read more

⤋ Read More
In-reply-to » Hmmm I need to figure out a way to reduce the no. of lines of code / complexity of the ARM64 native code emitter for mu (µ). It's insane really, it's a whopping ~6k SLOC, the next biggest source file is the compiler at only ~800 SLOC 🤔

@shinyoukai@neko.laidback.moe Nah it’s more like there’s a lot of repeated code, because when you go from source language to intermediate representation to machine code, well you just end up writing a lot of the same patterns over and over again. I need to dedupe this I think.

⤋ Read More

Intel Open-Source Software Setback: IWD Development Hiatus
Adding to the unfortunate engineering setbacks at Intel this year as part of cost-cutting measures, the Intel IWD software development has been on a hiatus for the past three months. Going from previously seeing monthly releases and almost constant activity to now development ceasing up with no activity in the past three months… ⌘ Read more

⤋ Read More

AMD RDNA3/RDNA4 Go Down Hard On Linux 6.19, But Here’s How The Older AMD GPUs End Out 2025
As part of the various end-of-year benchmarking comparisons on Phoronix and with Linux 6.19 switching older AMD GCN 1.0/1.1 graphics cards to the AMDGPU driver by default, I planned for a very large AMD Radeon graphics card comparison on the latest open-source Linux driver for ending out 2025. In the end though I was thwarted by newer AMD RDNA3 / RDNA4 graphics cards regressing hard on Linux 6.19 that led to ending this testing … ⌘ Read more

⤋ Read More

Nova Driver Progress & Other NVIDIA Linux News From 2025
This year there was a lot of going on in the NVIDIA Linux world from their official driver stack seeing better Wayland support to a lot on the open-source scene from NVIDIA engineers contributing a lot directly to the Rust-based Nova open-source driver that continues taking shape, the Mesa NVK Vulkan driver becoming more performant and capable, and a lot of other happenings. Here is a look back at the most popular NVIDIA content of 2025 on Phoronix… ⌘ Read more

⤋ Read More
In-reply-to » This one is a slightly more 3D looking, as well as the first one, with the tail swirled. Media

@prologic@twtxt.net Not even entirely sure how I did it myself, but likely a lucky combination of the new tail swirl, the legs closer to the screen being bigger and the head looking slightly to the side (eye & ear position), with bottom part of the hair, going behind the snout. The white is just an outline, around most of my works, so I don’t think that plays a part.

⤋ Read More

Russia Plans a Nuclear Power Plant on the Moon Within a Decade
Russia plans to put a nuclear power plant on the moon in the next decade to supply its lunar space programme and a joint Russian-Chinese research station, as major powers rush to explore the earth’s only natural satellite. Reuters: Ever since Soviet cosmonaut Yuri Gagarin became the first human to go into space in 1961, Russia has prided itself as … ⌘ Read more

⤋ Read More

Judge Blocks Texas App Store Age Verification Law
A federal judge blocked Texas’ app store age-verification law, ruling it likely violates the First Amendment by forcing platforms to gate speech and collect data in an overly broad way. The law was set to go into effect on January 1, 2026. The Verge reports: In an order granting a preliminary injunction on the Texas App Store Accountability Act (SB 2420), Judge Robert Pitman w … ⌘ Read more

⤋ Read More

Cyberattack Disrupts France’s Postal Service, Banking During Christmas Rush
An anonymous reader quotes a report from the Associated Press: With just three days to go before Christmas, a cyberattack knocked France’s national postal service offline Monday, blocking and delaying package deliveries and online payments. The timing was miserable for millions of people at the height of the Christmas season, as … ⌘ Read more

⤋ Read More
In-reply-to » Hey EU friends 👋 wtf happened to the EU Internet today for about 40 minutes or so?

@movq@www.uninformativ.de From 2:50 PM to 3:23 PM AEST (+10 UTC) there was an outage. Everything went “up” on Down Detector, my EU region went offline, numerous sites were unavailable, and so on. Basically everything to/from the EU appeared to basically go kaput.

⤋ Read More
In-reply-to » Wow, @movq, so many tables. No idea what I expected (I'm totally clueless on this low-level stuff), but that was quite an interesting surprise to me. https://www.uninformativ.de/blog/postings/2025-12-21/0/POSTING-en.html

@lyse@lyse.isobeef.org These tables get shuffled around every time your OS switches to another process. It’s crazy that so much is going on behind the scenes.

⤋ Read More

While Releasing ‘Avatar 3’, James Cameron Questions the Future of Movies
“If I get to do another Avatar film, it’ll be because the business model still works,” James Cameron tells CNN in a video interview — adding “That I can’t guarantee, as I sit here today. That’ll play out over the next month, really.” He says theatre is a “sacred space,” and while it will never go away, “I think that it could … ⌘ Read more

⤋ Read More

@kiwu@twtxt.net Assembly is usually the most low-level programming language that you can get. Typical programming languages like Python or Go are a thick layer of abstraction over what the CPU actually does, but with Assembler you get to see it all and you get full control. (With lots of caveats and footnotes. 😅)

I’m interested in the boot process, i.e. what exactly happens when you turn on your computer. In that area, using Assembler is a must, because you really need that fine-grained control here.

⤋ Read More

GitHub Is Going To Start Charging You For Using Your Own Hardware
GitHub will begin charging $0.002 per minute for self-hosted Actions runners used on private repositories starting in March. “At the same time, GitHub noted in a Tuesday blog post that it’s lowering the prices of GitHub-hosted runners beginning January 1, under a scheme it calls ‘simpler pricing and a better experience for GitHub Actions,’” … ⌘ Read more

⤋ Read More

Asahi Linux Gets Microphone Working For M2 Pro/Max, Eyes Installer Improvements
The Asahi Linux project is out with their latest status report to highlight upstream improvements made for the newly-minted Linux 6.18 kernel as well as some of their efforts going on downstream within Asahi Linux itself… ⌘ Read more

⤋ Read More

Uber and DoorDash Try To Halt NYC Law That Encourages Tipping
An anonymous reader quotes a report from the New York Times: Two of the largest food-delivery app companies have made a last-ditch effort to overturn tipping laws in New York City that go into effect in January just as its next mayor, who has been highly critical of the companies and the app industry, takes office. Tips to delivery workers have plummet … ⌘ Read more

⤋ Read More

AMD Wants Your Logs To Help Optimize PyTorch & ComfyUI For Strix Halo, Radeon GPUs
If you are not satisfied with the current performance for PyTorch or ComfyUI / Stable Diffusion on your Strix Halo APU system or with other consumer RDNA3/RDNA4 Radeon consumer GPUs, AMD engineers are interested in your logs to help better optimize the performance going forward… ⌘ Read more

⤋ Read More