Forgot your password?
typodupeerror

Comment Re:Sad (Score 1) 15

Knowing the Rules of C is one part, the other is the discipline in coding to avoid the pitfalls that many complain of. Don't let AI/LLM code, since they will be using possibly bugged examples in their training. `C` can continue to out do `Rust` with sufficient discipline - but companies pay for fast, not correct, which is another problem.

Submission + - IOCCC29 Winners annouced

achowe writes: The IOCCC being the oldest running Internet contest continues to show its resilience with yesterday's [live stream](https://www.youtube.com/watch?v=MoWCwZx1Swc) presenting [22 winners for IOCCC29](https://www.ioccc.org/2025/).

Another bumper year with 3 hat tricks from Yusuke Endoh,
Nick Craig-Wood, and Don Yang.

Comment Books good, no batteries required (Score 2) 68

When it comes to computer topics, I seek out good book, like `The C Programming` language when I was 14 or research papers for a coding project. PDFs ok in a pinch, but being able to sit in a cafe, a waiting room, airplane, etc. and read without issue is nice. They go any where and don't need a power outlet. For my own books, I pencil notes in the margins. And not just tech. books, but fiction too. A good'ol paperback tuck in my wait band behind my back or in a large coat pocket. Books work. They exercise memory, improve reading and writing skills (more you read, the better your writing becomes by example), and a new book smells nice, like a new car but cheaper.

We had a six day blackout a few years ago in Ottawa after a hurricane. My to-read pile staved off boredom and filled a void. Analogue tech has a place.

Submission + - IOCCC29 has opened. (ioccc.org)

achowe writes: The IOCCC opened the 29th contest earlier this week and will run until 13 March 2026. Once more keen C developers can submit their tiny confusing programs showing off the oddities of C.

This year the Rules & Guidelines have had a major overhaul, the first since the contest opened. They had grown somewhat lengthy, so the Rules have been trimmed and the Guidelines reorganised by Rule number, general material, and FunðYdamentals.

In addition the `mkiocccentry` tool chain has been revised, moving hardcoded rules into a table driven system for easier maintenance. Landon Curt Noll has published videos on Patreon explaining many of these changes.

Submission + - IOCCC28 winners announced (ioccc.org)

achowe writes: Yesterday there was a (long) live stream presenting 23 winners for IOCCC28. The C programming contest has been on hiatus for four years, while being retooled. With four years for developers to wait, there were a large number of quality submissions that had lots of polish that both surprised and pleased the judges.

Video of the stream: https://www.youtube.com/watch?... (4h30) was interesting, but the summary appears on the IOCCC web site for those who can't sit for the whole thing.

Submission + - IOCCC 28 starts tonight UTC! (fosstodon.org)

achowe writes: The IOCCC.org web site has been completely overhauled and made ready for the next contest to start later tonight UTC. From IOCCC Mastodon account `@ioccc@fosstodon.org` :

```
The IOCCC28, the 40th anniversary of the IOCCC is now scheduled to run from **2024-12-29 23:58:13.213455 UTC** to **2025-04-01 23:29:31.374143 UTC**!!!.
```
Participants should join Mastodon to keep track of announcements of Rules, Guidelines, and tools update notices.

Comment Good programmers work with a plethora of languages (Score 1) 370

My strength and love is "C" and more recently come to enjoy Erlang. Currently work in NodeJS Javascript. Been studying Rust with growing admiration, though not had occasion to use it yet. Wrote a hosted Forth interpreter in C (yeah I know) just for fun and curiosity. Worked with Lua and Rexx, both of which are great. Have done lots of Shell (Ksh, Bash) scripting. Wrote cyber cafe time management system for Windows in Java. Done some work in C#, which is surprisingly good given it was created by Microsoft. Dabbled with Ruby and Python, probably will again. Done many a web site using PHP. Worked with WSL (Waterloo Systems Language, now discontinued I think) for a co-op job. Long ago wrote a Pilot interpreter in Z80 assembler. Know some C++, though I avoid it like a plague. Once learned Perl, but have come to despise it and intend to kill those brain cells with booze.

Comment Vegetarian Headhunters (Score 1) 477

In all my professional life, I've never once found work through an employment agency, which I think are disgusting parasitic, often offshore outsourced, rancid vermin. Every job I've had has come from word of mouth or direct ad by the employer. Intermediary agents are horribly stupid. I've never blown off an interview with a company that does show interest, but would happily do it with a recruiter given I have zero respect for them.

On the other hand I understand being ignored by employers who don't reply to job seekers. I think I've had only three negative replies to job inquiries in my life, the rest just leave you hanging. So I can understand the "bale if not better" mind set. If employers want to be taken seriously then they need to at least play nice with potential employees.

However in today's thrifty world, sending out N negative replies by post or even email is often too much a burden (hassle) for a business, so they leave applicants hanging; only fair turn around if an applicant does like wise.

Comment CERT Secure Coding Standards (Score 2) 220

Start with the CERT Secure Coding standards, especially for C programmers it covers many of the "gotchas" to watch out for.

        SEI CERT C Coding Standard: Rules for Developing Safe, Reliable, and Secure Systems (2016 Edition)
        https://resources.sei.cmu.edu/...

Apparently they them for other languages like C++, Java, Perl.

Submission + - Oracle may have stopped funding and development efforts on Java EE (arstechnica.com)

An anonymous reader writes: ArsTechnica is reporting that Oracle has quietly pulled funding and development efforts away from Java EE, the server-side Java technology that is part of hundreds of thousands of Internet and business applications. Java EE even plays an integral role for many apps that aren't otherwise based on Java, and customers and partners have invested time and code. It wouldn't be the first time this has happened, but the implications are huge for Java as a platform.

Slashdot Top Deals

"When in doubt, print 'em out." -- Karl's Programming Proverb 0x7

Working...