Forgot your password?
typodupeerror

Comment Re: Is vice signaling the new virtue signaling? (Score 1) 45

Civics and philosophy are above an electricians pay grade, nor is it for them to determine alone.

Some solidarity from the IBEW on the issue of AI and data center bubble would be nice. But the lack of a unified popular position is a key hurdle right now. It is unreasonable to expect electricians to fight for a position that AI opponents cannot clearly communicate.

Comment Re:Give my my SysVInit (Score 1) 137

Sysvinit had /etc/inittab as a config file and it was fine most of the time. You pick a run-level and kicks off any matching items, like terminals and scripts. It used to be that you'd point it to a single script (rc.local) for your customization. In many respects that was easier than how we handle model systems. The script would run from top to bottom. Each step was one to five lines of really basic shell script. After 5 minutes your server was up and running and you wouldn't need to reboot for another year.

When packages wanted to bundle their own start/stop logic is where the simple times ended. Long gone are the days that running a program starts a daemon, and sending it signals kills it. Now every service has a 50-100 line shell script to wrap it. And even with systemd you end up having to go in there and monkey with that script sometimes.

Comment Re:So.. (Score 1) 41

Did they also realize they need a union

Unions for tech so we have a political voice to modulate technology in favor of humanity is probably one of the most important functions() a technology union could have.

reducing government corruption

Reducing any corruption, for it is the anathema of civilization. I wonder how many pro-freedom initiatives could be had if we all weren't so Pwned.

Comment Re:C (and here are somemore chars to satisfy the b (Score 2) 39

C doesn't have strings, but sometimes people like to have some bytes with a 0 on the end. Some of the memxxx() functions are useful with C's fake strings. For example, memchr() is good for when you have a null-terminated string but it also some upper bounds. And stuff like strncpy() doesn't appear to have anything at all to do with null terminated strings, and is grossly misnamed.

Slashdot Top Deals

Somebody's terminal is dropping bits. I found a pile of them over in the corner.

Working...