log☇︎
▁▁▁⏐︎▁ 7621
mod6: evenin'
asciilifeform: hiya mod6
mod6: how goes?
asciilifeform: slowly and painfully
mod6: i hear ya.
mod6: workin on ada stuff?
asciilifeform: 0 useful docs anywhere on division in constant time
asciilifeform: grunting it out from scratch
mod6: ahh. ok. yah, i suppose it requires a bunch of on-paper - try it yourself until blue in face.
asciilifeform: worse than that, because it has to be proven to actually work
asciilifeform: as opposed to 'worked on the 1,001 cases i came up with'
mod6: ah
asciilifeform: it boggles my mind that i gotta do this, rather than there being where to crib.
asciilifeform: because this is screamingly elementary piece.
mircea_popescu: hey, at least you don't have to scroll horizontally.
mod6: haha
mircea_popescu: >D
mod6 falls over
asciilifeform: and hey, dun have to hang upside-down, like odin!111
mircea_popescu: as the one, the only, the forever carlin said, "the man himself was philosophical about it : it's that much less skin to wash."
asciilifeform: http://btcbase.org/log/2014-09-18#834203 << see also. ☝︎
a111: Logged on 2014-09-18 19:37 asciilifeform: 'happy is the man who has one leg, one sock doesn't tear, one boot isn't needed.'
mircea_popescu: meanwhile in officeware, https://68.media.tumblr.com/82344367d161785313c37088511fc97a/tumblr_myj5e3Pc6z1qkpun8o1_1280.jpg
asciilifeform: in other near-term lulz, a 'pbot' is in the worx, so that folx can play with various input->output pairs in-chan ☟︎☟︎
mod6: ah, neat
shinohai: implying asciilifeform actually codes in perl
mircea_popescu: nice.
asciilifeform: given line length limit, it will be of limited practical use; strictly educational.
mircea_popescu: i imagine he's gonna use trinque's tree
mircea_popescu: asciilifeform can have it return pastes.
asciilifeform: that'd defeat entire purpose
asciilifeform: which is to have the ins AND outs in-conversation.
asciilifeform: in clickless dialogue.
mod6: are you looking at some variant of mult reduction?
asciilifeform: mod6: not even yet
mod6: or something like SRT with a lookup table?
asciilifeform: only constant-time shift-and-subtract division
asciilifeform: no tables.
asciilifeform: period. anywhere. they are banned.
mod6: aha.
asciilifeform: no if-statements, either.
asciilifeform: basic principle of constant-time proggy
mod6: cool. that's good anyway, we don't need revenge of the floating-point bug.
asciilifeform: same instructions gotta execute no matter what bits are set or not set in the operands. every time.
asciilifeform: sorta elementary.
asciilifeform: ideally we would also be doing all arithmetic ops on a cpu that executes both the op and its exact register-wise bitcomplement
asciilifeform: but sadly i don't have one.
asciilifeform: ( and so, conceivably adding 0 + 0 radiates something different from ff + ff . )
mircea_popescu: asciilifeform yes well, 250 digit numbers then
asciilifeform: all numbers have W digits.
mircea_popescu: asciilifeform in principle you could just do mirror ops of all things anywya neh ?
asciilifeform: not same thing
asciilifeform: they gotta happen ~simultaneously~
mircea_popescu: use two cores.
asciilifeform: pc (even multi-processor pc) doesn't give it to you
asciilifeform: because pipelines.
mircea_popescu: myeah.
asciilifeform: ( and you certainly could not do it under any such thing as an os, even if there were no pipeline. )
asciilifeform: on chip level, a non-radiating ALU is quite trivial to make, however
mircea_popescu: obviously, you just build a mirror.
asciilifeform: in each place where you would otherwise have 1 bit register, you instead have 2
asciilifeform: aha
asciilifeform: so 1 is now 10, 0 is 01.
asciilifeform: ( or opposite, dun matter. )
asciilifeform: you also now get carryless adders, for phree.
mircea_popescu: aha. principal advantage.
asciilifeform: if i were drawing up such a thing, i'd even have the sram work in such a way that 10 is a 1 on odd clock cycles, 0 on even ☟︎☟︎
asciilifeform: this'd annihilate such a thing as ram remanance
asciilifeform: (iirc discussed in ancient thread, this method. afaik no one has ever used it, publicly.)
mircea_popescu: aha.
asciilifeform: pretty easy to implement, also. just make the flip-flop that forms sram cell, connected to clock.
asciilifeform: now you store bit as ~phase~ of the square wave, rather than absolute steady state of the flipflop. ☟︎☟︎
asciilifeform: theoretically power draw of this device will be exactly the same , at all times, as if it were resistive load
asciilifeform: because same number of transitions on every clock cycle, regardless of what it is doing.
asciilifeform: for bonus 'ourdemocracy' decapitation, bake it out of ECL logic ☟︎
asciilifeform: where transistor is run on razor's edge of saturation at all times
mircea_popescu: certainly worth prototyping at the least.
asciilifeform: sadly not prototype-able at reasonable cost afaik.
asciilifeform: ( you can't do it on fpga. )
mod6: do i follow if i store 10 on rising-edge for odd, and 01 at the same time for falling edge even?
mircea_popescu: every piece of shit intel crapware was prototyped. reasonable cost is an entirely conventional notion. malia obama gets to keep her head for another month, how's that for reasonable.
asciilifeform: mod6: it simply means that you store a bit as ~phase~
mod6: yeah, just was trying to grasp that concept.
asciilifeform: so, e.g., 010101010101.... is a 0, and on this same machine, in parallel time, 10101010101... is a 1
asciilifeform: for the purpose of arithmetic
mod6: ah. gotcha.
mod6: <+asciilifeform> ( you can't do it on fpga. ) << needs actual crystal?
asciilifeform: mod6: needs transistor-level layout.
mircea_popescu: mod6 basically, a digital machine has no real reason to store a 1 as a 1 rather than any other arbitrary time-pattern
mircea_popescu: historical convention no more.
mircea_popescu: storing data xor bus cycle in particular is ~free.
mircea_popescu: and talking of nigger spawn, http://www.thegatewaypundit.com/2017/03/party-girl-malia-obama-freaks-accosts-white-house-correspondent-lucian-wintrich-exclusive-ny-club/
asciilifeform: mircea_popescu: 'reasonable cost' in this context is ' asciilifeform's experimentation budget.' which presently does not stretch to ic fab.
mod6: ah. thanks for the input. this is interesting.
mircea_popescu: there is that.
mircea_popescu: it wasn't done originally because it'd have made core dumps much less readable.
mod6: asciilifeform: someday.
mircea_popescu: but ~nobody reads them anyway.
asciilifeform: ( we had, some time last year, a thread, where asciilifeform learns that a number of 'crackpot' fabs will make you a few dozen dies for the cost of a toyota, rather than aston-martin. but various problems remain -- it typically takes 5 or 6 rounds; and they want nda, and the use of winblowz liquishitware tools, etc, and extensive hand-holding )
asciilifeform: it isn't really much like getting, e.g., circuit boards, made.
mod6: maybe someday nsa makes it's own mgft plant/process, etc.
asciilifeform: market of idiots is not exactly busting down the door to buy sane hardware.
asciilifeform: at this time.
mod6: for now.
mircea_popescu: eh, young lenin was also poor.
mod6: later, they come.
mod6: speaking of which, i have new results to post.
asciilifeform brb
mircea_popescu: meanwhile at the whipping post, http://68.media.tumblr.com/f0d4eb2dbb99fe6d9ddc018774b6b73f/tumblr_n3ubtmX66P1sc3xtso1_500.gif
mod6: Here's the results from the first entropy collection of FG #5: http://www.mod6.net/fg/fg-test/fg5.ent_run1.txt http://www.mod6.net/fg/fg-test/fg5.dieharder_run1.txt
mod6: interesting this time. collected ~1.5Gb. All tests passed the dieharder.
mod6: I'm pretty sure that's the first time. But will do follow up analysis after 3rd run against this 5th FG>
mircea_popescu: ha! nice.
mod6: yah,thanks! this is awesome ftr. having fun doing it.
mircea_popescu: yeah lol
asciilifeform: neato mod6
asciilifeform: mod6: incidentally didja ever get a chance to read fg.v ?
asciilifeform: did it make sense to you, how and why the thing worx.
mod6: i've read through it ~twice. so far, it makes sense to me, but I need a more careful going-through. part of why I'm learning verilog.
mod6: stuff is impressive
mircea_popescu: by the time you're done with logs, you'll have like 5 diff careers mod6
mircea_popescu: in other lulz, qualcomm-apple battle heats up. iphone 8 might be banned from us market &c
mod6: mircea_popescu: aha, im getting an education. trying to relentlessly get better/learthese disciplines
mod6: *learn these
mircea_popescu: on the upside, really can't be fired anymore.
trinque: http://www.houstonpress.com/news/houston-homeless-brace-themselves-as-anti-encampment-ordinance-goes-into-effect-9436174 << h-town heard the republic, is making poverty illegal inch by inch. ☟︎
mod6: altogether, i'm trying to stay focused on trb too. and learn these other topics as I go.
mircea_popescu: o.O
mod6: some of the topics reach far and wide. gotta stay on task. but always will try to pick up what I can, where I can.
mircea_popescu: sounds like the plan!
mod6: <+mircea_popescu> on the upside, really can't be fired anymore. << probably not. i don't worry about it. if one door closes, another opens. besides, someday not too far off, this will be the thing.
mircea_popescu: trinque teens also can't take gf into woods to fuck her intensively no mo ?
mod6: i've always wanted to do my best, or be as good as I can be at something that interested me. im not as smart or as clever as many, but I put in the work. i find that putting in the work pays dividends later.
trinque: no woods to speak of inside city limits
trinque: plenty of woods with camping outside, which is where anybody camping does.
mircea_popescu: apple story being apple got ftc to sue the chinos, ftc got lapdogs (intel, samsung) to join in. the chinos might actually slap an ic export ban on us.
trinque: this is highway barnacle removal
mircea_popescu: ah ah
mod6: heh 'highway barnacle'
mircea_popescu: should be interesting to see if china permits qualcomm be http://btcbase.org/log/2017-03-29#1633992 ie japan'd. ☝︎
a111: Logged on 2017-03-29 16:10 mircea_popescu: (basically, long story short, usg financed a coupla units in georgia and ncarolina with japan's money, ain't giving it back. loss is whatever you want it to be, 3 to 10 bn)
mircea_popescu: mod6 i find that the people putting in the work end up actually being the smarter among the many.
mod6: fair enough. there is the separate case of enbracing the beatings too.
mircea_popescu: "move into the slap, baby, move into the slap"
mod6: i told some administrtion people at the mines recently something very much the same.
asciilifeform: http://btcbase.org/log/2017-05-16#1656836 << holyfuq trinque , that hobo's bed is bigger than asciilifeform's ☝︎
a111: Logged on 2017-05-16 03:45 trinque: http://www.houstonpress.com/news/houston-homeless-brace-themselves-as-anti-encampment-ordinance-goes-into-effect-9436174 << h-town heard the republic, is making poverty illegal inch by inch.
mod6: "I'm here because of the beatings I've taken."
mod6: they just looked at me like: O.O (wtf is this dude on about...)
trinque: nice teddy and errethang
trinque: they also can't block a walkway or entryway to panhandle. next year they can ban the panhandling outright.
mod6: it's different now tho. back in the day, if you did something retarded, you would be dressed-down for your failures. these days, mines are ~safe-spaces where no blame can be placed or else lawsuits.
mircea_popescu: tsk
trinque: I dunno; I worked for folks that had their own lawyers, when working in mines.
trinque: can always drag you through them longer than you can manage.
mod6: i mean, how is one to learn if one doesn't know he did incorrect action/whatevers?
mircea_popescu: the lazy and the stupid ganged together and convinced "everyone" ie themselves that placing blame is bad, evil, counterproductive et all.
mircea_popescu: more power to 'em :D
trinque: I think people vastly overestimate this "the gendercommitter shall sue"
mircea_popescu: trinque people vastly overestimate the importance of social media howling, also. and this is entirely borne out of stubbornly ignoring the numerous cases of it being raped to shreds.
mircea_popescu still chuckles at the "indignant community" back when fetlife turned out to be a shithole.
mod6: ya. i was just talking about this today, in fact. long story, but at the end, he fucked up, and how's he supposed to learn that he fucked up if no one slaps his dick and says "you fucked up, don't do it again" ?
mircea_popescu: nfi.
mod6: lol. indeed.
mod6: mines churning out cucks like Sam.
mircea_popescu: o damn, i gotta pick that up again.
trinque: mod6: you were in new england right?
trinque: iirc
mod6: heheh, i dig it mp.
mircea_popescu: no, mn
trinque: ah maybe that was mats or something.
mod6: trinque: yah, minnesota.
trinque: ah ok, can't say I've been there.
mircea_popescu: me either. most obscure state! but apparently great hunting.
mod6: imagine texas in the summer. then imagine texas in the winter -90 degrees.
trinque: probably has its charm. I like when the environment tries to kill me.
mircea_popescu: keyword being "tries" i guess.
trinque: folks must not go outside; you'd think that'd toughen them up
trinque: yeah, that tornado on the highway recently, good try.
mod6: dang. yah.
mircea_popescu: tornado be like "bitchez, didn't you want flying cars ???"
mod6: haha
mircea_popescu: WELL NOW YOU GOT THEM!!!
trinque: ahaha
mod6: my ancestors lived in a covered wagon for like 2 years.
mod6: (i'm told)
trinque: oh? actually settled the place?
mod6: apparently.
mod6: they came from germany or whatever, bought/steaked a claim; took 'em 2 farming seasons to get enough money to buy the supplies to build the house.
mod6: house is still there.
mod6: O.O
mod6: meanwhile, all 6-8 of 'em or whatever lived through 2 minnesota winters in a covered wagon.
mod6: staggers the imagination - the sheer determination of a generation long since gone bye.
mircea_popescu: well no because back then they had anthropogenic minnesota warming see.
mod6: but shit, i figure, if they could do it, I could do it too. not that i look forward to that, but it's not impossible. hell, it might be downright necessary.
mod6: mircea_popescu: haha
trinque: look if the cows all fart at once it sets off a positive feedback loop
mircea_popescu: anyway, cold hardness is very much developed trait. i think i told the story of the pubescent girls at the black sea playing around in the freezing water like fucking sirens.
mircea_popescu: at the north sea*
mircea_popescu: fucking cape cod style winds, i was cold in my winter gear. they were the color of liver.
mod6: i think you did, ya.
trinque: never jumped in the water, but I've hopped in a few snowbanks naked. it's a riot.
mircea_popescu: snow is not so terrible because very insulating.
mircea_popescu: wet + wind however is how you say death in arabic.
mod6: once, i was walking on a frozen lake. fell through some thin ice (~january-ish time), by the time i walked ~2.2km home, my pants were frozen and my legs were blue.
trinque: ah true.
mod6: like, my pants stood on the own.
mod6: frozen damn near solid. lol
mircea_popescu: no frostbite ?
mod6: probably some. i think i've had it quite a bit. not to the point of decay or amputation or anything. but there've been many times I remember playing hockey outdoors as a kid in 10 or 20 below f weather.
mod6: by the time i took my skates gloves off... feet/hands really painful. i used to put them in very luke warm water to thaw them out.
mod6: feels like your hands/feet getting hit with a hammer
mod6: once you get frostbite, they say that it's pretty easy to get afterwards because your capillaries never heal fully. making you susceptible.
mod6: not a year goes by that I don't read about some person who got drunk, fell asleep on their porch mid-winter, and loses some digits due to frostbite.
mod6: i suppose they should consider themselves lucky.
mod6: anyone else playing with ffa?
pete_dushenski: asciilifeform: pete_dushenski: ran when parked << lol << :D
pete_dushenski: http://btcbase.org/log/2017-05-15#1656143 << lol i'm afraid i don't understand this 'fix' well enough to implement on disposable craptops that actually have intel me on them. let me know if you take the plunge :) ☝︎
a111: Logged on 2017-05-15 13:25 Framedragger: http://btcbase.org/log/2017-03-14#1626725 << actually i want to try this sometime, too, any chance you've already fiddled with it pete_dushenski? :D
pete_dushenski: http://btcbase.org/log/2017-05-15#1656491 << well, they are made of ye newe nose-cutty plastique. this is, however, the least annoying of its 'features'. cracking and breaking due to temperature fluctuations and extremes is markedly more of a nuissance. 'moar durable! progress!' is anything but. nooz at 11. ☝︎
a111: Logged on 2017-05-15 19:20 BingoBoingo: Wait, Canadian bills are diabetic?
lobbes: <mircea_popescu> snow is not so terrible because very insulating. << I can attest! I grew up on cape cod; while the winters never usually got below ~30 F on average, the occasional noreaster would punch you to the bone. cold rain + high winds = no fun
lobbes: the 5 years I then spent in northern Ohio (where it'd get below 0 F often) were comparatively more bearable
lobbes: of course now I'm in the warm, sub-tropical southeast! Barely had a winter this year :D
pete_dushenski: http://btcbase.org/log/2017-05-14#1655841 << why did btc4rx7 deal fall through ? /me offered previous owner of saddam 10btc. he declined because 'too volatile' and 'family to feed'. i didn't think he'd bite, but now there's at least one more schmuck who can't say he never had the olive branch extended to him. i guess that's something. ☝︎☟︎
a111: Logged on 2017-05-14 16:13 asciilifeform: i almost bought a wankel car once
pete_dushenski: in other $8mn lifestyles, https://pbs.twimg.com/media/C-4BNGEXUAAGgpA.jpg https://pbs.twimg.com/media/C-4A8P0XYAQe1tG.jpg (cdn national hero justin bieber makes a variety of sensible requests while touring in indian hinterland, 'our demookracy' very upset by HIS entitlement. aha.) ☟︎
BingoBoingo: In other threads completed: The best late model consumer vehicle is likely the pre-2017 model year Honda Rebel. 4-stroke combustion is a bummer to see on it, but air cooled and carbeurated. Better would be humble bicycle with "echo CS-800P" chainsaw swapped in to replace pedals.
BingoBoingo: 5 cubic inches of fury!
BingoBoingo: and automatic chain oiler as a bonus
BingoBoingo: (Primary advantage of 2-stroke motor is lubrication in any rotational configuration such that gravity glove shennanigans need not deprive motor of friction protection)
BingoBoingo: Secondary advantage being exhaust smell
BingoBoingo: Advantage of chainsaw as powertrain is having a chainsaw to clear road obstructions provided rest of chainsaw is kept in saddle bag.
BingoBoingo: Only disadvantage I am seeing here is that reconfiguring chainsaw to be chainsaw instead of bike mover takes time. Time that could be used to clear obstructions like hamplanets had one been simply traveling as a pedestrian with a chainsaw.
BingoBoingo: And unlike turbine, trivial fuel is required to spin up motor ☟︎
BingoBoingo: In further trivia at apex on technology, chainsaw maker also produces appliance called "Bed redefiner"
BingoBoingo: And still further finds, a cordless drill that might meet alf standards http://www.echo-usa.com/Products/Engine-Drills/EDR-260 ☟︎
mircea_popescu: mod6 that's true, frostbite is pretty damaging
mircea_popescu: lobbes yeah, man gotta pay for his lobster somehow.
mircea_popescu: chainsaw bike eh. why not microwave tv and tower laundry machine dildo, while at it.
mircea_popescu: shinohai its position as 5th altcorn yo. not it's. its.
danielpbarron: the damage from frostbite happens in the warming up. i've had it happen more than a few times where my feet would get cold and then i'd hop in the shower and get that "hit with hammers" sensation. also feels like bones are itchy. ☟︎
BingoBoingo: <mircea_popescu> chainsaw bike eh. why not microwave tv and tower laundry machine dildo, while at it. << Microwave tv would be great for solving problem of people immersed in tv.
BingoBoingo also though laundry machine dildo was already a thing.
BingoBoingo: Anyways, motorcycle and chainsaw both are essentially motors powering sprockets to drive chains. Only really difference is the parts the chains touch
Framedragger: http://btcbase.org/log/2017-05-16#1656734 << awesome ☝︎
a111: Logged on 2017-05-16 01:36 asciilifeform: in other near-term lulz, a 'pbot' is in the worx, so that folx can play with various input->output pairs in-chan
Framedragger: via funkenstein_ https://ponzico.win/ponzico.pdf / https://ponzico.win/ ☟︎
Framedragger: pretty lulzy!
Framedragger: (i sorta enjoyed it, html version here; http://fd.mkj.lt/stuff/ponzico/ponzico.html)
asciilifeform: http://btcbase.org/log/2017-05-16#1656935 << where to even begin -- first, why to spend good coin on something you can get for ordinary incabux ☝︎
a111: Logged on 2017-05-16 05:23 pete_dushenski: http://btcbase.org/log/2017-05-14#1655841 << why did btc4rx7 deal fall through ? /me offered previous owner of saddam 10btc. he declined because 'too volatile' and 'family to feed'. i didn't think he'd bite, but now there's at least one more schmuck who can't say he never had the olive branch extended to him. i guess that's something.
asciilifeform: asciilifeform probably has, at this point, ~all the btc he'll ever have, and is quite reluctant to part with it for whatever reason.
asciilifeform: http://btcbase.org/log/2017-05-16#1656937 << described d00d seems to have spent 8m only on hotel and whores in that particular day.. ☝︎
a111: Logged on 2017-05-16 05:27 pete_dushenski: in other $8mn lifestyles, https://pbs.twimg.com/media/C-4BNGEXUAAGgpA.jpg https://pbs.twimg.com/media/C-4A8P0XYAQe1tG.jpg (cdn national hero justin bieber makes a variety of sensible requests while touring in indian hinterland, 'our demookracy' very upset by HIS entitlement. aha.)
asciilifeform: so technically subj is '8b life'
asciilifeform: and no mention of solid gold toilet, asciilifeform is disappoint!!11!
asciilifeform: http://btcbase.org/log/2017-05-16#1656947 << motherfucking 2cycle poison gas spewers. what is wrong with diesel compressor + pneumatic drill, etc, like normal people have ☝︎☟︎
a111: Logged on 2017-05-16 06:15 BingoBoingo: And still further finds, a cordless drill that might meet alf standards http://www.echo-usa.com/Products/Engine-Drills/EDR-260
mircea_popescu: asciilifeform handheld. you know, like laptops.
mircea_popescu: ruin your body effectively and efficiently!
mircea_popescu: in other machinery, http://68.media.tumblr.com/78cb5f672da3f1f1deb49ec7a2f5a1ef/tumblr_ne0t1tuyrq1ticw27o1_500.gif
asciilifeform: lol
asciilifeform: pete_dushenski: re the 'great artist', do you ever find it curious that all of these folx , even with $maxint, eat recycled food ?
asciilifeform: ( as described in 1st link )
mircea_popescu: i wasn't gonna say anything.
mircea_popescu: http://btcbase.org/log/2017-05-16#1656952 << aha, same principle as the flooding backwards-flowing rivers of siberia / alaska ☝︎
a111: Logged on 2017-05-16 06:59 danielpbarron: the damage from frostbite happens in the warming up. i've had it happen more than a few times where my feet would get cold and then i'd hop in the shower and get that "hit with hammers" sensation. also feels like bones are itchy.
mircea_popescu: i don't get it, so india apparently sees a rider for the very first time, gets all excited ?
mircea_popescu: wtf is with all the peons opining and shit.
mircea_popescu: also, i don't expect the hotel makes any money from the deal. they're giving the rooms away free. etc.
pete_dushenski: asciilifeform: even artist can grow up as poor canadian, never exposed to culture, and continue 'successful career' equally sheltered, shuttling from airport to hotel and hotel to arena, forever contained in $bubble.
pete_dushenski: mircea_popescu: india isn't as socially stratified as it used to be. member of parliament was recently banned for ~all air india flights~ for chiding an attendant who stuck him in an economy seat.
pete_dushenski: s/for/from
mircea_popescu: lmao.
mircea_popescu: and, of course, air india is consequently losing its subsidies, because they'll get hold up in parliament.
pete_dushenski: i dun think so. firebrand indian mp just has to helicopter or drive in car now. it's some fubar shit.
mircea_popescu: i totally would. the name of the game is disproportionate retribution. let your $100 seat savings cost you $10 mn in financing, why the hell not.
pete_dushenski: ravindra gaekwad is the mp's name. a 'shiv sena' (far-right) party leader.
mircea_popescu: it's kinda funny for me to read all the nightmare stories of various ppl trying to airtravel, because i've had nothing but great experiences and well... sucks to be them i guess.
mircea_popescu: geekwad huh.
pete_dushenski: lol correct.
asciilifeform: dirigible!
pete_dushenski: the story is basically that geeky had a business class ticket only to discover that air india had turned the plane into all economy seats. geeky still boarded the flight but flipped his lid when they landed and refused to deboard before roughing up some airline staff.
pete_dushenski: anyways, geekwad, no, evidently doesn't have dirigible.
pete_dushenski: isn't billionaire, etc. news at you know when.
pete_dushenski: asciilifeform: not saying you should depart with btc for $car, but i've yet to meet the seller who turned down, as you say, incadollars.
asciilifeform: pete_dushenski: i considered buying the peculiar auto for incabux, but then realized that i dun actually need one for anything
asciilifeform: having already 1 working auto and 1 arse
pete_dushenski: aha. head won over heart.
asciilifeform: ( asciilifeform's pet does not know how to drive )
pete_dushenski: this has also been my issue in current $porsche market. brainbrakes are stronger than heartthrottle.
pete_dushenski: http://btcbase.org/log/2017-05-14#1655830 << speaking of throttles, 'car throttle' was started at the same time as my old car site by a very entrepreneurial brown brit by the name of adnan ebrahim. we used to email back and forth in those early, uncertain days and we met up in london in 2014 for a few drinks. he obviously went the vc-route and has done very well by the metrics of that world, certainly better ☝︎
a111: Logged on 2017-05-14 15:46 mircea_popescu: https://www.carthrottle.com/post/heres-how-to-make-your-car-exhaust-spit-flames/ << check it out, thgere's even guides.
pete_dushenski: than eric raymond.
pete_dushenski: adnan's is an object lesson in catering to video game playing, basement dwelling, fanbois of the 'like' generation.
pete_dushenski: certainly no one's done it better in the online auto enthusiast space than he.
pete_dushenski: in other hooks, baizuo (白左), or literally, the ‘white left’ is the newest insult in china. love it.
mircea_popescu: lol, i'm trolling through hanbot's site to find where she got raped on eulora auction, end up with http://thewhet.net/2014/how-to-blame-others-and-entertain-people/
mircea_popescu: such history of lulz there is!
deedbot: http://trilema.com/2017/dialogue-on-economy-and-other-things/ << Trilema - Dialogue on economy and other things.
BingoBoingo: http://btcbase.org/log/2017-05-16#1656968 << But does air tool go Brap-p-p-p-p-p-p-p-p ☝︎
a111: Logged on 2017-05-16 13:32 asciilifeform: http://btcbase.org/log/2017-05-16#1656947 << motherfucking 2cycle poison gas spewers. what is wrong with diesel compressor + pneumatic drill, etc, like normal people have
ben_vulpes: psh, also who wants to hump the accumulator around
mircea_popescu: solar / wind power!
mircea_popescu: WORKABLE ALTERNATIVES!
ben_vulpes: BingoBoingo: otoh air tools have turbines in 'em
ben_vulpes: which is just plain old cool
ben_vulpes: http://btcbase.org/log/2017-05-16#1656945 << au contraire, properly built turbine can eat most liquid fuels ☝︎
a111: Logged on 2017-05-16 06:12 BingoBoingo: And unlike turbine, trivial fuel is required to spin up motor
BingoBoingo: But do turbines harness lubricating explosions like wet farts?
ben_vulpes: how about we compromise on a gas turbine powered air compressor backed drivetrain
ben_vulpes: it's the only reasonable thing.
BingoBoingo: Nah, unless it's burning petroil mix, the exhaust won't smell right
BingoBoingo: And air compressor means hoses
ben_vulpes: even if burning petroil, gas turbine will get hot enough to break down the lube oil
ben_vulpes: oh wait we need a total loss lubrication gas turbine
ben_vulpes: could cool it with liquid fuel and recirculate the evaporate into the combustion chamber
ben_vulpes: claaaaasic rocket tech
ben_vulpes: except applied to turbo instead of combustion chamber/nozzle cooling
ben_vulpes: prototype the stack as a "turbo furace"
ben_vulpes: furnace*
mircea_popescu: more like turbo blaster.
mircea_popescu: mean time between explosions, 3.5 hours!
ben_vulpes: https://www.youtube.com/watch?v=k19wyUXP0bw
hanbot: diana_coman i got myself up to date just to quote my last problem with the character in the logs, ha. thanks for asking, and i'll see to it this week for sure. meatland has been fairly crazy these past months, i'd love to have a software problem (she said naively).
asciilifeform: in other noose, we have... long division
BingoBoingo: nice
shinohai: !~later tell BingoBoingo http://wotpaste.cascadianhacker.com/pastes/wUY0i/?raw=true
jhvh1: shinohai: The operation succeeded.
deedbot: http://qntra.net/2017/05/starbucks-fiat-point-of-sale-system-goes-down/ << Qntra - Starbucks Fiat Point Of Sale System Goes Down
mircea_popescu: that sounds great for fiatcoin
shinohai: ty BingoBoingo
shinohai: The Ether DNS seems to still be in exact same shape as I wrote about weeks ago: https://github.com/ethereum/ens-registrar-dapp/issues/128#issuecomment-301561198
asciilifeform: 'OSX El Capitan. SSD + 32 GB RAM, ENS app super sluggish yesterday and same problems as OP. backed-up everything, deleted Mist and support files, re-installed. imported jsons after merging, working fine now, except for the fact that owned domains to be finalized are disappearing from the side bar. Domains cannot be finalized when typed in, mist refuses address lookup, type in a different domain and the retype the domain to be finaliz
asciilifeform: ed works... strange....'
asciilifeform: lol!!
shinohai: Only mETH heads can make DNS shittier than it already is.
mircea_popescu: fucking hipster retards.
mircea_popescu: this is what to do with one's time, right ? pshaw.
mircea_popescu: i suppose if they ever manage to adapt the fingernail rfid for cattle usage, the cows'll be tweeting about how they're testing the barn app, and act like all serious about it, too.
mircea_popescu: "same moo as op. moo."
mircea_popescu: "imported schmoo after making cowpie"
shinohai: lol @ barn app
Framedragger: https://itunes.apple.com/us/app/peekaboo-barn/id300590611?mt=8
shinohai: lel
shinohai: I wouldn't be surprised if they actually found that entertaining.
shinohai: https://medium.com/@jonaldfyookball/an-open-letter-to-bitcoin-miners-c260467e1f0 <<< /me doesn't know why he lolz so much at smacktards that write this drivel. ☟︎
mircea_popescu: in other random shit nobody cares about, https://www.youtube.com/watch?v=ojQQLszjH0k (america, venim!) is quite the ultimate documentary of just what inenarrable scum romanians actually are.
asciilifeform: 'I bought my first Bitcoins in 2013 and have been active on the Bitcointalk forum since March, 2014.... I’m concerned. I believe we urgently need to find a scaling solution, and I believe the best solution is to increase the blocksize.' << lol, betcha these come out of a perl script by nao
mircea_popescu: i've been watching it in 10 minute installments with half hour cussing breaks.
mircea_popescu: asciilifeform just about.
Framedragger: !#s wiseau the room
a111: 0 results for "wiseau the room", http://btcbase.org/log-search?q=wiseau%20the%20room
Framedragger: ^ THIS is the ultimate film to watch
asciilifeform: http://wotpaste.cascadianhacker.com/pastes/T5YKB/?raw=true >> mod6 , phf, et al
shinohai: I was already convinced that Roger Ver populates r/btc with markov bots. Can't even find anything to Qntra about there unless BU breaks, etc.
mircea_popescu: Framedragger whassit ?
Framedragger: hailed as "citizen kane of bad movies". for a reason! it's terrible, horrible, amazing movie you should watch!
mircea_popescu: ah.
mircea_popescu: this isn't a bad movie. it's insufferable, because it is a good movie about cockroaches that really shouldn't exist.
Framedragger: you mean the romanian one? aha ok ic
mircea_popescu: lmao. wtf is with the florist scene, sounds like porn dialogue.
Framedragger: http://log.mkj.lt/trilema/20170516/#218 << will do, yeah... it does require some fiddling (e.g. http://karlcordes.com/coreboot-x220/)
scriba: Logged on 2017-05-16: [05:15:35] <pete_dushenski> http://btcbase.org/log/2017-05-15#1656143 << lol i'm afraid i don't understand this 'fix' well enough to implement on disposable craptops that actually have intel me on them. let me know if you take the plunge :)
Framedragger: mircea_popescu: you mean the completely unnecessary scene in the room? film is full of those. it's amazing i tell you
asciilifeform: Framedragger, pete_dushenski : ftr i dun see the point of the 'partial fix'
mircea_popescu: that's christopher walken, right ?
Framedragger: hahah
Framedragger: asciilifeform: yeah esp. for x220 and the likes when it's truly only very partial
Framedragger: (leaves the 'kernel', etc)
asciilifeform: it's partial EVERYWHERE
Framedragger: aha right.
deedbot: http://qntra.net/2017/05/mizzou-protest-fallout-continues-with-crashing-rental-market/ << Qntra - Mizzou Protest Fallout Continues With Crashing Rental Market
asciilifeform: and will be until somebody coughts up the intel privkey
asciilifeform: and possibly not then, either, nobody has any idea what is in the rom.
mircea_popescu: yeah, how'd you verify it.
asciilifeform: medicine for a corpse.
mod6: <+asciilifeform> http://wotpaste.cascadianhacker.com/pastes/T5YKB/?raw=true >> mod6 , phf, et al << thx for the update!
asciilifeform: np mod6 . lemme know if any part of it does not make sense to you.
asciilifeform: incidentally, ~whole thing is trivially siliconizable/fpgaizable, given as it does not rely on von neumann flow control for anything
asciilifeform: ( and the loops could be unrolled in place, even. )
ben_vulpes: didja know that leebs think gross receipts taxes are a great idea? http://www.wweek.com/news/city/2017/05/09/commissioner-chloe-eudaly-and-advocates-prepare-to-launch-a-climate-change-tax-on-corporations/
Framedragger: asciilifeform: mircea_popescu: re verify, presumably one may be able to set some parts of the firmware to be RO? problem is, not all parts, and even then, "how deeply do you trust". so yeah i guess sisyphean
asciilifeform: Framedragger: the mask rom
asciilifeform: not the bios
Framedragger: hm right.
ben_vulpes: will pay for solar panels, community gardens for the poor, and jaeorbs for women/people of color!
asciilifeform: the fritz chip starts from mask rom, the contents of which are unknown (and potentially unique per-batch at factory) and it in fact brings up the remainder of the cpu
mircea_popescu: ben_vulpes hey, i have various cos paying 3% of gross in ro. works great for high margin operations.
mircea_popescu: (no, it's not "on top of everything". it's either of net or of gross, your option._
asciilifeform: why would anybody ~want~ to pay of-gross ?
mircea_popescu: because cheapewr.
asciilifeform: how's that work ?
asciilifeform: 3% of X > 3% of (X-y), where y>0, neh ?
mircea_popescu: suppose you have 1mn gross receipts. if you pay 3% of gross, you're paying 30k. if you instead pay 16% of net, you'll have to produce expenses worth 850k before it's cheaper that way.
mircea_popescu: discount cost of expenses is about 6-7% depending, meaning it's not worth it to buy them straight.
ben_vulpes: there is no 'either' on the table here.
ben_vulpes: femfuhrer simply wants 1% of the largest pile in sight.
mircea_popescu: yes, but you were discussing the thing in general, so i gave you specific example of exception.
asciilifeform: if you're , e.g., 'uber', or some other bezzleco, and your net 'is' 0, you pay 0, neh ?
trinque: pdx income tax has been otw since that arts tax thing
asciilifeform: i dun see, still, how %-of-net can possibly be greater or equal to %-of-gross
trinque: asciilifeform: because they can argue a greater percentage of "omg they were just going to pocket it" than of "and we also have to pay things you don't know about"
mircea_popescu: asciilifeform yes, but then you have to actually have the expenses. and then the inept game of "oh, disallowed extemption, we decided you owe money retrospectively plus penalties etc"
asciilifeform: naggumization lol
mircea_popescu: and so now you have to maintain accountants + hitmen, and neither one is sufficient, to keep enough pressure on the crown so it can't come up with bullshit.
mircea_popescu: half the time it does anyway.
mircea_popescu: irl, paying tax out of net is a sucker's game. you want to pay the talent out of net, like they do in holyingwood, and the criminals out of gross.
mircea_popescu: but the alternative is to shoot the "democratically elected" and take over. and the sad truth of the matter is that it's actually AN EVEN WORSE DEAL.
mircea_popescu wouldn't take over eg romania if they paid. i can't imagine oregon or w/e is any better
mircea_popescu: though i've not seen the numbers.
ben_vulpes: and he asks why i don't burn down city hall.
asciilifeform: which romania, though. the current demooocracy one, or a re-created 18th c. one, consisting of current minus the moocows (sell to dairy farmers, berbers, whichever specialists)
trinque: asciilifeform: think of the expense of holding that territory, and then you have all these underlings who don't want to pay you!
mircea_popescu: the runway is not worth the bomb, asciilifeform
mircea_popescu: nor is the "person" worth the bullet.
asciilifeform: hm speaking of the bomb, iirc great U deposits in ro
mircea_popescu: myeah.
asciilifeform: if you want to hold territory, i could think of less useful one to hold.
mircea_popescu: 2/3 of ru nuclear programme comes from re quartzes.
asciilifeform: and gdr aha
mircea_popescu: asciilifeform i could think of less useful myself, or of more useful also. but i can think of no ~useful~.
mircea_popescu: less clean sewage, more clean sewage, just no potable water s'all.
asciilifeform: i suspect that the 'ju-jitsu' kit, 'club enemy with his own arm', 'sit on river side and wait for corpses to float by', has limitations; and for some things you probably need a physical castle. but then again i'm not in the mircea_popescuation business.
mircea_popescu: anyway. i personally know two ... groups, let's say, that triedf the whole take over game. leaving aside the petty private satisfactions [of jailing the other trailer park trash they grew up with], economically it's been improductive.
mircea_popescu: romania incidentally has a long history of just this, it's called fanarioti period. hundreds of groups over 3-4 centuries did just this, kept taking over because pissed off with insolence of ex crown. discovered worse deal to be king. ☟︎
asciilifeform: 'Тяжела ты, шапка Мономаха!' (tm)(r)(pushkin)
mircea_popescu: aha
mircea_popescu: anyway, heuristic remains : pay anyone you can fire out of net, anyone else out of gross.
mircea_popescu: trinque the adventure of say rhodesia is instructive. suddenly the imbecile twitter horde is trying to play counterstrike around your borders "for democracy", while the idiots are cheering them on. god fucking forbid black dudes with machine guns start pouring over border in us, at the rate of a few thousands a year.
mircea_popescu: TERRORISM!!!! and THE WHOLE WORLD MUST GIVE A SHIT!! AND THEREFORE DOES!!!
mircea_popescu: and the netflix scum nod along, "oh yes, terrible, terrorism, moo, moo"
mircea_popescu: then again, the us of today would pretty much collapse in a year of rhodesia treatment, supposing anyone could be arsed to apply it.
mircea_popescu: its continued existence signifies the absence of interest and exactly no more.
mircea_popescu: asciilifeform remember when teh politburo shat it because they imagined the chinese'll start pouring over the border ?
asciilifeform: aha
asciilifeform: usa has the extra-lulzy feature that it ~relies~ on porous borders in order to work (~100% of agriculture, construction, etc. business in various places is mexican)
trinque: god who wants it
asciilifeform: so closing borders, even supposing this were somehow desired by the lizards, ain't happening
trinque: all these fat women, and sidewalks filled with human shit and shit humans.
asciilifeform: trinque: that's fixable.
asciilifeform: bullet is 10 cents, zyklob-b -- cheaper yet
asciilifeform: *zyklon
mircea_popescu: everything's fixable in this sense.
mircea_popescu: we could all be young and the walls could be ivory.
asciilifeform: perhaps not, but the sidewalks ~could~ be shit-free.
mircea_popescu: and they're not worth the cleaning.
mircea_popescu: you say you worked in biolab. you must've encountered the phial not worth the washing, yes ?
mircea_popescu: "this set, straight to incinerator".
asciilifeform: mircea_popescu: ~nobody ever washed ~anything
asciilifeform: in fact.
mircea_popescu: but why! could have washed! good as new!
trinque: there was perhaps some land worth ruling, who knows. but wtf, somebody's going to be father-janitor to these people.
mircea_popescu: fact is, the crap growing in agar bottle manages to soil the bottle. permanently.
asciilifeform: chinese experience in africa suggests otherwise. rm -rf / the locals, ship in worker bees.
mircea_popescu: chinese have the bees.
trinque: the future being at all worthwhile is going to involve massive ratios of man to drone and drone to bodycount.
mircea_popescu: while that lasts. god knows the scum are trying their best to scumify china as well ; and sadder still -- the ~only reason it exists is that it's really just an alternate pathway to scum. slightly different sort of cockroach, that's all and no more.
mircea_popescu: the ~only reason it resists* i mean.
mircea_popescu: though the two are just about synonymous in context.
asciilifeform: which is why north kr was priceless treasure -- the ONLY remaining experiment with industry sans konsoomer-spending-britneyizes-all ☟︎
asciilifeform: it dies ( and it will die, there is limit to how many decades you can dance from a noose tightened by entire 'civilized' world ) there will be 0 remaining.
asciilifeform: ( incidentally : https://archive.is/RcYWV << a very rare bit of sane description of subj in english )
mircea_popescu: this is not true. myanmar, fine example
asciilifeform: what industry there ?
mircea_popescu: notice how silent the "crowd wisdom" is about all that ?
mircea_popescu: ~same as best korea.
asciilifeform: how many migs they make in a year ? from what mines, the ore ?
asciilifeform: how many men under arms ? who made the arms ?
asciilifeform: no comparison.
mircea_popescu: wait, pyonyang makes migs per year ?
asciilifeform: supposedly! ( i dun work there , cannot confirm )
mircea_popescu: i'm telling you. ~same.
asciilifeform: at this point i'd doubt that they make anything at all in north kr. it is on deathbed.
asciilifeform: but at one point -- made.
trinque: when slurping the USSR's cock?
mircea_popescu: at one point. at one point i lived off tit milk.
asciilifeform: trinque: after.
trinque: nb
asciilifeform: trinque: believe or not, they spat it out, and it causes much butthurtz - refused, e.g., electric supply from su, insisted on building own, expelled military 'advisors', etc
asciilifeform: 1960s.
asciilifeform: *caused much
mircea_popescu: anyway. the reason i point out burma is because the coup was successful, and the country is industrializing at chinese pace.
mircea_popescu: whereas korea... whatever. it's gone, has been gone for decades.
asciilifeform: mircea_popescu: what do they make in burma ?
mircea_popescu: by now, pretty much everything, all the way to diesel trucks, tractors etc.
asciilifeform: local ore ?
mircea_popescu: chinese help. you know, just like n korea had ru help.
mircea_popescu: but ~just~ like. on schedule to "spit it out" 2025 or so.
asciilifeform: yes but q is re what will happen if help goes to 0
asciilifeform: and borders -- close.
mircea_popescu: borders are quite closed, to eg, esl precious cuntlet.
mircea_popescu: otherwise, same as in korea - 20 years of slowly fading away.
mircea_popescu: but the general point being : the anglotard narrative is fundamentally broken. it's not you know, "broadly correct, needs adjustment". it can't be fixed. whatever you read in english newspaper makes you dumber, and you can't fix this.
mircea_popescu: where by newspaper we mean the whole gamut of fake news, from redditwittetardopedia to "the new socialist" or w/e it's called.
ben_vulpes: in other shops from bruces: http://68.media.tumblr.com/dd45666cbb61ec58d0cd41d4eb8f4b04/tumblr_oq22gmTurk1s2jikwo1_1280.jpg
ben_vulpes: mircea_popescu: aha, "the new wokesman"
ben_vulpes: haw haw haw "Italian Commission Says More Controls Needed on NGO Rescue Boats in Mediterranean"
asciilifeform: !!up ua
deedbot: ua voiced for 30 minutes.
ua: hi there
ua: I have 20x Dell SC1435 available, these are 2x quad 2.2 Opteron 2374HE 16GB RAM 80GB HDD
ua: there are post leasing from poland, 175 euro apiece, 50 euro cheaper than i saw on ebay.de
ua: these are*
ua: also i could deliver them in person in like east germany
asciilifeform: ua: do you only sell servers, or run an isp ?
ua: only servers
ben_vulpes: !!key ua
deedbot: Not registered.
mircea_popescu: ben_vulpes yeah, like that.
mircea_popescu: ua logging -otc since 2013, still not made a key ? what is this, some kind of joke ?
ua: eh, no
ua: i was just reading and stuff
mircea_popescu: oh i see.
mircea_popescu: keep to it.
mircea_popescu: !!down ua
ben_vulpes: best binary give-a-shit filter on randos.
ben_vulpes: no key, not even worth a cursory second look.
mircea_popescu: not even a rando. the newborn has the excuse that he wasn't there to hear the calling ; but the dorks who frittered their time away in presence have no excuse, nor any way to wash the shame of their cowardly, subhuman build.
mircea_popescu: there is no difference in this sense between nubbins, an idle idiot, and nanotube, a respectable professor. scammers known like theymos and lukejr, supposedly honest idiots like szabo, agents known like gavin or unknown like whatever others have this much in commom -- the call was made, and they strayed. ☟︎
mircea_popescu: no way to wash this, and i will prosecute them. all, the same scum.
mircea_popescu: the whole "so email him" comes with quite the heavy backhand. there's no washing of the treason of not showing up.
ben_vulpes: the genuinely naive with two brain cells to rub together mighta at least asked "what dat" "how do i register" etc
mircea_popescu: there's no such thing as genuine naivite enduring over half a decade unchanged.
mircea_popescu: it's dedication to the devil, plain.
asciilifeform: ben_vulpes: when's the last time an insect asked you something
asciilifeform: it ain't a rhetorical flourish, either -- nubbinses live life entirely same as a roach : set of reflexes
ben_vulpes: yes well, i'm not going to grep through my personal logs to find out if a fleanode name'd been used before
ben_vulpes: sit on couch, smoke pot, print things.
asciilifeform: unrelatedly, 'finite precision number systems and arithmetic' (kornerup & matula, cambridge press) is mega-b00k, the only one i've found on subj that is NOT a mere plagiarism of knuth, has useful algos for e.g. carry-free ops, hardwarizations ☟︎
asciilifeform: had, among other things, almost literally my multiply-with-carry thing
asciilifeform: if the crate had not taken as long as it did, to come -- would have saved quite a bit of time.
ben_vulpes: in further butthurt from unidentifiedasswipe: http://p.bvulpes.com/pastes/FZ4aR/?raw=true
shinohai: lol ben_vulpes
shinohai imagines this is speshul snowflake of redditard variety.
ben_vulpes: the "could i" construction indicates a particular breed of poverty-stricken subject of her "majesty"
ben_vulpes: to whose crown it does no credit.
mircea_popescu: asciilifeform books rule, totally, i see it.
mircea_popescu: perfect medium for knowledge : while you wait for them to show up, you become more knowledgeable.
mircea_popescu: ben_vulpes let me guess, the ever-sweet delusion that there's room "for everyone" and that whether random sack of flesh burns or achieves is somehow my fucking problem, not its fucking problem, cuz im supposed to be his mommy.
ben_vulpes: more of a sad little "what would getting into the wot at this late date get me anyways?"
mircea_popescu: isn't this a little like the 18 yo girlie asking "what'd getting into fucking this late get me anyways, people'd been fucking forever"
mircea_popescu: obviously not the fucking same question for the deeply retarded female that waited to be 50 first.
asciilifeform: mircea_popescu: actually it was infuriating, i only needed that 1 pg !
mircea_popescu: aww,
asciilifeform: well possibly it has something to say re mod-exp
trinque: ben_vulpes: this guy somehow reminds me of teh spike-sitting salesbro
trinque: tone of "hmph so hurt omg having fit"
ben_vulpes: do salesbros of commodity hardware throw fits where people can see?
trinque: head too far up ass to tell who's looking.