niyaβ€Ž's Avatar

niyaβ€Ž

@niya.blue

πŸ³οΈβ€βš§οΈ she/her prev: Developer at MagicBell (YC W21)

155
Followers
271
Following
149
Posts
01.07.2023
Joined
Posts Following

Latest posts by niyaβ€Ž @niya.blue

[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.

25.12.2025 23:25 πŸ‘ 8162 πŸ” 2227 πŸ’¬ 105 πŸ“Œ 168

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

19.09.2025 18:35 πŸ‘ 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...

23.05.2025 07:53 πŸ‘ 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`

23.05.2025 07:53 πŸ‘ 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.

01.05.2025 16:54 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

πŸ€

29.04.2025 18:41 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

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

@goinggo.net is great!

29.04.2025 14:17 πŸ‘ 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 :)

28.04.2025 18:31 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

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

28.04.2025 18:31 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

im a trams person

28.04.2025 18:16 πŸ‘ 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 πŸ’™

28.04.2025 17:54 πŸ‘ 10 πŸ” 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

25.04.2025 09:10 πŸ‘ 32 πŸ” 11 πŸ’¬ 1 πŸ“Œ 0

Connections
Puzzle #681
πŸŸͺπŸŸͺπŸŸͺ🟩
🟨🟨🟨🟨
🟩🟩🟩🟩
🟦🟦🟦🟦
πŸŸͺπŸŸͺπŸŸͺπŸŸͺ

22.04.2025 17:27 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

helloooo πŸ‘‹πŸΌ

22.04.2025 12:22 πŸ‘ 1 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

the umlaut and the accents on e had me all confused

21.04.2025 16:06 πŸ‘ 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...

15.04.2025 19:56 πŸ‘ 119 πŸ” 20 πŸ’¬ 9 πŸ“Œ 5
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

15.04.2025 07:06 πŸ‘ 49 πŸ” 5 πŸ’¬ 2 πŸ“Œ 1

that's a cool lens 🀯

12.04.2025 18:06 πŸ‘ 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...

08.04.2025 15:28 πŸ‘ 997 πŸ” 179 πŸ’¬ 18 πŸ“Œ 13

and the spec is so readable

21.02.2025 16:49 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

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

21.02.2025 16:49 πŸ‘ 0 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

oh wow! that sounds so useful.

thanks for the explanation Amos :)

07.02.2025 17:27 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

what does searching within search result mean?

07.02.2025 17:19 πŸ‘ 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...

07.02.2025 17:16 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

it was GREAT meeting sid! 10/10

07.02.2025 17:13 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

the second full cup in the picture is mine btw

07.02.2025 17:11 πŸ‘ 1 πŸ” 0 πŸ’¬ 1 πŸ“Œ 0

reproductiverights.gov just got taken down. πŸ™ƒ

21.01.2025 01:31 πŸ‘ 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

18.01.2025 14:04 πŸ‘ 140 πŸ” 20 πŸ’¬ 10 πŸ“Œ 5

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

17.01.2025 05:46 πŸ‘ 2 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0

β€Ž

16.01.2025 04:31 πŸ‘ 0 πŸ” 0 πŸ’¬ 0 πŸ“Œ 0