Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment wow, they send all the data? (Score 2) 403

I knew they were doing some heavy lifting on the server side, cause obviously it doesn't work without a network connection.

However, I figured they would at least do an initial processing pass on the phone and pass up the data points to the server instead of the raw audio. That at least would make sense, and you'd be able to pass much smaller amounts of data. It would also explain the need to have better hardware on the phone. Sending the raw audio seems insane.

Comment Opportunity cost... in CS at least.. (Score 1) 841

Other engineering disciplines are different I know, but in CS, I'd argue opportunity cost is a big factor. Myself and 2 of my classmates dropped out when after our sophomore years we were offered full time positions making real money (well... we were 20, 55k/yr sounded like a lot). This was in post bust 2001, and the three of us had conversations about it and all thought it was crazy to keep paying 10k/year for the next 2 years (or 3 depending on how courses were offered) when we could make 110 or 165k over the same time span... Since then 2 of us have completed our degrees (myself 8 years after dropping out), but I for one don't regret dropping out in the least. I got a lot of experience in those couple years, I learned way more about real software development than I was learning in college, and I've never spent a minute unemployed. My employer luckily has tuition reimbursement, so when I did finish my degree it didn't cost me anything.

Maybe I've been passed over for jobs/promotions over the years because of my lack of degree, but I've enjoyed my career so far, I love what I'm doing now, and I don't feel like I've been slighted in the least.

Comment Re:Uh... Caching? (Score 1) 115

I didn't read the article... so I don't know, but the summary doesn't say anything about capturing the MRI data, the data is the data... They are using a new process to generate images from said data.

Now, in the summary, it says they do some up front processing, and then save the result of that, and use it for all subsequent image generation activities... because this processing used to be done on every image generation pass... well guess what, thats the definition of caching, and it has 0 to do with a new algorithm. They are still using the exact same *algorithm* to process the data, they are just storing the part that gets repeated over and over, and using it multiple times...

Comment Re:Not a viable solution (Score 1) 320

I point out that my solution is affordable... How many nics are on your SAN? 15k rpm sas drives are more than twice as expensive as 7200rpm sata. It may well be that the iscsi hardware we were using didn't have the io ops to handle the load but it really felt like a bandwidth issue, Same iscsi San with 10gb vs 1 gb nics performed well enough..

Comment Not a viable solution (Score 3) 320

If you're looking to have any kind of decent performance in your VMs this just won't work.
I've worked with VMs on all different kinds of storage (fiber channel SAN, local disk, iSCSI SAN (over 1Gb and 10Gb ethernet), Local hardware raid, NFS file shares, GFS2 (as in the RedHat cluster file system), and MooseFS and GlusterFS) All of these have been either in large test labs or in production cloud deployments. I've never had a cluster file system get close to passing muster as a storage medium for VM usage. IO is the number 1 bottleneck in virtualized environments, and these schemes just add completely unacceptable latency and bandwidth restrictions.

The only way to really run VMs is fiber channel SAN, local disk (or hardward raid), or iSCSI with 10GbE (on the storage server side). Even iSCSI with 2GbE (2x1GbE bonded) is not speedy enough to support more than 5-10 VMs running concurrently. You'll start to see problems at 5 VMs if the VMs are windows... For whatever reason Windows really likes to write to the disk. Currently I have 4 servers in my basement, a single storage server (6 2TB drives in a raid6, giving 8TB of usable disk) and 3 VM servers (2 2TB drives each, in hardward RAID1). I run the VMs locally and back them up to the storage machine over iSCSI nightly. I also have a shared volume on the storage system that all VMs and my household computers can access. I use openfiler for my storage system, if I had the money it would be nice to get a second storage server and replicate it (which openfiler supports), but I don't have that cash just sitting around right now

Backing up 8TB of data (ok, so I have about 5TB used), is basically impossible offsite, so we have a "special" folder on the shared drive that is backed up using crashplan, its about 600GB, and the first backup took nearly 3 months over a 5mbps upload.

