Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-

Occlusion culling.

Name: cb 2013-05-22 15:31

How would I go about occlusion culling a set of 2.5D rectangles (2D rectangles with 3D transforms applied to them) so that:

1) The quads are rendered in the right order.
2) Quads that intersect other shapes are split into several other shapes that are then ordered.

Essentially, I'm looking to a solution to this (https://bugzilla.mozilla.org/show_bug.cgi?id=689498) but for an unrelated question.

Asked this on SO a while ago but didn't really get a satisfactory answer in terms of an actual, acceptable algorithm: http://stackoverflow.com/questions/16582320/occlusion-culling-3d-transformed-2d-rectangles

Name: Anonymous 2013-05-22 19:58

Yeah, those suggestions aren't too bad: either z-buffering, raycasting or splitting the geometry.
If you don't know 100% what you're doing, I'd recommend against splitting the geometry, though. A naive implementation isn't too complex but as that one guy already pointed out, complexity (time and memory-wise) may be a real problem if you don't have a super-sophisticated-Carmack-grade algorithm.
For raycasting you might also require some more sophisticated stuff.
To get to the point: I'd recommend OpenGL with some sort of z-buffering (``Solution #2''). Even if you don't have HW-Acceleration, most OpenGL-Software-Renderers (Mesa, and even the Win32 fallback renderer) should perform pretty well, even for higher resolutions (where z-buffering and raycasting are usually weak, due to memory speed limits). Unfortunately I can't really give you hints as to how z-buffering works with transparency (how it's actually implemented).
2) Quads that intersect other shapes are split into several other shapes that are then ordered.
...will not happen with z-buffering, though. You just test every pixel for visibility before it's drawn, geometry will stay untouched. Naturally you'll also have some overdraw here.

Maybe I can post something useful tomorrow, it's already 2 am here...

Name: Anonymous 2013-05-22 20:52

2.5D rectangles

what have you been smoking?

Name: Anonymous 2013-05-22 21:13

>>3
your mother's anus

Name: Anonymous 2013-05-22 21:36

>>1
Christina Brooks
Oy vey, we've got a woman here!

Name: Anonymous 2013-05-22 21:42

>I have experience with the following languages:
    * x86 Assembly
    * ARM Assembly

    * C
    * Objective-C
    * C++ (and EC++)


    * Python
    * PHP (Ashamed of it)
    * Perl
    * JavaScript

    * HTML
    * CSS


Typical woman who hasn't read her SICP. Back to Reddit News, please.

Name: Anonymous 2013-05-22 21:43

>>6
I fucked up!

Name: Anonymous 2013-05-22 21:52

You will get an answer only if you post your Gensokyo Citizenship ID with a timestamp.

Name: Anonymous 2013-05-22 21:57

>>8
mad virgin

Name: Anonymous 2013-05-22 22:10

Holy shit, take a course in linear algebra! Honestly, you just want to find an intersecting line and it's causing you all this trouble?

Name: Anonymous 2013-05-22 22:12

>>9
No, I'm a happy virgin willing to help the Touhous.

What are you, a mad non-virgin? Pathetic.

Name: Anonymous 2013-05-22 22:13

>>10
She's a she, give her a break.

Name: Anonymous 2013-05-22 22:23

>>12
She's a it until it learns some linear fucking algebra.

Name: Anonymous 2013-05-22 22:24

>>13
She's a it, give that thing a break.

Name: Anonymous 2013-05-22 22:27

>>5
A transgender woman!

Name: Anonymous 2013-05-22 22:28

>>13
Woman can't do math, silly goy.

Name: Anonymous 2013-05-22 22:38

>>16
No, but females can.

Name: Anonymous 2013-05-22 22:55

>>6
him are*

Name: Anonymous 2013-05-22 23:29

>>17
Females can't do math either, silly gentile.

Only manly male men can do math.

Name: Anonymous 2013-05-22 23:38

>>19
Manly male men can only do minimum wage moving-heavy-boxes-around jobs; their peak of intellectuality of the week occurs as they are comparing the scores of the two teams in the football match they are watching to see which is leading.

Also don't "gentile" me you filthy goy.

Name: Anonymous 2013-05-22 23:42

