The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,835 other subscribers

Archive for August 6th, 2026

1984 RULES OF NETNEWS DEBATING at We are ALL Rich Rosen…

Posted by jpluimers on 2026/08/06

A while ago, I got reminded of the [Source:/Archive] 1984 RULES OF NETNEWS DEBATING at We are ALL Rich Rosen… that was posted in Newsgroups: net.flame, net.jokes (which had many ROT13 jokes) back more than 40 years ago by the (in)famous – depending on your point of view – Rich Rosen on his site [Wayback/Archive] neurozen.com – Rich Rosen’s web site (which is in a subfolder, I think because of humour, see [Wayback/Archive] Apache Tomcat/7.0.62 – Error report – this Apache Tomcat version 7 is has been end-of-life since the end of March 2021 :).

I regard is as both fun and insightful, fun for instance as all rules are rated “RULE #1”, and insightful for instance as this is a great quote for on a T-shirt:

Read the rest of this entry »

Posted in BITNET Relay, Chat, Development, DuckDuckGo, eMail, Fun, gist, GitHub, Google, GoogleSearch, History, Internet, Java, Java Platform, Meme, Power User, Quotes, SearchEngines, SocialMedia, Software Development, Tomcat | Leave a Comment »

memory spy by b0rk (Julia Evans): visualise how C how variables are represented in memory

Posted by jpluimers on 2026/08/06

[Wayback/Archive] memory spy

It is universal for most other programming languages too as explained in [Wayback/Archive] New playground: memory spy

why is it useful to look at C?

You might be wondering – I don’t write C! Why should I care how C programs represent variables in memory?
In this playground I’m mostly interested in showing people how integers and floats are represented. And low-level languages generally all represent integers and floats in the same way – a 32-bit unsigned int is going to be the same in C, C++, Rust, Go, Swift, etc. The exact name of the type is different, but the representation is the same.
In higher-level languages like Python it’s a little different, but under the hood a float in Python contains a C double, so the C representation is still pretty relevant.

Via

Read the rest of this entry »

Posted in C, Conference Topics, Conferences, Development, Event, Software Development | Leave a Comment »