The above setup is the only one I've found that is both a) somewhat affordable, and b) performs well enough to do actual work in the VMs. It provides for some mobility in the event of a hardware failure (if a VM server crashes, I can run the crashed VMs via iSCSI on another server (from the day old backup), If the storage server crashes, the only "important" data is the 600GB in the special folder... which would take 2 months to download over my home connection... But could be downloaded in stages, IE get the most important stuff immediately). If both a vm server and the storage server crash, I'm out the VMs that were running on the vm server, but again the important data is off-site, and the VMs can be rebuilt in a day or less.

Comment Re:UEFI and secure boot should NOT be a concern (Score 2) 386

I really doubt your claim of a 10 fold improvement in security. How many MBR rootkits have you cleaned up in the wild? How many lame malware infections have you seen/cleaned up in the wild (which secure boot won't help 1 iota)? For me those numbers are 0 to about 50,000 in the last 5 years.

Phishing and hacked websites that dump malware via browser bugs are the 2 biggest security threats I've seen in the last 5 years, and neither of these is even remotely addressed by secure boot, when someone comes up with a key signing scheme to stop phishing I'll listen to a "10 fold improvement" claim, not before.

Comment Re:testing the wrong skill set (Score 1) 948

The only problem I have with the brain teaser questions is, well I suck at them... I don't like to waste my time solving problems with 0 practical application, I don't have a passion for it... IE a recently posted google interview contained the question "You're shrunk down to 1" tall, and you are in a blender. The blender will turn on in 30 seconds, how do you escape?" Why would I expend any energy trying to solve such a bizarre problem?!? Ask me how I would try to solve the energy crisis, or clean water. At least my answers to those questions might have practical applications.

Another question which a friend of mine fielded recently in an interview "You have to multiply 10 million random numbers together, your programming language does not have a * operator, how do you do it?"

The "correct" answer was a ton of loops to duplicate multiplication with addition... Well.. I don't know if thats the fastest/best way to get multiplication, but I'd argue that being able to implement multiplication as addition is probably a completely useless skill, and anyone who immediately comes up with that answer probably doesn't like to use code libraries... Like some code I recently worked with where the developers didn't "trust" SQL so instead of writing joins in SQL, they wrote a bunch of nested loops to "join" tables in code, so they have things that could be accomplished in 1 line of good SQL, that take 20 lines of code and hundreds of hits to the database.

Comment Re:The Real Problem: Degrees Without Side-Work (Score 2) 948

As a developer who got my first job (and many subsequent ones) based on the strength of my side projects, I have to completely disagree with this mentality. If you're a good developer, you can build good side projects in very few hours. Sure when you first start one, it might consume a few weekends, or mean some late nights, but in general the side projects I take on are in the range of 1-2 weeks of crazy work, and then maybe "Oh it would be nice if it did X, I'll spend 2 hours next week adding that feature".

It goes back to people claiming a CS degree is a 100% endeavor. While I was in school, most assignments took me a couple hours, and I was generally given 1-2 weeks to complete them. There were some assignments that were more difficult and took 100% effort for the length of the assignment, but only a few. I had plenty of time to build side projects, start a small company with a couple other students, build some custom business apps for clients. during this time I had a life, met my wife, dated her, skied regularly, golfed regularly, travelled some, went to concerts, in short had a life. Today, I still have side projects, I work 40 hour weeks most of the time, sometimes I'll put in extra hours at work when its necessary, and yes, some weeks I'll work 70 hours because I'll have an itch, and decide its time to build something... then 2 or 3 weeks later the itch is scratched, and there is something built that solves at least a small problem, then its back to 40-50 hour weeks like normal, and maybe I spend a couple hours a week for another 2-3 weeks adding a few features, or cleaning up the side project... but it doesn't become a full time job.

Comment Re:Experienced only? (Score 2) 948

lawyers at least get 0 training in law school about the actual practical practice of law. Lawyering is very much like CS in this regard. The CS curriculum I went through provided 0 real world training in a) source code management, b) software design/engineering (IE how to build maintainable code), c) IDE/Team development, d) continuous integration/build systems.... This is very similar to law school, you learn all the theory of the law, but you don't learn anything useful about how to efficiently file law suits, efficiently prepare documents, manage clients, or their expectations... Without these skills a lawyer is useless in the real world, just as a CS grad is useless without the practical knowledge of the systems I listed, which school does not teach at all (or at least did not 10 years ago maybe things have changed?)

