Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:One change (Score 2) 453

i had the same thought... and yes i really do hate the lack of sd card on nexus devices (though for other reasons)... however, for media a better choice is actually a usb otg adaptor - you can generally get faster, cheaper and larger storage on the end of a usb stick then you will in a microsd card and while a bit larger, they're not inconveniently so (imho)...

Im loving my nexus 10, i really wasnt expecting to cause the reviews have been iffy at best, but it really is (to me) exactly what i've wanted in a tablet for a long time.

But like you, i do despise the nexus range for its "no-sd-card" policy and its been (so far) my only real gripe with the entire nexus lineup.

Comment Re:IPV6 NAT'ing support also added (Score 2) 151

NAT is and never was a stupid hack, people make the assumption it stemmed from the exhaustion of ipv4 , but that isnt true... as many people do, you've made the same invalid assumption as everyone else - and thats not meant to be an insult, just a fact of life. The reality is is that we've been working with nat so long that it really doesnt break much any more, and that which it does is work-around-able. Personally I come form the corporate enterprise world and nat is and always will be a reality there (for many reasons)... When you consider the various grades of people that use the internet (home users, geeks, corporates and ISPs, etc), everyone of them has no reason to fear nat, and ipv6 wont change anything about that... IPv6 wasnt designed with any notion around "lets make something that gets rid of nat", not even close. It certainly was intended to make the address space larger, but it wasnt aimed at nat.

The only diff between me (as a network engineer) and many other enterprise grade guys like me is that im dumb enough to say "nat is important, it has a purpose and i do like it" where most aren't dumb enough to say that on slashdot where the various puritan opinions will inevitably turn me into a troll.... which im really not meant to be...

But the fact remains - nat has a purpose, a valid purpose and it will be here forever.

Consider though - just because something is abundant, doesnt mean its necessarily available to you. By that I mean if your ISP decides to only give you one dynamic ipv6 /64 subnet, what then? most home consumers wont notice, but a networking nerd like me? well... there are lots of arguments you could enter into here like "find a new isp" - none of which are worth having. But a brief tour of the nasty things ISP's (not all) have tried to do to make a couple of extra dollar's would probably give a few hints as to why ipv6 nat (and its implementation in linux) is very very important.

You could also go and get a CCIE or JNCIE and start working in the corporate enterprise juganaut world for a decade and i guarantee when get to the end of that you'll change your tune....

Comment IPV6 NAT'ing support also added (Score 1) 151

IMHO, this is one of the more important features added in 3.7. People will hate me for saying it, but I personally love NAT and was really disappointed when initially the line was "we will never do ipv6 nat in the linux netfilter components".

But, thank god someone came to their senses.

Comment Re:The MS Strategy: be like apple. (Score 1) 712

Its not the pay to play model that is bothersome, this is nothing new to MS (or many companies)... MS are experts at licensing schemes that ensure they rip as much cash out of people as possible, and they've gotten better at that over the years... i.e. licensing to the nth degree... for example, you used to buy a copy of exchange, then you bought a license for exchange, and these days you buy a license for so many different parts of exchange including per-client licensing...

