- Feature Articles
- CodeSOD
- Error'd
- Forums
-
Other Articles
- Random Article
- Other Series
- Alex's Soapbox
- Announcements
- Best of…
- Best of Email
- Best of the Sidebar
- Bring Your Own Code
- Coded Smorgasbord
- Mandatory Fun Day
- Off Topic
- Representative Line
- News Roundup
- Editor's Soapbox
- Software on the Rocks
- Souvenir Potpourri
- Sponsor Post
- Tales from the Interview
- The Daily WTF: Live
- Virtudyne
Admin
I realize that trash-talking about the quality of one's education is a rich engineering tradition; however, I find it hard to believe that your fine academic institution taught A* search (an algorithm) in a "mandatory data structures" course. Given that A* isn't a data structure, or an algorithm for search any common data structure I can think of, your assertion that "every ones" cirriculum would include A* because of a data structures course seems totally unfounded.
Admin
Alright. Just for fun, I will do this aswell. I don't have a college degree. I have a kinda basic degree in industrial computer science. There was not much in the way of theorical knowledge and algorithmics.
It must not over estimate the cost. I actually had to spend 2 minutes finding that on Google because I didn't remember, but since I had to use the A* algorithm to implement path finding in the past, I knew this at the time.
O(n)
I would say that parallelism is the simultaneous execution of algorithms completing each other to produce a result, whereas concurrency would be several instances of an algorithm accessing a shared piece of data.
I don't know sudoku, actually. I must have been living under a rock or something.
Too many words I'm lacking a definition of there. I can't even tell if it refers to a concept I could be familiar with.
I would say numeric keys because a hashing function would be probably easier and faster to calculate than for more complex data types.
However, it depends on the repartition of the keys, the amount of data, how large the hash table is allowed to be...
I will try to extract the meaning of this question: why do 3d engines use homogenous coordinate systems ? (a vector represented as a matrix ? heh)
The benefit over using 3*3 matrices and vectors is that you can represent translations, and not only rotation/scale with a 4*4 matrix.
You can also represent a transformation from the 3d space to what is called the homogenous space with a 4*4 matrix, which means that you can ultimately combine all the required transformations to go from a local 3d space to the camera's homogenous space in a single matrix. And you can then transform from the homogenous space to the 2d space with a division.
Lazy evaluation consist in actually performing the computation at the time you need the result, if you ever need it. Lazy programming languages are the functional ones.
A statistic algorithm based on a Bayesian formula. I actually don't know how that works, I'm merely parroting in this case. However, if I had to implement it, I could just get the necessary informations from google, see below.
I disagree. Most (probably almost all) of the theory and algorithms behind these things can be found with google. My answers above were probably approximative, incomplete or even way off (like probably 7), but if I need to know about something in more details, I can google it.
Being able to succesfully translate an algorithm into a working implementation is often not that hard.
Translating an algorithm into a good implementation that will let you build on it easily and nicely is where the difficulty lie. And this is something you get with experience, not with formal training.
Admin
I think that the general "You must have gone to college to be educated" is false. There are some damn good programmers that are self educated, and we piss people off for some reason. There are damn good programmers that I work with that went to college, too.
There are also idiots on both sides; ones that went to college and ones that didn't. Generally, the ones that didn't go to college and aren't educated don't last very long. For that we can all be thankful; so long as the dogmatism of the educated types doesn't interfere with their learning.
Admin
Entirely correct. Can you imagine some of the self-acclaimed programmers here, actually claim these questions to be 'acadamic crap' ? Or worse, classify it as game-programming or AI ?
Lol. I love WTF: crappy programmers complaining about even crappier programmers ... the funny thing really is they look down and think they're there. No one is ever there. There is always more to learn, more to explore. Look up, don't look down.
Admin
Uhh. Might I suggest that you take your own advice?
Admin
I don't know much about sodoku ... isn't it one of those computationally HARD problems? I think I remember seeing that once.
As for your other stuff (A*, etc) - the big difference between me (BS degree) and many un-degreed people (maybe not most, I don't know) is that i have at least HEARD of it, and would know where to look for it. I don't remember the algorithm right now, but know it's in about 3 of my textbooks. ;)
Of course, now there's Google and Wikipedia, so that difference is shrinking, now that we can look stuff up more easily.
Good points, though. :-)
Admin
But when you need to write a chat-bot, a web-page crawler, a resource-planner, a 3d engine, a spam filter, a speech-recognition filter, a distributed raytracer, a compiler, etc. you gonna need formal training.
The flaw here is that you assume that there are some concepts or ideas that can only be accessed through formal study or university training. Some of the material that makes up the CS field may be couched in difficult-to-penetrate 'insider' jargon, of course, but the ideas themselves are just as accessible to someone learning on their own, and in the field, as they are to someone who is listening to lectures at a college course. For example, 3d engines and raytracers are often written by hobbyists.
Though many of the WTF victims we see on this board are people who taught themselves a little bit, and then failed to see the larger issues behind programming, many more of the self-taught went on to learn functional, then object-oriented programming; good debugging and refactoring conventions; optimization and preprocessing; design patterns. If more complex issues raise their head at work or in their personal projects, they will rise to the challenge like they have up until now.
There's been a lot of jockeying around with the exact concepts and lessons that made up Mister r's challenge, but they're not as important as this point is.
I thought so. But it seems here on WTF education itself is considered a WTF by some, which kind of got me started on these little questions.
The issue is whether or not people consider learning through formal training inherently superior to learning through other methods. WTF has seen plenty of people who thought they learned more than they actually did, merely because they attended university.
On another note, Mister r, you have bad habits of trying to argue points through intimidation, and throwing around CS factoids in irrelevant places in your posts. (I'd phrase it more strongly, but anonymous posters shouldn't be so rude.)
Admin
Well, it seems that the curriculum for CS is changing very rapidly these days. Esspecially because the tools keep changing: it makes no sense to train some one with a particular api or programming languages, so it ends up being more about the formal (and provable) properties. They assume we can self-study the actual programming languages and api's as long as we've been introduced to the whole set of programming paradigma's (logic, functional, imperative) and core lego blocks: (functions, objects, classes, types, constraints, relations, abstract data structures, algebra's)
Secondly I think if you heard the answers you would be .. oh yeah off course. Except maybe for A*. But the vector thingie is just linear algebra, hash-tables are the next to most used data structure everywhere and we've all had to write some hash-function one day or another.
Still many people claim these questions are only acadamic: of no interest in the real-worlds. Sure, they don't make any large-scale programming endavour suceed, but if you sucked at all the questions, it will most definately make it fail: formal education does not make you a good experienced programmer, but you're not gonna be one without it.
Admin
You said earlier that you are in your 2nd year at school; have you worked in the industry? If not, do you see why it's a bit odd for you to say "all these people working in the software industry are telling me that my education in cs theory is not as useful or important as I claim it is, but they're wrong!"
Admin
Well, you've done fine.
Correct. So you have no formal education, yet you know this ? Can you imagine many of the un-educated programmers claiming this is knowledge you never need in real life ? You are a real-life programmer, and you needed it.
Wrong. O(n^c). O(n) would be for LL(1) parsers (that only look ahead at at most 1 character, whereas with context-free-languages, in the worst case you have to backtrack all the way back to the top to try another derivation)
Correct. Nothing acadamic about this one, he? Again, you need to know this IRL.
Its a hype here in Holland, google and have some fun I would say. Anyways its just a combinatory logic problem, so the answer would be: model it as a CSP (constraint satisfaction problem).
You have a function that given a machine-integer (say 4 bytes) calculated the faculty of that value. The algorithm with the minimum complexity would be a LOOKUP table. It will take O(1) to look the value up. If you calculate it on demand it would have been O(n) where n is the actual value of the input, rather than its size.
It has to do with how well/bad the keys distribute. You can in theory have a hash-table and have all your values in the same bag.
Much more to point that I could have written down here. You might lack formal knowledge, but you know your math.
Correct. And in like in real life, lazy people end up doing more work.
Imagine this function-call with lazy evaluation:
twice (2 + 3) where twice x = x + x
Would be evaluated lazily as:
(2 + 3) + (2 + 3)
Afterwhich it would calculate (2 + 3) twice
5 + 5
And then add the values.
Strict evaluation would not have this sharing problem, but can't handle infinite domains.
Correct. The algorithm is very simple and you can look it up indeed as long if your educated (ehm, smart?) enough to know you need it for these types of problems.
Well, i'm getting milder now i've got the first set of pretty ok answers from a non-educated person. (You are the first)
Still, you're problely good at math, and had some training with that. Being able to deal with the theory and algorithms on Wikipedia is not something you can easily self-study. if you only for all the fucked up greek letters that are just variable names, but which page explains that? ;-)
True. I too claimed that about 80% of all the programming is difficult due to obfuscation rather than how complex the theory behind it is. Nevertheless there are many types of problems most can't deal with without formal training.
I've been called a bullshitter, an acadamic quoter, etc. But you are the first person to answer most questions correctly without formal training. Most seem pretty upset they can't answer these simple questions and blame me.
Admin
I do :-) I'm a crappy programmer and I don't know jack shit. I normally don't comment on WTF. Ive started these pop-quizz questions because education was considered a WTF, which ehm went a little bit too far for me. Then the name-calling began. I should have known it was a touchy issue....
Admin
Well, eventhough it seems a bit unrelated ( I agree with you ) it was handled right there. Perhaps they should do a seperate course for searching-algorithms. But the claims that this is so very very tough acadamic stuff are just silly, and I was arguing about that. Its beginners stuff... whichever title the class was.
PS. The focus of the class in general was towards how complex a certain algorithm is and how to prove certain properties about such algorithms. There is fine relation between a datastructure and the complexity of the operations to perform on it. (Take priority-quees for example)
But A* Star is not something that AI like or anything, its just breadth-first-search with a heuristic function. Jeezz. I stand by my statement that it is common knowledge.
Admin
My apologies. I didn't try to intimidate anyone and rather felt a little intimidated myself. The irrelevant CS factoids are more me-being-enthousiastic than arguing though. I like to explain things. I suppress that urge enough in daily-life. (its not a very socially excepted thing, since some indeed experience it as intimidation)
Admin
I would wager that 80-90% of programmers will never need to use A* search. I am sure a lot of the database/web development world could say with a very high confidence that they will never need to implement or understand A*.
I personally have used it; but I do not presume (unlike you, it seems) that most programmers are on a similar career path as myself.
Admin
I'll share my experience, since it is fairly uniquely relevant. I went to college right out of high school, but ended up not getting into the computer science program because I didn't grok the electrical engineering prerequisites (this probably dates me, most schools dont require extensive EE in the CS program any more). Short version of the story is I dropped out without getting to take the CS I wanted, and taught myself. I worked for years in the industry quite successfully, but then moved to a different area of the country where I didn't have connections, and couldn't get an interview because I didn't have the degree. So I went and got the degree (BS/CS). So now I can get the interviews, and do the same work as before.
My conclusions:
The quality of the CS degree varies extremely from school to school.
The quality of the students varies more greatly than the quality of the degree.
You can learn everything without college (in getting my degree, I learned nothing in my courses that I had not already self-taught).
All the books and even the course materials of a top notch degree are available online or in bookstores (see the MIT online courseware).
Two of the five great programmers that I've met were self taught. The others had degrees.
Two of the ten most incompetent programmers I've met had PhD degrees in CS from MIT. I've also met incompetent self taught developers.
Having done a lot of hiring in Software Engineering, my experience says:
Read the work section of the resume first. See what they've done. Prepare meaningful questions in advance that will tell you if they've really done what they claim.
Read the education section of the resume only if the work section is insufficient to tell you if the person is likely to be able to do the job.
Don't hire fresh MSs/PhDs unless you plan to treat them like fresh BSs. Learning to do research is not the same as learning to do software development.
Admin
I have little experience. I worked in the industry, but almost always solo. I have no experience with team-work in that area. (to be more specific)
Secondly, you seem to quote me above, but you are not. Those are not my words. I mean this quote: "all these people working in the software industry are telling me that my education in cs theory is not as useful or important as I claim it is, but they're wrong!"
I never said that. The point where I entered the discussion is when acadamic training was considered a WTF: a first hint you need not to hire some one.
As to whether or not its important. It depends how you look at it. Are you developping end-user-applications that maybe its not that important. If you are creating and selling programming languages it _is_ important. And many people in the industry actually have some formal training (one way or the other).
Admin
Much like you I have only been to college once. In my experience it was taught in the realm of AI/machine learning elective courses and thus not required. I would agree that it is a fundamentally simple algorithm, and easy to understand, but not necessarily common knowledge. As you have seen here either most people don't know it, or at least were unwilling to take your bait.
If I was evaluatiing a programmer, I would not be concerned if he didn't know A*. I would be concerned if he claimed to know it and then was unable to explain how it worked.
In regards to your original point, I learned a ton of crap about CS when I was in school that makes me a reasonably well-rounded computer scientist. It was certainly useful. On the other hand, I have met people since then who are self-taught and extremely skilled at many facets of programming, and I also know many people who got through college doing the minimum and are not especially competent despite their rich schooling.
What matters, in my opinion, is one's thirst for knowledge. This is correlated somewhat with going to college, but not always.
Admin
Triangular manhole covers...
http://www.drainspotting.com/mirror/nhtelegraph-2003-11-26/
Admin
Correct. I was making a parody of your argument. My point was that, if people with academic and professional experience think formal academic training is not required to be a software engineer, they are more likely to be right about that than you.
A lot more programmers are out there making end-user applications than creating and selling programming languages. Making a webapp may not be as "pure" as designing a programming language, but I would urge you not to look down on your less theoretical programming brethren.
Admin
Admin
Secondly: constraint satisfaction is a representation of the solution. The problem is not that we want to solve some sudoku puzzle, the problem is we need to develop a program that solve any one which you give. Thats the problems, and the idea 'using constraint-satisfaction' is actually the solution. Even though it does not solve any sudoku puzzle specifically.
As if a MVC (model,viewer,controller) design pattern actually implements the the modeller, viewer and controller. The MVS design pattern just suggests to seperate and the model from the viewer and the controler, so the code becomes more maintainable and the changes for code-reuse increase.
THE CSP design pattern is like that: seperate the constraints from the searching. So you have two components: one that generates the constraints for a given puzzle and one that solves them. Like with the MVC, you can re-use the solver for Sudoku for other problems.
No, I think we got the terminology wrong. A CSP is just a way to solve a problem. Which problems are good for solving with the CSP pattern? SAT problems in general. Although I would prefer to call it combinatory logic. Its really not tied to any specific logic.
Admin
Secondly: constraint satisfaction is a representation of the solution. The problem is not that we want to solve some sudoku puzzle, the problem is we need to develop a program that solve any one which you give. Thats the problems, and the idea 'using constraint-satisfaction' is actually the solution. Even though it does not solve any sudoku puzzle specifically.
As if a MVC (model,viewer,controller) design pattern actually implements the the modeller, viewer and controller. The MVS design pattern just suggests to seperate and the model from the viewer and the controler, so the code becomes more maintainable and the changes for code-reuse increase.
THE CSP design pattern is like that: seperate the constraints from the searching. So you have two components: one that generates the constraints for a given puzzle and one that solves them. Like with the MVC, you can re-use the solver for Sudoku for other problems.
No, I think we got the terminology wrong. A CSP is just a way to solve a problem. Which problems are good for solving with the CSP pattern? SAT problems in general. Although I would prefer to call it combinatory logic. Its really not tied to any specific logic.
Admin
Point taken.
Admin
I said it, and I stand by it. The original poster, Aprenot, said he/she had learned all that went on in a CS degree by the time they were 16. Given that information, unless Aprenot was/is a prodigy of some sort, I think my statement is pretty valid.
And secondly, yeah, I don't think most people study every aspect of a CS degree if they are not in school. How many people get well into compiler design, AI, parallel processing, DB stuff (design, optimization and implementation), OS design, networks, software design, statistics, research methods, math, EE aspects.....
The point is that most people won't bother. If you did, great for you. But most won't bother.
Me for instance....though I do this for my day job, I also like some other stuff. Lets say I am pretty interested with physics. Just because I have a passing interest in physics does not mean that I would claim to know as much about it as a true physicist. And even though I do read alot about physics and things like it, I don't read everything or study everythign that woudl go into a physics degree. I plainly don't care about some of the subject material. That is just human nature.
Man...people are so easily offended on this board....lack of common sense abounds.
Admin
There was a time (a short time, if my exam results are anything to go by) when I could solve partial differential equations. That time has long since passed. But that doesn't mean that someone who can solve them today is a better programmer than I am, or that I'm a better programmer than they are.
There are some great database experts who know nothing about embedded systems. There are some great OAM (Operations, Administration, and Maintenance) designers who couldn't write a decent GUI to save their lives. Some great graph theorists who don't know a line of Java.
Some understand business management. Some understand "web apps". Some who know what the Internet is, or how telecommunications works. Some who understand that there are many, many disciplines in Computer Science and that Programming is not one of them. (Before the flames start again let me get this out of the way: Programming is a skill. Programming Languages are tools. Compiler design would be an example of a discipline. Telecom would be a field.)
Admin
That's just about the dumbest statement I've ever had the misfortune of reading. Even assuming that you're correct and in no way does a CS MS or PhD ever even touch upon software development (big assumption right there but you're a moron so I'll grant you it) it's rather stupid to believe that someone who had the dedication and ability to receive a graduate degree is on the exact same footing as someone who attained a Bachelor's degree.
Guess what dougie, the fact that you dropped out of college tells me everything I need to know about you. You are NOT hired. Now, if you'd be so kind as to include ketchup packets in my order, I'd appreciate it. Moron.
sincerely,
Richard Nixon
Admin
mister r...
Education and professional experience are both important, so I'm glad you're in school. Usually, education never hurts.
However, there's a lot more to being a successful employee. One also has to be able to control their ego. I recommend having an "expiring ego" while you're writing code and designing software instead of when touting what you know and what others don't know. It is part the "professional education" that they don't teach in school. If nobody wants to work with you then you're screwed! Instead of making you look smart, I think your responses and your list of questions makes you look like you have a huge ego or even that you're incredibly naive about the world. Technical interview questions that are important are the ones that apply to the position.
Now, the job could be teaching CS or game AI in which case your questions might be valid. But those are both inherently egotistical so maybe you're on the right track.
Admin
Those without degrees look down on those with degrees just as much as those with degrees look down on those without degrees.
I suppose you're right though - those of us with degrees are superior and should take the high road. It is our duty.
I would urge you not to tell one side in a war to call a truce while the other continues to make bombing runs. Oh, I also urge you to smash your keyboard into small pieces and never post here again, swine.
sincerely,
Richard Nixon
Admin
Insert diatribe on the value of "I don't know, but I think X and Y would be the right starting points for looking it up".
On the other hand, there's a difference between reading a book and internalizing what it says, turning it into an instinct. And on the gripping hand (my turn to be a geek), there's a difference between getting an instinct out of a book and forming one on your own; I developed the instinct of "if X contains Y's key, then put X on the left side of the join" long before I put it into words.
Because (1) there are damn few bugs, and (2) because of this, people tend to frame the checks rather than cash them.
Oh, ha fuckin' ha. If you would think for five seconds about the implications of "24-to-1" etc., you would realize that I was envisioning 24-port hubs with one uplink port apiece. (See previous discussion of uplink ports. Then pause to weep gently.) The model may be wrong (I'm still not a network guy) but the math is consistent with the model.
Admin
Well, I'll hope not to have to work with someone who nicks themself Richard Nixon. I'll also hope, as always, that I won't have to work with someone so dense that they misread such a simple post in multiple ways, but that wish never comes true (actually my current coworkers are all pretty good, but that varies).
Obviously, CS BS/MS/PHD degrees nearly always include a software development component, my point is that does not equate with experience. Anyone who hasn't worked with a software development team will need that training and will take time to get up to speed. Someone with a MS/PHD may or may not be able to come up to speed faster. Just don't hire a fresh phd and count on their being a dynamo right out of the starting blocks.
I'm glad you're able to make a snap conclusion not to hire me, I hope that if I wind up interviewing you I'll take the time to find out just how poor a candidate you would be.
So far I've made the companies I've worked for a little over 200 million dollars directly attributable to my ideas and the work I've done to develop them, and i've had a return on investment comfortably over 10x at every company i've worked for. How are you doing, idiot?
Admin
Sure you have dougie, sure you have.
And you missed the point probably because your degree came from a cereal box. I won't point out the obvious fact that you shifted away from your initial statement when I noted just how dumb it was.
It really speaks to your ignorance that you believe that someone with a BS and someone with an MS or PhD are likely to have the exact same level of software development experience. I'm sorry that you couldn't hack it at college, had to drop out, do those unspeakable things, send away for a degree in "Computering", and then make up some completely bogus dollar amount to try to impress me. It would appear our life pretty much went downhill the moment you left the womb. GO BACK DOUGIE! GO BACK!
sincerely,
Richard Nixon
Admin
Ah, now we have something worth calling a "design pattern" - sudoku could be replaced with kakuro, or with traditional "who owns the zebra?" match-N-with-N logic puzzles. (Uh oh, now we've come back to the 24-port hubs...)
Admin
Richard Nixon,
You really need to stop insulting other users. Occasionally you have some good points, but it's largely overshadowed by your abusive drama-queen mentality.
Admin
My questions were a reaction to some of the people here claiming education itself is somewhat a WTF. I disagreed and tried to prove that there are subjects that do matter, that are more easily learned through formal education. I'm not the worlds' best programmer, and I'm not the worlds' best student. I choose the questions to be trivial. I'm suprised at how many respond as if i tried to show off my knowledge. I actually considered making the questions harder because otherwise some of you might make fun of it being such simple little pop questions. So perhaps I am naive.
The general response was pure hate. Comments on how useless acadamic knowledge is, how "its not in real world" .. and about a half a dozen authority arguments .. ("..but i accomplished this and i accomplished that .. " ) .. zero insightfully technically relevant remarks. My interaction on this forum has not been what I expected and I actually regret that I posted those questions, but I dont think all the negative tone has a lot to do with _my_ ego.
On another note, this forum is called What-The-Fuck .. as in look at us making fun of others .. guess i'm not allowed to thrash the trashers :-)
Admin
hmm, I think he might be looking for why there are damn few bugs.
The answer has as much to do with personality as with methodology. Yes, Knuth is a stellar mathematician who knows the theory of how to prove a program correct. But more than that, he's the kind of insanely detail-obsessed person who would take the time to do it, just like he spent twenty years making the letters in his books look exactly the way he wanted them.
Admin
Now Dick,
Come in and eat your vegetables. You know how you don't like them when they're cold!
Dick?
Mommy has some pie for you, if you be a good boy! I know you have fun with your internet friends all day, but it's dinner time now, sweetie.
Dick?
I'm starting to get angry now, sweetie. Come in before I have to cut another switch...
Sincerely, Hannah Nixon
Admin
Ha, nice Freudian slip. Did you let little "dougie" get under your skin?
Admin
seriously this is a 1 second job? even someone with really medicore skills could do this. hell instructions would have come with the hub how to do it.
i wouldn't even consider this a "job" just a mere tiny task to complete on my way to an actual job.
mind you who the fuck would PAY someone to do it in the first place?!?!?
Admin
How many ways are there to interconnect two (trivial) one-port hubs? One. (Port A to Port A, assuming correct cable selection) Two-port hubs? Four (AA, AB, BA, BB). Three-port hubs? Eight. (AA, AB, AC, BA, BB, BC, CA, CB, or CC). Generally, choose one of N ports on the first hub, then one of N ports on the second hub. (N choose 1) * (N choose 1) = N^2. We also note that connecting port A on the first hub to port B on the second is not the same as connecting port B on the first with port A on the second (i.e. AB is not the same as BA).
If the hubs have "interconnect" ports (possibly switched), the numbers may change with different definitions of terms.
But more likely, the problem from the example is not with the combinatorics but with the choice of terminal versus crossover cables. (If we want to include non-functional configurations, then we're into more possibilities, and cable selection (straight, crossover, miswired) adds to the combinatorics.)
Admin
While that certainly is a valid point, I think the best part of his argument is that he has his definition of an admissable heursitic function backwards: a heuristic is valid for A* --- thus itself admissable and allowing A* to be admissable and optimal --- iff it never overestimates.
Admin
Ha! Nice catch. Good eye.
sincerely,
Richard Nixon
Admin
Ok, fair enough. It is interesting to me that even though we generally consider us quite similar all over the West, every so often one is still confronted with evidence of that we in fact have very different mentalities and cultures. It sometimes makes me astonished that we manage to communicate as well as we do, when we really have quite different ideas about some of the to modern societies most fundamental things: welfare, unionisation, social intervention, criminality, education, workers' rights, health care, social distribution, political elections, you name it. So close, but also so far away... However, of course being aware of my self-selection bias, I hold that the systems we have over here (meaning Scandinavia) are more just in that they provides more equal opportunities for all.
Admin
No he doesn't, the "Design Pattern" expression is commonly used in an OO context but not limited to it, which is exactly what he said.
Admin
Neener neener! I posted again!
Admin
It's much easier to be "just" in a small, homogenous society. That's why these comparisons get a little old sometimes. Make Sweden 30 times it's current size and mix in people from all over the world and see how easy it is to be "just."
Admin
Oh, throw in millions of poor, uneducated, illegal immigrants flooding in, too.
I do like Sweden though. Especially the bikini team :)
Admin
Just thought I'd show up late to the party to say:
(from the top of the page) "Cisco Certification: Update your credentials and pave the way to job opportunities! See more! Ads by Goo...oogle."
I thought it appropriate.
Admin
Well, we could look at Germany, which in much is quite similar to Sweden. Given, though, they're having some severe financial issues atm, but it is an example of a working large-scale welfare-based society comparable to the Scandinavian model.
As do we all... Come join us, it IS better here! ;)
Admin
I don't understand why you all want to make this so much more complicated than it really is. There is just one simple answer to the question of the best way to connect two hubs together:
Krazy Glue.
Admin
"Concurrency" is a word, whereas "parrelism", like "whats", is not.
Design patterns are not necessarily limited to any particular programming language, although some would be simpler (or more complex) in one language vs. another. "Dessign" patterns, though, I'm not so sure about.