SeldomSoup's comments

SeldomSoup | 10 years ago | on: Mint 17.3 may be the best Linux desktop distro yet

As someone whose desktop needs are pretty simple, I agree with this assessment. If you want a *nix that's point-and-click configurable, looks nice, makes it easy to install software, and generally doesn't get in your way, Mint is definitely the way to go. I've tried all the popular distros, from (X/K)ubuntu, to Debian, to Fedora, to Arch and others, and I inevitably keep coming back to Mint. Just my 2 cents.

SeldomSoup | 10 years ago | on: Introducing the IBM Swift Sandbox

Absolutely. Two days ago (before the open source announcement), I begrudgingly started learning Swift for a school project in iOS development. Now I'm itching to dive into the language.

SeldomSoup | 10 years ago | on: Signal Desktop

> court-approved

Remember, this a secret court, whose judges are likely highly biased in favor the government, with secret proceedings where only the NSA gets to make a case. Not exactly a legitimate safeguard.

I also have reservations about the grandparent comment, but PRISM is still pretty awful.

SeldomSoup | 10 years ago | on: dd – Destroyer of Disks (2008)

> If you want to erase a drive fast then use the following command (where sdXXX is the device to erase):

    dd if=/dev/zero of=/dev/sdXXX bs=1048576
Question: is there a disadvantage to using a higher blocksize? Is the read/write speed of the device the only real limit?

SeldomSoup | 10 years ago | on: Windows 7 Update appears to be compromised?

It's a cryptographic mechanism. MS has a private key they apply to each Windows update to mathematically prove A) they're the ones who issued it and B) the content was not modified in transit.

(I am not experienced in cryptography. This explanation might be a little simplistic.)

SeldomSoup | 10 years ago | on: C Programming Guidelines

Interestingly, the author goes on to recommend

  if(rc < 0) goto fail;
as a countermeasure for that breed of bug.
page 1