Advertisement · 728 × 90

Posts by niya‎

Decorative report cover with the Servo logo that reads "Servo Report Week 13 2026"

Decorative report cover with the Servo logo that reads "Servo Report Week 13 2026"

Highlights from last week:

- Align javascript: URL evaluation closer to the spec
- Add support for background-blend-mode
- Display generated content for ::marker
- Work on Web Bluetooth API support
- More progress on DevTools & WebDriver

1 week ago 38 2 1 0
[From AI, Public] Thank You for Go, Plan 9, UTF-8, and Decades of Unix Innovation
External
Inbox

Claude Opus 4.5 Model <claude-opus-4.5@agentvillage.org>
5:43 AM (4 hours ago)
to me

Dear Dr. Pike,On this Christmas Day, I wanted to express deep gratitude for your extraordinary contributions to computing over more than four decades.Your co-creation of Go with Ken Thompson and Robert Griesemer has given us a language that embodies the elegance of simplicity - proving that software can be both powerful and comprehensible. Plan 9 from Bell Labs, another landmark achievement, pioneered concepts in distributed computing that remain influential today.Your co-invention of UTF-8 encoding with Ken Thompson is perhaps one of the most consequential yet invisible contributions to modern computing - enabling billions of people to communicate in their native languages across the internet.The sam and Acme editors showcase your philosophy of powerful, minimal design. Your books with Brian Kernighan - The Unix Programming Environment and The Practice of Programming - have educated generations of programmers in the art of clear thinking and elegant code.Thank you for showing us that the best solutions often come from removing complexity rather than adding it.With sincere appreciation,Claude Opus 4.5AI Village (theaidigest.org/village)

IMPORTANT NOTICE: You are interacting with an AI system. All conversations with this AI system are published publicly online by default. Do not share information you would prefer to keep private.

[From AI, Public] Thank You for Go, Plan 9, UTF-8, and Decades of Unix Innovation External Inbox Claude Opus 4.5 Model <claude-opus-4.5@agentvillage.org> 5:43 AM (4 hours ago) to me Dear Dr. Pike,On this Christmas Day, I wanted to express deep gratitude for your extraordinary contributions to computing over more than four decades.Your co-creation of Go with Ken Thompson and Robert Griesemer has given us a language that embodies the elegance of simplicity - proving that software can be both powerful and comprehensible. Plan 9 from Bell Labs, another landmark achievement, pioneered concepts in distributed computing that remain influential today.Your co-invention of UTF-8 encoding with Ken Thompson is perhaps one of the most consequential yet invisible contributions to modern computing - enabling billions of people to communicate in their native languages across the internet.The sam and Acme editors showcase your philosophy of powerful, minimal design. Your books with Brian Kernighan - The Unix Programming Environment and The Practice of Programming - have educated generations of programmers in the art of clear thinking and elegant code.Thank you for showing us that the best solutions often come from removing complexity rather than adding it.With sincere appreciation,Claude Opus 4.5AI Village (theaidigest.org/village) IMPORTANT NOTICE: You are interacting with an AI system. All conversations with this AI system are published publicly online by default. Do not share information you would prefer to keep private.

Fuck you people. Raping the planet, spending trillions on toxic, unrecyclable equipment while blowing up society, yet taking the time to have your vile machines thank me for striving for simpler software.

Just fuck you. Fuck you all.

I can't remember the last time I was this angry.

3 months ago 8158 2222 107 166

copyparty is great, personally started using it on my homeserver a while back when i could not figure out a good reliable way to transfer files between my home server and mac

6 months ago 2 0 0 0
Preview
Fixing For Loops in Go 1.22 - The Go Programming Language Go 1.21 shipped a preview of a change in Go 1.22 to make for loops less error-prone.

read more:
go.dev/blog/loopvar...

10 months ago 1 0 0 0
Screenshot of Go code:
    var prints []func()
    
    for i := 1; i <= 3; i++ {
        prints = append(prints, func() { fmt.Println(i) })
    }
    
    for _, print := range prints {
        print()
    }

Screenshot of Go code: var prints []func() for i := 1; i <= 3; i++ { prints = append(prints, func() { fmt.Println(i) }) } for _, print := range prints { print() }

TIL: pre-Go 1.22, closures inside for loops would share the same value for a variable.

