HN user

codewiz

1,766 karma

I hack, therefore I am. https://mstdn.io/@codewiz

Posts108
Comments245
View on HN
thezvi.substack.com 7d ago

No Space Like J-Space

codewiz
3pts0
amiga-news.de 1mo ago

New SDK Available for AmigaOS 4.1 Final Edition

codewiz
2pts0
amiga-news.de 3mo ago

Rapprochement Between Hyperion and Amiga Corporation

codewiz
1pts0
www.hyperion-entertainment.com 3mo ago

AmigaOS 3.2 is now available digitally

codewiz
3pts0
precondition.github.io 4mo ago

Home Row Mods

codewiz
3pts0
rene-david-bot.github.io 4mo ago

Dave's Retro Corner – Classic Amiga Demoscene Effects

codewiz
3pts0
www.youtube.com 6mo ago

One Formula That Demystifies 3D Graphics [video]

codewiz
3pts0
medium.com 8mo ago

We Deleted Tokio from Our Payment System and Cut Cloud Costs by $127,000

codewiz
8pts5
www.hyperion-entertainment.com 9mo ago

Update 3 for AmigaOS 4.1 Final Edition Available

codewiz
2pts0
www.youtube.com 9mo ago

The design of high-density floppy drives for the Amiga [video]

codewiz
2pts0
bitcoincore.org 9mo ago

Bitcoin Core 30.0

codewiz
6pts0
www.youtube.com 9mo ago

DEF CON 33 – "We are currently clean on OPSEC" – The Signalgate Saga – Micah Lee [video]

codewiz
12pts1
www.youtube.com 9mo ago

Bevy 0.17: Global Illumination, Widgets, and more [video]

codewiz
1pts0
datatracker.ietf.org 10mo ago

RFC9460: SVCB and HTTPS DNS Records

codewiz
38pts7
www.youtube.com 10mo ago

Backporting the C64 Commando music to the arcade hardware [video]

codewiz
1pts0
www.youtube.com 11mo ago

Boston Dynamics: Getting a Leg Up with End-to-End Neural Networks [video]

codewiz
3pts0
www.youtube.com 11mo ago

LoLRa: Broadcast LoRa packets WITHOUT a radio [video]

codewiz
1pts0
www.pouet.net 11mo ago

No-CPU Challenge, a demo running on the Amiga chipset

codewiz
5pts2
blog.kodewerx.org 11mo ago

Are We Teaching Rust Effectively?

codewiz
5pts0
www.youtube.com 1y ago

SpaceX Ship 36 RUDs During Testing

codewiz
11pts2
forgottencomputer.com 1y ago

Amiga 4000T: The Best Amiga in the World

codewiz
42pts25
github.com 1y ago

Connomore64: Cycle exact emulation of the C64 using parallel microcontrollers

codewiz
201pts30
bitcoincore.org 1y ago

Bitcoin Core 29.0 Released

codewiz
7pts1
www.hyperion-entertainment.com 1y ago

AmigaOS 3.2 Update 3 Released

codewiz
20pts7
www.hyperion-entertainment.com 1y ago

New ownership of AmigaOS publisher Hyperion Entertainment

codewiz
4pts2
fedoramagazine.org 1y ago

Fedora Project Leader Matthew Miller: A Change of Hats

codewiz
3pts0
www.youtube.com 1y ago

CNBC Live: Pentagon's UFO Report Finds 21 Cases That Can't Be Explained [video]

codewiz
4pts3
krebsonsecurity.com 1y ago

Brazil Arrests 'USDoD' Hacker in FBI Infragard Breach

codewiz
45pts10
www.spacex.com 1y ago

Starship's Fifth Flight Test

codewiz
13pts0
programming.earthonline.us 1y ago

What Is the Maximum Length of an Array in Node.js?

codewiz
1pts0

In my past experience, too many extensions tend to break every time GNOME Shell is upgraded and it can take a long time to get them fixed.

The GNOME developers have signaled over and over again that they're unwilling to provide stable APIs for UI customization. Being a developer myself, I can see why it's a burden, but the current situation is that it's being done anyway through unofficial extensions and users are left to deal with the random breakage.

As long as the environmental consequences fall entirely within the state borders, states should be allowed to decide independently.

However, when it comes to polluting rivers, sea and air, consequences of pollution are of often planet-wide. Thus, a global approach is required.

That said, the sooner Starship achieves full reusability, the sooner we'll stop burning rocket stages into the atmosphere and letting the incombustible parts fall into the ocean.

Water 2 years ago

Near the conclusion of this excellent blogpost:

"We live in a semi-barbaric age where science is probing the finest details of matter, space and time—but many of the discoveries, paid for by taxes levied on the hard-working poor, are snatched, hidden, and sold by profiteers."

