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

 



Forgot your password?
typodupeerror
×

Comment Re:Jobs must be rolling in his grave... (Score 4, Informative) 773

Apple has usually shipped the prior version of the iphone alongside their new version. When the 4S came out, the 3GS was the super cheap phone, and the 4 was discounted. When the 5 came out, it was the 4 that was super cheap (free with contract) and the 4S was discounted.

The difference now is that the iPhone 5 has been recast as the 5C, and is not shipped alongside the 5S. Instead, it is still a higher priced product, although not nearly as pricey as the 5S, and the 4S is free with contract.

TLDR: Apple has always shipped a "discounted" iPhone except for the original.
Hardware Hacking

Ask Slashdot: Projects For a Heap of Tech Junk? 210

yenrabbit writes "A friend has just told me he has 80 CRT TVs, a stack of DVD players and hundreds of VCR machines, all broken and all mine free of charge. I can already think of a few awesome components I can extract (flyback transformers for high voltage contraptions and so on) and have a few ideas, such as DVD lasers, that I can build. But what else can be made from such a treasure-trove of components, and how would one go about processing such a large volume of stuff with the least amount of effort? Also, I don't have access to online shopping so I'd also like a pain free way of salvaging many simpler parts such as resistors as well." Another reader sent in a similar question: "The other day I went down to my University's property disposition center for the first time. In addition to mundane things like chairs and desks, it also had a wealth of technological devices, from old PCs and monitors to obscure medical and chemistry equipment. Honestly, I was a bit overwhelmed. I just don't know what I'd do with a old gene sequencing machine or a broken oscilloscope. Any ideas for fun projects? Or better yet, suggestions on how I can figure out which machines (or their components) are worth playing with?"

Comment Re:Allah Akbar, Han Solo? (Score 1) 514

And here I was thinking that Jabba was a caricature of American politicians - fat, stupid, lazy, ready to kill on a whim, and unable to speak anything but nonsensical gibberish.

I would take it differently. Jabba was incredibly intelligent, fat, lazy and ruthless. You don't come to control a major criminal element without being intelligent.

Comment The second test is pretty bunk. (Score 1) 437

This is a really strange article. MVC vs. JSP / static content is not apples to apples, like the first test was.

When you return a view, it isn't static content. Making a call to a controller is also not the same as serving up an HTML page - the controller is instantiated, the action is invoked, and depending on the type of action, a model could be instantiated and bound. It isn't like creating a simple ASP.NET page that has "Response.Write" in the page load, since the ASP.NET page itself is much closer to what a JSP page is.

There isn't really a circumstance for static HTML in ASP.NET, since it all gets rolled into a Response.Write method in the end. I imagine a JSP page does the same thing, and on both ends, the resulting HTML gets cached. This would be the "optimization" he's witnessing from Tomcat. ASP.NET does the same thing.

You'd have to do some stuff in Java to get to the MVC level of complexity, and not just use Tomcat. Vanilla ASP.NET is a more appropriate tool for comparison. As noted in an above comment, you'd probably have to compare ASP.NET MVC to Spring.

Hell, classic ASP performs better than ASP.NET MVC.

Comment Re:blah blah Capitalism Evil blah blah (Score 1) 227

Wrong.

The regulation we applied to capitalism made higher standard of living for a population.

You might want to actually read up on capitalists.

"Tax payer money was wasted by loaning it to a business nobody else would touch." while true with studio 38, usually that isn't true. In fact, a lot of case it as helped. but success in government isn't really reported. You know why? it's not unusual.

I think the argument is more one of "should government be investing in not-for-public-use private entities?" rather than one of regulation. Regulation is setting boundaries for capitalism to live within - it's generally a good thing. Government investment in the private sector, however, is something that needs to be monitored. It makes sense when investing in private companies to the end of the public good (military spending, roads, "utilities"), but that's about it.

Comment Re:Ditching strong partners -- smart move! (Score 1, Troll) 172

  1. Company A supplies Company B with chips for Company B's products.
  2. Company A decides the money made off supplying parts is not enough and decides to compete with Company B directly by supplying products with very similar designs to Company B.
  3. Company B files suit against Company A for infringement.
  4. Company A insists they're fine, but doesn't realize a good chunk of business still comes from Company B
  5. Company B does the logical thing and divorces all business from Company A.

Samsung is not a victim, here. This is the logical conclusion of bad business done by Samsung. They could have done it differently, and coexisted with Apple. Now, they reap their reward. I don't really understand why this is so hard for the Android fanbois to understand.

Programming

Ask Slashdot: Do Coding Standards Make a Difference? 430

An anonymous reader writes "Every shop I've ever worked in has had a 'Coding Style' document that dictates things like camelCase vs underscored_names, placement of curly braces, tabs vs spaces, etc. As a result, I've lost hundreds of hours in code reviews because some pedant was more interested in picking nits over whitespace than actually reviewing my algorithms. Are there any documents or studies that show a net productivity gain for having these sorts of standards? If not, why do we have them? We live in the future, why don't our tools enforce these standards automagically?"

Comment Re:could be usefull for other things (Score 4, Insightful) 422

You've just suggested that an individual company be allowed to restrict the ability of some users to post whatever they want. Cue screams involving the first amendment and a /. article phrased as a question.

The first amendment doesn't apply to a company's ability to censor content on a site they own.

Slashdot Top Deals

The rule on staying alive as a program manager is to give 'em a number or give 'em a date, but never give 'em both at once.

Working...