Yeah... didn't the NSA contribute a whole bunch to SELinux and some of the crypto API as well? Might not necessarily be the smartest thing to switch away from an OS developed by a private American company to one developed by several mainly American companies AND the NSA.
China's a big country with like a dozen languages and accents of the same language. In some of them, L and R are closer together than they are in English. In others, W joins into the mix.
Jet engines themselves are a step back from high bypass turbofans and turboprops. One of the rules of thumb for aircraft engines is that a bigger fan spinning slower is more effecient than a smaller fan spinning way faster. But the the prospect of having basically all fan driven electrically without an obstruction from compressor, fuel handling, etc may swing the balance in favor of diesel electric (ie one turboshaft driving a generator running the fans) in some cases.
Which is why battery-powered planes are stupid. But not necessarily electric propulsion. If you can actually fly an electric engine, you can get experience and improve on it, so that if and when you come up with a better way of providing electrical power (electrochemical fuel cells, fission reactor, Mr. Fusion, very long tether, microwave death ray), you will be able to mate it to a mature technology. I say kudos!
The metaphorical White Man has a heavy burden here. Reach out to the savages, and there are adverse consequences, suffering, death, and loss of traditions going back millennia. Stay away, and people who should be your fellow human beings are cut off from the fruits of civilization, and are treated like livestock whose habitat must be delineated and (un)managed to keep their numbers healthy so that more children can be born into a life where their greatest aspiration can be to live just like their grandfathers going back tens of thousands of years.
And you also won't be able to judge depth for farther objects by subconsciously bobbing your head back and forth to increase stereo baseline, as you're apt to do without even realizing it when you have a mirror.
Maybe it's time that interviewees realized that it's not just about them. Acting slovenly has a pretty good chance to offend other people, no matter how good it may or may not make you feel inside.
Then if its bad enough, you leave. Otherwise you grumble under your breath (or better yet, cogently and out loud) and wait for the next election cycle.
You'd need battery warmers to weather the overnight cold, but assuming they'd be plugged in to charge during the worst overnight cold, the battery heater would be running during the lowest temperatures with the standard use procedure.
The real question is what happens if you get a cold snap in the middle of the day. Since most suburban school districts stagger the school day for elementary, middle, and junior/senior high schools to minimize the size of their bus fleets, it's quite conceivable that these things would be on the road for close to 8 hours straight without a chance to recharge in between the morning and afternoon commutes.
See, there's a difference between knowing what you don't know and living in a sea of ambiguity the way the OP seems to imply. In mathematics especially, there is a very tall and elaborate edifice of deductions and axioms from which all exploration takes place.
For example, one of the more mind-bending exercises in undergrad abstract algebra is proving Peano's axioms for integers. On the one hand you could say "well, I thought I knew basic arithmetic, but now I have to question even that: I'm lost!" But on the other hand, when you go through that exercise, you have very powerful tools in your toolbox: deduction, group theory, ring theory, etc, which you spend time building up and exercising exhaustively before you attack the natural numbers. So you're not really "lost" as in at sea without a clue, but you're just approaching something from a new direction with very well-defined assumptions and rigid reasoning.
And if I can hope to contribute to the religious debate without sparking too big of a flame war: maybe this same conflation between being completely lost and working in an unfamility coordinate system may be at play when Skeptics and scientists describe why they're athiests. Empirical evidence and deductive reasoning can peel away some scripture as obviously false, but when you're denying a higher power by an appeal to logic/reason/etc, you're still assuming the presence of this abstract thing called mathematical/empirical truth, and perhaps even Order with a capital 'O'.
I'm sure I'm not at all speaking for any sort of majority view of believers or skeptics or deists, but why is it not valid to call that God and be comforted by its existence, as opposed to say chaos?
Let me propose an amendment: "higher education in ornamental subjects should be for people who can pay their own way"
I'll take a wild stab and guess that people who take on monstrous loans to study useful things like math, physical science, or engineering put themselves in a place where they can actually pay off the loans in a reasonable amount of time without trouble. It's the people who spend four years boozing, partying, and "learning" about their humanities professors' favorite interpretation of reality that find themselves unable to meet their financial obligations.
Re:Not to state the obvious...
on
A New Car UI
·
· Score: 1
At work we recently got ourselves a smart tablet ink thing for one of the conference rooms so people can give 'chalk talks' electronically. It's a touch screen with a special pen like the one in the checkout counter that lets you doodle on your powerpoints.
So 1k for the computer, probably 2-3k for the tablet, 1-2k for the projector, and God knows how much for the software licenses. The thing sort of works, but occasionally crashes, and takes a while to set up.
Back in the cave days of the mid 1990's you'd use an overhead projector, and pay less than 2k for it.
Most of the things you need to do for engineering applications *do* lend themselves to a data flow paradigm, but a lot of the things under the hood do not. Data acquisition, process control, and the like lend themselves very much to such thinking. Iterative solvers and fitters, less so, but it can be done because the data flows in strictly parallel or strictly serial paths.
Applications where the data flow isn't 'laminar' and jumps around an awful lot, like learning algorithms, image segmentation, and pattern matching doesn't lend itself to data flow programming at all. That's not to say it can't be done, but the resulting diagrams will have crazy jumps and the LabView equivalent of global variables all over the place, because the data processing is not local, and the result at location x at time t doesn't only depend on the input in the neighborhood of x and time t.
LabView is part of the problem, and the problem is a misapprehension of what problems programming solves. NI software sucks (and the constant excuses on the NI forums from the support people reek of a lack of technical know-how in the company's software people to fix them, which isn't surprising for a large codebase developed half a generation ago). The only reason LabView is used is that the graphical paradigm makes *some* limited applications so much better that it's worth it to deal with the NI clowns to use it. Trouble is that people who don't know better do those limited things with a graphical language and think they can do everything with it.
Motion control is a fairly restricted area of application where most of the thinking goes into the application of very mature mathematics derived from the solution of a small set of continuous differential equations. Add a small number of ifs and whiles to interlock the thing to behave safely and you're done. The information content of the resulting code is low compared to, say, a word processor, or an operating system, or a low-level device driver.
Likewise, PLCs tend to control fairly simple individual things for which ladders are as good a paradigm for as independent lines or small numbers of lines of code in a procedural language, with very little program-spanning complexity.
If you want your motion controller or automation system to do something special based complex transformations to other external inputs, that kind of logic is usually done outside the graphical programming language and feeds a single input block or pad or pin in the graphical paradigm, but has tens to hundreds of thousands of lines of C code behind it.
The example I've got in my head is something like an aircraft's autopilot:
Moving the control surfaces in response to the pilot's control input and the attitude gyro is something that can (and probably should) be coded up in a graphical language, both to provide checkability against the control theory math used in the design and to eliminate a possible point of coding error in the most critical inner loop of the code.
Feeding the autopilot with a trajectory based on GPS, airspeed, navigation waypoints, weather radar, etc, should be done in a procedural language because the complexity (both lenght and interconnectedness) of the algorithms makes it very painful to implement them graphically rather than procedurally.
Design without code is masturbation. Code without design...well, it's not masturbation, it isn't exactly sex either, but something gets fucked up, that much is for sure.
Hokay. 1 Predator = 12mil/27 flight hours. Subtract 3 hrs for takeoff/landing and getting on station for 24 hrs, so you get 2 hrs aloft/ 1 million = 500k/hr.
1 Cessna = 200k (or so).
No brainer, right? Wrong:
A Cessna has a range of (guessing) 1000km for about 5 hours aloft/fuel tank. Count the takeoff, etc, and now you're down to 2-3 hrs aloft. So that's 50k/hr. So if you want 24 hours of coverage, you need at least three Cessnas to overlap, so now you're up to 150k/hr. If you want to have the same service ceiling as the Predator, each plane probably will cost 500k for something beefier, so you've more than doubled the cost, and your 150k/hr for three planes turns into ~400k/hr.
This is already close to a Predator B.
Now let's add the fact that the Predator has a 3000lb optical surveillance package already built in. You're Cessna carries 4-6 passengers, depending on whether you've bought the 200k one of the 500k one, which is only (let's be generous) 1000lb of payload, not counting the pilot. And the you actually have to buy flight qualified surveillence equipment that you can bolt to the bottom/side of your plane without hosing its flight performance.
Big optics are expensive. Infrared and night vision cameras are more expensive. Going from my own experience, a package like the one on a Predator B, even if you bought all the parts and built it yourself, can easily run upwards of 150k per plane, not including integration costs. And you need to pay for three of them (one per plane). So if you've paid 200k for the plane, you're up to 350k, and if you've paid 400k, your up to 550k for two flight hours.
That's more expensive than a small manned airplane.
Uh, basic property rights? If my front yard is so big that you can't make me hear you unless you go onto my front yard, and I can hear you, then you must be on my front yard.
Yeah... didn't the NSA contribute a whole bunch to SELinux and some of the crypto API as well? Might not necessarily be the smartest thing to switch away from an OS developed by a private American company to one developed by several mainly American companies AND the NSA.
Ooh! I know. They should use Oracle Java (TM)! That's multiplatform and not subject to vendor lock-in on any particular OS!
China's a big country with like a dozen languages and accents of the same language. In some of them, L and R are closer together than they are in English. In others, W joins into the mix.
Ah! So Captain Obvious finally has someone to report to! It's all falling into place...but where does Major Pain fit into the picture?
14 elephant-sized cars?
Jet engines themselves are a step back from high bypass turbofans and turboprops. One of the rules of thumb for aircraft engines is that a bigger fan spinning slower is more effecient than a smaller fan spinning way faster. But the the prospect of having basically all fan driven electrically without an obstruction from compressor, fuel handling, etc may swing the balance in favor of diesel electric (ie one turboshaft driving a generator running the fans) in some cases.
Which is why battery-powered planes are stupid. But not necessarily electric propulsion. If you can actually fly an electric engine, you can get experience and improve on it, so that if and when you come up with a better way of providing electrical power (electrochemical fuel cells, fission reactor, Mr. Fusion, very long tether, microwave death ray), you will be able to mate it to a mature technology. I say kudos!
The metaphorical White Man has a heavy burden here. Reach out to the savages, and there are adverse consequences, suffering, death, and loss of traditions going back millennia. Stay away, and people who should be your fellow human beings are cut off from the fruits of civilization, and are treated like livestock whose habitat must be delineated and (un)managed to keep their numbers healthy so that more children can be born into a life where their greatest aspiration can be to live just like their grandfathers going back tens of thousands of years.
And you also won't be able to judge depth for farther objects by subconsciously bobbing your head back and forth to increase stereo baseline, as you're apt to do without even realizing it when you have a mirror.
Maybe it's time that interviewees realized that it's not just about them. Acting slovenly has a pretty good chance to offend other people, no matter how good it may or may not make you feel inside.
There's also still two cans and a string. Doesn't make it a valid means of communication for normal people.
Then if its bad enough, you leave. Otherwise you grumble under your breath (or better yet, cogently and out loud) and wait for the next election cycle.
You'd need battery warmers to weather the overnight cold, but assuming they'd be plugged in to charge during the worst overnight cold, the battery heater would be running during the lowest temperatures with the standard use procedure.
The real question is what happens if you get a cold snap in the middle of the day. Since most suburban school districts stagger the school day for elementary, middle, and junior/senior high schools to minimize the size of their bus fleets, it's quite conceivable that these things would be on the road for close to 8 hours straight without a chance to recharge in between the morning and afternoon commutes.
The government you vested with special authority by your consent (either by voting or not leaving) gets to do things you can't. Imagine that.
See, there's a difference between knowing what you don't know and living in a sea of ambiguity the way the OP seems to imply. In mathematics especially, there is a very tall and elaborate edifice of deductions and axioms from which all exploration takes place.
For example, one of the more mind-bending exercises in undergrad abstract algebra is proving Peano's axioms for integers. On the one hand you could say "well, I thought I knew basic arithmetic, but now I have to question even that: I'm lost!" But on the other hand, when you go through that exercise, you have very powerful tools in your toolbox: deduction, group theory, ring theory, etc, which you spend time building up and exercising exhaustively before you attack the natural numbers. So you're not really "lost" as in at sea without a clue, but you're just approaching something from a new direction with very well-defined assumptions and rigid reasoning.
And if I can hope to contribute to the religious debate without sparking too big of a flame war: maybe this same conflation between being completely lost and working in an unfamility coordinate system may be at play when Skeptics and scientists describe why they're athiests. Empirical evidence and deductive reasoning can peel away some scripture as obviously false, but when you're denying a higher power by an appeal to logic/reason/etc, you're still assuming the presence of this abstract thing called mathematical/empirical truth, and perhaps even Order with a capital 'O'.
I'm sure I'm not at all speaking for any sort of majority view of believers or skeptics or deists, but why is it not valid to call that God and be comforted by its existence, as opposed to say chaos?
Let me propose an amendment: "higher education in ornamental subjects should be for people who can pay their own way"
I'll take a wild stab and guess that people who take on monstrous loans to study useful things like math, physical science, or engineering put themselves in a place where they can actually pay off the loans in a reasonable amount of time without trouble. It's the people who spend four years boozing, partying, and "learning" about their humanities professors' favorite interpretation of reality that find themselves unable to meet their financial obligations.
At work we recently got ourselves a smart tablet ink thing for one of the conference rooms so people can give 'chalk talks' electronically. It's a touch screen with a special pen like the one in the checkout counter that lets you doodle on your powerpoints.
So 1k for the computer, probably 2-3k for the tablet, 1-2k for the projector, and God knows how much for the software licenses. The thing sort of works, but occasionally crashes, and takes a while to set up.
Back in the cave days of the mid 1990's you'd use an overhead projector, and pay less than 2k for it.
The world is also full of people who can't do math to save their life. Win-win.
Most of the things you need to do for engineering applications *do* lend themselves to a data flow paradigm, but a lot of the things under the hood do not. Data acquisition, process control, and the like lend themselves very much to such thinking. Iterative solvers and fitters, less so, but it can be done because the data flows in strictly parallel or strictly serial paths.
Applications where the data flow isn't 'laminar' and jumps around an awful lot, like learning algorithms, image segmentation, and pattern matching doesn't lend itself to data flow programming at all. That's not to say it can't be done, but the resulting diagrams will have crazy jumps and the LabView equivalent of global variables all over the place, because the data processing is not local, and the result at location x at time t doesn't only depend on the input in the neighborhood of x and time t.
LabView is part of the problem, and the problem is a misapprehension of what problems programming solves. NI software sucks (and the constant excuses on the NI forums from the support people reek of a lack of technical know-how in the company's software people to fix them, which isn't surprising for a large codebase developed half a generation ago). The only reason LabView is used is that the graphical paradigm makes *some* limited applications so much better that it's worth it to deal with the NI clowns to use it. Trouble is that people who don't know better do those limited things with a graphical language and think they can do everything with it.
Motion control is a fairly restricted area of application where most of the thinking goes into the application of very mature mathematics derived from the solution of a small set of continuous differential equations. Add a small number of ifs and whiles to interlock the thing to behave safely and you're done. The information content of the resulting code is low compared to, say, a word processor, or an operating system, or a low-level device driver.
Likewise, PLCs tend to control fairly simple individual things for which ladders are as good a paradigm for as independent lines or small numbers of lines of code in a procedural language, with very little program-spanning complexity.
If you want your motion controller or automation system to do something special based complex transformations to other external inputs, that kind of logic is usually done outside the graphical programming language and feeds a single input block or pad or pin in the graphical paradigm, but has tens to hundreds of thousands of lines of C code behind it.
The example I've got in my head is something like an aircraft's autopilot:
Moving the control surfaces in response to the pilot's control input and the attitude gyro is something that can (and probably should) be coded up in a graphical language, both to provide checkability against the control theory math used in the design and to eliminate a possible point of coding error in the most critical inner loop of the code.
Feeding the autopilot with a trajectory based on GPS, airspeed, navigation waypoints, weather radar, etc, should be done in a procedural language because the complexity (both lenght and interconnectedness) of the algorithms makes it very painful to implement them graphically rather than procedurally.
Design without code is masturbation. Code without design...well, it's not masturbation, it isn't exactly sex either, but something gets fucked up, that much is for sure.
Doh! The manned airplane is more expensive than the *unmanned* airplane.
Hokay. 1 Predator = 12mil/27 flight hours. Subtract 3 hrs for takeoff/landing and getting on station for 24 hrs, so you get 2 hrs aloft/ 1 million = 500k/hr. /hr. So if you want 24 hours of coverage, you need at least three Cessnas to overlap, so now you're up to 150k /hr. If you want to have the same service ceiling as the Predator, each plane probably will cost 500k for something beefier, so you've more than doubled the cost, and your 150k/hr for three planes turns into ~400k/hr.
This is already close to a Predator B.
1 Cessna = 200k (or so).
No brainer, right? Wrong: A Cessna has a range of (guessing) 1000km for about 5 hours aloft/fuel tank. Count the takeoff, etc, and now you're down to 2-3 hrs aloft. So that's 50k
Now let's add the fact that the Predator has a 3000lb optical surveillance package already built in. You're Cessna carries 4-6 passengers, depending on whether you've bought the 200k one of the 500k one, which is only (let's be generous) 1000lb of payload, not counting the pilot. And the you actually have to buy flight qualified surveillence equipment that you can bolt to the bottom/side of your plane without hosing its flight performance.
Big optics are expensive. Infrared and night vision cameras are more expensive. Going from my own experience, a package like the one on a Predator B, even if you bought all the parts and built it yourself, can easily run upwards of 150k per plane, not including integration costs. And you need to pay for three of them (one per plane). So if you've paid 200k for the plane, you're up to 350k, and if you've paid 400k, your up to 550k for two flight hours.
That's more expensive than a small manned airplane.
Uh, basic property rights? If my front yard is so big that you can't make me hear you unless you go onto my front yard, and I can hear you, then you must be on my front yard.