Forgot your password?

typodupeerror

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

by Yold (#43644217) Attached to: A Case For a Software Testing Undergrad Major

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

by Yold (#43296171) Attached to: Most IT Admins Have Considered Quitting Due To Stress

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

by Yold (#39972817) Attached to: Objective-C Comes of Age

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

by Yold (#39972671) Attached to: Objective-C Comes of Age

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

by Yold (#38585466) Attached to: IE6 Almost Dead In the US

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

by Yold (#37890930) Attached to: Student Loans In America: the Next Big Credit Bubble

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.

Comment: Re:Australia does a simple job here (Score 1) 768

by Yold (#37889790) Attached to: Student Loans In America: the Next Big Credit Bubble

Yea that's the way it works in the United States also... Student debts are not dischargeable through bankruptcy. Defaulting on student loans will make you ineligible for government employment, along with garnishments on wages, tax returns, and social security benefits.

I would be very interested to see what percentage of these debts are owed to for-profit institutions (e.g. University of Phoenix). Some of these colleges are owned by publicly traded companies, which provided ample incentive for unethical profiteering. There are colleges in my city that sell absolutely worthless degrees in media related fields, cosmetics, business, and healthcare that cost $60,000+.

If you can't make money, you can't repay debts (blood from a stone). It was a simple idea to follow in the U.S. until some schmuck decided to open for-profit colleges and game the system.

Comment: Re:Static Strong (Score 2) 482

by Yold (#37499130) Attached to: The Great JavaScript Debate: Improve It Or Kill It

How about a Javascript that's more Java-like?

Real private and public modifiers would be nice, but I wish people would take the time to understand why the LISP-like qualities of JavaScript make it awesome. I often find myself wishing that .NET and Java were more like JavaScript. To be an exceptional .NET or Java programmer, you need to know tons and tons of specifics about the language. To be a good JavaScript programmer, all you really have to understand are the concepts related to objects and scope.

I think Java and .NET are great enterprise languages for applications that are 10,000+ lines of code. But writing JavaScript in a message-centric fashion (think LISP or Objective-C) is very pleasing with it's terse expressiveness. The language is flexible, and works great for applications that are developed and maintained by one or two programmers.

But the end seems to be near for good-ol-JavaScript; I feel the same way that the LISP programmers must have felt when C and COBOL began to assert their dominance. I'm sad that this inefficient toy-language will soon be relegated as an obsolete and inferior language.

Comment: Would MAC address filtering counter this problem? (Score 2) 584

by Yold (#36746876) Attached to: The Wi-Fi Hacking Neighbor From Hell

What additional security measures can be taken to thwart script kiddies like this guy? Is MAC address filtering + WEP/WPA encryption (or one of those) sufficient security. At this point I want to shut the fucking WiFi off, but there are others in the household who wouldn't go for that.

QOTD: "When she hauled ass, it took three trips."

Working...