Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:But Google Code? (Score 1) 44

any project or developer that uses it is going to need that backup repository at github anyway

You should have backups of all your projects to media that you control in any case. Google has a track record of winding down stuff it doesn't want to continue (Reader, anyone?), but if you're betting on any source-code repo to (1) not go tits-up (as Google Code might) and (2) not jump the shark (as SourceForge has), you're putting your code at risk. Git, in particular, makes it dead simple to clone a repo and all its history in a relatively compact form, so spare a few GB on a server you control for a mirror of everything you put on GitHub (or whatever).

Comment Re:TrueCrypt (Score 1) 69

....and not a word about TrueCrypt? is there any commonly used alternative or people just don't care?

I migrated to FreeOTFE right around the time that the TrueCrypt developers said people should stop using it, about a year ago. I haven't had much reason to migrate back (though TrueCrypt's hidden volume feature was nice to have).

Comment Re:Phones are all the same... (Score 1) 83

Why does my Slashdot look exactly the same as it looked six months ago? I've been reading the outraged comments and I still see comments under the summary as always.

I don't know. Only my front page looks different, in the same ways people are complaining about

I almost never go to the homepage. I monitor /.'s RSS feed (used to use Google Reader, switched to TTRSS when Google Reader went bye-bye) and go directly to articles that sound interesting. A bunch of other sites are also configured in there, so I can quickly see what's new there as well.

As I've seen things, /. Beta fscked up page formatting for a while, but the "?nobeta" hack took care of that. Then at some point, it no longer became necessary when article pages started looking more or less like they previously did without manual intervention.

Comment Re:Why? (Score 1) 301

That's only if they were sealed correctly and stored right. There was an article a few years ago about how a lot of discs were coming up unusable after only 6-12.

My oldest CDs are somewhere on the other side of 20 years old now, and not one of them has gone bad. I reripped them all a few months ago as part of a transition from AAC to FLAC. They've spent most of their time on a shelf indoors, though they've been in a box in the garage (dry, but subject to the temperature fluctuations typical for Las Vegas) for the past four years.

I suspect that as long as your CD collection never spent time in a flooded basement, it'll be good to go for decades to come.

Comment Re:Yes, this needs to stop, but... "Help yourself" (Score 1) 130

What API would you use?

WebRTC, IIRC. I recently rolled out a webapp at work that case workers can use to help determine eligibility for potential clients. One minor capability within it is photo capture. Along with a slew of questions about demographics, disabilities, and such, it'll also take a picture and stash it in the database. If someone is then accepted as a client, that photo is then available so that (for instance) our delivery drivers can compare the photo on file to whoever answers the door to make sure the client's at home to accept delivery. We could've just had the user take a picture with the phone's camera app and then upload into our webapp from there, but this is a seamless approach that's easier to use.

There's not much to it, either. The page that handles the capture is 28 lines of HTML and 114 lines of JavaScript, a fair bit of which was cribbed from examples I found with a few seconds' googling. It provides a live view of what the camera sees, lets you switch between front and back cameras, and lets you preview the capture before it's sent to the server.

Comment Re:It's not just shills that like Plex (Score 1) 122

Plex’s lack of extensibility, scraper support, and local storage support drive me up a goddamn tree, but Plex works and XBMC doesn’t. I’m not a linux person, but I am a nerd - code is not my day job, but I’m teaching myself at night. Sweet baby Jesus, I tried XBMC so many freaking times that eventually I just gave up.

The easiest way to get XBMC^H^H^H^HKodi working is OpenELEC. It's pretty much an appliance that just works; the only part that remains slightly tricky (and not by much) is setting up a shared database if you want more than one. I have it set up on an Acer Aspire Revo in the living room and a Raspberry Pi in the bedroom; each is set up with a Playstation 3 Blu-ray remote control (about $20 each, plus a Bluetooth dongle).

I also have Plex up and running, but it's mainly for remote access. Automatic transcoding is a big win. Around home, though, there's more than enough bandwidth to just let OpenELEC grab files straight off the server.

Comment Go to college to actually learn something (Score 3, Informative) 306

While you shouldn't necessary pick a major based on the hottest job, you definitely need to pick something in consideration with how you will use it. And you sure as heck should go to college to learn and make yourself better--not just to receive a piece of paper. Racking up 5 or 6 figures of debt without learning anything of value is a terrible idea. Unfortunately, we haven't given students the tools or perspectives to understand the consequences of the decisions they are making. Everyone is always warning athletes coming into college "the chances of you making it as a pro are extremely rare". And yet, the chances of someone making it as a tenured history professor at a major university are probably just as rare. At least the athletes aren't going into massive debt.

Add onto the fact that we have massively watered down many majors to the point of uselessness. The reason liberal arts majors get a bad rap isn't that it is a useless subject. If people came out as hard working critical thinkers they would be valuable contributors. Unfortunately, it is filled with people who just want a piece of papers and do the minimum to get by. This is a generalization, of course, but I believe is backed up by stats on plagiarism http://www.huffingtonpost.com/...). And the courses are watered down to be worthless. For example you can graduate from Yale with an English without having a Shakespeare course (http://www.washingtonpost.com/news/grade-point/wp/2015/04/23/skipping-shakespeare-yes-english-majors-can-often-bypass-the-bard/). So in 4 years of education in English, you don't have to actually take a course in the most influential English writer in history. But, you know, he is challenging to read and understand. As an alternative you can take a course in Literature for Young People http://english.yale.edu/course... which includes J. K. Rowling and Dr. Seuss.

At least with Engineering/Math/Hard Science you have to demonstrate via projects and tests that you have actually learned something.

User Journal

Journal Journal: Days Go By 1

The Offspring released a new album in 2012 and I didn't know until yesterday. There are implications to that I need to get sorted but now you know what I'm listening to all day while I work.

User Journal

Journal Journal: Linux Genius 3

I have a file on my machine - render.conf

I just did the following:

cp render.conf render-snap.conf
mv render.conf render-main.conf
mv render-snap.conf render.conf

And then I just laughed at myself for a bit. It made sense when I did it and as soon as I had I realized how stupid it was.

Comment Re:Trial and error (Score 1) 4

Mark Russinovich experimented a fair bit with this under Windows XP - there at least, you could actually kill off smss.exe and still have a working system; really, the only one you need to leave in place is csrss.exe, since that provides the userspace parts of the Win32 API, and without Win32 you can't run any "normal" Windows programs at all. Of course, you also lack important things like networking, making this rather academic - and you can't reboot any more either, since you've now killed off the process which handles that!

Slashdot Top Deals

Kleeneness is next to Godelness.

Working...