log☇︎
⏐︎ 16407
Framedragger off to bed, looking forward to breakfast in unclear political territory (well when was it ever clear)
mircea_popescu: people in my (and i guess also your) part of the world did a lot of traveling around europe while staying home
mircea_popescu: austria, poland, france, russia, etc.
mircea_popescu: and in other lulz, https://www.youtube.com/watch?v=yGBn-UXpna4
asciilifeform: wats this
asciilifeform: sounds extremely turkish
mircea_popescu: this is actually romanian. gypsy wanna-be sampled a video of orchestra, put his track on top
asciilifeform: l0l!!
mircea_popescu: aha.
mircea_popescu: there's an immense pile of these, they all sound the same, it's a whole subculture.
asciilifeform: in other not at all nyooz, http://everything2.com/title/Fast+6502+multiplication << witness the non-pedi-wikia.
mircea_popescu: complete with all the sclerotic tissue of say hollywood, reproduced at scale.
mircea_popescu: asciilifeform actually long multiply as squares and sums is not half of a bad idea, because binary processor.
mircea_popescu: and ALSO exactly homomorphic to why i said division doesn't belong in there.
asciilifeform: i was sitting for last 20min working out whether this is actually faster than treating the nibbles as digits and table-ating the resulting 'bignum mult' or not
asciilifeform: then got distracted.
mircea_popescu: ie a sort of reverse-plouffe ?
mircea_popescu: my baseless guess would be that yes.,
asciilifeform: mircea_popescu: soooo... let's split bytes p, q into nibbles, p0, p1; q0, q1; p = p1 + 16p2, q = q1 + 16q2
asciilifeform: p * q = p1q1 + 16p2q1 + 16p1q2 + 256p2q2
asciilifeform: ... = p1q1 + (p2q1 << 4) + (p1q2 << 4) + (p2q2 << 8)
asciilifeform: we never do the last term's shling because we know that it is 2nd byte of result.
asciilifeform: so we have mult table lookups (we made a 16x16, or 256bt mult table for nibblez)
asciilifeform: 4 of'em
asciilifeform: we can do the high nibble of the low byte as one add-with-carry followed by a collective shlykk
asciilifeform: ^ yes this is how to pronounce left-shift per asciilifeform
asciilifeform: (6502 didn't have a barrel shifter, so a shift is a 2-cycle op per bit, assuming num is in accumulator.)
asciilifeform: anyway i'm lazy, ... but it still looks faster than the cited 151 cycle worst-case on e2
asciilifeform: any other 8bit sinners here can tell me wtf i'm missing? mircea_popescu ? gernika ?
asciilifeform: http://everything2.com/title/The+Arms+Race+between+Moths+and+Bats << also interesting, in re parallels with modern aerial combat..
mod6: <+mircea_popescu> "open that can!" "Smash that wall!" etc. << heheh
asciilifeform: lel re us mil: http://everything2.com/title/Project+100%252C000
asciilifeform: 'Two months later, on October 1st, as an adjunct to Lyndon Johnson's War on Poverty, Robert Strange McNamara started inducting into the military men who previously would not have qualified in a million years. He called it Project 100,000 ...' ☟︎
mircea_popescu: asciilifeform so you do 4 mults which are iirc 32 cycles each + 3 shifts and 4 additions, for a grand total of ~200
asciilifeform: mno
asciilifeform: we do NO MULTS
asciilifeform: because 6502 aint got no mul.
mircea_popescu: p1q1 < ?
asciilifeform: it's a table lookup !
asciilifeform: 4x4 bit.
mircea_popescu: ah right.
mircea_popescu: pretty big table
asciilifeform: 256 byte.
mircea_popescu: can this live in l1 ?
asciilifeform: mircea_popescu has been smoking some strange or wut
asciilifeform: what l1
asciilifeform: it's a 6502
asciilifeform: http://www.visual6502.org/JSSim/index.html << him.
mircea_popescu: no cache
asciilifeform: no cache.
mircea_popescu: so you seriously talk to the bus each time ?
asciilifeform: aha
mircea_popescu: this can't be fast.
asciilifeform: which had sram hanging off, so who cared
mircea_popescu: hm.
asciilifeform: like mircea_popescu's z80
mircea_popescu: it's a mhz cpu tho, slow as fuck
asciilifeform: the period ver went to 2Mhz
asciilifeform: today's will happily do 20
mircea_popescu: actually uses exactly the 8080 bus huh
asciilifeform: (yes it is in production. pacemakers.)
asciilifeform: i have a couple here.
mircea_popescu: well i have nfi. all my memories are clearly from a different era wtf 20mhz
asciilifeform: mine also!
asciilifeform: i was astonished as well, last year, to learn that it never died
asciilifeform: same guy even, making it.
mircea_popescu: i seriously think if one proposed 20mhz people'd have been "you'll asphyxiate going that fast"
asciilifeform: as in '70s
mircea_popescu: apparently mos tech actually did the "design" oilpen on paper
mircea_popescu: well, "paper". vellum.
asciilifeform: like most people then.
asciilifeform: celluloid iirc.
asciilifeform: at one point it was blokes rolling black electrical tape onto giant celluloid. hence expression 'tapeout', still used today
asciilifeform: 6502 : ~3.5k transistorz.
mircea_popescu: http://btcbase.org/log/2016-06-24#1488966 << marian reform! ☝︎
a111: Logged on 2016-06-24 01:30 asciilifeform: 'Two months later, on October 1st, as an adjunct to Lyndon Johnson's War on Poverty, Robert Strange McNamara started inducting into the military men who previously would not have qualified in a million years. He called it Project 100,000 ...'
asciilifeform: aha!!
mircea_popescu: actually... your table needn't be as large as 256.
asciilifeform: ah yes!
asciilifeform: half of that.
mircea_popescu: there's no need to look up 3 * 4 and 4 * 3 aha
asciilifeform bangs head on desk
asciilifeform: incidentally
asciilifeform: you don't have to <<4 anything either
asciilifeform: can make a table.
mircea_popescu: shifts are fast tho
asciilifeform: nope
mircea_popescu: uh.
asciilifeform: 4 x 2 cycle
asciilifeform: 6502 had no barrrel shifter
mircea_popescu: o really ?
mircea_popescu: still, how the fuck your lookup is going to be less than 8 cycles, you need 2 to call and 2 to return
asciilifeform: each shift was 2cyc instruction (assuming payload is in A reg, otherwise worse)
asciilifeform: lookup is 4 cycle.
mircea_popescu: not 4+io ?
mircea_popescu: i mean in terms of time per se not just cycles.
asciilifeform: e.g., http://wotpaste.cascadianhacker.com/pastes/4da28cef-336b-4f39-bf0f-5614aa90d653/
asciilifeform: remove the rts and inline the procedure to shave cost of the return (which is titanic)
asciilifeform: cycles == time
mircea_popescu: the ram has no latency in all this ?
asciilifeform: this is included in the cycle count
mircea_popescu: no way ?!
asciilifeform: but no, sram has no meaningful (at 6502 speed) latency
mircea_popescu: ah it can actually control sram ?
asciilifeform: a set of flippy switches can control sram
asciilifeform: mircea_popescu is prolly thinking of dram
asciilifeform: the gnarly pile of shit that we use today
mircea_popescu: oh i am yes.
asciilifeform: sram is where you have the actual bistable circuits
mircea_popescu: s is right next to d!
asciilifeform: that sit there happily drawing a femtoamp each
asciilifeform: lel
asciilifeform: and now for the fastest 8bx8b mul of all:
mircea_popescu: still, it's what, 100ns ?
asciilifeform: a 32kb times table!
asciilifeform: only eats half the address space, lel.
asciilifeform: mircea_popescu: 10 is typical
mircea_popescu: that good ? aite.
mircea_popescu: you know, old tech progressed lots since the 70s
asciilifeform: i was quite astonished to learn that sram costs only a couple times less today than in early '90s
asciilifeform: (really from the market for standalone sram chips drying up, i suspect)
mircea_popescu: possibly
asciilifeform: still, interestingly, available...
asciilifeform suspects that 99% of it is used with fpga
mircea_popescu: well, and all the iot crapolade
asciilifeform: nope, not them
asciilifeform: no sram in there.
mircea_popescu: really ?
asciilifeform: well certainly not in own chip package!
asciilifeform: on dies with 'system on chip' crapola - plenty
mircea_popescu: i'd expect they cut corners, what's the budget for "smartening" a juicer, 15 bux ?
asciilifeform: but i was specifically considering standalone 1970s-style package.
mircea_popescu: no i meant soac sort of packages.
mircea_popescu: they still use the chip, however the hot glue is poured atop ya know.
asciilifeform: sram typically gets on die.
asciilifeform: and pieces of shit, e.g., https://wiki.openwrt.org/_media/media/tplink/tl-mr3020/tl-mr3020_top-pcb-gpio-pins.jpg?w=400&tok=e00072 << as i once experimented with for trbification << have dram.
phf: are we moving tmsr infra to 6502?
asciilifeform: mircea_popescu: i'm seeing about $1/MB in qty. something like 1990s...
asciilifeform: phf: probably not most of it.
asciilifeform: but for certain applications it could very easily work.
asciilifeform brb
mircea_popescu: phf more like keeping "unlikely" venue wide open
phf: i'm sure you've seen cl-6502, and i think there's a compiler from the same guy (or perhaps cl-6502 has a compiler too i don't quite remember) ☟︎
mircea_popescu: and from the other perspective, you can have this ensemble in a baloon and solar powered. etc.
BingoBoingo: http://www.riverfronttimes.com/artsblog/2016/06/13/the-st-louis-entrepreneur-behind-greendals-wants-you-to-wear-tires
mircea_popescu: full spectrum dominance, you know ? "first we fuck up your scamcoin, on ops basis, then you spend all you got to try and prop it somewhere around 70% of what it was, then you try to attack bitcoin on fin basis, we rape you, then..."
mircea_popescu: that sorta thing
mircea_popescu: BingoBoingo ironically, this was great savings initiative in soviet lands 1970s
mircea_popescu: copied after similar 1940s german one.
BingoBoingo: My how history rhymes!
mircea_popescu: if one weren't there one could scarcely believe.
BingoBoingo: Gotta get ready for post-China selling shit to all comers
BingoBoingo: If anyone wants a hole hawg now's the time while TTI is still selling them
BingoBoingo: Also it turns out hole hawg actually is carried by Big Box store ☟︎
mircea_popescu: in other lulz, ethereum soft fork just got postponed 15k blocks (~2 days). ☟︎
BingoBoingo: See, if you spam blocks all the time who needs to put spam in the blocks!
mircea_popescu: lol.
phf: future tmsr infra http://66.media.tumblr.com/d69d8e552719e6bba89afe664bf486f7/tumblr_o7nrtnTazH1r49q4co1_500.jpg ☟︎
mircea_popescu: the problem being more that, of the ~10% miners that voted, the split is about 4:1 in favour. of the rest... well... something more like the reverse. ☟︎
mircea_popescu: phf i thought it was gonna be slotin and his beryllium hemisphere
phf: we're not there yet, but damn close
asciilifeform: http://btcbase.org/log/2016-06-24#1489076 << i linked it a few days ago iirc. ☝︎
a111: Logged on 2016-06-24 02:05 phf: i'm sure you've seen cl-6502, and i think there's a compiler from the same guy (or perhaps cl-6502 has a compiler too i don't quite remember)
asciilifeform: phf: i actually printed out the src and read in hammock, and barfed: it is full of regexp
phf: have you seen this guy too http://josephoswald.nfshost.com/comfy/summary.html ?
asciilifeform: aha!
asciilifeform: lulzily he uses same ancient hoster as i
phf: aww, poop. i thought the guy was pretty cool from his nes emulator. usually the emulator types like to bit twiddle
asciilifeform: i can't hold it against him, really, but couldn't help go 'this is not Lispy!111'
asciilifeform: not such fun read.
phf: how do you even regex an emulator!
asciilifeform: it isn't only emulator
asciilifeform: also asmer/disasmer
asciilifeform: recall.
asciilifeform: http://btcbase.org/log/2016-06-24#1489087 << the actual one ?! i was in a 'home despot' not long ago, they had a plasticy piece of rubbish with that brand ☝︎
a111: Logged on 2016-06-24 02:14 BingoBoingo: Also it turns out hole hawg actually is carried by Big Box store
BingoBoingo: asciilifeform: Well actual one prolly requires Ebay. The new ones are made in China since TTI bought Milwauke
asciilifeform: http://btcbase.org/log/2016-06-24#1489091 << bright future! we'll have actual rack, wheely cart ☝︎
a111: Logged on 2016-06-24 02:19 phf: future tmsr infra http://66.media.tumblr.com/d69d8e552719e6bba89afe664bf486f7/tumblr_o7nrtnTazH1r49q4co1_500.jpg
asciilifeform: BingoBoingo: i often wonder re the chinese toolz, do they wind the motors with aluminum wire yet ?
asciilifeform: or is this marvel still to come.
phf: i suspect those guys wear shoes that don't fall apart after three years either
BingoBoingo: Still to come, which is why buy now before aluminum horror
BingoBoingo: Likely will happen when China decides copper is a strategic good
asciilifeform: BingoBoingo may yet get his wish of petrol-powered hand tools
BingoBoingo: ^
asciilifeform: party like it's 1870!111
BingoBoingo: Although the Chicoms now make a lot of the small petrol motors too
asciilifeform: well they won't be making ~these~
phf: sort of like if you were to show a picture of a girl at a gulag discussion will be about how she looks like she eats, swiftly moving into what she might've eaten that morning
asciilifeform: aha.
mircea_popescu: really ?
phf: if one were to believe shalamov
asciilifeform: not everybody believes shalamov.
mircea_popescu: i guess i can see it.
asciilifeform: but in this case - i do.
asciilifeform: (recall the tale with the duck ?)
phf: right, exactly
asciilifeform: http://btcbase.org/log/2016-06-24#1489092 << holy shit, no??1 ☝︎
a111: Logged on 2016-06-24 02:19 mircea_popescu: the problem being more that, of the ~10% miners that voted, the split is about 4:1 in favour. of the rest... well... something more like the reverse.
asciilifeform: they have no tame miner ??
mircea_popescu: they should.
asciilifeform: and what would 2 days change
asciilifeform: it blew a fuse, and ft meade has to order new one ?
mircea_popescu: ask them! not me!
asciilifeform: well presumably it was mircea_popescu who had a mole in there, hence why i asked him.
mircea_popescu: da fuck anyone knows what goes on through the bright heads that can't light bulbs of us stem unis.
mircea_popescu: this is one of those situations when enema is supposed to show up with 200 tanks and 5k infantry, shows up with three jeeps and two dozen streetwalkers instead. everyone just looks around in embarassment
phf: are there any 6502 computer designs where you have multiple of them sitting on same bus or talking to same memory ☟︎
phf is talking out of ass
mircea_popescu: large pile of sram with a bunch of 6502s around it would make a pretty interesting parallel thing
trinque: sorta like the greenarrays thing?
phf: yeah, i had greenarrays in my original message, but somehow i lost it in edits
phf: afaik greenarrays don't have shared state and talk through neighbors, connection machine style. i was thinking, like mp said, just have them sit on shared memory
trinque: http://www.greenarraychips.com/home/documents/greg/AP003-110810-SRAM.pdf << yeah doesn't do that; converts 4 nodes to sram controller
mircea_popescu: especially as you could make a really large pile of ram
mircea_popescu: honestly if i wanted to make a "human brain model" it'd be something like this, 10k chips sitting around 10 GB worth of ram and talking into it dirtily. ☟︎
mircea_popescu: 3.5k transistors is actually not a bad model for a neuron, as bugpowder may perhaps attest.
phf: this is roughly how the argument went in the connection machine book, but of course they didn't have access to large enough rams to make it shared ☟︎
BingoBoingo: In other news corn is looking good, some field are showing visible soybeans. Been a while since honest rain befell this region.
BingoBoingo: In still other news with 46.3% Reporting "Leave" has 51.4% of the vote
phf: наши победили?
BingoBoingo: Still more to count
trinque: it's been up about 500k since I've been watching
BingoBoingo: Less than half counted, but win is winning
asciilifeform: http://btcbase.org/log/2016-06-24#1489142 << funny that you ask... ☝︎
a111: Logged on 2016-06-24 02:40 phf: are there any 6502 computer designs where you have multiple of them sitting on same bus or talking to same memory
asciilifeform: because that's what i got here ☟︎
asciilifeform: but... parachute.
phf: plx publish
phf: actually, i'm ok waiting, i think i'm going to build one of those computers on a board in the next few months just to get an idea of what connects where
asciilifeform: phf: http://zx80.netai.net/grant/6502/Simple6502.html << to get you started... ☟︎
asciilifeform: mouser co. has the chip.
asciilifeform: five bux or so iirc.
asciilifeform grew up with 6502 (well, 6510, commodore) rather than mircea_popescu's z80, so it is dear to him
asciilifeform: and imho 6502 is the more elegant animal.
asciilifeform: (moar work per tick, fewer parts)
asciilifeform: http://btcbase.org/log/2016-06-24#1489150 << shared ram is painful because the address/data lines are bottleneck ☝︎☟︎
a111: Logged on 2016-06-24 02:50 mircea_popescu: honestly if i wanted to make a "human brain model" it'd be something like this, 10k chips sitting around 10 GB worth of ram and talking into it dirtily.
asciilifeform: ideally you want something more like danny hillis's (connection mach) topology
asciilifeform: e.g., hypercube
asciilifeform: ( see also, canonical, https://dspace.mit.edu/handle/1721.1/14719 )
asciilifeform: ^ his thesis
asciilifeform: ^ i have dead tree here. 1st ed.
phf: i picked up "third printing" in portland, in that big bookstore of theirs
asciilifeform: ben_vulpeslandia!
asciilifeform: didja see him ?
phf: no, he was pretty upset at me for it
asciilifeform: lolk
phf: i was in portland proper an evening, after a hippie retreat, got it in my head that a meeting with a tmsr member needs proper exposition, etc.
asciilifeform: ;;later tell mircea_popescu l0ltr0n1cs: http://deadgirlface.tumblr.com/post/146308969208/quoms-superluminalflower-the-orlando-police ☟︎
gribble: The operation succeeded.
phf: in any case it wasn't portland, i picked it up at a random bookstore in french quarter new orleans. between a tourist bar and a place that sold "vintage stuff" they had a bookstore with an amazing collection of random books
asciilifeform: 'The question of possible deaths by police fire arose soon after the shootings. One survivor, Norman Casiano, 26, told ABC News that he was shot by police when he crawled out from his hiding place in the bathroom after he thought it was safe.'
asciilifeform: etc.
asciilifeform: muppet-assisted 'swatting'.
phf: they had a bunch of appel books there, mead's introduction to vlsi, a bunch of old common lisp books, 80s expert system books, etc.
asciilifeform: lel pretty much like the b00kcase i'm sitting next to l0l.l
phf: but it was a very odd setting, i was hungover like crazy, stumbling around with other throngs of tourists
trinque: leave up by 700k; this is great.
asciilifeform: trinque: ceremonial.
trinque: you leave me to my dreams of hypernationalist war
asciilifeform: lel
Bugpowder: its happening
BingoBoingo can't wait for when Britain has no one mobile enough to hand over its rag on a stick!
BingoBoingo: Fucking Brits will be stuck with no alternative but to wafflestomp!
Bugpowder: NIKKEI 225 FUTURES -1000 POINTS
BingoBoingo: ;;ticker --market all --currency gbp
gribble: Bitstamp BTCGBP last: 435.199959, vol: 21280.19302267 | BTC-E BTCGBP last: 425.599515, vol: 15542.74625 | CampBX BTCGBP last: 420.1875, vol: 1.80726197 | BTCChina BTCGBP last: 471.7382, vol: 96965.55260000 | Kraken BTCGBP last: 400.004, vol: 105.80623942 | Volume-weighted last average: 460.517964865
phf: party is over?
thestringpuller: $gettrust pleasurep`
deedbot: L1: 0, L2: 0 by 0 connections.
thestringpuller: $getrating pleasurep`
thestringpuller: $key pleasurep`
BingoBoingo: phf: Party is on pause. Can't let BTC look too much better than ether huffing, so Buttfunex has to have some butt fun
thestringpuller: $help
deedbot: http://deedbot.org/help.html
trinque: thestringpuller: that is an unperson per db
trinque: there's a pleasurep"
trinque: $gettrust deedbot pleasurep"
deedbot: L1: 0, L2: 0 by 0 connections.
trinque: $key pleasurep"
thestringpuller: well for instance nubbins was nubbins` but is now nubbins"
deedbot: http://wotpaste.cascadianhacker.com/r/6a4312d5-167c-45ec-9f0b-a21eb3c2946c/
thestringpuller: just seeing how this works
thestringpuller: somehow special characters got sanatized
trinque: wat
asciilifeform: ^^
phf: kek
Bugpowder: ITV CALLS IT: LEAVE HAS WON THE EU REFERENDUM
Bugpowder: The gov isn’t really going to do it tho right? Non-binding… ☟︎
asciilifeform: bush v. gore. snore.
trinque: thestringpuller: yeah this is fucked up; I have the original data for it all, so I'll fix tomorrow
trinque: happened somewhere from mysql -> psql
thestringpuller: cool. lemme know how to sanatize query-wise
trinque: thanks for catching that
thestringpuller: np
trinque: I'll just shit out another dump after fixing it
asciilifeform: the minarets of londonabad will still call the faithful to prayer tomorrow. and next week, aha.
Bugpowder: Gold 1350
Bugpowder: Nikkei -1327 circuit breaker
BingoBoingo: http://news.ngs.ru/more/2485503/
mircea_popescu: http://btcbase.org/log/2016-06-24#1489152 << it is huh. ☝︎
a111: Logged on 2016-06-24 03:00 phf: this is roughly how the argument went in the connection machine book, but of course they didn't have access to large enough rams to make it shared
mircea_popescu: http://btcbase.org/log/2016-06-24#1489161 << lol! ☝︎
a111: Logged on 2016-06-24 03:07 asciilifeform: because that's what i got here
mircea_popescu: http://btcbase.org/log/2016-06-24#1489171 << you could do some interesting things with arrangements though. ☝︎
a111: Logged on 2016-06-24 03:15 asciilifeform: http://btcbase.org/log/2016-06-24#1489150 << shared ram is painful because the address/data lines are bottleneck
mircea_popescu: flywheel / time switched connections being an obvious one.
mircea_popescu: http://btcbase.org/log/2016-06-24#1489184 << the gall of the asswipes is galling. really, "what we do should be on ~arbitrarily picked victim~" ? how about fucking mateen is ON the police ? ☝︎
a111: Logged on 2016-06-24 03:21 asciilifeform: ;;later tell mircea_popescu l0ltr0n1cs: http://deadgirlface.tumblr.com/post/146308969208/quoms-superluminalflower-the-orlando-police
mircea_popescu: not like he'd have existed if there wasn't a usg.pd around. or a usg in the first place.
mircea_popescu: http://btcbase.org/log/2016-06-24#1489224 << after "the govt" had to beg the scots to stay on hands and knees, it's unclear it actually has any mandate to do anything anyway. ☝︎
a111: Logged on 2016-06-24 03:37 Bugpowder: The gov isn’t really going to do it tho right? Non-binding…
mircea_popescu: prolly govt collapse, elections, a few years w/o govt belgium style, stuff like that.
mircea_popescu: anyway, 14.16 mn leave 13.27 mn stay.
mircea_popescu: it's just about all over, there's maybe a coupla million left to vote.
mircea_popescu: cameron's career is definitely over.
BingoBoingo: Leave's advantage over remain is approaching 1 million votes with 14.7% of ballots yet to be reported
BingoBoingo: 1.1 million advantage for leave
mircea_popescu: yeah, there's not enough votes left to fix it.
mircea_popescu: you know alf they did use diebolds...
mircea_popescu: BingoBoingo you qntraing this or we dont' gas enough ?
mircea_popescu: i guess could be update on other one.
BingoBoingo: Qntra'ing in a few hours after sleeping. There's still enough votes left for Diebold to happen.
BingoBoingo: Anyways gotta see how this could be handled after yesterday "Remain" was so certain
mircea_popescu: yeah srsly.
mircea_popescu: by now "the powers that wanna-be" are getting raped at random street corners by random passers by.
mircea_popescu: whole "gavin got consensus" "trump don't got a chance" bla bla all over again.
BingoBoingo: I can't wait for the immigrants they have now to get fat and them to stick with the no new immigrants schtick
BingoBoingo: It'll be the non-Argentina US failure mode
mircea_popescu: mebbe.
BingoBoingo: Too fat to work.
BingoBoingo: Trash build up, everyone has boils. No one can clean the waffle stomped showers.
BingoBoingo: brb, sleep
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
Framedragger: deedbot you drunk
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
shinohai: yay rss feed
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
shinohai: ;;later tell BingoBoingo http://ix.io/Wuq
gribble: The operation succeeded.
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
mircea_popescu: dafuck
mircea_popescu: BingoBoingo im writing up teh orlando shooting if it please teh qntra
mircea_popescu: trinque what the everloving ?
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
mircea_popescu: BingoBoingo http://wotpaste.cascadianhacker.com/pastes/b243ac67-70d4-4dbb-8533-982a4ab7a419/
Framedragger: unrelated http://i.imgur.com/YR0QKza.png
mircea_popescu: ah yeah, how's that going lol
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
mircea_popescu: dawg...
Framedragger: mircea_popescu: i hope (for personal reasons) GBP rebounds to some extent in the days/weeks to come. also looking forward to independent scotland now :)
mircea_popescu: i wouldn't bet on that.
Framedragger: sure..
mircea_popescu: (in other news, everyone i knew in england left since yest.)
Framedragger: it's pretty lol.
mircea_popescu: i don't see how the uk is going to have a government other than bnp or w/e they're called this year.
mircea_popescu: (also i don't see how anyone seriously imagines hilary stands a chance, but that's another matter)
Framedragger: 2016 is the year of dreamz come true
mircea_popescu: england prevails!
shinohai plays "God save the Queen"
Framedragger: yeah it's gonna be fucked. also some more shite PM instead of cameron
mircea_popescu: who, that woman ? what was her name
mircea_popescu: the one going around in homecroched jerseys and playing everyone's grandmother
Framedragger: theresa may , yeah
mircea_popescu: aha.
mircea_popescu: one'd have to be an idiot to take that mandate, but i guess there's never shortage of idiots.
mircea_popescu: anyway, she's no merkel if that's the hope.
Framedragger: heh irc client crashed, maybe with the mention of theresa's name
Framedragger: yeah no more internets with her, not that uk currently has an uncensored open internet
Framedragger: and yeah, all the bilateral agreements to be done.. by whom.. fuck knows. (my plan was to switch countries in a ~year anyway, looks like i'll stick to it)
Framedragger: anything's possible with this shit populace
mircea_popescu: o right right, "ukraine forum on asset recovery", the usg-sponsored "let's steal shit" argentina-style thing
deedbot: [Recent Phuctorings.] Phuctored: 1287424238120947 divides RSA Moduli belonging to 'Tony Lindgren <tony@atomide.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/C866293ADCFA761D385D4B8A407BA2CA0109F086D2463F4B558E1C6354536DE5
deedbot: [Recent Phuctorings.] Phuctored: 154544665855970963 divides RSA Moduli belonging to 'almoutamahid <abdelilahalmoutamahid@gmail.com>; ' - http://phuctor.nosuchlabs.com/gpgkey/90BC6D88C26403285CF4A89F6E0501D31AD908A598A81BB09E41E0C981C24091
deedbot: [Qntra] 1/3 Of Brits Can't See Own Penis When Standing - http://qntra.net/2016/06/13-of-brits-cant-see-own-penis-when-standing/
deedbot: [Qntra] Forking Question Of The Day - http://qntra.net/2016/06/forking-question-of-the-day/
deedbot: [Qntra] Brexit Voting Begins - http://qntra.net/2016/06/brexit-voting-begins/
deedbot: [Trilema] And other things... - http://trilema.com/2016/and-other-things/
deedbot: [Trilema] The life and times of one Phil Daian, aspiring nigger & apprentice cocksucker - http://trilema.com/2016/the-life-and-times-of-one-phil-daian-aspiring-nigger-apprentice-cocksucker/
deedbot: [Trilema] How #bitcoin-assets was born. - http://trilema.com/2016/how-bitcoin-assets-was-born/
deedbot: [Trilema] Eminescu. Totally a genius. - http://trilema.com/2016/eminescu-totally-a-genius/
mircea_popescu: oh ffs.
Framedragger: :D
mircea_popescu: funny what crap the uk keeps pushing forth, too. you'd have thought it'd take them more than a decade to come up with a worse sack of shit than blair. not so, they found him by 2010.
mircea_popescu: they really should be the 51st state ; same thing in the us - people thought it'd take a lot longer to find someone even dumber and less capable than bush. and yet...
Framedragger: yeah.
mircea_popescu: anyway. without taxing london the eu is not sustainable. this is a foregone conclusion. i'm curious what the germans do, but the eu has little chance of seeing 2020.
Framedragger: it really is all about the germans now and what they do, i suppose, yeah. i wouldn't think that taxing london is *that* important though, and in any regard uk trading with eu is more important to uk than to eu, it would appear. but sure, shit's gonna go down, will be interesting to follow.
mircea_popescu: in the reverse, while some ru capitals may flow in (much less likely today, after the inept uk support for the cyprus theft than it would have been prior), the outflow of continental moneys might well drive a 50% failure rate in the city.
mircea_popescu: Framedragger what exactly is uk trading with the eu ?
mircea_popescu: oh, you meant... yeah. well, the thing is, trade isn't today and hasn't for a century+ been national. corporations trade, on mostly south asian shipping, with each other.
Framedragger: hm. i see what you mean
mircea_popescu: some will repatriate, some others will move in, but on the net it seems likely to come out negative by a coupla trillion or so.
Framedragger: yeah i don't know how to classify "general b2b stuff"
mircea_popescu: maybe the chinese are interested, who knows.
mircea_popescu: anyway. the czechs are leaving also, possibly the dutch too. the french will aggitate moar ; spain still wants gibraltar, and catalonia independence is suddenly an important chip in thsi discussion, etc etc.
Framedragger: i wonder. in times of uncertainty, investors move money elsewhere. say eu continues to crumble down, with states threatening to leave / leaving, euro going down. could gbp be eventually seen as a "foreign stable thing" in europe? my bets are that it won't; but it'd be a curious outcome
Framedragger: yeeah.
mircea_popescu: nope.
mircea_popescu: the gpb/any hope or chance of true british independence was sunk by soros.
mircea_popescu: the uk has as much a chance today to be the uk of 1816 as the state of indiana does.
Framedragger: ok, prolly yeah
mircea_popescu: it's all a question of "who picks up the upset streetwalker who still, inexplicably, thinks herself a married middle class woman". will it be the paki gang ? the x ? the y ?
mircea_popescu: there's no question she's going to be working. the only question is what basement will she be working in.
Framedragger: well this woman deserves nothing but the basement treatment, so!
mircea_popescu: eh, deserves. who knows these things.
mircea_popescu: but hey, since it's what she'll get, we can say it's what she deserves at no extra cost.
mircea_popescu: but the best part - the french will finally get to try their "louis XIVth lives!" notions of command economy in the eu. it should be fucking fabulous.
Framedragger: :D
Framedragger: oh yeah, i'm sure there's that sentiment, prevailing
mircea_popescu: ukip having a field day yet ?
Framedragger: it seems like it - look such sophistication and command of language: http://www.theguardian.com/politics/video/2016/jun/24/nigel-farage-eu-referendum-this-victory-for-real-people-video
mircea_popescu: lol
Framedragger: am at work, there's someone openly swearing about boris johnson downstairs (it's usually rather quiet)
mircea_popescu: curious if victory actually blows them up.
mircea_popescu: obama certainly destroyed us dem party.
Framedragger: ..and i wonder about trump and teh republicans
mircea_popescu: "well, you got a nigger elected, now get lost" sorta thing. "well, we're going out of the eu, so who were you again ?"
mircea_popescu: Framedragger i think trump actually intends to end the gop if he wins.
Framedragger: i can certainly see it! as in, intentional project and everything.
mircea_popescu: he'd be a fool not to, at any rate.
mircea_popescu: speaking of which, the most incomprehensible part of it to me is, how the fuck would he not be putting pressure on the voting mechanism. if he had any sense his ~only issue wouldf be "paper trail voting or no voting at all". that he isn't doing this is perhaps the stronger support for alf's read of the facts.
mircea_popescu: then again, maybe it's slated for a little later. fuckall knows.
Framedragger: mircea_popescu: need to read logs, then. so what's the idea behind him needing paper trail, and what does that mean?
mircea_popescu: well, trail-less vote is much like "poloniex" or whatever : will print as a "result" whatever number the owner gives it.
mircea_popescu: 100% victory for Nicolae Ceausescu, why not. oh, he's dead ? a well.
asciilifeform: mircea_popescu: paper is overrated - it isn't as if you can't stuff box, or as if plebes could personally recount'em
mircea_popescu: besides the point. specificity of diddling obliges him to modify election mechanism.
mircea_popescu: it's a matter of strategy, not of engineering. these are separate concerns.
mircea_popescu: not to mention how expedient it is for him. it is LOGICAL that it'd be a single issue ; it's a forced mistake hilary & all will oppose. he can now speak of only one thing, which is what he needs, and avoid hilary on all topics, which he also needs.
mircea_popescu: pretty much the only way to play his hand correctly, i see no alternative.
asciilifeform: 0 chance of paper ballot in usa.
mircea_popescu: that's also besides the point.
asciilifeform: ain't happening any more than goldstandard.
mircea_popescu: the game is played like the game is played, if he's going to believe what you say he has no business being in politics.
mircea_popescu: in other non-newsy lulz, the tardstalk's offended! https://archive.is/VWYy6#selection-2205.0-2124.7
mircea_popescu: https://www.cryptopia.co.nz/Forum/Thread/675 << obscure scamcoin exchange tries.
mod6: mornin' o/
trinque: god what the fuck.
mircea_popescu: lol.
mircea_popescu: good morning mod6 trinque
mircea_popescu: mind that if it disconnects and reconnects it'll get ops by default and start over.
mircea_popescu: but in boxier news, http://67.media.tumblr.com/1c604cbf3362a81b3feaad58c01d913f/tumblr_mhv1hdsP1d1s3v6d1o1_1280.jpg
mod6: what's interesting about deedbot is that it spit that stuff out mostly @ ~5/min interval. but sometimes it did it ~10/min. at least by my timestamps.
mircea_popescu: https://archive.is/UScxs << oh look, now that they got scared into actually doing some code auditing by the half billion in losses the usg accrued in one short week, they're finding things!
mircea_popescu: "Do not use wallet contracts or owner accounts of those wallets that were created by the Ethereum Wallet 0.4.0 or earlier. If you send to (or interact with) a malicious contract it could take ownership of your wallet contract. Create a new wallet and move your funds."
mircea_popescu: mod6 it spit out the whole list every time phuctor had a new item i thought
mod6: Yeah, something like that. I see it spit out a Phuctoring from 'Tony Lindgren', the top three qntras then the top four trilema's. But yeah, may have been triggered by new phuctorings - but the RSS feed didn't seem to update.
mircea_popescu: hm
mod6: Anyway, whateves.
BingoBoingo: ty mircea_popescu http://qntra.net/2016/06/the-bloods-are-red-the-creeps-are-blue/
mircea_popescu: yeah you're right, there weren't updates.
mircea_popescu: win.
mircea_popescu: it's so cool to go read your article recently published in qntra :D
shinohai: innit
mircea_popescu: BingoBoingo <em> tag not correctly closed after 1st soi dissant ?
BingoBoingo: Ah, you forgot a /
thestringpuller: mod6: hey. can we bury segwit transactions?
BingoBoingo: fxd
mod6: <+mircea_popescu> cameron's career is definitely over. << spot on.
mod6: thestringpuller: "bury" ?
mircea_popescu: he actually said he's stepping down meanwhile yea
BingoBoingo: ;;later tell shinohai Too much puffing and making the scammers see viable, rewrite
gribble: The operation succeeded.
mircea_popescu: BingoBoingo second one too
BingoBoingo: shinohai: News, but gotta be serious when using words like resurection
BingoBoingo: mircea_popescu: Which second one?
mircea_popescu: soi dissant
BingoBoingo: fxd
mircea_popescu: ima have to be moar careful with closing these.
shinohai: kk BingoBoingo && too much puffing?
BingoBoingo: You know making the scam thing sound like it has a chance
BingoBoingo: Anyways right on schedule as mp predicted
shinohai: mkay.
thestringpuller: mod6: although I don't trust Gmaxwell he has a point here >> https://www.reddit.com/r/btc/comments/4o5g3z/how_much_better_is_node_that_no_longer_fully/d49y5j7
thestringpuller: "For things like CSV and Segwit-- The node doesn't understand the new rules, but it knows it doesn't understand them (due to tx version number for CSV, and the NOP code usage for SW; both explicit soft-fork upgrade mechanisms in the protocol*)... this is already the case today and has been since 2010, you didn't need to upgrade to teach your node what it doesn't know.
thestringpuller: "
thestringpuller: If your wallet wanted to it could go further trace these coins and delay treating them and their descendants as confirmed until the last non-understood part was buried beyond some sufficient threshold, it's simple to implement in a full node wallet (we do tracking like that for 'negative confirmations' for conflicted transactions in core now), but so far no one has seen a reason to beyond the basic, "ignore until confirmed" behavior.
shinohai: BingoBoingo: i was going to refer to it as a mere blip since only 1K blocks
thestringpuller: mod6: I was just saying if there would be a way to bury "bastard transactions" (this include multisig), under some threshold of transactions before confirmation.
thestringpuller: s/saying/asking
mircea_popescu: prolly more efficient to simply blacklist / ban any customers that use the crud.
thestringpuller: wouldn't that burn the coins for life?
mircea_popescu: many layers to a soft fork. i personally will take any attempt to use any of this crap as an attempt to scam and negrate consequently.
mircea_popescu: thestringpuller so ? not every idiot must have access.
BingoBoingo: shinohai: Still gotta poke more holes in the VERified scammers. Needle em with words.
BingoBoingo: $up fakename123
thestringpuller: mircea_popescu: would this be similar policy to any coin that's gone into a "3" bastard address?
thestringpuller: would this policy be applied to*
mircea_popescu: just don't pay FROM a 3 address.
thestringpuller: ah. but with segwit coins TRB should treat coins as if they are burned?
mircea_popescu: i don't see trb should do anything. i also don't see why any sane person would continue dealing with any entity using it.
thestringpuller: that is someone pays to segwit address, even if coins leave segwit address and are use normally, they are now "lost forever" cause they've "tainted"
thestringpuller: no matter how many standard transactions go on top
mircea_popescu: huh ?
BingoBoingo: http://qntra.net/2016/06/leave-wins-uk-ballot/
trinque: Python sqlite3 issues a BEGIN statement automatically before "INSERT" or "UPDATE". After that it automatically commits on any other command or db.close()
trinque: oh god damn it
mircea_popescu: lol
mircea_popescu: did your shitstack improve ?
trinque: marginally
mircea_popescu: you know the joke with the husband at the psychiatrist ?
trinque: lets hear it
mircea_popescu: guy goes to psychiatrist, "doc, i need you to convince my wife to get mouth reduction surgery"
mircea_popescu: "and why do you think that ?"
thestringpuller: okay. so lets say Segwitz address starts with 'P00'. you send 1 BTC from a standard address as inputs into the segitz address. the segwitz address now spends back to a standard address. but the way it spends is with non-standard opcodes, so called "bastard unspent outputs". so it spends to a real btc address "1something". When TRB validates it's the chain of tx's it'll encounter the segwit part as NO_OP. Should we just bury these coi
mircea_popescu: "she won't ever shut up. not ever. she talks constantly. so i dropped my pants and stuffed my cock in her mouth.
mircea_popescu: and she continued to talk through the margins."
trinque: lol
thestringpuller: cause there is no way TRB will ever enforce segwit, so there is no way it can ever truly verify a segwit output was spent "legitimately"
mircea_popescu: thestringpuller the derp in question can just spend again normally and his coins will be visible.
mircea_popescu: trb has no notion of "coin history". nor should it. because taint is not a thing.
thestringpuller: gotcha. just never have anyone spend to your from a fake address.
mircea_popescu: moreover, there ISNT, in general, and for very good reasons, a way to verify segwit crapolade.
mircea_popescu: which is what it aims to be, a sort of "let's dao bitcoin"
thestringpuller: TMSR rule of thumb: "Never accept non standard transactions" ? ☟︎
mircea_popescu: pretty much.
thestringpuller: gotcha. thanks for clarity. mod6 ^^^ nvm question has been answered.
mircea_popescu: but this said, yes it is deeply irresponsible for anyone to use prb clients. this doesn't just mean 13, or 12, or 10. ANY of them.
mircea_popescu: they keep adding shit, but it's been shitsoup for years now.
mod6: thestringpuller: np.
mod6: if we needed to add code everytime these gnomes comeup with a new crapolade, that's all we'd ever be doing. ☟︎☟︎
thestringpuller: i just don't want them to add something in a "fork" that allows TMSR to get scammed.
thestringpuller: but I think at that point BTC is dead
mircea_popescu: and in other lulz, ro chicks trying hard : http://fabulousmuses.net/2016/06/marina-yachting-summer-trends.html
mircea_popescu: mod6 the main concern is that their bullshit will "accidentally" start fabricating coins.
mircea_popescu: nevertheless, we're not making the mistake of introducing coin taint, under any name.
BingoBoingo: thestringpuller: From what I understand Segwit to a normal 1xxx adress requires a signature in the blockchain so when segwit stops being miner enforced the recieved transaction would still be, even though it came from freemoneyshitsoup.
thestringpuller: BingoBoingo: AHA!
mircea_popescu: yeah, except the next stop is for shitsoup to put out more coins than it got in. ☟︎
thestringpuller: elaborate?
mircea_popescu: you been watching the dao thing ?
mod6: <+mircea_popescu> nevertheless, we're not making the mistake of introducing coin taint, under any name. << totally agree.
mircea_popescu: segwit is EXACTLY "dao for bitcoin".
thestringpuller: well yea. and Lightning Network is VISA for bitcoin.
trinque: ok, feeds are back
trinque: helpful helpers in python were starting transactions for me even though the default for sqlite is autocommit
thestringpuller: trinque: any reason ratings are done by nick and not a foreign key?
thestringpuller: i guess the nicks act as a foreign key cause under unique constraint and one per person...
thestringpuller: nvm.
trinque: just easier to look at, and it's not a big table
trinque: but I will at some point either change that or abandon sql entirely for a CLOS db
mircea_popescu: nicks have autofill ; keys do not.
deedbot: [Trilema] Tales of Manhattan - http://trilema.com/2016/tales-of-manhattan/
jurov: http://btcbase.org/log/2016-06-23#1488855 it was not 'coincidental', their cleanup gave me the idea ☝︎
a111: Logged on 2016-06-23 23:16 mircea_popescu: http://btcbase.org/log/2016-06-23#1488771 << thinking about it... was this coincidental ?!
mircea_popescu: ah
mircea_popescu: ;;later tell pete_dushenski pingback mystery solved : your blog is at 23.229.239.2, but you keep sending pingbacks from 50.62.176.244. Trilema responds with a "please send pingbacks from the blog's own IP" as discussed in http://trilema.com/2014/o-hai-let-me-verify-your-identity/ which you're supposed to see and know why it is your pingbacks don't make it.
gribble: The operation succeeded.
deedbot: [Trilema] The Internet of Shit - http://trilema.com/2016/the-internet-of-shit/
asciilifeform: http://btcbase.org/log/2016-06-24#1489904 << : ☝︎
asciilifeform: $s malleus
asciilifeform: ...
asciilifeform: ...
asciilifeform: oh for fuxxsake
asciilifeform: log dead too
mircea_popescu: lol
mircea_popescu: teh toothpick republic!
mod6: this the line you were looking for? (14:55) <+thestringpuller> TMSR rule of thumb: "Never accept non standard transactions" ?
asciilifeform: the site is up, just no deedbot and no a111
asciilifeform: (or possibly just the latter is down)
trinque: deedbot doesn't do $s
mircea_popescu: it's a111 yea
asciilifeform: http://btcbase.org/log/2016-06-24#1489918 << this is what the timelock crapolade is for: 'paper' bitcoin. ☝︎
asciilifeform: as was done with gold etc.
asciilifeform: ditto the detached (to be eventually 'lost') signatures
asciilifeform: augmentable, at whatever point, with the Will of the Beoble's magic sig which 'moves unjustly held coins' to e beoble's anointed vicars
asciilifeform: we already know this song, it is tiresome, i will not repeat.
mircea_popescu: myeah.
mircea_popescu: the "all business" and entirely "scientific" world turns out to be mostly the favourite lie of the sort of people who don't wish their stupid ideology discussed.
asciilifeform: http://btcbase.org/log/2016-06-24#1489910 << not now, not ever. and ftr i did not like how we handled high-S thing, for this reason. ☝︎
mircea_popescu: gah, wait for the thing to show up, i can't follow like this
asciilifeform: eh yeah
asciilifeform: mircea_popescu: the automattic link is wrong i think
asciilifeform: it is to http://trilema.com/2014/o-hai-let-me-verify-your-identity
mircea_popescu: oh!
mircea_popescu: thx.
asciilifeform: np
mircea_popescu: all these "jounalist" derps ranting on about how "uk shocks the world" and "nobody could have predicted" bla bla on the basis that their fucking predictions had been deliberate lies to try and influence the unavoidable.
mircea_popescu: sit the fuck down, nobody's shocked and moreover nobody cares about the "mainstream" / powers that wanna-be blabla.
mircea_popescu: (btw, obama actually went to london to try and prevent things. he... failed. but by now obama failing at whatever he's trying is pretty much us policy, so not particularly worht the mention)
mircea_popescu: lol. after brexit, time for grexit, departugal, italeave, czechout, finish, oustria, latervia and finally byegium
hanbot: departugal ftw hahaha
mircea_popescu: >D
hanbot: so then what's left, remainia?
mircea_popescu: aaanyway. germany is looking at something like 3bn euro more per year (20% over it's current ~15bn) to pay ; and of course moldovia, the battered ruins of ukraine, albania and all sorts of other dry leeches all want in
mircea_popescu: hanbot probably, they're just the sorta idiots.
mod6: <+hanbot> departugal ftw hahaha << lol
mod6: haha remainia
asciilifeform: log still dead..?
asciilifeform: this is becoming a weekly thing at least
asciilifeform: is it phf's isp or wut
mircea_popescu: le suck.
Framedragger: https://blog.ethereum.org/2016/06/24/security-alert-smart-contract-wallets-created-in-frontier-are-vulnerable-to-phishing-attacks/ comes with a paragraph heading "How to be super safe??" (sic)
mod6: (19:01) <+asciilifeform> http://btcbase.org/log/2016-06-24#1489910 << not now, not ever. and ftr i did not like how we handled high-S thing, for this reason. ☝︎
mod6: ref: (14:57) <+mod6> if we needed to add code everytime these gnomes comeup with a new crapolade, that's all we'd ever be doing.
mod6: So, we talked about this. At length.
asciilifeform: mod6: wotpaste scrollback perhaps ?
mod6: how much?
asciilifeform: since above
mod6: http://dpaste.com/1HXXN6G.txt
asciilifeform: ty mod6
mod6: np
mod6: and when i say 'we talked about this', I mean the high-S/low-S thing. ultimately we decided to give the operator the utility to specify which to use / or none, if they want their thing to be diddled.
asciilifeform: yeah but we did a ~pointless thing and added moving part solely because shitgnomes gnawed on our toes
mod6: and we're still at a point where it's a leaf, so if it is decided that we ditch that as a "blessed" utility or necessary change, then we ditch and we don't have to do anything else.
asciilifeform: imho bad precedent.
asciilifeform: the malleation thing was harmless
asciilifeform: and high-s is every bit as legitimate a sig as low
mod6: mno. i disagree. at the time, Mr. P. was having trouble sending transactions. We want people to have the control to ensure their transaction is relayed, undiddled.
asciilifeform: he was having trouble because corrupt miners refused high-s
asciilifeform: the response ought to have been thermonuke
asciilifeform: not compliance
mod6: i agree that about the legitimancy being the same across high/low -- but the rest of the network diddles.
asciilifeform: how about when they start rejecting sigs ending with a 3
mod6: so. if i have a coin, i want to ensure that it gets sent.
mod6: simple as that.
mod6: thermonuke what?
asciilifeform: mod6: and if the miners start rejecting addrs that touched mpex ?
asciilifeform: also 'do what it takes to get sent' ?!
mod6: ok. so is this a 20/20 type of reflection here?
asciilifeform: mod6: nope. i said at the time that it was a Bad Idea, and for same reason - emboldened the ratfuckers
mod6: im confused about why you're saying this now, as opposed to saying "we should be able to specify either!"
mod6: because initially, i wanted to simply just do low-S
mod6: this is not how that conversation went.
mod6: lol
asciilifeform: i disagree that the enemy ought to have any say in how trb works.
asciilifeform: now as then.
asciilifeform: recall the Declaration?
asciilifeform: http://therealbitcoin.org/ml/btc-dev/2015-July/000115.html << it
mircea_popescu: heh still no log eh ?
mircea_popescu: Framedragger ironically, that was in the log :D
asciilifeform: nein
mircea_popescu: asciilifeform> mod6: nope. i said at the time that it was a Bad Idea, and for same reason - emboldened the ratfuckers << eh, not really how this works.
asciilifeform: hm?
mircea_popescu: this is not how it works, "emboldening" whatever. moreover, the implemented solution was correct : when there's ambigous behaviour IN THE PROTOCOL, this has to be exposed TO THE USER. it has been.
mircea_popescu: trb acted correctly.
asciilifeform: sig malleation was a non-bug - affected only derps
asciilifeform: was harmless wart
mircea_popescu: besides the point. when there's ambiguity in design, this is to be exposed to user.
mircea_popescu: it's the only way to lance the boil.
mircea_popescu: i get it that "there not being ambiguity in design" would be better. nevertheless, what would be better is not related to what is.
asciilifeform: there are other, similar ambiguities - sigs end in whatever odd number, say
asciilifeform: what if the miners decide that mircea_popescu ought to regenerate his k nonce until sig dun end in 3
mircea_popescu: these aren't really the same kind of item.
mircea_popescu: the fact is, the function sign(message) did not yield a single valid output. but two.
mircea_popescu: this is because bitcoin was made by the ducks, sure, but still is what it is.
asciilifeform: i can see the argument, yes, high and low s are interconvertible
mircea_popescu: well you could see it then, too, just i guess meanwhile forgot ? anyway, there's a reason we did what we did and still as good now as then.
asciilifeform: but fact is that we fixed a harmless nonbug at the instigation of the enemy.
mircea_popescu: eh, there's no such "at the instigation" bla bla. we fixed something that had to be fixed, and we fixed it correctly. big whoop.
asciilifeform: had to be? why?
mircea_popescu: because the damned thing was ambiguous ?
mircea_popescu: it wasn't urgent, but it was certainly fundamental.
asciilifeform: if miners were sane, i could send high s as is my satan-given right!11111
asciilifeform: high s is legit sig
mircea_popescu: you can still send it. just, likely, they'll malleate it pre-mining it.
asciilifeform: a month later
mircea_popescu: (i send high-s all the time)
mircea_popescu: usually ~5 minutes.
asciilifeform: when it suits them
asciilifeform: last time i waited almost a week
mircea_popescu: the cost of malleation is ~0, as long as you include a fee it suits someone
mircea_popescu: (once someone does it, whether they mine a block or not is irrelevant, tx now in mempool)
asciilifeform: it was interesting, i resent, and IMMEDIATELY my original high-s got malleated
asciilifeform: this was my alphago bet iirc
mircea_popescu: aha
mircea_popescu: https://www.webiron.com/bot_feed/d80d40b13ccf07a2c523e3c6625d101d << this was kinda interesting.
asciilifeform: why does that rpc shit even exist
mircea_popescu: so can has pingbacks
asciilifeform: they're intrinsically spam-enabling
asciilifeform: and a bad idea
mircea_popescu: i need them to create my article reference trees.
asciilifeform: that only needs self-links, no?
mircea_popescu: eh, blogs aren't that "self". intertextuality!
mircea_popescu: anyway, i get 0 spam through this, so ...
asciilifeform: plenty of attempted spmurder tho
mircea_popescu: yeah.
BingoBoingo: <asciilifeform> there are other, similar ambiguities - sigs end in whatever odd number, say << Original effort at sig enforcement was "even-s" around prb 0.9 deliberations before "low-s" was chosen
mircea_popescu: aaand in other news, http://67.media.tumblr.com/dbce7c5443849b71ca99e30d9d2c376b/tumblr_o7z8noMARI1v9q30so1_1280.jpg
Bugpowder: Some of you guys were talking about the 6502 right?
asciilifeform: aha
Bugpowder: Any of you seen this recent paper? http://biorxiv.org/content/early/2016/05/26/055624
Bugpowder: PDF http://biorxiv.org/content/biorxiv/early/2016/05/26/055624.full.pdf
mircea_popescu: nope
Bugpowder: its pretty funny from the neuroscience perspective
Bugpowder: uses all these common neuroscience tools to try to understand the 6502
Bugpowder: Fail
mircea_popescu: ha!
mircea_popescu: how come ? it's not that complex an item
mircea_popescu: anyway, i guess i'll have to get my pdf decoder ring later an see what's in there
mircea_popescu: $up fromphuctor
deedbot: fromphuctor voiced for 30 minutes.
Bugpowder: It speaks more to the defecits in our analytical tools we use to study neural circuits.
Bugpowder: Suggests maybe we should develop tools that would allow reverse engineering the microprocessor and translate these tools to neural circuits.
mircea_popescu: nobody takes neural "circuits" literally do they ?
Bugpowder: yes
Bugpowder: very literally!
Bugpowder: Search projectreporter.nih.gov for “neural circuits” grants in 2015… There were 1695 results matching your search criteria.
BingoBoingo: "reflex arc" is a thing 1880's tech
BingoBoingo: Headlol of the day: "Embattled Whiteness Gave Us Brexit. It Won’t Give Us President Trump"
BingoBoingo: $up gabriel_laddel
deedbot: gabriel_laddel voiced for 30 minutes.
deedbot: [» Contravex: A blog by Pete Dushenski] A trucking good time. - http://www.contravex.com/2016/06/24/a-trucking-good-time/