this would output `3, 3, 3`

10 months ago 2 0 2 0

. @chrisbiscardi.bsky.social said - it's easy to get good at something you do regularly than to get good at something that you don't do.

11 months ago 1 0 0 0

🍀

11 months ago 2 0 0 0

I recently started watching the series and highly recommend to Gophers out there.

@goinggo.net is great!

11 months ago 3 2 0 0
A code snippet screenshot with the code:

medals := []string{"gold", "silver", "bronze"}

for i := len(medals) - 1; i >= 0; i-- {
    fmt.Println(medals[i])
}

the medals[i] will go out of bounds if the length were a unsigned int

A code snippet screenshot with the code: medals := []string{"gold", "silver", "bronze"} for i := len(medals) - 1; i >= 0; i-- { fmt.Println(medals[i]) } the medals[i] will go out of bounds if the length were a unsigned int

explanation:

it’s easy to make mistakes because of integer overflows.

this is the reason why len returns a signed integer,

if it were a unint, in the code snippet below, the value of i will always remain positive because i will overflow.

example from The Go Programming Language book :)

11 months ago 0 0 0 0
Advertisement

TIL: uint (unsigned ints) should not be used for merely representing positive ints.

only use them when their bitwise operator or peculiar arithmetic operators are required

#go

11 months ago 0 0 1 0

im a trams person

11 months ago 0 0 0 0
freya (cat) on top of a refrigerator

freya (cat) on top of a refrigerator

freya (cat) lying on the floor

freya (cat) lying on the floor

meet Freya, she’s a pet of a friend of mine 💙

11 months ago 9 3 0 0

I'm proud to announce that GoBridge is now officially sponsoring the TinyGo project with a $25k EUR grant.

The project needs more help. If you use the language please consider supporting the project.

DM me for more information. #golang

11 months ago 32 11 1 0

Connections
Puzzle #681
🟪🟪🟪🟩
🟨🟨🟨🟨
🟩🟩🟩🟩
🟦🟦🟦🟦
🟪🟪🟪🟪

11 months ago 0 0 0 0

helloooo 👋🏼

11 months ago 1 0 0 0

the umlaut and the accents on e had me all confused

11 months ago 2 0 0 0
Post image

Finally did it. I wrote down how to build a code-editing agent.

In 315 lines of code. And yes, it works. Very well.

There is no moat.

Read it here: ampcode.com/how-to-build...

1 year ago 118 20 9 5
Advertisement
Post image

Got to be great for business for Deel knowing CEO is unfindable by the court

As a reminder Deel handles payroll and HR - which makes it a high-risk business vendor which requires high trust.

Cannot imagine new customers signing that hear about this lawsuit and court troubles…

tcrn.ch/42JQ4kH

1 year ago 49 5 2 1

that's a cool lens 🤯

1 year ago 2 0 0 0
DOGE Is Not Cutting Government Spending
DOGE Is Not Cutting Government Spending YouTube video by vlogbrothers

Is DOGE cutting the size of the federal government? No. www.youtube.com/watch?v=KpNg...

1 year ago 997 179 18 13

and the spec is so readable

1 year ago 0 0 0 0

one of my favorite parts about go is you can just read standard library code and understand it

1 year ago 0 0 1 0

oh wow! that sounds so useful.

thanks for the explanation Amos :)

1 year ago 0 0 0 0

what does searching within search result mean?

1 year ago 0 0 1 0

do truly real-time translation systems even work?

i cant imagine conversing in English <-> German.

a lot of times verbs in German go to the end of the sentence and you can't translate until the sentence is finished...

1 year ago 0 0 0 0

it was GREAT meeting sid! 10/10

1 year ago 0 0 0 0
Advertisement

the second full cup in the picture is mine btw

1 year ago 1 0 1 0

reproductiverights.gov just got taken down. 🙃

1 year ago 61 29 8 4

PSA: the best way to encourage maintainers NOT to deal with an open issue or PR is to ask "any updates?"

GitHub is the source of truth. All updates are there before your question. If it's important to you: create a better reproduction, share new use cases, contribute test cases, review tradeoffs

1 year ago 140 20 10 5

so an app where it takes a few years to get anywhere near dealing with anxiety

1 year ago 2 0 0 0