>>20
Oh, we have different concepts of manly then. A manly male men is someone who's not afraid of monads or lambda calculus. If someone is afraid of those, you can call them faggots.

I "gentile"d you again, goy.

Name: Anonymous 2013-05-23 0:03

>>21
That's like those people who redefine common words like racism.

Name: Anonymous 2013-05-23 0:10

ITT: goys

Name: Anonymous 2013-05-23 0:14

>>23
Goyim is the plural of goy, goy.

Name: Anonymous 2013-05-23 0:14

>>24
Spoken like a true goyela

Name: Anonymous 2013-05-23 0:33

Name: Anonymous 2013-05-23 0:41

>>26
It was real in my mind.

Name: Anonymous 2013-05-23 0:45

>>27
They gassed us hard,
They gassed us long,
They gassed us in our sleep,
They gassed my entire family,
Until there was no peep!
They gassed us day by day by day,
Oy vey, oy vey, oy vey!
Some filthy goyim say,
The shoah was a lie.
But my friend,
I think you’ll find,
It was real in my mind!

Name: Anonymous 2013-05-23 0:57

Name: Anonymous 2013-05-23 1:04

Hate to break it to you Gerald, but christina is a guy who thinks he can get away with passing himself off as a girl.

But that isnt why you helped him is it? No, it is because he is ethnically kosher.

Name: Anonymous 2013-05-23 1:46

>>28
5 star post.

Name: Anonymous 2013-05-23 4:49

http://stackoverflow.com/questions/16582320/occlusion-culling-3d-transformed-2d-rectangles
Soltuion #1 (extremely difficult):
apparently proper spelling is also extremely difficult

>>30
at least he's not a self-hating russian KIKE

Name: Anonymous 2013-05-23 4:57

>>1
Asked this on SO a while ago but didn't really get a satisfactory answer
So instead you turned to the most helpful programming board in the universe, /prog/.

Name: cb 2013-05-23 5:09

>>33
Never hurts to try. Haha, people here are dicks.

Name: (΄◉◞౪◟◉`) 2013-05-23 5:44

<b>( ;⊙´◞౪◟`⊙)</b>

Name: Anonymous 2013-05-23 6:12

>>10
hmm.. how to find those lines in 3d?
Could you use the diagonals..?

Name: Anonymous 2013-05-23 6:21

>>36
There are these funny things called equations.

Name: Anonymous 2013-05-23 6:26

even better if you can quickly check if there is an intersection first..?
seems like you should zero a dimension relative to the given plane, then look for positive/negative crossings in the area =D

Name: Anonymous 2013-05-23 6:44

a plane is defined as a line and a point (not on the line)?
....do polygons that aren't triangles ever get messy? (planar twist?) eg. (0,0,0,/0,1,1/1,0,1/1,1,0)

Name: Anonymous 2013-05-23 6:47

^^ gives co-ords for a tetrahedron....

