People always hold Bash up as the pinnacle of shell scripting capabilities. Those people should try ksh93 sometime. The ksh coprocesses are really nice, and with ksh93 you get things like variable namespaces, keystroke bindings, good performance (it's actually faster running shell scripts than most other Bourne shells), and the ability to load in C-compiled modules (and shell functions) at runtime. So you can do stuff like writing a simple LDAP module in C which exposes functionality as native shell functions; most of the slow in shell scripts comes from having to fork and exec external programs repeatedly; if you learn how to use the string manipulation stuff, control $IFS and use read, and learn arrays, you can do amazing stuff with pure shell. Bash has cool stuff, too, but it's all (aside from some near-worthless things like that really annoying >& redirect Bash has) in ksh93 as well. I've personally written some multi-thousand line programs with the Korn shell which can get performance on-par with well-written Perl programs.
Anyway, AT&T put ksh93 under a decent license, so most distros actually have a good korn shell available now (pdksh is *not* a good Korn shell). It's worth trying out for shell scripts. Bash maybe has the upper hand in interactive use due to programmable completion, but then zsh comes along and beats Bash for that too. Besides, Bash's vi mode is awful.:)
Regarding perl's complexity and tendency for errors, every perl script under any kind of development should have "use strict; use warnings;" at the top, and should have "perl -c" run repeatedly until it doesn't complain at all.;)
All they need to do is come read Slashdot - everyone here knows exactly what's wrong with all the desktop environments. I guess everyone here took that one-hour UI course.
You listed the options backwards. Most UNIXes (you might be shocked to find that Linux isn't the only Unix variant people use) do not ship with Python, and I do everything I can to avoid having Ruby installed on even my Linux systems. And while I love perl, you are the first person I've heard describe its syntax as sane.:)
Because everyone is exactly the same everywhere under all circumstances. Now pardon me while I go drive my 534 flywheel horsepower truck to the grocery store - we're out of cranberry juice.
Are you actually trying to have a serious argument about whether or not "legalize it" would save crackheads money? That wasn't a serious comment, but, well, OK.:/ Accepting that this is now a valid, let's consider that the price of a dime bag does not currently include the cost of keeping prisons open, so we can ignore that (and the cost of retraining police to focus on other ways to harass people) until the discussion inevitably shifts to the cost to society. The proposed taxes would make things more expensive to the consumer, not less. Paying inspectors is also something that would increase the cost of production and the cost of a product. And enforcing cleaner production methods would also cost more, which gets passed along to the customer.
So, those are all good arguments that the price will increase. Now try making some that the price will decrease.:) Hint: decreased importation costs would be a good one. Volume production without having your factory blown up or burned down every few years would also be a good one.
The price would still be astronomical, but if they were legal it'd be because of all the lawsuits people would bring due to all of the side effects of things like Cocaine or Meth or whatever / all the extra regulation that'd go into their manufacture. Mary Jane may be pretty much fine, but the bulk of the others are not just illegal; they're super bad for you in any kind of fun quantity. And right now they can be made in the bed of a pickup truck by a guy losing hair into the mix; it'd cost a tad more to make if you required even minimal things like "a building" and "hair nets".
I'd honestly bet that illegal drugs legalized and regulated would very likely cost the same or more as now.
I meant easier for the government. I pay taxes on/my/ income, so I'll be damned if I'm gonna leave cash for a waiter just so he can cheat on his. Waiters can just learn to cheat their taxes through abusing the complex tax code like the rest of us.
Depends on the restaurant; some place have each server log in and take the cards so the tip definitely goes to the right place - and their taxes are easier. Other places, where they just have the cheap card reader separate from the register, may not get stuff properly distributed.
120 Amps? What kind of little girl's car do you drive? The [admittedly oversized] battery in my station wagon is rated at 1200 cold cranking amps / 1350 cranking amps, and even the smallest car batteries are in the 500-600A range. You're more in-line with the puny little battery in my motorcycle.
But yes, with a sweaty arm leaning on the positive terminal you can get a minor tingle.
If only there was some sort of Interface, perhaps one which used a Common Gateway, through which web pages could communicate with a server.
Logic doesn't have to be on the client side. In fact, given that web apps are usually called "thin clients", the work should be done on the server side.:)
As if accessibility is the only thing people don't do which are actually easy. Standards compliance, interface adherence, etc - these are all things that your typical half-ass developer screws up, either because they're lazy or they don't know about those things. Accessibility probably falls into one of those two things way more often than bloat - particularly considering how many programs don't care about efficiency either.:)
I hated PLATO (which was, to be fair, most likely actually hatred for the garbage content which poorly used the system), but I remember being amused by AIDS.
My school didn't have any kind of advanced classes. Through 6th grade, we just had "classes". Starting in 7th grade, we had "dumb" and "not as dumb". I had the outstanding opportunity to study in the less dumb courses. When I got to college, I heard people talking about AP courses and such, and it took me a while to finally put together that these were advanced courses that some schools offer; it's not like anyone ever explained what they were, since most people were from places with larger populations (obviously) and just assumed that everyone knew about these things.
Meanwhile, in college I learned just enough to be able to better identify what I don't know. That's what I got out of college - practice locating information which can start actual learning. Too bad they don't just offer that for a couple of semesters instead of demanding that you slog through the crap they feed people for 4-5 years.
Ok, that'll be just fine by me. I don't care how much fun some people I don't know are having while they play a game, nor do I care which of those people wins the game.
Please stop using the term "throwing your vote away" - that's a self-fulfilling prophecy, and people who believe that are the reason we have the problem we currently have. Damn it, nothing gets done when people think that the most important thing is making sure that they vote for the person who wins.:)
Every vote counts, even if you're not Kevin Costner in that stupid-ass movie (Swing Vote?) from last year. But please vote as if you are.
Facebook does have the capability to do grades. You can create groups, and set up permissions based on group membership. I do it with a couple of groups - mostly to segregate some information from friends I'm not that close to or who I know are computer illiterate and will get every possible virus.
Actually, the point was that the people who are 20 now are overall too lazy to actually get out and vote; the only way they'll change things is if they can stay at home and click buttons, etc. I figured that surely someone with a handle of TheOldFart would catch that.:D
Plug it in, and start writing up that seatbelt ticket. In 1.5 minutes, you've got all the data and can peruse it later.
People always hold Bash up as the pinnacle of shell scripting capabilities. Those people should try ksh93 sometime. The ksh coprocesses are really nice, and with ksh93 you get things like variable namespaces, keystroke bindings, good performance (it's actually faster running shell scripts than most other Bourne shells), and the ability to load in C-compiled modules (and shell functions) at runtime. So you can do stuff like writing a simple LDAP module in C which exposes functionality as native shell functions; most of the slow in shell scripts comes from having to fork and exec external programs repeatedly; if you learn how to use the string manipulation stuff, control $IFS and use read, and learn arrays, you can do amazing stuff with pure shell. Bash has cool stuff, too, but it's all (aside from some near-worthless things like that really annoying >& redirect Bash has) in ksh93 as well. I've personally written some multi-thousand line programs with the Korn shell which can get performance on-par with well-written Perl programs.
Anyway, AT&T put ksh93 under a decent license, so most distros actually have a good korn shell available now (pdksh is *not* a good Korn shell). It's worth trying out for shell scripts. Bash maybe has the upper hand in interactive use due to programmable completion, but then zsh comes along and beats Bash for that too. Besides, Bash's vi mode is awful. :)
Regarding perl's complexity and tendency for errors, every perl script under any kind of development should have "use strict; use warnings;" at the top, and should have "perl -c" run repeatedly until it doesn't complain at all. ;)
All they need to do is come read Slashdot - everyone here knows exactly what's wrong with all the desktop environments. I guess everyone here took that one-hour UI course.
Because I don't want to pay for more RAM in my device just because you're too lazy to use the right tool for the job? :)
You listed the options backwards. Most UNIXes (you might be shocked to find that Linux isn't the only Unix variant people use) do not ship with Python, and I do everything I can to avoid having Ruby installed on even my Linux systems. And while I love perl, you are the first person I've heard describe its syntax as sane. :)
Because everyone is exactly the same everywhere under all circumstances. Now pardon me while I go drive my 534 flywheel horsepower truck to the grocery store - we're out of cranberry juice.
Specifically in "fun quantities" as I mentioned - a glass of wine with supper isn't "fun" - it's just good. ;)
Can you find the place where I suggested that alcohol was good for you? :)
Palm Pixi; iPhone is too manly of a name for me. :) And, now that I'm on a real computer, I will need to bookmark that image. :)
Are you actually trying to have a serious argument about whether or not "legalize it" would save crackheads money? That wasn't a serious comment, but, well, OK. :/ Accepting that this is now a valid, let's consider that the price of a dime bag does not currently include the cost of keeping prisons open, so we can ignore that (and the cost of retraining police to focus on other ways to harass people) until the discussion inevitably shifts to the cost to society. The proposed taxes would make things more expensive to the consumer, not less. Paying inspectors is also something that would increase the cost of production and the cost of a product. And enforcing cleaner production methods would also cost more, which gets passed along to the customer.
So, those are all good arguments that the price will increase. Now try making some that the price will decrease. :) Hint: decreased importation costs would be a good one. Volume production without having your factory blown up or burned down every few years would also be a good one.
The price would still be astronomical, but if they were legal it'd be because of all the lawsuits people would bring due to all of the side effects of things like Cocaine or Meth or whatever / all the extra regulation that'd go into their manufacture. Mary Jane may be pretty much fine, but the bulk of the others are not just illegal; they're super bad for you in any kind of fun quantity. And right now they can be made in the bed of a pickup truck by a guy losing hair into the mix; it'd cost a tad more to make if you required even minimal things like "a building" and "hair nets".
I'd honestly bet that illegal drugs legalized and regulated would very likely cost the same or more as now.
I meant easier for the government. I pay taxes on /my/ income, so I'll be damned if I'm gonna leave cash for a waiter just so he can cheat on his. Waiters can just learn to cheat their taxes through abusing the complex tax code like the rest of us.
Depends on the restaurant; some place have each server log in and take the cards so the tip definitely goes to the right place - and their taxes are easier. Other places, where they just have the cheap card reader separate from the register, may not get stuff properly distributed.
Isn't it past your bedtime, Grandpa?
120 Amps? What kind of little girl's car do you drive? The [admittedly oversized] battery in my station wagon is rated at 1200 cold cranking amps / 1350 cranking amps, and even the smallest car batteries are in the 500-600A range. You're more in-line with the puny little battery in my motorcycle.
But yes, with a sweaty arm leaning on the positive terminal you can get a minor tingle.
If only there was some sort of Interface, perhaps one which used a Common Gateway, through which web pages could communicate with a server.
Logic doesn't have to be on the client side. In fact, given that web apps are usually called "thin clients", the work should be done on the server side. :)
As if accessibility is the only thing people don't do which are actually easy. Standards compliance, interface adherence, etc - these are all things that your typical half-ass developer screws up, either because they're lazy or they don't know about those things. Accessibility probably falls into one of those two things way more often than bloat - particularly considering how many programs don't care about efficiency either. :)
I hated PLATO (which was, to be fair, most likely actually hatred for the garbage content which poorly used the system), but I remember being amused by AIDS.
My school didn't have any kind of advanced classes. Through 6th grade, we just had "classes". Starting in 7th grade, we had "dumb" and "not as dumb". I had the outstanding opportunity to study in the less dumb courses. When I got to college, I heard people talking about AP courses and such, and it took me a while to finally put together that these were advanced courses that some schools offer; it's not like anyone ever explained what they were, since most people were from places with larger populations (obviously) and just assumed that everyone knew about these things.
Meanwhile, in college I learned just enough to be able to better identify what I don't know. That's what I got out of college - practice locating information which can start actual learning. Too bad they don't just offer that for a couple of semesters instead of demanding that you slog through the crap they feed people for 4-5 years.
Ok, that'll be just fine by me. I don't care how much fun some people I don't know are having while they play a game, nor do I care which of those people wins the game.
Please stop using the term "throwing your vote away" - that's a self-fulfilling prophecy, and people who believe that are the reason we have the problem we currently have. Damn it, nothing gets done when people think that the most important thing is making sure that they vote for the person who wins. :)
Every vote counts, even if you're not Kevin Costner in that stupid-ass movie (Swing Vote?) from last year. But please vote as if you are.
Facebook does have the capability to do grades. You can create groups, and set up permissions based on group membership. I do it with a couple of groups - mostly to segregate some information from friends I'm not that close to or who I know are computer illiterate and will get every possible virus.
Because once it's in the papers, it's the truth.
Actually, the point was that the people who are 20 now are overall too lazy to actually get out and vote; the only way they'll change things is if they can stay at home and click buttons, etc. I figured that surely someone with a handle of TheOldFart would catch that. :D
That will only work if we get some kind of online voting.