h?
Announcement
Collapse
No announcement yet.
What's the difference between ISIS fundies, and American religious-right fundies?
Collapse
X
-
Originally posted by Guynemer View PostWeyuuuuullllllllllllllllll....
they are funding churches and (I think) politicians that are leading the anti-homosexual movement in some African countries, which in turn has resulted in draconian anti-homosexual laws.If there is no sound in space, how come you can hear the lasers?
){ :|:& };:
Comment
-
Originally posted by Hauldren Collider View PostI admit, every time MrFun posts I actually do reflect on my stance on gay marriage. I start to wonder if maybe the fundamentalist christians have a good point.To us, it is the BEAST.
Comment
-
Originally posted by onodera View PostStop practicing your stand up routine, go learn what a lexical closure is.
HC, there's no need to keep digging. Even conceding that some percentage of American fundies are knowingly giving money to groups which oppress and sometimes kill gays on another continent, that's still a far cry from personally forming death squads that rack up a quadruple-digit body count. Actually, it's probably five digits by now. Anyway, if being the buddy or financial backer of a brutal regime makes you equivalent to ISIS, our own government has been equivalent to ISIS more or less non-stop for well over a century, one way or another. And before that we were doing terrible things to black people, women, etc., so we were still worse by MrFunian moral standards.
Comment
-
Originally posted by Elok View PostWell, normal Wiki's definition was written by compsci nerds who didn't realize the only people who'd understand what they wrote were people who already knew everything they were saying. Simple Wiki's, from what I can tell, says that closure has something to do with all the associated commands and options and such surrounding a term or command in programming. Or maybe not. Still can't figure out WTF is wrong with my stupid program.
HC, there's no need to keep digging. Even conceding that some percentage of American fundies are knowingly giving money to groups which oppress and sometimes kill gays on another continent, that's still a far cry from personally forming death squads that rack up a quadruple-digit body count. Actually, it's probably five digits by now. Anyway, if being the buddy or financial backer of a brutal regime makes you equivalent to ISIS, our own government has been equivalent to ISIS more or less non-stop for well over a century, one way or another. And before that we were doing terrible things to black people, women, etc., so we were still worse by MrFunian moral standards.
Code:function foo (arg1, arg2) { var x = arg1 + 2; function bar(arg3) { x++; return arg2 + arg3 + x; } return bar; }
When I call foo(a, b), first it stores a + 2 in a new variable, x. It then creates and returns a new function bar which we refer to as being closed over x, arg1, and arg2. What this means is that not only is it able to access arg3, it can also access x, arg1, and arg2. A "closure" is the combination of a function--some piece of code--and all the variables it has access to. A function plus its memory, as it were. Anyway, function bar then increments x--this is the *same x* as in function foo. So if we were to call bar twice, x would increase by 2. function bar then returns b plus its parameter (arg3) plus x.
By using closures, I can create a variable and then make it only modifiable by a particular routine. I can essentially make the variable "private". Say I had some module that counted something. I don't want somebody else's module to be able to reset the counter. I dont' want someone to increment the counter by more than one. I can put the counter variable in a closure and pass a function around that increments the counter, without letting anyone actually be able to mess with the counter directly (i.e., other than through the function). This is one of many ways in which closures are useful.
Sorry if that wasn't a great explanation, I've been writing a compiler for like 12 hours and I'm tired. Hope this helped.If there is no sound in space, how come you can hear the lasers?
){ :|:& };:
Comment
Comment