Yes, but the contract says "reasonably available" and the reasonable amount of availability under law for a terminated contract of employment is approximately 0.000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 hours per millennium.
This is the entrance exam. Getting into university by cheating isn't a particularly worthwhile endeavour, because you'll end up flunking out before Christmas.
First up, they'll still be expected to have high-school qualifications or properly proctored alternative qualifications as well. Secondly, there are mechanisms for identity verification in MOOCs, such as webcam-proctored exams. If you're using this as an entry test, you don't need to verify all the video footage -- you just audit the footage for the successful candidates. This should still be less of a workload than administering a paper-based entrance exam.
Is that including the internal ROM of the console? Because that's always been the biggest issue with emulation -- the ROM routines in a games console aren't a fully blown OS, by any means, but it's still copyrighted code.
Altavista was great, and I loved being able to narrow my results by using formal search parameters etc. Fine-tuning a Google search was initially possible through adding a word or two, but now with all its ignoring words, attempts at identifying typos etc, rather than tuning, each new search is just another throw of the dice. Keep rolling until you get a 6.
Google was designed for the larger-than-Altavista web, but the web is now too big for Google. I saw the oversized-internet problem first when teaching English overseas. Whereas in 2007 I could find a prewritten lesson on most topics within about 10-20 minutes on Google, in 2012, the game was generally a bust as I could spend an hour filtering through dozens of irrelevant lessons (due to people using far too many tags) and hundreds of variations on the same theme. The lesson sites by then were flooded with innumerable basic and amateurish lessons that a teacher could throw together in twenty minutes anyway, and the whole efficiency drive in sharing was rendered moot.
This has happened with all sorts of information. The internet is now filled with tutorials that are basically just rewrites of other people's tutorials, and YouTube is full of videos of people who read a tutorial on the internet and decided to make a video of themselves doing it. I recently tried to search for information on a particular part of bicycle maintenance (changing headset bearings), and there are several different types of headset. Because I didn't know the exact name for my type of headset, I couldn't search for it specifically, and instead I had to just run a general search, which quickly grew tiresome, as I ended up seeing 13 different videos for changing one particular type of headset, and a couple of videos that had nothing to do with headsets whatsoever. I gave up and went to the bike shop instead. As it turned out, the problem was the bearing race, not the bearings, so I couldn't have fixed it anyway, but in a well-indexed internet (early to mid 2000s), I would have most likely found the information I needed to check within about 15 minutes, and I would have known to go to the shop sooner.
Casual phone games have come up with an interesting variation on procedural generation -- I suppose you could call it "shuffling". One of my favourite examples is called "Platform Panic", and it looks like a very retro flick-screen platformer on first play. On second play, however, you notice that the screens are in a different order. As you play and get further, you get more screen types, and more variations on them, and they generally get more difficult as you progress. I've seen this same approach taken with games using one-touch flying interfaces (flying snakes, rocket ships etc) where you run a continuous track made of predefined blocks that have been shuffled, and rolling-ball balance games moving from one predefined problem block to another (again shuffled).
What makes this approach interesting is that your game now gets more challenging without necessarily taking any longer to play, but as most people will still want to see their high score increase over time, you have to balance the increasing difficulty carefully to ensure that games do still get longer.
The physics engine in Exile was pretty basic, but used to good effect. The procedural generation of the map was heavily specialised and optimised, otherwise it wouldn't have fitted in 32K. The sort of physics engine that the article seems to be referring to is pretty heavy stuff, and is computationally overkill for the task at hand. However, it's "efficient" in programming terms because it already exists, so is "free" to the programmer. Sword of Fargoal had a minimal and highly efficient solution custom-coded to do the job.
The interesting point to draw from this is surely how the internet has really, really, dumbed us down. I'm constantly infuriated by the amount of repetitive superficial crap that pops up in computer tutorials, and lament the fact that even expensive programming textbooks are seemingly less sophisticated than the magazines of the 80s.
While I agree that it's wrong that our current environment makes this sort of stuff into front-page news, surely we should at least be thankful that there are materials on interesting problems, and we should look at how we can expand on that to try to improve the quality of programming education...?
I see this as an interesting programming problem for learners. In the past, room placement would have been the sticking point for most beginners, so while physics engines are overkill, they get the job done. Let's call that the "blunt instrument" solution, and once it's in place, we can start using modular programming techniques to come up with alternative strategies, which can then lead to discussions over execution time and efficiency, and even the trade-off between programming time efficiency vs execution efficiency.
All office workers have the same lifestyle, rotting away in frt of computer monitors. At least coding, unlike most office jobs, has logic, and your manager can't tell you you're doing it wrong because he has a different philosophy of your sphere of work.
A good maths teacher teaches children the fundamentals of maths, and doesn't need to be involved in researching new marhematical methods. A literature teacher theaches children the fundamental of literature, and doesn't need to write a bestseller every year. A programming teacher, similarly, doesn't need to be right into the latest stuff. (Trainee computing teacher speaking.)
That's a different issue. There's a discussion about whether there is such a thing as "interpreted languages" and "compiled languages", and in the strictest sense, the answer is no, because some normally-compiled languages can be run in an interpreter, and most normally-interpreted languages can be compiled; but there is also a philosophical debate that allows an imprecise use of the terms. Java is what I'd consider a "compiled language" because of its architectural design -- I don't care that the target architecture is rarely seen in hardware form. The limitation this leaves you with is execution speed, which was a genuine concern in the early days of Java, but that's not a feature of the language per se.
Python is a scripting language. It's almost fully dynamic, in that you can (if you want) rewrite class definitions during execution time based on user input. This is, on my philosophical level, an architectural feature of an interpreted language, and any compiled version of Python is going to have to include a compiler and/or interpreter to deal with these quibbles at run-time.
My point, in short, is that these architectural features aimed at the interpreted environment are a source of potential errors, and that they don't compile well; therefore Python is not a good candidate for use in compiled code. Python is was specifically designed for running in an interpreter. Why would you want to use it anywhere else?
Python is a useful language for prototyping things, or trying out some new algorithm.
It allows me to test these things out without worrying about all kinds of details like I would if I were programming in C.
Of course if I want performance for whatever it is I'm doing, then yes, I'll rewrite in C eventually.
And yet you don't need to be able to dynamically rewrite entire class definitions in order to do most of the useful stuff that Python lets you do quickly. And if you do use a lot of the stuff that makes Python Python, it will be a tough job to rewrite into C at a later date. As such, I personally feel that Python is a double-edged sword, and I would like the core of it without the ultra-dynamic, self-modifying stuff that (for my purposes) only serves as a source of potential errors.
You can compile Python into C. I had a Python script to roll a pair of dice one million times that took 123 seconds. Compiled Python to C, it took four seconds.
Great. However, all of Python's weaknesses exist to support its use as an interpreted language. There are things I really love about Python (eg list comprehensions look almost mathematical, and are designed for readability), but just compiling it doesn't get round the limitations of the language architecture.
What's not valid about your analogy is that peer-to-peer video sharing can be perfectly legal, whereas murder never is. What Popcorn Time needs is a tracker dedicated to fully legal videos -- Max Fleischer out-of-copyright cartoons, the Blender Foundation animations, how-tos on video production etc. P2P has legitimate non-infringing uses, and there should be people focusing on doing that. Consider the amount of genuinely free stuff on PirateBay etc. It's not a notable proportion of the P2P traffic, but it still would be enough to merit its own tracker.
I'm pretty sure you're right. No-one in their right mind is going to say they think the website they run is illegal, but they'll happily say they run it.
No, you are. Lots of white folks who are not Muslims have blown shit up. That's my point. Saying that white folk who blow shit up don't typically shout "Aue Iesu" before they do it doesn't make them any less white folk who blow shit up, so no, "virtually" or not, you can't pin it all on Muslims, and it remains irrelevant.
Yes, but the contract says "reasonably available" and the reasonable amount of availability under law for a terminated contract of employment is approximately 0.000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 000 hours per millennium.
This is the entrance exam. Getting into university by cheating isn't a particularly worthwhile endeavour, because you'll end up flunking out before Christmas.
First up, they'll still be expected to have high-school qualifications or properly proctored alternative qualifications as well. Secondly, there are mechanisms for identity verification in MOOCs, such as webcam-proctored exams. If you're using this as an entry test, you don't need to verify all the video footage -- you just audit the footage for the successful candidates. This should still be less of a workload than administering a paper-based entrance exam.
Don't be a DB.
Certainly not. If you're a DB, the DBA will keep performing inner joins on your column. Ouch.
Is that including the internal ROM of the console? Because that's always been the biggest issue with emulation -- the ROM routines in a games console aren't a fully blown OS, by any means, but it's still copyrighted code.
Altavista was great, and I loved being able to narrow my results by using formal search parameters etc. Fine-tuning a Google search was initially possible through adding a word or two, but now with all its ignoring words, attempts at identifying typos etc, rather than tuning, each new search is just another throw of the dice. Keep rolling until you get a 6.
Google was designed for the larger-than-Altavista web, but the web is now too big for Google. I saw the oversized-internet problem first when teaching English overseas. Whereas in 2007 I could find a prewritten lesson on most topics within about 10-20 minutes on Google, in 2012, the game was generally a bust as I could spend an hour filtering through dozens of irrelevant lessons (due to people using far too many tags) and hundreds of variations on the same theme. The lesson sites by then were flooded with innumerable basic and amateurish lessons that a teacher could throw together in twenty minutes anyway, and the whole efficiency drive in sharing was rendered moot.
This has happened with all sorts of information. The internet is now filled with tutorials that are basically just rewrites of other people's tutorials, and YouTube is full of videos of people who read a tutorial on the internet and decided to make a video of themselves doing it. I recently tried to search for information on a particular part of bicycle maintenance (changing headset bearings), and there are several different types of headset. Because I didn't know the exact name for my type of headset, I couldn't search for it specifically, and instead I had to just run a general search, which quickly grew tiresome, as I ended up seeing 13 different videos for changing one particular type of headset, and a couple of videos that had nothing to do with headsets whatsoever. I gave up and went to the bike shop instead. As it turned out, the problem was the bearing race, not the bearings, so I couldn't have fixed it anyway, but in a well-indexed internet (early to mid 2000s), I would have most likely found the information I needed to check within about 15 minutes, and I would have known to go to the shop sooner.
I R certain there R another definition. R U not?
Oh, I definitely agree with that. Just saying it's not quite like Sword of Fargoal...
Casual phone games have come up with an interesting variation on procedural generation -- I suppose you could call it "shuffling". One of my favourite examples is called "Platform Panic", and it looks like a very retro flick-screen platformer on first play. On second play, however, you notice that the screens are in a different order. As you play and get further, you get more screen types, and more variations on them, and they generally get more difficult as you progress. I've seen this same approach taken with games using one-touch flying interfaces (flying snakes, rocket ships etc) where you run a continuous track made of predefined blocks that have been shuffled, and rolling-ball balance games moving from one predefined problem block to another (again shuffled).
What makes this approach interesting is that your game now gets more challenging without necessarily taking any longer to play, but as most people will still want to see their high score increase over time, you have to balance the increasing difficulty carefully to ensure that games do still get longer.
The physics engine in Exile was pretty basic, but used to good effect. The procedural generation of the map was heavily specialised and optimised, otherwise it wouldn't have fitted in 32K. The sort of physics engine that the article seems to be referring to is pretty heavy stuff, and is computationally overkill for the task at hand. However, it's "efficient" in programming terms because it already exists, so is "free" to the programmer. Sword of Fargoal had a minimal and highly efficient solution custom-coded to do the job.
The interesting point to draw from this is surely how the internet has really, really, dumbed us down. I'm constantly infuriated by the amount of repetitive superficial crap that pops up in computer tutorials, and lament the fact that even expensive programming textbooks are seemingly less sophisticated than the magazines of the 80s.
While I agree that it's wrong that our current environment makes this sort of stuff into front-page news, surely we should at least be thankful that there are materials on interesting problems, and we should look at how we can expand on that to try to improve the quality of programming education...?
I see this as an interesting programming problem for learners. In the past, room placement would have been the sticking point for most beginners, so while physics engines are overkill, they get the job done. Let's call that the "blunt instrument" solution, and once it's in place, we can start using modular programming techniques to come up with alternative strategies, which can then lead to discussions over execution time and efficiency, and even the trade-off between programming time efficiency vs execution efficiency.
Yeah, you could really code up a great physics engine using the 3D GPU in the Vic-20...
All office workers have the same lifestyle, rotting away in frt of computer monitors. At least coding, unlike most office jobs, has logic, and your manager can't tell you you're doing it wrong because he has a different philosophy of your sphere of work.
A good maths teacher teaches children the fundamentals of maths, and doesn't need to be involved in researching new marhematical methods. A literature teacher theaches children the fundamental of literature, and doesn't need to write a bestseller every year. A programming teacher, similarly, doesn't need to be right into the latest stuff. (Trainee computing teacher speaking.)
That's a different issue. There's a discussion about whether there is such a thing as "interpreted languages" and "compiled languages", and in the strictest sense, the answer is no, because some normally-compiled languages can be run in an interpreter, and most normally-interpreted languages can be compiled; but there is also a philosophical debate that allows an imprecise use of the terms. Java is what I'd consider a "compiled language" because of its architectural design -- I don't care that the target architecture is rarely seen in hardware form. The limitation this leaves you with is execution speed, which was a genuine concern in the early days of Java, but that's not a feature of the language per se.
Python is a scripting language. It's almost fully dynamic, in that you can (if you want) rewrite class definitions during execution time based on user input. This is, on my philosophical level, an architectural feature of an interpreted language, and any compiled version of Python is going to have to include a compiler and/or interpreter to deal with these quibbles at run-time.
My point, in short, is that these architectural features aimed at the interpreted environment are a source of potential errors, and that they don't compile well; therefore Python is not a good candidate for use in compiled code. Python is was specifically designed for running in an interpreter. Why would you want to use it anywhere else?
Yes. However, my nostalgia for an 8-bit with the OS burned into a factory-produced ROM chip is completely natural. Blip-bloop.
I think you mean a type *
Python is a useful language for prototyping things, or trying out some new algorithm.
It allows me to test these things out without worrying about all kinds of details like I would if I were programming in C.
Of course if I want performance for whatever it is I'm doing, then yes, I'll rewrite in C eventually.
And yet you don't need to be able to dynamically rewrite entire class definitions in order to do most of the useful stuff that Python lets you do quickly. And if you do use a lot of the stuff that makes Python Python, it will be a tough job to rewrite into C at a later date. As such, I personally feel that Python is a double-edged sword, and I would like the core of it without the ultra-dynamic, self-modifying stuff that (for my purposes) only serves as a source of potential errors.
You can compile Python into C. I had a Python script to roll a pair of dice one million times that took 123 seconds. Compiled Python to C, it took four seconds.
Great. However, all of Python's weaknesses exist to support its use as an interpreted language. There are things I really love about Python (eg list comprehensions look almost mathematical, and are designed for readability), but just compiling it doesn't get round the limitations of the language architecture.
His refusal to distinguish is hate speech. Go straight to jail, do not pass go, do not collect $200.
What's not valid about your analogy is that peer-to-peer video sharing can be perfectly legal, whereas murder never is. What Popcorn Time needs is a tracker dedicated to fully legal videos -- Max Fleischer out-of-copyright cartoons, the Blender Foundation animations, how-tos on video production etc. P2P has legitimate non-infringing uses, and there should be people focusing on doing that. Consider the amount of genuinely free stuff on PirateBay etc. It's not a notable proportion of the P2P traffic, but it still would be enough to merit its own tracker.
I'm pretty sure you're right. No-one in their right mind is going to say they think the website they run is illegal, but they'll happily say they run it.
This is not clear cut. It's not far off the debate on the relative cruelty of life sentences vs death sentences.
No, you are. Lots of white folks who are not Muslims have blown shit up. That's my point. Saying that white folk who blow shit up don't typically shout "Aue Iesu" before they do it doesn't make them any less white folk who blow shit up, so no, "virtually" or not, you can't pin it all on Muslims, and it remains irrelevant.