Show Idle (>14 d.) Chans


← 2017-09-29 | 2017-10-01 →
BingoBoingo: !!Up jawbone
deedbot: jawbone voiced for 30 minutes.
mircea_popescu: and in other special purpose instruments, https://www.youtube.com/watch?v=7XHtWSNnXEw
mod6: interesting instrument there
davout: neat, have any vids where it's actually played?
mircea_popescu: known as "vioara cu goarna" in romanian (higheghe cu tolcer in local dialect ; stroh violin in other local dialect) if you want to look it up yourself. it's the chosen / symbolic instrument of bihor country in transylvania, but widely used in teh nortern countries (of romania).
mircea_popescu: and yes django'd have conceivably loved it, it's specifically toned for his interests.
mircea_popescu: basically it's a violin using a metal plate as a mechanical amplifier. early 1900s idea.
davout: this is intensely cool
mircea_popescu: competent romanians will tell you the instrument's required in serious gypsy band yes.
mircea_popescu: that's a dood and his son actually.
mircea_popescu: (the principal limitation of the instrument is that the sound is directional. that's why the twin players is so tempting.)
mircea_popescu: and all this "forking" and "bitcoin cash" and "segwit" and "protocols" and "agreements" bullshit readily brings to mind the old age discussion of all the "alt" bitcoin flavours, back when the item was called doge and the idiots with delusions of self importance were called jackson palmer, kevin rose etc : http://trilema.com/2014/why-dogecoin-is-a-scam-why-the-people-pushing-it-are-assholes-why-business-insider-is-a-contemptib
mircea_popescu: le-piece-of-shit-why-anyone-who-ever-worked-for-it-will-be-dancing-in-the-street-for-nickels-and-wh/
mircea_popescu: (dogegoin, which "still exists" has a "market cap" of whatever, >100mn, according to the websites printing arbitrary values next to text strings ; similarily myspace.com is worth $70 mn according to "Worth Of Web Calculator - World's #1 Website Value Calculator")
BingoBoingo: !~ticker --market all
jhvh1: BingoBoingo: Bitstamp BTCUSD last: 4274.17, vol: 7485.08466905 | Bitfinex BTCUSD last: 4306.2, vol: 24957.02007659 | BTCChina BTCUSD last: 4229.3316, vol: 406.48370000 | Kraken BTCUSD last: 4290.1, vol: 3013.91999922 | Volume-weighted last average: 4297.29049703
asciilifeform: in other lulz, https://archive.is/GhTjl ( and elsewhere, e.g. https://archive.is/uvS7m ) >> 'Jose Lugo said the tall metal towers quickly appeared up after the Brooklyn Battery Tunnel tolls booths came down. “We don’t really know what’s the purpose of this,” he told Carlin. It’s a $100 million MTA project shrouded in secrecy, with 18 of them for tunnels and bridges. So what are they exactly? The MTA’s man in charge of the
asciilifeform: bridges and tunnels, Cedrick Fulton, dodged Carlin’s questions Wednesday. “I said no comment,” he said.'
a111: Logged on 2015-10-19 21:14 assbot: NYPD caught using X-ray vans to search the public, refuses court order to release details | ExtremeTech ... ( http://bit.ly/1PCA1cv )
asciilifeform: ( and/or http://btcbase.org/log/2016-05-01#1460181 , and naturally also simply money siphon, aka распил бюджета )
a111: Logged on 2016-05-01 16:43 asciilifeform: usg luuuuvs to know at the borders if you're pissing neutrons (note what price of helium on the market did in past 20 yrs. us dhs bought up most of it, for tubes)
mircea_popescu: i thought mta ran on public funds.
mircea_popescu: what do you mean "no comment" ?
mod6: how's it goin?
mircea_popescu: eagerly awaiting deedbot 's reemergence
mod6: *nod*
mod6: To close the loop here a bit, the vtron stuff I've been doing in ada is a lot faster now than it was -- just needed to get some better loop control.
mod6: Basically when working with Strings.Fixed I end up making arrays (of fixed size) of strings (of fixed size), need to use caution always to not continue to iterate if the string at a given index is filled with ' '.
mod6: Doing such, avoid use of the heap. And there is quite a bit of manipulation I have to do with the strings. So that adds some cost, because I'm basically doing the parsing on my own. I'm not using any weird 3rd party libs.
mod6: Anyway, there is some hope here perhaps -- got a long way to go.
mod6: The good news is I'm learning stuff.
mod6: !!up p0nziph0ne
deedbot: p0nziph0ne voiced for 30 minutes.
mod6: Another thing worth the mention is that my ada-vtron shells out to gpg - which adds some time as well. one thing I think that would help is if I could figure out how to capture the shell command output directly back into the application instead of having to write to a file, then read the file back into the program.
mod6: if anyone knows how to do this, let me know.
mod6: for example, I do a bunch of this in perl: @result = `gpg --bla --bla`; foreach(@result) { }
mod6: but as far as I can tell, there is no way to do that in ada. the general thing i've seen out on the web is that you must write the output of the shell command to a file, then read it back in.
mod6: anyway, this is all just experimental stuff. no worries.
asciilifeform: http://btcbase.org/log/2017-09-30#1718648 << nsa, cia also 'run on public funds', lol
a111: Logged on 2017-09-30 16:04 mircea_popescu: i thought mta ran on public funds.
mod6: thanks alf!
asciilifeform: lemme know if it worx, mod6
mod6: i'd been avoiding using GNAT libs... maybe I shouldn't have been?
asciilifeform: ( i have not personally tried )
asciilifeform: mod6: doing os-related cruft presents a choice b/w gnat libs and c callouts
asciilifeform: you will notice, for mmap i picked the latteer
asciilifeform: *latter
mod6: ya. i was looking at your stuff to sort of guide me a bit.
asciilifeform: because adacore's mmap lib is a massive pile of shit ( e.g. includes winblowzisms )
mod6: i'm strictly doing c callouts.
asciilifeform: the cost is, then you gotta make'em behave adaistically
asciilifeform: ( i.e. no possibility of string fandango, etc )
mod6: but am flexible. my basic aim is to write the code, keep it as tight and functionally appropriate as possible, then tune it later.
mod6: <+asciilifeform> the cost is, then you gotta make'em behave adaistically << yeah, my approach now seems sane. might be a bit expensive tho. so, if there's a better way thats still 'sane', will try that and report back.
asciilifeform: the sane approach consists of isolating all of the unixoid crud in separate .ads/.adb , make it compact.
mod6: anyway, it's been pretty cool to see this thing come to life. im now in the process of building the big map of vpatch->srcfile->{hash_a, hash_b}
mod6: <+asciilifeform> the sane approach consists of isolating all of the unixoid crud in separate .ads/.adb , make it compact. << ah, this is even deeper than i have it for sure.
mod6: eitherway, thanks for the tip.
mod6: how's it goin with ffa stuff?
asciilifeform: still on barrett
mod6: werd. exciting stuff. wish i could help more :/
asciilifeform: the continuing lulzy part is how everywhere on the net you will find 'constant time crypto libs are available', 'it's a solved problem', 'this reduction routine is constant time', and all of it is liquishit and doesn't stand up to 30 seconds of examination with naked eye
asciilifeform: from openssl down to the crackpot libs, same exact thing, somehow the ~label~ is supposed to... make it so?
mircea_popescu: http://btcbase.org/log/2017-09-30#1718666 << not at all comparable, federal govt carved itself out some corruption purse ; mta is a local affair, has no such bs legislation.
a111: Logged on 2017-09-30 18:07 asciilifeform: http://btcbase.org/log/2017-09-30#1718648 << nsa, cia also 'run on public funds', lol
asciilifeform: mircea_popescu: takes fed moneys, neh
asciilifeform: just like the statehighways etc
mircea_popescu: not afaik
mircea_popescu: indirectly via debt ie "bonds" underwritten by fed via usg.idiots 401k etc
asciilifeform: 'New York State’s Metropolitan Transportation Authority has said that it needs $29.8 billion in capital spending over the next five years... ...After months of silence, Gov. Andrew Cuomo has weighed in with a plan: $8.3 billion from the state, $3.2 billion from the city and the rest from the federal government and other sources' -- volkischer beobachter, aug. 2015
mircea_popescu: a nm, their 2015 five year plan 30bn is a jumble.
mircea_popescu: http://btcbase.org/log/2017-09-30#1718691 << in the same vein, "everywhere on the net" you see discussion of "stalin purges" and headcounts and commentary past satiem and nauseam. what you won't find is a fucking LIST OF NAMES. AT ALL.
a111: Logged on 2017-09-30 18:26 asciilifeform: the continuing lulzy part is how everywhere on the net you will find 'constant time crypto libs are available', 'it's a solved problem', 'this reduction routine is constant time', and all of it is liquishit and doesn't stand up to 30 seconds of examination with naked eye
mircea_popescu: you wanna know which fucking slavsky he supposedly strangled, as it's not the yefrim director of medium machinery ministry, who survived to the 80s ?
mircea_popescu: FUCK YOU!!! details are for terrorists! Stalin killed 20mn people and they had no names!
asciilifeform: he ate'em!11
mircea_popescu: try and find any fucking concrete detail of anything. "global warming!!" yeah, and the measurements are where ? "MTA investment!!" yeah and you did what ? "stalin purges" who ?
mircea_popescu: and so on and so following, an entire anthill of priorless idiots.
mircea_popescu: they could be tachyons for all the fucking difference it'd make, came from the future and going to disappear into the past.
asciilifeform: http://old.memo.ru/memory/spiski.htm << the most liberally snarfing 'list of repressed' derps, funded by usg dos, sum up to 3mil.
asciilifeform: and incidentally whenever i dig out an actual case file ( there are not many in public domain , no prizes for guessing why ) it dun read like a 'arrested for nuffin'
mircea_popescu: "oh but mp, a list of 20mn names would be too long, here's instead a 1.2gb video version of me going uuuuhhh ummm in a concrete cell with plastic loose wallpaper!"
asciilifeform: more typically a 'stole from employer for decade+, and then Cruelly Unjustly Repressed (tm)'
asciilifeform: 'but i was just orcing, like any other orc'
mircea_popescu: cuz fucking obviously, their windows notepad croaks if confronted with a 100mb csv, whereas their windows media player plays the uhhhhs and ummms just fine.
mircea_popescu: buncha monkeys.
mircea_popescu: asciilifeform yes, but it's not in fucking english, the language of the premiere science engineering shitheads in the world, now is it.
mircea_popescu: asciilifeform and fwiw, CUR is how you say ass in romanian.
asciilifeform: http://rosagr.natm.ru/memorybook.php << another interhashinlkomyooniti-suppored derpatron; claims 1.5mil searchable bios
asciilifeform: incidentally when is anybody gonna make one of these for usa
asciilifeform: could be 100mil easy as pie
asciilifeform: http://btcbase.org/log/2017-09-30#1718706 << i find it interesting how the racket is supposed, evidently, to work : the details somehow 'have been reified into The Consensus Reality (tm)(r) and consequently Only A Terrorist would demand to 'reopen the case', demand raw figures, verifiable-anythings.
a111: Logged on 2017-09-30 18:36 mircea_popescu: try and find any fucking concrete detail of anything. "global warming!!" yeah, and the measurements are where ? "MTA investment!!" yeah and you did what ? "stalin purges" who ?
asciilifeform: ( witness how they treat localhost 'deniers' etc )
mircea_popescu: anyway, fwiw slavsky is identified as Yemelyan Mikhailovich Yaroslavsky. and reich is likely zinaida, esenin's wif.
asciilifeform: not strangled at all tho
asciilifeform: yaroslavsky
asciilifeform: i assume we're discussing the propagandist ?
mircea_popescu: what do you mean ? died 1943 in moscow of what ?
asciilifeform: cancer, as far as anybody knows.
mircea_popescu: "being a trotskist" afaik.
mircea_popescu: wouldn't be the first time romanian history of the urss diverges from russians' own idea.
mircea_popescu: asciilifeform how far does the disagreement go ? y. wrote a likbez on bolshevic orthodoxy that stalin found extremely apt in 1940, and then full of heresies in 1943. aye or nay ?
asciilifeform: afaik d00d was never publicly defrocked, or even rebuked, buried with honour in the fortress wall
mircea_popescu: his book was fucvking banned!
asciilifeform: which book
mircea_popescu: history of communist party.
mircea_popescu: the "reliable guide" of 1920s.
asciilifeform: let's verify that we have same d00d ?
asciilifeform: ( scroll to the caricature, also. )
asciilifeform: afaik d00d sucked stalin's cock till the day he died.
mircea_popescu: мельян Михайлович Ярославский born gubelman.
mircea_popescu: same man.
mircea_popescu: we are discussing the cock not the sucker here tho.
mircea_popescu: yes, most of them sucked it till the end.
asciilifeform: wrote canonical bio of stalin, sat on the librorum prohibitorum committees, etc
mircea_popescu: well nikita also wrote cannonical obit of stalin, but the point is, he did fall at some point in the 30s, his historia was indexed, and so on.
mircea_popescu: might have been reprieved.
mircea_popescu: might have died of cancewr, i guess.
asciilifeform: last link defo not prosov www. and yet 0 record, there or anywhere, of y having written a book that got unhappened etc
mircea_popescu: the self-same history of the bolshevik party.
mircea_popescu: the original item was called "History" not "victory". this looks like a 60s reprint maybe ?
mircea_popescu: the original item, published 1926 or such
asciilifeform: that's what it is, История ВКП(б)
mircea_popescu: oook, i found reference! lyova wrote to trotsky on 19 nov 1937, and trotsky replied jan 22 next year, they are discussing the stalin ban on the yaroslavsky item!
asciilifeform: let's have it?
mircea_popescu: well this may take a little, where the fuck does one find this shit online.
asciilifeform: all i dug up is various folx contesting the authorship
mircea_popescu: sorry asciilifeform . all i have are my own notes, which are as all hand notes useless without hte backing of the library of origin (in this case, the universitary library of cluj). teh interwebs dun seem to have a "here's the list of trotsky letters".
asciilifeform: ( for n00bz : subj b00k became Official Truth on party history etc )
mircea_popescu: problem compounded by the fact that my only interest in the matter stems from an obscure mention in an post-war anti-soviet propaganda song by some guy i studied.
asciilifeform: mircea_popescu: moscopol ?
mircea_popescu: asciilifeform ok, other event, also from 1931 : ryazanov got outsted from his mit. aye or nay ?
mircea_popescu: 3rd event, for the pattern : stalin personally wrote against the whole staff of proletarian revolution, for "trafficking trotskism". aye or nay ?
asciilifeform: 1 at a time...
asciilifeform: which ryazanov
mircea_popescu: the one that lead the marx-engels institute
asciilifeform: d. b. ryazanov aite
mircea_popescu: david, born goldensomething or the other. guy died in 38.
asciilifeform: ate lead yea
mircea_popescu: ok so, for summation : the objection re the gazette was that it said something about rosa luxembourg (as the habit was to glorify the three l's, and stalin wanted it broken) ; the objection re ryazanov was that he typified a sort of marxist-leninist scholarship that was stalin-indifferent, stalin didn't like. and the objection re yaroslavski was that his original, 1920s item reflected a history not sufficiently flattering for
mircea_popescu: stalin, by for instance daring mention that trotski was you know, minister of war, rather than consumate conspirator.
mircea_popescu: now, your argument here is that the last two got hung but the first escaped ?
asciilifeform: by all indications
mircea_popescu: well, whether this is true or not, at the time my guy wrote it hadn't happened yet.
asciilifeform: escaped by 'turning on a dime' when asked.
mircea_popescu: tis possible.
mircea_popescu: was young enough, unlike r.
asciilifeform: the observation re stalin rm -rf / 'ing the well-developed wot pre-dating him, is old hat and entirely tru
asciilifeform: though i will add that if there had been not a stalin, and this were not done, su would look like zimbabwe (or, charitably, argentina et al)
asciilifeform: iirc we had the thread.
asciilifeform: old man iosif vissarionovich nixed the luxembourgs, lenins, 'world revolution' crapola, leftist idiocies in the vein of 'free luvv', cancellation of money, of military ranks, of whatever semblance of order, mulched, as necessary, the kakobreklas who balked
asciilifeform: then slaughtered the moos and out of their bone starch built industry etc.
asciilifeform: modern historians paint the textbook edits, 'gentle suggestions', etc. as an evil, but as i see it the man went and 'tried soft power' first
asciilifeform: this didn't work. proceeded with mulching.
asciilifeform: beheaded ~100k or so (near as i can tell) 'pantsuits' , to make it stick.
mircea_popescu: well, the interest of the historian is not you know, ethical.
asciilifeform: depends on the distance.
mircea_popescu: i just wanna be able to decode five syllables on an ancient rca record. the man says, in romanian phonetics, "raic si slavski"
mircea_popescu: which who the fuck are they ?
asciilifeform: near as i can tell, the folx pissing on stalin today, divide into usefulidjits and the actively pantsuited ( who would ~prefer~ an argentina in place of su )
asciilifeform: mircea_popescu: is it possible that he meant the czech ?
asciilifeform: slansky
mircea_popescu: no because he comes later.
mircea_popescu: both historically and in the song.
asciilifeform: when was the song ?
mircea_popescu: now, i'm pretty sure i got them right, esenin's wife and yaroslavski. but old ro guard disagrees,
mircea_popescu: granted disagrees with boneheaded traditions identifying the latter as this guy who was you know, active throughout the 70s and 80s.
mircea_popescu: asciilifeform hard to date, but between 1946 and 1958 or so.
asciilifeform: rudolf slansky swung in '52
asciilifeform: after ostentatious show trial
asciilifeform: so it could be the czech, neh
mircea_popescu: probably during petru groza cabinet, 52 to 58
mircea_popescu: asciilifeform problem with these items is that they are one step removed from gypsy fare. the words change.
mircea_popescu: it is customary to sing them like i tell jokes : about the persons present.
mircea_popescu: asciilifeform : "Asa dupa Reichxxiii si Slavskyxxiv Stalin curata pe Slanskyxxv iar Malenkov pe Beriaxxvi, ca sa nu-l mai supere cu peria." << whole verse.
mircea_popescu: so after reich and slavski, stalin executed slansky, and malenkov beria to no longer bother him with the brush.
mircea_popescu: this verse was not written in one day.
asciilifeform: gotta wonder from where author drew his input
asciilifeform: to where his light cone even extended.
mircea_popescu: pretty much literal fascists.
asciilifeform: but which fascists.
asciilifeform: ( nor does being a fascist automagically give you a window into the shooting cellar, and name of every d00d on the conveyor, lol, in real time )
a111: Logged on 2017-08-11 18:12 mircea_popescu: asciilifeform sure, he was bishop of cluj and nearly ended up patriarch
asciilifeform: upstack, http://www.stalindigitalarchive.com/frontend/node/3#tag=VKP has supposed scans of original drafts, stalin's red ink, correspondence, relating to subj b00k. but the yale people want a reg and asciilifeform can't be arsed.
asciilifeform: this item reminds asciilifeform of his highschool thesis-thing, which was a massive dig into the primary docs re lysenko
asciilifeform: who, interestingly, today has his defenders. iirc we had the thread.
mircea_popescu: do you know of any other possible candidate to fill the sound /slavskʲ/ ?
a111: Logged on 2017-04-19 15:49 asciilifeform: let's briefly visit another time, place : the showdown between lysenko and vavilov.
mircea_popescu: doesn't seem likely does it.
asciilifeform: i suspect we have a bitrot artifact.
mircea_popescu: do you recall the now-famous davai zdreantsa incident ?
a111: Logged on 2017-07-15 19:08 mircea_popescu: this is done universally and to everything, german, russian, turkish. zdreantsa!
a111: Logged on 2017-07-14 20:19 phf: apparently the complete form is "davai zdreanta, desdemona! -- kakoy zdreanta, otela, blya??"
mircea_popescu: i find all 1943 cases of cancer highly suspect.
mircea_popescu: for that money reich also had cancer of the phnatom udder.
asciilifeform: but not of stroke, or typhoid ?
mircea_popescu: less, somehow.
asciilifeform: i mean, if we're still doing yaroslavsky, as far as available data goes, d00d lived and died a bootlick
mircea_popescu: died 1943.
asciilifeform: i've nothing against a version where he Had To Have Problems, but currently not seeing anything that'd point in that direction
asciilifeform: i can see even why stalin might've nailed kirov, his personal friend
asciilifeform: but yaroslavsky - nfi why
mats: in my experience not every unit had a weapon system suited to the designated marksman role, which can often just be the guy with the most accuracy and an acog scope, or a saw gunner, or a 240b
mircea_popescu: http://btcbase.org/log/2017-09-30#1718796 << re this, the ~whole objection re trump is that he didn't go into the first press conference with "1. nobody who worked for us govt in the past five years can continue to do so ; 2. i will propose at most one name to congress. they have 48 hour to approve. if i don't propose, or they don't approve, or they approve in 48h01m, the whole dept in question gets unwound, including by publ
a111: Logged on 2017-09-30 19:26 asciilifeform: modern historians paint the textbook edits, 'gentle suggestions', etc. as an evil, but as i see it the man went and 'tried soft power' first
mircea_popescu: ic auction of furniture". and then cleared the hall of pressjews with the mounted police, breaking as many heads as at all possible.
mats: poverty of equipment, my platoon didn't have one but some others did
asciilifeform: mats: so who and where carries the .308 a10 or what was it
mircea_popescu: mats "ar-15 entirely exists because weak-ass usian soldier ersatzes can't carry a proper gun. true or false ?"
mircea_popescu: that's my understanding of it, "we'll delegate small arms supression fire to the a-10 airborne platform, and then discontinue it. soldiers can carry icecream cones."
asciilifeform: mircea_popescu: iirc smallbulletism began in early '60s, and a continuation of german crackpottery, sturmgewehr 'intermediate'
mircea_popescu: just about the time the new generation of orwell bedwetters started whining about how they're affraid of the enemy.
mircea_popescu: so yes, joan baez days.
asciilifeform: the 'wound'em, not kill, tie up 3 men' thing has merit, neh
asciilifeform: plus the 'if yer mostly laying down suppressivefire, smaller bullet worx as well as gigantic'
mircea_popescu: neh. because if you're behind a concrete wall and i'm behind a concrete wall, i'd rather unzip and piss on you than try and fire a shitass 5mm gun
mats: asciilifeform: i never encountered it but i wasn't infantry, we didn't have a use for it, snipers had m24
asciilifeform: drilling through concrete is for work for squad machinegun, neh, not for small arm
mircea_popescu: is that the remington 700 re-sold for 5x the list price ?
mircea_popescu: asciilifeform the theory of this sounds a lot different from the practice of this.
mats: mircea_popescu: works well in iraqi cities, not so much in afghan
mircea_popescu: the only extra hole in my hide i acquired through ricochet under car, nearly lost a knee.
mircea_popescu: if it were small it'd never have made it.
asciilifeform: mircea_popescu: you weighed it when it came out of the meat ?
mircea_popescu: i even kept it a while.
asciilifeform: which round was it
mircea_popescu: was but fragment.
asciilifeform: then who knows which
mircea_popescu: what, you think the op survived to carry the source away ?
mircea_popescu: what is this.
asciilifeform: i dun think mircea_popescu ever told the story, aside from the detail where he had an extra hole. so nfi.
mircea_popescu: mircea_popescu irrespective, the point remains that in most actual engagements, there's a minimum projectile size worth firing.
mircea_popescu: also the notion that wounded men stop firing, and limp around like little bitches is borne of little familiarity with any actual war.
asciilifeform: usg army is built for panamas, not stalingrads.
mircea_popescu: at which point revisiting http://trilema.com/2015/strategy-for-the-antisocial-struggle/ is probably apropos. doods were firing at helicopters with enough lead inside to make a set of toy soldiers.
mircea_popescu: but anyway : the "wounded man ties up 3 soldiers", other than the baked in presumptions that these are the caring kind of soldiers and the inept kind of wounded, also neglects to mention that ricochet has killed more peopl;e than direct fire since the invention of gunpowder. and by a factor of 10 to 100, not piddly.
asciilifeform: what's mircea_popescu's hypothesis re why su army did not see through smallbulletism , and adopted ?
mircea_popescu: why did su not see through atomic bomb, and adopted ?
mircea_popescu: su suffered from chinese disease of monkeying tv.
asciilifeform: bomb was a good deal tho
mircea_popescu: in what sense ?
asciilifeform: 'touch moscow, lose london'
mircea_popescu: you think anyone gives a flying fuck ?
mircea_popescu: srsly now. youi think anyone cared ? then or now ? london, really ?
mircea_popescu: you ever been ?
asciilifeform: never been, and 0 plans
mircea_popescu: so from your pov, already lost ?
asciilifeform: proverbial!11 london. as in, separate addr for every particular derp with napoleonic ambitions
mircea_popescu: nothing wrong with "wasting" money, in the sense of http://btcbase.org/log/2017-09-07#1711187 yhes good for them, got bomb, got into rocketry, won space race etc.
a111: Logged on 2017-09-07 16:12 mircea_popescu: there can be no further accomplishment than this, in the sense of fundamental research.
mircea_popescu: but this is not really decided on the merits, is it.
mircea_popescu: maybe through fielding 3mm bullets and peashooters for them they discover a new way to please the females, insert into urethra and empty magazine.
mircea_popescu: if this were to happen it still wouldn't be an argument for the military value of shooting pea.
mircea_popescu: on the strict, first layer implications, soviets eating the bomb bait produced some rich us contractors and a bankrupt su economy.
asciilifeform: and if not eaten, quite probably would've been glassed some time in 50s-60s.
mircea_popescu: this has little value, obviously, exactly in the sense cancer prevention has little value. "oh we stopped smoking and yet" http://btcbase.org/log/2017-09-25#1716989 what could be the explanatuion!!!
a111: Logged on 2017-09-25 09:43 mircea_popescu: aand in yet more lulz : cancer incidence increased in us adolescents by a steady 0.5 - 0.6% per year, each year, since 1975.
asciilifeform: ( or 'democratized', panamized. )
mircea_popescu: obviously the fucking explanation is that the sort of bioscum that get cancer from smoking will still get the cancer from other things ifthey can't get it from smoking
mircea_popescu: asciilifeform arguably it was so democratized anyway. bombs didn't do jack did they.
asciilifeform: if a great pistolero, attacked by none, grows senile and finally slips in bathtub, it does not say anything re value of pistol.
asciilifeform: pistol is not immortality pill.
asciilifeform: and everybody, people, empires -- gotta die of sumthing.
mircea_popescu: i thought the whole fucking point of politics was to discover the thing that needn't die.
asciilifeform: and if one is not indifferent re how to die, on knees or standing -- then pistol is valuable.
mircea_popescu: else why even fucking bother with any thing at all.
asciilifeform: lol, why bother to clean kitchen when don't have thousandyearreich yet ?
asciilifeform: what is this, gabriel_laddel ?
mircea_popescu: i mean "Any thing at all" in the way of politics.
mircea_popescu: if this form of organziation, govt, what you call it, society, ANYTHING does not come with promise of permanence, why am i even considering it ?
asciilifeform: imho kitchen 1st, 1000yr reich 2nd. in politics or in engine maintenance or wherever.
mircea_popescu: go fix it first and bother me when you have.
mircea_popescu: until then, no need of any of it.
mircea_popescu: in other words, the mp strong argument for anarchism : the only regime that may be temporary is anarchism.
mircea_popescu: anything else, must make strong case for permanence.
asciilifeform: proof of permanence are to be requested from the splenduferious goddess on olympus, or where.
mircea_popescu: hey, i'm not invested in this.
asciilifeform: they dun have'em on my homeplanet.
mircea_popescu: when they find them, they can notify.
mircea_popescu: if the rule is "to fly with apparatus heavier than air must generate lift in excess of weight", there's no rider going "but tell us where to find such lift".
mircea_popescu: find it and ye may fly ; find it not and stfu in a chorus.
a111: Logged on 2017-09-30 20:04 mircea_popescu: is that the remington 700 re-sold for 5x the list price ?
mircea_popescu: (remington 700 fires without trigger interaction ; longstanding problem, hundreds of deaths/injuries, multiple lawsuits. cca 1995-2005 remington kept pushing out "point by point responses" and other nonsense, which they've meanwhile beleeted throughout, including spam domains a la remington700.tv and such "deniable" efforts "by consultants". in 2017, half the DAs oppose a settlement on the grounds that insufficient.
mircea_popescu: as far as remington isconcerned however, a proposal to replace ~8mn triggers is not a recall!
asciilifeform: hey, ppsh fired when dropped
asciilifeform: would discharge the whole drum, even
BingoBoingo: !~bcstats
jhvh1: BingoBoingo: Current Blocks: 487744 | Current Difficulty: 1.103400932964E12 | Next Difficulty At Block: 487871 | Next Difficulty In: 127 blocks | Next Difficulty In About: 21 hours, 43 minutes, and 39 seconds | Next Difficulty Estimate: None | Estimated Percent Change: None
mircea_popescu: what's new elaineo
mircea_popescu: !!up elaineo
deedbot: elaineo voiced for 30 minutes.
mircea_popescu: what's it say ?
elaineo: i got the OTP through PM
elaineo: but no response after decrypting msg
mircea_popescu: trinque is deedbot sick ? i notice he kinda quit doing the rss also
elaineo: deedbot is a dude?
mircea_popescu: elaineo did you say something just like http://btcbase.org/log/2017-09-26#1717369 to it ? except diff numbers of course ?
a111: Logged on 2017-09-26 04:39 mircea_popescu: !!v D4088521A7610AB73BAEDE6391EB686B1BDAD174263DFECC60AD9707A0674ECD
mircea_popescu: no, deedbot is an actual bot ; oglafbot is an actual dude.
elaineo: forgot the 'v', my mistake
elaineo: is qntra still a thing?
mircea_popescu: yes, but it has joined the chorus invisible for the time being.
mircea_popescu: gotta get hosting sorted out.
mircea_popescu: "Nobody becomes a software engineer because they love writing code; they become a software engineer because it allows them to build out ideas." << this is not so in my experience. from what i've seen in others, and certainyl in my own case, we become engineers because everythinf everyone else does is shit.
mircea_popescu: i came out of retirement for like the third fucking time to design non-crap items ; asciilifeform narrowly avoided the bottle because apparently there were some people somewhere actually engineering, as opposed to tubgirling all over themnselves. and so following.
elaineo: is your intention to show others how to build things properly, or to solve your own problems because no one is doing it for you?
mircea_popescu: the latter.
mircea_popescu: this is a matter of incontrovertible fact, signed by the hand of the author himself : if i didn't HAVE TO write http://trilema.com/wp-content/uploads/2013/03/in-re-bitcoin-devs-are-idiots.htm and such, nobody "involved in bitcoin" would even know my name.
elaineo: that's probably a better way of saying what i meant to say, then
mircea_popescu: i dunno how common this case is in general ; but i guarantee it is the only case where it actually matters, which is to say at the top. that's why torvalds got off ass, that's why rich got off ass, pick any one of the actually competent.
elaineo: why did you feel compelled to write "In re Bitcoin Devs are idiots" ? did code stop sucking after that post?
mircea_popescu: it did not stop sucking, no. but it did suck then.
mircea_popescu: "If you’re a Venture Capitalist, the last thing you want is for your child to go into wage slavery." << more in the same vein. i do take the tack you recommend ("you have no choice in the matter ; the bullwhip is right over there if this doesn't translate otherwise") with my own slavegirls, in a limited sense, thereby forcing them to proficiency in ~certain aspects~ of software engineering. those aspects are exactly those a
mircea_popescu: lligned with the above -- woman, you have to be able to think clearly, and correctly, and when i say "take no crap from anyone, be it wikipedia or your mom", i actually mean ~something~. it's not a ra ra ra, it's an actually specified artefact, it belongs in engineering, with process assurance and quality control and all that jazz, not as part of a pep rally.
mircea_popescu: being a ~competent~ engineer, of any kind, can't possibly be a regression. it's intellectually required for human life.
elaineo: why do your slavegirls submit to you? one can easily imagine an alternate universe where your slavegirls mistakenly chose a master that whips em in another direction
mircea_popescu: one could indeed readily so imagine ; doesn't take much.
mircea_popescu: amusingly, 3k word answer to your q is quoted above, http://btcbase.org/log/2017-10-01#1718967
a111: Logged on 2017-10-01 03:06 mircea_popescu: (btw, check out how sentence references work on trilema : http://trilema.com/2017/the-masters-textbook-why-do-girls-seek-you-out/#selection-39.0-39.40 )
elaineo: "because you're capable of making silence, annulling the noise such that they can focus on the things that actually matter, to them."
mircea_popescu is happy with that as a one line summary.
mircea_popescu: "The most important tech skill, then, isn’t computers or engineering — It’s the art of getting paid to control vast amounts of money." << this then is rank nonsense on the level of "the best car is one with a really powerful engine". really, no steering needed ? brakes optional ? some people are good at finance, some people are horrible at it. yes, fixing your head so you don't suck at finance is absolute requirement fo
mircea_popescu: r human completeness. fixing your head so you don't suck at engineering is earlier stop on the same road. first, you learn to walk, THEN you learn to fuck. "the most important skill" is a discussion of age and station appropriateness, naught else.
elaineo: who is "you" in this piece? yourself, mircea_popescu? or self-perceived masters in general?
mircea_popescu: elaineo well, a master, i expect. but not self perceived, perception dun enter into it. substantial master.
elaineo: oh come on. why would fixing your head so you don't suck at engineering be a prerequisite? Did you learn to be a good slavegirl before you could be a master?
mircea_popescu: no, i did not. but the reason is unrelated : engineering deals with discrete, concrete items, before your eyes. finance deals with complex systems of such items.
mircea_popescu: trying to "understand thermodynamics" without any shits given for the atomic theory will result in tears.
BingoBoingo: <elaineo> "because you're capable of making silence, annulling the noise such that they can focus on the things that actually matter, to them." << This makes those iDiot slabs anti-Master!
elaineo: @mircea_popescu having never worked in finance, i suppose i'll take your word for it, for now
mircea_popescu: moreover, consider the case of mr hruschev of the soviets vs mr lee of the singaporeans. it is a factual matter that no one to date had control, properly called financial in this context, of more resources than hruschev. nor probably ever will. what good did it do him ? and lee started with two old boats and some captured rats. he grilled the rats, sold them and went from there, completing one of the very few cases documented
mircea_popescu: to date of that ancient boyish dream of you know, "trading toothpicks for car parts and those for plastic bags and so on until trillionaire!"
mircea_popescu: but this aside, you familiar with the general fate of lottery winners ?
elaineo: yes, i am
mircea_popescu: having a large army behind you (and money is strictly nothing but) is, obviously, an important ingredient in gaining battlefield glory and the laurels of caesar.
elaineo: lottery winners not really comparable, since they are not competent in finance, engineering, or much of anything
mircea_popescu: no argument here. however, crassus was ill served by his army at carrhae.
mircea_popescu: elaineo but they do control outsized chunks of money.
elaineo: look at the rothschilds & rockefellers
mircea_popescu: i am looking. what am i expected to see ?
elaineo: they controlled outsized chunks of money, and thus human labor
mircea_popescu: this is a dubious statement of the actual history of the matter.
mircea_popescu: consider it from this angle : for 1 point, who was emperor maximillian ; for 1 point, what did he order be done to his artillery pieces and in which town ; for a further point who happened to live there and for the remainder 6 poins, why did you not say his name ?
mircea_popescu: when you pick two examples but fail to pick the proper one among them, teacher knows you didn;t actually do the reading.
elaineo: 0 points for me
mircea_popescu: jakob fugger was the proper example for this "rich man financing the dissolution of medieval system into industrial society". and the emperor had his artillery wheels bound in hay so as to not disturb his sleep.
mircea_popescu: this may suggest that "human capital" was of no importance, value or interest. what mattered was ailleurs.
mircea_popescu: now then -- the iliterate migrant worker who wins 100mn worth of powerball you would have learn how to read and write so the shysters won't trick him with contracts. this makes sense. yet the innocent daughter of a VC you wouldn't have understand engineering, so the shysters won't feed her crap in their description of "reality" ? what's this girl to do if she ever has to fix her car, pay 8k for a new johnson rod, like george
mircea_popescu: costanza ?
elaineo: understanding engineering is a subset of what it takes to not be a moron, which is a subset of what it takes to be a VC
elaineo: what mattered was ailleurs.
elaineo: oh, i dunno. just copied & pasted a sentence from what you said above.
mircea_popescu: lol, what's that, some google ai thing ?
elaineo: cargo cult arguing-on-the-internet
mircea_popescu: ailleurs there is a reference to "la joie c'est ailleurs", which is my own reprocessing of "la vie est ailleurs", which is a kundera novel, and the yarn of reference, criticism and tongue in cheekness does continue
elaineo: was anyone expected to understand that reference aside from yourself?
mircea_popescu: yes. everyone was expected to understand the reference.
mircea_popescu: dja ever read milan kundera btw ?
elaineo: nope
mircea_popescu: ah, too bad. i'd expect you'd like him, seems to me exactly in your style.
mircea_popescu: though granted this may be more a description of my poor understanding of selfsame styler.
elaineo: interesting... i'll check out one of his books
mircea_popescu: so supposing you were going to teach me about capitalism ... what would you say ?
elaineo: i've never been an investor so i don't know what it takes to be successful at one. i suppose it starts with understanding supply, demand, transaction costs
mircea_popescu: eh, i find it hard to believe you can live in bay area and not be an investor. don't they force-feed everyone stocks, options, etcetera as part of employment there ?
elaineo: i get stock options, but i don't think that makes me an investor. stock options are like S&H greenstamps, where you feel like you're getting something valuable for free but you're not
mircea_popescu: well, technically the definition of investor, neh ? one who owns commercial paper in excess of 0 cash nominal value.
elaineo: by that definition, sure. though it doesn't really make me diversified.
mircea_popescu: i expect not. so why do you expect other people/parents who don't even have enough sense to find #trilema could teach their kids anything, including how to make mayo ? leaving aside something as intricate as capitalism.
← 2017-09-29 | 2017-10-01 →