QDB: Bottom of the Barrel
About / Latest / Random / Queue / Prefs / Donate / Submit Quote / Search

TodayLatestBestTopWorst1337Random<Prev1..570571572573574575576..596Next>
#27364 (63/261) ↑Good ↓Bad ⚐Flag
<sheeps> I had two chicks
<sheeps> in my room
<sheeps> I had two chicks
<sheeps> on my bed
<sheeps> I had two chicks
<sheeps> they did loom
<sheeps> I had two chicks
<sheeps> give me head
<sheeps> ok, the last bit was a lie
<sheeps> and I have no fucking clue what loom means but yeah
#29112 (63/267) ↑Good ↓Bad ⚐Flag
<Dekkon> i wonder what it takes to join the cia
<Ken-wr0k> suck a lot of dick
<Dekkon> then your mom must be way up there in the ranks
#32569 (63/267) ↑Good ↓Bad ⚐Flag
<`bare> mm this PCMCIA card smells soo good
<`bare> smells like fabric softener and cologne
<`bare> I can't fucking stop smelling it
<`bare> I am such a whore
<mef> insert into rectum
<rolloffle> lol
<`bare> No that would kill the good smell
<`bare> and plus it is shaped like a credit card
<`bare> doesn't fit well
<`bare> ergonomically like
<rolloffle> lol
#37289 (63/203) ↑Good ↓Bad ⚐Flag
(Eagle): I just watched a cock fight
(Deranged): You and your boyfriend at it again?
#47251 (63/227) ↑Good ↓Bad ⚐Flag
[@xe\ara] a kid raped a care bear at my store a while back
[@xe\ara] cut a hole in it
[@xe\ara] and bam
[@xe\ara] left some nog in it. the woman that found him doing that
[@xe\ara] thought he was stuffin it with shit to steal
[@xe\ara] reached her hand in...
[@xe\ara] wasnt pleasant
Comment: #sbk irc.enterthegame.com
#73499 (63/429) ↑Good ↓Bad ⚐Flag
<qedft> So I'm a nerd right
<qedft> And I was playing counterstrike 1.6
<qedft> Which I made a (buggy) mod for
<qedft> And so I had no life at all
*** cached sets mode: +b *!*@host62-7-101-176.btinternet.com
*** qedft was kicked by cached (stop repeating yourself)
#116163 (63/189) ↑Good ↓Bad ⚐Flag
<sly> being a sex addict is a bad thing?
<hohum> only for ugly people
#214202 (63/145) ↑Good ↓Bad ⚐Flag
<Lightning> my mom and dad put a pw on all my games and stuff except for irc
<Shrink> You could always try and brute force it
<Lightning> i'm not gonna hit a couple of elderly people!!
#304853 (63/143) ↑Good ↓Bad ⚐Flag
<Brend> "I have created a revolutionary AI from first principles! Also, can anyone tell me how to draw coloured dots on the screen?"
#307708 (63/103) ↑Good ↓Bad ⚐Flag
* rycuda has just been offered an amp
<@Al> After being given a shock like that it's wise to have a coulomb-down period
<@mgsts> I'm trying to decide watt a suitable punishment for these awful puns is
<@OneCruelBagel> mgsts: it's not his volt, he has troubles at ohm.
<@OneCruelBagel> We should let him have some peace faraday.
#309167 (63/111) ↑Good ↓Bad ⚐Flag
<bob> how does Pandora not have an xbox app.
<jmather> bob: because it's not pandora's box
#309636 (63/93) ↑Good ↓Bad ⚐Flag
<@Jano> Last time I ordered pizza the delivery chick got stuck in the elevator for an hour.
<@Jano> And when she got out she told me she didn't have my pizza.
<@Jano> It was great.
<@Lorkki> did she eat it
<@Jano> No. She just didn't have it. She had the wrong stuff.
<@Jano> They hadn't even made it.
#309944 (63/73) ↑Good ↓Bad ⚐Flag
<xplat> man, i am just amazed at how bad rhythmbox is
<xplat> i mean it, i'm literally amazed
<xplat> not just at how long it stayed the default gnome music player while being so bad, i've come to expect things like that
<xplat> it's how they managed to avoid all the obvious and easy mistakes and find a whole other set of mindblowingly inobvious mistakes to make instead
#310170 (62/70) ↑Good ↓Bad ⚐Flag
<kmc> it's depressing how many security holes have the root cause that "int" is a lot shorter to type than "unsigned int"
#310326 (63/81) ↑Good ↓Bad ⚐Flag
< Spengo> so
< Spengo> I met up with one of my transgender friends who I haven't seen in forever
< Spengo> had a child
< Spengo> now he's transparent
< ryantmer> Somewhere, a drummer did a rimshot, and they have no idea why
< xmc> so technically you still haven't seen him
< ryantmer> Ha!
#310817 (63/85) ↑Good ↓Bad ⚐Flag
(Foone) did you hear about how my OBJ export system worked? that was the...
software centipede
(Foone) so I ran the target program in a debugger inside a VM, pausing on a
specific breakpoint. I also ran script in the VM that provided HTTP
access to RAM, so you could hit localhost:8080/ADDRESS/LENGTH and
get the contents of memory back
(Sotek) what
(Sotek) what.
(Foone) outside the VM I ran a script which connected to this and made a few
hundred requests and assembled the contents into a tree, which it
then exposed as a JSON endpoint
(Foone) then my opengl app (also running outside the VM, because 3d
acceleration) made a request to the JSON endpoint, loaded those
models and textures, then it would run the render function in a
special mode where instead of drawing each node it stored them to a
global dictionary, then reparsed that dictionary and exported it as an
OBJ file, which I then opened in blender, made manual fixes, exported
back out to STL, ran a script to package the STL + assorted textures,
then I manually uploaded that to shapeways which did further processing
and then they mailed me the completed model
(Foone) fun fact: the OS/2 mailing list CD of 1996 was involved in this
process, but you'll never guess where
(Foone) it was used in setting the breakpoint. see, the program was statically
linked with the 3D library used but I have no debugging symbols. but I
found a copy of the same(ish) library from the OS/2 developers
conference mailing list CD, which is provided in .lib format so I _do_
have symbols
(Foone) so by comparing the disassembly of the functions in the OS/2 .lib and
the EXE, I could identify them in the EXE
(Foone) this let me find where the main render function was called, so I know
at what point to set the breakpoint
(Foone) I also got the headers from it, which gave me the layout of the
structures in memory.
(Foone) I already kinda had those thanks to a carmageddon fansite, though
(Foone) yeah. carmageddon 1 for DOS used the same engine as the app I was targeting
(Foone) and they found an SDK manual for it from somewhere
Comment: This was to 3d print things from 3d movie maker
#310864 (63/77) ↑Good ↓Bad ⚐Flag
<Raven> Is it still Passover?
<Kyol> Is Jesus still dead?
<Morwen> No Kyol, thats what Easter was all about.
<Kyol> Ah. So let me see. He gets nailed to a tree on Good Friday, spends a few days in a cave, comes out on Easter.. Then  what?
<hockwork> if he sees his shadow, its another 6 weeks of winter
#1036 (64/238) ↑Good ↓Bad ⚐Flag
<Thinkmad> lets get up a game of cs
<Thinkmad> fsho
<Thinkmad> i want to make a map
<Guilty> Oh god
<Guilty> You would have penis's hidden EVERYWHERE
#1266 (64/246) ↑Good ↓Bad ⚐Flag
<NonFish[> I installed Norton SystemWorks once and it tried to take over my computer =|
<NonFish[> I had to bust a regedit.exe cap in it's bitch ass.
#2149 (64/210) ↑Good ↓Bad ⚐Flag
<novocain> so i have a "lesbian hot tub party to go to next weekend
<JFalcon> novocain, good for you, did you make sure they have running water?
<novocain> its my wife's lesbian friends
#2958 (64/238) ↑Good ↓Bad ⚐Flag
<datz510> u prolly race grandmas goin tot he grocery store too huh
<BenK> no
<BenK> I race hardcore racers
<BenK> people with tinted windows
<BenK> and 20 inch rims
<datz510> Ben.. like other hondas?
#3602 (64/219) ↑Good ↓Bad ⚐Flag
<Baby-d> I set up a shoutcast last night while I was pretty wasted, it's fuckin tight though
<SilverJag> I guess
<Baby-d> you guess!?!
<Baby-d> show some more enthusiasim!
<Baby-d> :)
<SilverJag> I cant I have diahreaa
#5755 (64/230) ↑Good ↓Bad ⚐Flag
<@zartik> i just banned someone from #freebsdhelp
<@zartik> and he msg's me:
<@zartik> -06:46- [      hegemon ] So I have nobody to turn to and must go back to Windows.
<@madog> should be nice and unban him, thats evil to make him use windows =<
#8357 (64/252) ↑Good ↓Bad ⚐Flag
<Allen_Schezar> Poptarts is kinda like Popstars but with much more punch, flavor and, oh yeah, sex appeal and intelligence :D
#8529 (64/234) ↑Good ↓Bad ⚐Flag
<teste_fly> "um yes, i'd like to withdraw from life please"
<teste_fly> "will that be checking or savings?"
<teste_fly> "hmm, i think i just want to cancel my account"
save page | share <Prev1..570571572573574575576..596Next>

About / Latest / Random / Queue / Prefs / Donate / Submit Quote / Search
14,883 quotes approved; 8,694 fermenting; karma: 189.4820