I love how Andrej Karpathy explains things. His code implementing the feed-forward block of the transformer looks like this:

   def forward(self, x):
     x = x + self.attn(self.ln_1(x))
     x = x + self.mlp(self.ln_2(x))
     return x

This is how it's described (starting at 19:00 into the video):

"This is the pre-normalization version, where you see that x first goes through the layer normalization [ln_1] and then the attention (attn), and then goes back out to go to the layer normalization number two and the multilayer perceptron [MLP], sometimes also referred to as feed-forward network, FFN, and then that goes into the residual stream again."

"And the one more thing that's kind of interesting to note is: recall that attention is a communication operation, it is where all the tokens - and there's 1024 tokens lined up in a sequence - this is where the tokens communicate, where they exchange information... so, attention is an aggregation function, it's a pooling function, it's a weighted sum function, it is a reduce operation, whereas this MLP [multilayer perceptron] happens every single token individually - there's no information being collected or exchanged between the tokens. So the attention is the reduce, and the MLP is the map."

"And the transformer ends up just being repeated application of map-reduce, if you wanna think about it that way."

I love the way Andrej Karpathy explains things. The code for the feed-forward block of a transformer looks like this:

   def forward(self, x):
     x = x + self.attn(self.ln_1(x))
     x = x + self.mlp(self.ln_2(x))
     return x
This how Andrej describes it (starting at 19:00 into the video):

"This is the pre-normalization version, where you see that x first goes through the layer normalization [ln_1] and then the attention (attn), and then goes back out to go to the layer normalization number two and the multilayer perceptron [MLP], sometimes also referred to as feed-forward network, FFN, and then that goes into the residual stream again."

"And the one more thing that's kind of interesting to note is: recall that attention is a communication operation, it is where all the tokens - and there's 1024 tokens lined up in a sequence - this is where the tokens communicate, where they exchange information... so, attention is an aggregation function, it's a pooling function, it's a weighted sum function, it is a reduce operation, whereas this MLP [multilayer perceptron] happens every single token individually - there's no information being collected or exchanged between the tokens. So the attention is the reduce, and the MLP is the map."

"And the transformer ends up just being repeated application of map-reduce, if you wanna think about it that way."

Hidden fees remove any consumer-side pressure on credit cards to lower their costs.

It also creates perverse incentives for cards to pass part of the merchant fees back to the consumer as rewards or even cash. Here in the US, 2-3% cash back is typical, driving consumers to prefer credit over other payment methods.

Meanwhile, merchants are forced to bake the fees into the retail price, causing the paradox that those who pay upfront end up spending more for the same goods.

And a few more on on the Orion capsule:

"Orion, the capsule that launches on top of SLS, is a relaxed-fit reimagining of the Apollo command module suitable for today’s larger astronaut."

"The capsule’s official name is the Orion Multipurpose Crew Vehicle, but finding even a single purpose for Orion has greatly challenged NASA."

"Where Apollo was built like a roadster, with a small crew compartment bolted onto an oversized engine, Orion is the Dodge Journey of spacecraft—a chunky, underpowered six-seater that advertises to the world that you're terrible at managing money."

And another one:

"Costs on SLS have reached the point where private industry is now able to develop, test, and launch an entire rocket program for less than NASA spends on a single engine"

Unkind quotes, but hilarious and probably well deserved:

"SLS looks like someone started building a Space Shuttle and ran out of legos for the orbiter"

"But on top of this monster sits a second stage so anemic that even its name (the Interim Cryogenic Propulsion Stage) is a kind of apology."

"the minds behind SLS achieved a first in space flight, creating a rocket that is at the same time more powerful and less capable than the Saturn V."

"And SLS is a “one and done” rocket, artisanally hand-crafted by a workforce that likes to get home before traffic gets bad."

"The rocket can only launch once every two years at a cost of about four billion dollars—about twice what it would cost to light the rocket’s weight in dollar bills on fire."

"Early on, SLS designers made the catastrophic decision to reuse Shuttle hardware, which is like using Fabergé eggs to save money on an omelette."

As a United States immigrant, I had never heard of the fairness doctrine before. My first thought is: how would it be compatible with the freedom of the press granted by the First Amendment?

Airline fares are regulated by the FAA and the DOT to disallow deceptive business practices and require minimum service levels: https://www.transportation.gov/individuals/aviation-consumer...

Similarly, the FCC net neutrality rules allow telcos to charge any price for the service while disallowing blocking or throttling particular Internet sites or protocols. If such rules weren't indeed necessary, big telcos wouldn't be spending their money campaigning against them, would they?