That is why lawyers spend the first 3-5 years of their careers working 80 hour weeks and making relative peanuts compared to senior lawyers and partners.... I'd bet that is why doctors spend the first years of their careers doing a residency, also making peanuts, and working insane hours. Some things require experience to learn well, software design I feel is one of those things, I'm only just now (6 years into my career) feeling like I can reliably build really maintainable, readable code on the first try. Unless school starts making you build a single project over 4 years, that you have to maintain, and add features to, and build on... that is the only way to learn to build maintainable code... Build a project and maintain it, and figure out "oh, I made a bad decision there... that made it so I had to re-write half the project to add feature X", and learn from that mistake so you make less bad decisions in the future... you just have to have experience with it to learn how to do it. If only companies would implement an apprenticeship/residency/junior associate program that mirrors lawyers/doctors then we'd have something. Burn out the lazy/not dedicated, promote the really good ones quickly, and stop acting like all devs are created equal, cause we're not.

Comment Re:Hmmm ... (Score 2) 755

its not compiler optimizations you're missing when you only learn java. Sure java does lots of stuff for you and does the "right thing" most of the time... But it doesn't teach you how things work at a low level. Learning only java doesn't teach you how indexes in a database work, because you just use Java's built in data structures that "just work" and you never have to learn how to manually build a b-tree. Which then teaches you how indexes work, and by deduction why its a bad idea to index every column in a database table. Yes, I once worked in a place full of java only programmers, they had indexed everything in the database to "make it faster" and were then completely confused as to why it wasn't faster. When I explained to them how b-trees (the database indexes were b-trees) worked, and how indexing in a database works in relation to that, they were actually pretty upset that in all the schooling they received no one ever explained this to them. They weren't "dumb" or "bad programmers", they just didn't know what they didn't know, once I explained it, they were very happy, willing to learn, and understand. For a couple of them it really opened their eyes and they'd come ask me questions regularly for the rest of the time I worked there... things like "I've always used java's built in sort functions, but why are they fast?".

Repeat above story for any sufficiently advanced data structure (linked lists, doubly linked lists, trees, queues, graphs, etc). Having a fundamental understanding of how the data structure works is imperative to being able to understand when its a good idea to use one, and when it will be an epically bad idea to use one. I learned these things in AP CS in high school which when I took it was c++. I "relearned" them again in c++ my freshman year of college, then the college changed to all java.... and I never heard mention of a data structure again, or for that matter an algorithm "Just use javas sort, its faster than anything you'll write"... Data structures and algorithms are still very important in web programming. Just cause you can get those 1.5 million rows out of a database doesn't mean you can effectively deal with that scale in code (much less 100 million or a billion records). I'm sure you can teach data structures and algorithms in java, my experience at a large state university though argues that java makes it too easy to gloss over the details... and so lots of professors will.

Comment Re:Bad Article (Score 1) 204

The space.com article still doesn't say why this is a concern, or even indicate that it is a concern.

Neither article states whether this is a normal phenomena either... I'd imagine the magnetic field of stars fluctuates, but maybe the solar system is about to lose its power source... I guess we'll see later today?

Comment These articles say the same thing. (Score 3, Informative) 475

Both the "Nokia is dead" and "Nokia will thrive" articles say the same thing. They only differ in whether or not the authors think Nokia will follow the strategy.

The first article says that Nokia should ditch everything and release 1 really nice WP7 phone. This article says its their only chance, but they won't do it because it is against everything Nokia has ever stood for.

The second article says they will become the exclusive WP7 shop. Maybe they'll have more than 1 phone, but they'll be the only WP7 game in town, and they'll make really nice integrated phones that provide a slick experience (ala Apple). This is exactly what the first article says they should do, article #2 just says he thinks they will be smart enough to take this route.

Slashdot Top Deals

Real Programmers don't eat quiche. They eat Twinkies and Szechwan food.

Working...