Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:Blatant Shill (Score 1) 99

Woah, can't believe anyone else knows about Arc. I was one of the unfortunate few that had to use it for a regression class in college. The language is used in the textbook Applied Regression including Computing Graphics. Since the professor also wrote the textbook and Arc has strong ties to my alma mater, I figured they just had blinders on since the rest of the statistics world was already using R.

If you are interested in trying this (awful) software out for yourself, it is available for download here http://www.stat.umn.edu/arc/software.html.

Comment Re:Questions (Score 4, Informative) 115

It runs OK (google Chrubuntu), but the WiFi and trackpad drivers were so finicky that it was a deal breaker. ChromeOS actually is a stripped down version of Linux, which means that you can actually run a full-blown linux desktop along side it via Crouton (using a chroot). If that sounds tedious, it is actually fool-proof to install.
Since the trackpad and WiFi drivers are still handled by ChromeOS (again, a linux kernel), it works great! If you are looking for a good linux laptop, I'd highly recommend it, especially if price and battery are your two main considerations.

 

Comment Pretty darn useful little machines (Score 5, Interesting) 115

I recently replaced my MacBook Air with a Acer Chromebook refurb I picked up for $150 on ebay. It is an awesome portable dev machine. Good battery life, and Crouton is incredible. You can run Linux and ChromeOS simultaneously (via a chroot); it makes switching between the a matter of two keystrokes. I never thought I'd actually like ChromeOS, but it's actually pretty slick.

Comment Not what university education is about (Score 2) 220

Universities are not technical schools. Ideally, they provide a broad theoretical framework that allows people to develop a career over the next few decades following their graduation. What the article is suggesting is that people be forced to pay for narrow training, pigeonholing them into a career path which may or may not exist (or be practical) in 20 years.

University education is meta-education. It enables life-long learning. Businesses expecting fresh graduates to have received (and paid for) training in technology-dejour is a disturbing trend in the software industry.

Comment Re:Rapid change in IT is the problem (Score 5, Insightful) 397

It's not a matter of maturity. Many organizations hide behind the disclaimer "we are not an I.T. company", despite having sizable I.T. departments. And despite having this sizable department, which offers mission-critical applications and infrastructure, zero effort is made towards working smarter. Problems are fixed with mandatory overtime, cutting staffing/costs, and "quick-and-dirty" fixes to long standing problems.

I think some companies are starting to understand that their project management methodologies are flawed, but most cannot connect the concepts of "software debt" to decreasing marginal output in their I.T. efforts. An hour of work today is less effective than in the past because you are paying "interest" on your previous bad decisions.

I think that the 27% is reflective of companies that can connect the longevity and cost-effectiveness of I.T. systems to proper project planning, management, and I.T. expertise. Whether or not this is an upper-bound remains to be seen, because a lot of organizations simply don't understand that inventing your own project management ideas dooms you to repeating the same failures that have happened over the last 50 years.

Comment Re:Yes but (Score 1) 437

Objective-C usage is based on Vendor lock-in

You can write Objective-C on Linux and Windows, it's fully supported by GCC. You meant to say Cocoa. There is no reason why you can't write a QT GUI, or WinAPI application using Objective-C.

Windows is not tied to a language

But the .NET managed code environment, which is essentially MSIL (a language), certainly is tied to Windows. Most new Windows applications are written in .NET, which creates the same vendor lock-in problem you are trying to bash objective-c for. Mono is too incomplete to count, I'd imagine it lacks support for WPF, WCF, and other emerging .NET technologies.

Comment Re:New features (Score 2) 437

It's still too verbose

Fixed that for you. For the uninitiated, trimming a string is as simple as

NSString *s = [stringToTrim stringByTrimmingCharactersInSet: [NSCharacterSet whitespaceCharacterSet]];

The way the language functions is beautiful, but they seriously need to get rid of stuff like this.

Comment Re:A cheer goes up (Score 1) 335

With CSS, I have to constantly have a seperate page open containing the CSS, and its not inherently clear in the HTML how things are being laid out on the page.

Yes that is the point, to separate layout (styling) from semantics. Use a <style> tag if it bothers you that much.

I think CSS makes sense as a concept, but learning it is really quite annoying for the most part.

FTFY. I work with developers who share your sentiments. I also feel like bashing my head into my desk when I work on the mangled, crufty, mess of nested tables that has been globbered together over 7 years. I will definitely agree with you that CSS is a pain in the ass to wrap your head around, but it really doesn't take much more than a basic understanding of margin/float/display/padding to do about 90% of layout work.

I prefer tables as development time for a page was easily 20x faster for me

It cuts the amount of code required by at least a two-thirds. <table><tr><td>Foo</td></tr></table> is more typing than <div>Foo<div>

Comment Re:Who says there is a loss? (Score 5, Insightful) 768

Interest is not purely profit. Interest is designed to offset inflation and the other ways you can spend your money. If I owed you $81,000 would you prefer that paid as a lump sum today or paid as a 0% interest loan over 25 years ($3,2400 /yr)?

So in order to make $100,000 today equal to $100,000 in 25 years, we need interest (at least to cover inflation). So for the purposes of this loan $100,000 (at time 0) == $181,000 (at time 25). In addition to the interest, you pay portions of the $100,000 you borrowed. Each payment of $687 is an uneven mix of Interest payments and Principal payments, the ratio changes as the loan approaches time 25.

So if you stop paying halfway through the loan, you may have paid in total $100,000 (combination of interest and principal). But $100,000 (at time 0) is less than $100,000 (at time 25), the lender loses money.

Slashdot Top Deals

Those who can, do; those who can't, write. Those who can't write work for the Bell Labs Record.

Working...