Name: (΄◉◞౪◟◉`) 2013-05-23 7:06


        ___
      /      \
   /          \
  /   ⌒   ⌒   \
  |  /// (__人__) ///   |
. (⌒)              (⌒)
./ i\            /i ヽ

Name: Anonymous 2013-05-23 7:27

...so is that a simple hyper-plane in 3d?
ugh flat polygons seem so 1980's xD

Name: Anonymous 2013-05-23 7:30

hmm.. i should probably try to render it

Name: Anonymous 2013-05-23 7:40

RENDER MY ANUS

Name: Anonymous 2013-05-23 8:30

but it should roughly look like a taut piece of paper twisted 90 degrees..?

Name: Anonymous 2013-05-23 8:39

and i think all four edges will still be straight... which seems weird for a curved surface

Name: Anonymous 2013-05-23 13:44

>>32
I'm not self-hating, russian, or a kike either.
Also you have no clue if chris hates himself or is russian.

Name: Anonymous 2013-05-23 13:46

>>47
It's cute when goyim brag about being goy.

Name: Anonymous 2013-05-23 14:18

Name: Anonymous 2013-05-23 14:21

>>48
I fucked ben gurion in the ass and jizzed in it

Name: Anonymous 2013-05-23 16:25

>>34
I apologize for the personal insults, but we have no mods here. Please try to ignore the shitposters.

Name: Anonymous 2013-05-23 17:13

Please try to ignore the shitposters.
This board wouldn't have any posts at all if you did that.

Name: Anonymous 2013-05-23 17:35

>>34
Haha, I know, right! These people are pricks :P

I like Reddit more, they're more friendly and they have a silly sense of humor I really like XD We should go there!

Name: Anonymous 2013-05-23 17:46

>>53
You're alright sometimes, hymie.
But I'm still gonna eradicate you.

Name: Anonymous 2013-05-23 17:58

>>54
Allahu ackbar, kebab brother!

I fucking love roleplaying as a shitskin-hating Jew and as a kike-hating Muslim in /prog/. I'm actually an agnostic Australian.

Name: Anonymous 2013-05-23 18:03

>>55
Shalom! I'm ``agnostic'' too, it's very kosher.

Name: Anonymous 2013-05-23 18:04

Name: 57 2013-05-23 18:07

Also,
https://dis.4chan.org/read/prog/1366776017 If Programming Languages Were Sailor Soldiers
https://dis.4chan.org/read/prog/1298607051 If programming languages were
https://dis.4chan.org/read/prog/1298615719 If programming languages were
https://dis.4chan.org/read/prog/1311011288 If programming languages were memes
https://dis.4chan.org/read/prog/1360025432 If programming languages were...
https://dis.4chan.org/read/prog/1271714162 if programming languages were philosophies
https://dis.4chan.org/read/prog/1272405434 If programming languages...
https://dis.4chan.org/read/prog/1238206861 If programming languages were 4chan boards
https://dis.4chan.org/read/prog/1350048569 What if programming languages were nations?
https://dis.4chan.org/read/prog/1343690357 If Programming Languages were People
https://dis.4chan.org/read/prog/1342499620 If programming languages were vehicles
https://dis.4chan.org/read/prog/1334630624 If programming languages were religions
https://dis.4chan.org/read/prog/1328064448 If programming languages were dogs
https://dis.4chan.org/read/prog/1322939068 If programming languages were dicks
https://dis.4chan.org/read/prog/1319217090 If programming languages were
https://dis.4chan.org/read/prog/1318824504 If programming languages were
https://dis.4chan.org/read/prog/1317474365 What if programming languages were...
https://dis.4chan.org/read/prog/1316477566 If programming languages were
https://dis.4chan.org/read/prog/1314485763 If programming languages were RPG classes
https://dis.4chan.org/read/prog/1303572438 If programming languages were fungi
https://dis.4chan.org/read/prog/1299063627 If programming languages ...
https://dis.4chan.org/read/prog/1298625683 If programming languages were
https://dis.4chan.org/read/prog/1298557918 If programming languages were
https://dis.4chan.org/read/prog/1298557434 If programming languages were
https://dis.4chan.org/read/prog/1298525226 If programming languages were
https://dis.4chan.org/read/prog/1298519361 If programming languages were
https://dis.4chan.org/read/prog/1294044577 If programming languages were women
https://dis.4chan.org/read/prog/1284097643 If programming languages were Beatles
https://dis.4chan.org/read/prog/1283908431 If programming languages were grass
https://dis.4chan.org/read/prog/1283889558 If programming languages were brass
https://dis.4chan.org/read/prog/1282706733 If programming languages were
https://dis.4chan.org/read/prog/1282579715 If programming languages were the cancer
https://dis.4chan.org/read/prog/1282579382 If programming languages were Touhous
https://dis.4chan.org/read/prog/1271879234 What if programming languages
https://dis.4chan.org/read/prog/1271767397 If programming languages were /prog/riders
https://dis.4chan.org/read/prog/1271736367 If programming languages were threads on prog
https://dis.4chan.org/read/prog/1271731749 If programming languages were trolls
https://dis.4chan.org/read/prog/1271715522 If programming languages were...
https://dis.4chan.org/read/prog/1250402035 IF PROGRAMMING LANGUAGES WERE
https://dis.4chan.org/read/prog/1250026801 If programming languages were...
https://dis.4chan.org/read/prog/1237968018 If programming languages were animals
https://dis.4chan.org/read/prog/1237967134 If programming languages were philosophies:
https://dis.4chan.org/read/prog/1229711711 If Programming Languages were Languages
https://dis.4chan.org/read/prog/1229688912 If programming languages were languages
https://dis.4chan.org/read/prog/1229645581 If programming languages were prog. languages
https://dis.4chan.org/read/prog/1229639546 If programming languages were religions
https://dis.4chan.org/read/prog/1229589050 If programming languages were religions
https://dis.4chan.org/read/prog/1229570666 If programming languages were religions
https://dis.4chan.org/read/prog/1229050988 If programming languages were bands

Name: 57 [PART I] 2013-05-23 18:10

Also,
https://dis.4chan.org/read/prog/1368293131 How do you pronounce /gorp/?
https://dis.4chan.org/read/prog/1363496668 HOW DO YOU SAY ``daemon''?
https://dis.4chan.org/read/prog/1359649286 How do you pronounce ``X.org''?
https://dis.4chan.org/read/prog/1212717072 How do you pronounce Haskell?
https://dis.4chan.org/read/prog/1358688216 How do you pronounce he/she/it?
https://dis.4chan.org/read/prog/1209292333 How do you pronounce "hax my anus"?
https://dis.4chan.org/read/prog/1269626541 How do you pronounce ``[/sup]''?
https://dis.4chan.org/read/prog/1253084807 How do you pronounce ``Tcl\Tk&quot;?
https://dis.4chan.org/read/prog/1258668326 How do you pronounce Sepples?
https://dis.4chan.org/read/prog/1291169330 How do you pronounce ``BBcode''
https://dis.4chan.org/read/prog/1190400941 How do you pronounce ``laptop''?
https://dis.4chan.org/read/prog/1225422250 How do you pronounce C++0x
https://dis.4chan.org/read/prog/1266610112 How do you pronounce CLOS?
https://dis.4chan.org/read/prog/1205107681 How do you pronounce words without threads?
https://dis.4chan.org/read/prog/1352769251 How do you pronounce V8?
https://dis.4chan.org/read/prog/1351793734 How do you pronounce ``cout'' ?
https://dis.4chan.org/read/prog/1351521569 How do you pronounce ``FIOC&quot;?
https://dis.4chan.org/read/prog/1351408601 How do you pronounce ``SICP''?
https://dis.4chan.org/read/prog/1350640671 How do you pronounce clang?
https://dis.4chan.org/read/prog/1350024437 How do you pronounce MIME?
https://dis.4chan.org/read/prog/1348989528 How do you pronounce ``GNOME''?
https://dis.4chan.org/read/prog/1348427938 How do you pronounce ``e^x&quot;?
https://dis.4chan.org/read/prog/1348158565 How Do You Pronounce ``LISP&quot;?
https://dis.4chan.org/read/prog/1348176552 How do you pronounce ``pronounce''?
https://dis.4chan.org/read/prog/1347548856 How Do You Pronounce ``int foo(int x);&quot;
https://dis.4chan.org/read/prog/1347328026 how do you pronounce stderr
https://dis.4chan.org/read/prog/1347019789 How do you pronounce ``MySQL''?
https://dis.4chan.org/read/prog/1347056925 How do you pronounce ``world4ch''
https://dis.4chan.org/read/prog/1347031784 How do you pronounce ``/prog/&quot;
https://dis.4chan.org/read/prog/1345743717 How do you say XSLT?
https://dis.4chan.org/read/prog/1235499752 How do you pronounce ``reddit''?
https://dis.4chan.org/read/prog/1300974781 How do you pronounce ``POSIX''?
https://dis.4chan.org/read/prog/1342098860 How do you pronounce ``LiveCD''?
https://dis.4chan.org/read/prog/1190705174 How do you pronounce ``cdr&quot;
https://dis.4chan.org/read/prog/1204007432 How do you pronounce ``YAML''?
https://dis.4chan.org/read/prog/1336405892 How do you pronounce ``iraqi''?
https://dis.4chan.org/read/prog/1331828747 How do you pronounce ``cosh''?
https://dis.4chan.org/read/prog/1330367252 How do you pronounce
https://dis.4chan.org/read/prog/1327722208 How do you pronounce Jew?
https://dis.4chan.org/read/prog/1324310912 How do you pronounce ``Sepples''?
https://dis.4chan.org/read/prog/1319716592 How do you pronounce 'aquis'
https://dis.4chan.org/read/prog/1319134922 How do you pronounce malloc
https://dis.4chan.org/read/prog/1314929588 How do you pronounce Xarn?
https://dis.4chan.org/read/prog/1314915584 How do you pronounce Touhou?
https://dis.4chan.org/read/prog/1314398020 How do you pronounce WebGL?
https://dis.4chan.org/read/prog/1308864597 How do you pronounce &quot;nigger&quot;?
https://dis.4chan.org/read/prog/1302801699 How do you pronounce ``VDPAU''?
https://dis.4chan.org/read/prog/1299258011 How do you know if you have autism?
https://dis.4chan.org/read/prog/1298804480 How do you pronounce
https://dis.4chan.org/read/prog/1293879330 how do you pronounce (void*)
https://dis.4chan.org/read/prog/1291437821 How do you pronounce 192.168.0.1?
https://dis.4chan.org/read/prog/1291202868 How do you pronounce ``LISP''?
https://dis.4chan.org/read/prog/1291169007 How do you pronounce ``/prog/''?
https://dis.4chan.org/read/prog/1291162090 How do you pronounce puddi?
https://dis.4chan.org/read/prog/1291138915 How do you pronounce prog
https://dis.4chan.org/read/prog/1291133382 How do you pronounce ``sqrt''?
https://dis.4chan.org/read/prog/1291118449 How do you pronounce SICP
https://dis.4chan.org/read/prog/1290854252 How do you pronounce ``i++'' ?
https://dis.4chan.org/read/prog/1290509405 How do you pronounce ``fprintf''?
https://dis.4chan.org/read/prog/1288467942 How do you pronounce GNU/Linux?
https://dis.4chan.org/read/prog/1281177523 How do you pronounce ZiB?
https://dis.4chan.org/read/prog/1277231153 how do you pronounce ``cairnarvon''
https://dis.4chan.org/read/prog/1275662083 How do you pronounce ``SexpCode''?
https://dis.4chan.org/read/prog/1274386696 How do you pronounce sussman?
https://dis.4chan.org/read/prog/1265708334 How do you pronounce ``Haskell''?
https://dis.4chan.org/read/prog/1262984317 How do you pronounce ``FizzBuzz''?
https://dis.4chan.org/read/prog/1262915285 How do you pronounce ``X''?
https://dis.4chan.org/read/prog/1262863299 How do you pronounce ``FizzBuzz''?
https://dis.4chan.org/read/prog/1262765228 How do you pronounce ``Homework''?
https://dis.4chan.org/read/prog/1259864380 How do you pronounce ``Haxus''?
https://dis.4chan.org/read/prog/1240506388 How do you pronounce ``Qatar''
https://dis.4chan.org/read/prog/1237644321 How do you pronounce YHBT?
https://dis.4chan.org/read/prog/1235767820 How do you pronounce &quot;Cudder&quot;?
https://dis.4chan.org/read/prog/1234633777 How do you pronounce &quot;Ubuntu&quot;
https://dis.4chan.org/read/prog/1234378140 How do you pronounce ``xs''?
https://dis.4chan.org/read/prog/1233816912 How do you pronounce ``meme''?
https://dis.4chan.org/read/prog/1228375425 How do you pronounce XOR?
https://dis.4chan.org/read/prog/1227852905 How do you pronounce XKCD
https://dis.4chan.org/read/prog/1227418917 How do you pronounce Guido van Rossum?
https://dis.4chan.org/read/prog/1221603467 How do you pronounce ``FIOC?''
https://dis.4chan.org/read/prog/1219879934 How do you pronounce ``SICP?''
https://dis.4chan.org/read/prog/1212231614 How do you pronounce ``debug''?
https://dis.4chan.org/read/prog/1210349305 How do you pronounce ``J2EE"?
https://dis.4chan.org/read/prog/1206990647 How do you pronounce ``.swf"?
https://dis.4chan.org/read/prog/1205328635 How do you pronounce "daemon"?
https://dis.4chan.org/read/prog/1205166649 How do you pronounce SEPPLES?
https://dis.4chan.org/read/prog/1205077247 How do you pronounce ``rms"?
https://dis.4chan.org/read/prog/1204835550 How do you pronounce ``''?
https://dis.4chan.org/read/prog/1204648665 How do you pronounce ``Reddit''?
https://dis.4chan.org/read/prog/1204552411 how do you pronounce ``LaTeX"?
https://dis.4chan.org/read/prog/1204403123 How do you pronounce your name?

Name: 57 [PART II] 2013-05-23 18:10

https://dis.4chan.org/read/prog/1204216504 How do you pronounce 'SICP'?
https://dis.4chan.org/read/prog/1203901833 How do you pronounce ``fstab''
https://dis.4chan.org/read/prog/1203700284 How do you pronounce '"char"?
https://dis.4chan.org/read/prog/1203587261 how do you pronounce 'query'
https://dis.4chan.org/read/prog/1203085938 How do you pronounce NASA?
https://dis.4chan.org/read/prog/1203018287 How do you pronounce GUI?
https://dis.4chan.org/read/prog/1202725762 How do you pronounce /prog/?
https://dis.4chan.org/read/prog/1202592575 How do you pronounce ``SQL'' ?
https://dis.4chan.org/read/prog/1201273542 How do you pronounce Linux?
https://dis.4chan.org/read/prog/1201141980 How do you pronounce ``cdr''
https://dis.4chan.org/read/prog/1200294533 How do you pronounce ``exception''
https://dis.4chan.org/read/prog/1200091675 How do you pronounce ``WYSIWYG''
https://dis.4chan.org/read/prog/1199986372 How do you pronounce DEVELOPERS?
https://dis.4chan.org/read/prog/1199800982 How do you pronounce ``cadr''?
https://dis.4chan.org/read/prog/1199416354 How do you pronounce ``K&amp;R"
https://dis.4chan.org/read/prog/1198273267 how do you pronounce ­­­­­``apples''
https://dis.4chan.org/read/prog/1197895965 How do you pronounce Meme
https://dis.4chan.org/read/prog/1196060618 How do you pronounce ``/prog/''?
https://dis.4chan.org/read/prog/1194332202 How do you pronounce ``tune a fish''?
https://dis.4chan.org/read/prog/1193405311 How do you pronounce ``{}''?
https://dis.4chan.org/read/prog/1193241839 how do you pronounce ­­­­­``bullshite"
https://dis.4chan.org/read/prog/1192473083 How do you pronounce ``caar''?
https://dis.4chan.org/read/prog/1191707517 how do you pronounce ``scheme"
https://dis.4chan.org/read/prog/1191516776 How do you pronounce ``gif''?
https://dis.4chan.org/read/prog/1191260505 How do you pronounce ``Linux''?
https://dis.4chan.org/read/prog/1191077632 How do you call an object's elements?
https://dis.4chan.org/read/prog/1191065667 How do you write a decimal separator?
https://dis.4chan.org/read/prog/1190434475 how do you pronounce Over used meme
https://dis.4chan.org/read/prog/1190414179 how do you pronounce ``eunuchs&quot;
https://dis.4chan.org/read/prog/1190358820 how do you pronounce ­­­­­``#&quot;
https://dis.4chan.org/read/prog/1190113895 how do you pronounce ­­­­­``sage&quot;
https://dis.4chan.org/read/prog/1190102893 How do you pronounce java?
https://dis.4chan.org/read/prog/1190064701 how do you pronounce ``.NET&quot;
https://dis.4chan.org/read/prog/1190063025 How do you pronounce ­­­­­``stdout&quot;
https://dis.4chan.org/read/prog/1189975983 how do you pronounce &quot;CMPXCHG8&quot;
https://dis.4chan.org/read/prog/1189913093 How do you pronounce ``cout''?
https://dis.4chan.org/read/prog/1189866981 how do you pronounce ­­­­­``printf&quot;
https://dis.4chan.org/read/prog/1189547360 How do you pronounce ``car''
https://dis.4chan.org/read/prog/1189524318 How do you pronounce ``[item]''
https://dis.4chan.org/read/prog/1189511836 How do you pronounce &quot;irssi&quot;?
https://dis.4chan.org/read/prog/1189308491 How do you pronounce ``TAoCP''?
https://dis.4chan.org/read/prog/1189303883 How do you pronounce ``Cudder''?
https://dis.4chan.org/read/prog/1189209918 How do you pronounce ``Edsgar''?
https://dis.4chan.org/read/prog/1189157891 How do you pronounce ``FAGGOT?
https://dis.4chan.org/read/prog/1189111738 How do you pronounce ``Bjarne''?
https://dis.4chan.org/read/prog/1188926680 How do you write quotation marks
https://dis.4chan.org/read/prog/1188921820 How do you pronounce ``SICP''
https://dis.4chan.org/read/prog/1188816071 How do you pronounce ``Knuth''?
https://dis.4chan.org/read/prog/1188769344 How do you pronounce “CDR”?
https://dis.4chan.org/read/prog/1188117918 How do you pronounce ``Lisp''
https://dis.4chan.org/read/prog/1188093029 How do you pronounce Python?
https://dis.4chan.org/read/prog/1188051182 How do you pronounce ``Perl''
https://dis.4chan.org/read/prog/1188012427 How do you pronounce ``Dijkstra''
https://dis.4chan.org/read/prog/1187648545 How do you pronounce ``C++''?
https://dis.4chan.org/read/prog/1185487945 How do you pronounce ``SQL''?
https://dis.4chan.org/read/prog/1181272244 How do you pronounce `cdr'?
https://dis.4chan.org/read/prog/1133990985 How do you call your functions?
https://dis.4chan.org/read/prog/1124899498 How do you pronounce...

Name: Anonymous 2013-05-23 18:28

>>57-60
Stop it, I still have work to do!

Name: Anonymous 2013-05-23 18:36

▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█     ___                        █
█    /
/  7                       █
█   (_,_/\       WORSHIP THIS    █
█    \    \   YOUR THROBBING GOD █
█     \    \                     █
█     _\    \__                  █
█    (   \     )                 █
█     \___\___/                  █
█                                █
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

Name: Anonymous 2013-05-23 18:37

▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
█     ___                        █
█    /
/  7                       █
█   (_,_/\       WORSHIP THIS    █
█    \    \   YOUR THROBBING GOD █
█     \    \                     █
█     _\    \__                  █
█    (   \     )                 █
█     \___\___/                  █
█                                █
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

Name: Anonymous 2013-05-23 18:44

Why is Luke-cunt such a fucking retard? He barely knows how to use Matlab and he doesn't know what a fucking equation is, he also says "polygons are so 1980 LEEEEL XD".

>>56
Salam! Being a muslim must be very exciting, almost explosive. Very halaal.

Name: Anonymous 2013-05-23 18:50

>>64
his parents dropped him when he was a baby. several times.

Name: Anonymous 2013-05-23 20:23

>>64
Shalom! Being with a child sexually must be very exciting, almost orgasmic. Very halaal.

Name: Anonymous 2013-05-23 21:30

>>66
It was supposed to be "very kosher" you dumb nigger.

Dumb nigger. DUMB. NIGGER.

Name: Anonymous 2013-05-23 21:34

Dumb nigger.
Isn't that kind of redundant?

Name: Anonymous 2013-05-23 21:49

>>68
Redundancy is useful.

Name: Anonymous 2013-05-23 21:51

>>64 you just jelly you didn't discover non-flat polygons..
They'll be all the rage in a year or two ^^

Name: Anonymous 2013-05-23 22:02

why does this thing built of blocks look so blocky....? xD

Name: Anonymous 2013-05-23 23:17

>>70-71
kill yourself you retarded cunt

Name: Anonymous 2013-05-24 0:02

Luke Yallop I love you.

Name: Anonymous 2013-05-24 9:18

>>73
shut the fuck up you piece of shit faggot I'll fucking kill you

Name: Anonymous 2013-05-24 9:34

>>70
LEL I JUST LE JELLY E/G/IN MEME /G/ROSKI
>LLLLLLLLLLLLEEEEEEEEEEEEEEEELLLLLLLL
>EGWGINWIGNWIGWGPOWGOWGGOWINGRO!
E/G/IN! LEEEEEEEEEEEEEEEEEEEEL ^^ =) XD

Name: Anonymous 2013-05-24 11:17

>>74
y so mad, bro?

Name: Anonymous 2013-05-24 17:39

>>76
Because he's a dirty kike who's jelly of based Luke

Don't change these.
Name: Email:
Entire Thread Thread List