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

 



Forgot your password?
typodupeerror
×

Comment Re:Bill by weight (Score 1) 819

Several problems here:

* I was comfortable in premium seating. Now I'm not. What gives?

* I'm 6'3. It's not a genetic anomaly. It's just 6'3.

* Airlines aren't required to guarantee seat dimensions. They can swap a flight out at any time. If there was an airline that was guaranteed to accommodate my height on every flight, you better believe I'd pay more but there's no guarantees in premium seating even if you're willing to spend the absurd amount more for what is often only a marginal upgrade.

* 6'3 doesn't mean I'm rich.

* It does mean I'm probably bigger than you. A lot bigger than you judging by your self-evident short-guy complex.

* But if it means I am in fact among the larger customers AND I statistically have more money to spend, why do you or the airlines want to piss me off?

Comment Re:Cheapest Ticket (Score 1) 819

I've been on flights so uncomfortable, I'd rather they just tell me I don't want to be on that plane by telling me they can't accommodate me. Because then we're having an honest conversation about my money and whether they want it and I don't have to go through 4-12 hour torture to figure out that they just wanted it once.

Comment Re:Anthropometrics (Score 1) 819

I'm 6'3 and you'd whine once I got my steel-toed butt up your ass and left it there for an hour which would about equal the discomfort I encounter even before the jackass in front of me reclines his seat into my knees. I get it. We can't support every possible body type or it would get expensive but dude, I'm 6'3, not Andre the Giant. Flights were actually quite comfortable for me for a few years there but very recently they have been ridiculous. Now I try to find Airbuses, exit rows, or I don't fly at all. It's been a while but I've never been uncomfortable on an Airbus. Perhaps French design doesn't accommodate American abuse in regards to minimum seat-spacing.

Comment Re:Not that simple (Score 1) 294

Ironically a lot of JavaScript developers would tend to agree with a lot of your points. When you come to programming writing code for six to 20ish at least mildly disagreeing interpreters of the very code you're writing, many of them with their own proprietary versions of an essential API, you develop a healthy respect for reducing baggage, avoiding needless dependencies, and thinking very carefully about how to keep your code legible and easy to modify. I absolutely think over-reliance on IDES/tooling to read and fix the code for them has made a lot of Java and C# devs weaker programmers than they could be and that a side benefit of being able to execute code instantly is that JS devs were less interested in tools that did the work for them. I actually had a guy on StackOverflow tell me to stop joshing about actually writing reusable/portable code as if he couldn't imagine somebody doing something loosely coupled enough to make that possible no too long ago.

But don't be too quick to get on that garbage collection bandwagon. In many ways, the more dynamic scripting languages, JS in particular IMO, are closer to C in spirit than C# or Java because they are (JS in particular) informed by a design philosophy that doesn't give a rat's ass about protecting you from yourself or any B-grade programmers on your team. It is exceedingly flexible, will let you do spectacularly awful things to yourself and you get burned. And you learn. And you stop. And it happens pretty fast. What a concept. Power, flexibility and willful incompetence either adjusts or will want to show itself the door. I don't ever want it any other way. One of my favorite frameworks hinges on the concept of matching URLs with regular expressions. It's amazing how many useless jagoffs that knowledge requirement eliminates.

But there's really not much in the way of limits on performance in a language like JS or Python where you can very easily bind to C or C++. IMO, it's the perfect combination. All the higher level concepts and flexibility to build APIs that help you keep things lean and understandable and easy to modularize/reuse with all the performance you need when it becomes critical. I'm still a rank noob at C/C++ but the more I read up on C the more of a natural fit it feels like in tandem with JS. I couldn't write a maintainable app with it and I wouldn't have the first clue how but the JS, IMO is probably better suited to gluing things together. Or at the least I seem to have a hell of an easier time of it than the Java or C# devs and those were supposed to have an easier time of it than C/C++ but mostly I think they wandered off of that path and landed in this weird place where it was more about making sure you could still pull things off that were adequate with a bunch of mediocre programmers. And gee didn't that set the bar high. Most Java web devs at the median skill-level can't even be bothered to learn HTML.

I'm definitely not sure what you mean by large projects though. Do you mean like say... OS/2? Okay, maybe that was cheap but MMOs are certainly large projects. Windows finally got a near-total rewrite. Complex applications are constantly producing new versions with new functionality. The folks in Silicon Valley are doing very complicated things with very large sets of data nowadays. Larger, complex apps might be less representative in this latest technology explosion but I doubt there's fewer of them per capita than there were in your day.

Just because smartphones and the web have made smaller projects much easier to distribute, market, and profit from, doesn't mean people forgot how to write larger, more advanced apps, or got any less worse at making complete disasters of them for that matter. One thing I would say has dramatically improved is turnaround time on the UI side of things. With web technology and many other mostly-non-Java solutions we can knock out robust GUIs almost instantly compared to what I've heard from more veteran devs I'm friends with from the late '80s and '90s..

But seriously, if you still code for interest, give the JavaScripts and the Pythons a chance. You might find them surprisingly agreeable.

Slashdot Top Deals

You knew the job was dangerous when you took it, Fred. -- Superchicken

Working...