Thats all nothing new and the pay to play model is noting new either. Though, the idea that people will only get software from a MS controlled central location (such as what occurs in the smart-phone application market model) would certainly take pay to play to a new place MS havent been before (in that they'd be tearing money out of developers of MS-targetted software in a direct, "get a percentage of their profits" way).

If anything, i'd say the media industry learnt from software licensing, not the other way around...

My reference to the MS strategy is simply "bring out something new every year and stop trusting your users"... i.e. walled garden and new varnish on old technology.

Comment The MS Strategy: be like apple. (Score 3, Insightful) 712

Its a shame that MS seem to feel they have only one option now... "be like apple".

Half the reason they thrive so well in corporate-enterprise-juganaut land is simply because they aren't apple and dont behave like them. A release every year is going to be an utter nightmare for a decent sized enterprise, but i guess it depends on what "next version" really means. Is it going to just an incremental update similar to what service packs used to be? In which case, the actual OS update will probably less painful, but there will be pain to be had in other places (namely licensing).

I really wouldn't be cheering for this idea if i were in a corporate desktop support role, thats for absolute certain.

Even given the job that i do (which falls into the systems integrator role), it doesn't sound good... whats it going to mean for certification? oh the pain.... then that comes with its own set of licensing nightmares (the SI role).

Still, as a linux-lover, i can only say "i love where apple and MS are taking their OS's because they seem to be working very hard to make linux as attractive as possible".

Comment Get a Wii, but... (Score 1) 267

I would rule out the 360 for the simple reason that the difference between the ps3 and 360 for what you want is very slim, your not going to get many games on a 360 that your 9yr old will enjoy that arent also already available on the ps3. Ultimately you'll have another console, but it'll just be different, not unique really. Kinect can be kinda fun, but its a limited experience in many ways.

If you want to buy something, the Wii is the best choice. You'll find alot of good games that will appeal to a 9yr old. Games the whole family can get in on and are only available on the Wii. Its a very family focused entertainment console and you'll get quite a number of hours of enjoyment out of it. On top of all this, the Wii is cheap and second hand games for it are (not yet) hobbled by scum-sucking games developers who seem to think they have a right to make money on a second hand game.

The Wii U looks ok, but its hard to really make a knowledgeable choice about it just because of the limited info available for it.

Im trying hard to stick to the question and not say things like "you could get another console, or...."

Comment Re:What's the clear advantage of LLVM? (Score 1) 360

Its not necessarily about an advantage of either really.. clang/llvm is really more about modularity and focusing on a more flexible toolchain.

As an example, if you want to compile from c-> binary in linux, theres quite a command path depth to it (i.e. multiple processes take place in serial to eventually produce a binary). The problem with gcc is that the code has become messy and its modular approach doesnt really help when it comes to adding a new language or a new target (i.e. F# perhaps, or ARM as a target). It also carries alot of legacy cruft with it that has been there since the dawn of time.

Ultimately when you do want to add a new language or target, you almost end up re-writing the entire gcc stack which is quite painful.

clang/llvm is really about getting rid of that pain with a more modular approach so if you want to add a language or a target, you just focus on your goal not the entire toolchain. As a Plus, its also gotten rid of some of the antique cruft which is at least part of the reason its often faster. IMHO - its faster in some situations, but not all.

None of this really matters much to the end user (except perhaps the speed bit)... What does matter (and what you will care about) is as clang/llvm matures you'll find developers more likely to target clang/llvm for compiler toolchains with new languages or targets.

The other thing you might care about as well is that its better with errors, they are alot clearer and more useful and for that see http://clang.llvm.org/diagnostics.html however, that only extends to clang really.

Comment Personally at work for small things... (Score 2) 320

I personally hate and despise people who put non-rackmount kit in racks...

We use various devices.. mostly all 1ru servers of various configs... for eg there are a couple of mini-itx 1ru servers we have that have e350 based mini-itx boards (i really love the e350/e450 boards)... not quite as cheap as the hp n40 microserver, but at least its a rack format.

Then we have a few that run virtualisation here and there for some tasks using kvm (some of those too have e350's in them as the e350's do have the virt'n extensions unlike the intel atoms)... we also have a few that run intel based i3/i5/i7 mini-itx boards... they're quite nice when you need some extra grunt...

some others are based on super micro boards as well though (which are quite cheap and run core i3/i5/i7 cpus rather the xeons). Then some others are old 1ru xeons we no longer need for server tasks...

Comment A REALLY cheap one, with linux support (Score 4, Informative) 74

I have a CHEAP digital pen (cost me 25$) called the "greenpoint mobile notetaker" (which i think is a pegasus notetaker rebadged).... its ultra simple. it works under linux and what the linux software gives you is a simple svg map of what you drew on a piece of paper. Its just a normal pen with a little tracking unit that somehow tracks everything you write... I dont use it too much, but the times i have its not failed me so far.

http://scratchpost.dreamhosters.com/software/Pegasus_Notetaker/ will pull svg's from the pens tracking device thing

but it looks very much like this http://www.gadgetvictims.com/2009/12/digital-note-taker-pen.html

I find it works ok, but i've not really used any other digital pens, so i have no point of comparison - but at 25$ (which was on sale at the time) i just went "sure why not" and later found out it supported linux (which was a nice surprise).

I had previously looked at things like livescribe and went "no linux support, wont bother". There are one or two i can see on aliexpress http://www.aliexpress.com/item/Free-Shipping-USB-Digital-Pen-Digital-Mobile-Note-Taker-Digital-Handwriting-Capture-Device/519494331.html but i dont know if they're based on the same thing (and they're twice the price i paid) and hence will still support linux

Comment In Enterprise SAN kit.... (Score 1) 510

i've seen many ssd's die in enterprise SAN kit and will even go so far as to say as a percentage they die far more often then spinning rusty metal.

However, this is because of how they are used in SAN. Often they are used in a multi-tier way, where most frequently accessed data is pushed up to the SSD's to allow quick access, so they get hit the hardest.

I would be guessing your asking this question simply cause its easier to understand why a part-in-motion can slowly die over time where something thats in silicon shouldnt. You'd probably be surprised to know that alot of drives die a controller death, not a platter/motor death. Typically a platter/motor death usually means a badly made drive (mostly because makers of spinning rusty metal have gotten very good at the mechanics behind them) and while the mechanics in a drive will slowly wear over time, typically something silicon in the controller goes first. The exception to that is where drivers are physically in motion not of their own (i.e. laptops for example), often then the drive shaft in the drive itself starts to get wear unevenly and that usually gets worse over time (or at least, this is what i've been told).

Some SAN makers will even put hdd's through their paces first to make sure they actually perform ok - for eg, they'll measure vibration, etc (i.e. the mechanical components) to make sure a drive is up to spec before it goes into their kit - they cant really do the same as easily with silicon as theres not much to work off that can be measured - so often in enterprise grade SAN's, silicon dies before mechanical.

http://www.makeuseof.com/tag/solidstate-drives-work-makeuseof-explains/ is a fairly good explanation of why ssd's die (and relavent).

Having said all that, i honestly cant wait for the death of spinning rusty metal for the simple reason that ssds should (and havent yet) taken on forms which would be much more useful - why use a sata 2.5" format when you could have much better geometries for example? Then theres the interfaces we use where were really designed with hard drives in mind... but thats an entirely different issue.

As for "if its all the same, why doesnt it die at the same time?"... because at a fundamental level, it isnt the same. When we make anything no matter what it is it, the materials go thru some form of refining process where impurities are removed. Its impractical and near impossible to get anything 100% pure (not to mention entirely uneconomical - you might pay $1/tonne for 90% pure iron and $100/tonne for 91% pure iron as an example). The nature of where we get those materials often means the impurities vary greatly in composition in small spaces of time, hence why two hdd's sitting next to each other on the assembly line might mean one will die after 2 days and the other will die after 200 years. Theres also other components to this in that if you looked at iron (again an example, but true of most metals) under a microscope you'd find that it isnt a uniform substance, its quite grainy so to speak and those grains vary considerably. This too impacts the nature of the substance and its longevity. Using iron as an example, when its cooled its very hard to get a truly consistent cooling of it across the entire piece and the cooling determines how those grains form - i.e. grains in the center of the material will be quite different to grains at the edge and so forth. Thats just a small number of things that explain why consistency isnt quite as 100% as it might appear to be on the surface, there are quite alot of factors that come together to effect materials we use. Ultimately the way we choose the materials we produce things with is by tolerance, i.e. i expect 99% of my metal you sell me to fall into 90% pure and have x tensile strength or any number of variables you might consider important to your manufacturing process but even then its never 100%, you always except at some point that you'll get raw materials that'll fall outside those tolerances and as with everything on the planet its a trade off between price vs quality!

Comment Understandable... however... who's next? (Score 1) 1199

At first i was curious why, but when it comes to the insurance side of things its makes alot more sense...

However, how long until this starts impacting everything you do... obviously in this case things that kill you out-right arent a problem for insurance companies (i would assume). But consider the possible outcomes of such a thing on the following activities:
- scuba diving
- riding a motorbike
- sky diving
- driving a car
- using a 3d printer (printing in abs for example produces bad fumes, depending on what you want to believe)

They are just random examples but all of these have a potential to mess you up in some nasty ways, and in some cases your more likely to end up damaged by them then by smoking (i know a few people who sky dive and not one of them hasnt had some injury thats put them out of action for a reasonable period of time). So before you cheer what appears to be a win for the non-smoking consortium, consider the potential damage to your own after-hours hobbies. i.e. anything an insurance company can say is a "risk" is a potential "sorry, we cant employ you" and that is a rather worrying outcome.

Comment Its a tool for abusing... (Score 1) 315

the general role of any company these days seems to be to be able to hide from any form of moral behaviour... the larger the company the more likely they are to behave "within the law" but despicably so. Essentially running a company means you can abandon any form of ethical or moral behaviour - and apparently that's fine.

Patents are a good example of that. They should foster innovation, but they dont for so many reasons. Take apple for example "slide to unlock", "searching the phone AND the internet" these are not innovation, they are simple ideas anyone could have come up with from 5 minutes in front of a phone and yet apple patent them because they can and it gives them leverage to abuse everyone else. In just about any other part of society that kind of behaviour would be considered highly corrupt, yet when it comes to company ethics well there are none and so things like this happen. The criteria for "invention" have become so unbelievable low that simply 3 lines of code might be considered invention if you spin it the right way - for a company this is acceptable, but not from an ethical perspective.

The reality is the patent system should award innovation, but all it achieves is a platform for abuse. From that point alone it probably deserves to die. The problem is that it really wont change much, will apple (and others) suffer terrible losses (which imho, they deserve) from the loss of the patent system? no, probably would work in their favour. Sure they do have patents, but without patents they wouldnt have to pay smaller people for the inventions they license (assuming they do). It might mean people like samsung could take what they want from anyone, copy it, the mass-market it more effectively and just destroy people. That too is wrong.

Sadly, if I working alone came up with some awesome bit whatever that really was "innovation" and "invention" i'd probably end up abused for it. Some large company would simply realise that as a singular individual i probably wouldnt be able to defend myself from their battery of lawyers and so i'd get destroyed anyway. So with or without the patent system, your kinda screwed anyway.

But then having said all that, isnt this exactly what the american capitalist ideal is all about anyway? So perhaps from an american perspective, this is exactly what the patent system was setup to achieve and its doing a great job. I personally just cant see how people can look at the things apple, microsoft, and many others have patented (and used against people) and go "yeah, thats innovation and invention". Its kind of pathetic really.

Comment my first thought.... (Score 1) 182

For some reason the first thing i thought of was this:

http://xkcd.com/927/

Which is only partially true... but lets face facts, there is a TONNE of old doco out there that'll depend on outdated AU measurements, so for decades astronomers will still be going "which AU unit are they using" (something engineers still deal with on a daily basis)

Slashdot Top Deals

To do nothing is to be nothing.

Working...