Show Idle (>14 d.) Chans


← 2016-11-01 | 2016-11-03 →
BingoBoingo: !~tslb
jhvh1: BingoBoingo: Time since last block: 49 minutes and 39 seconds
mircea_popescu: http://btcbase.org/log/2016-11-02#1561805 << one important point is that the checking of common fs (ext2, ext4, w/e) wrt to feasibility of the symlink scheme proposed couold be started right now.
a111: Logged on 2016-11-02 01:55 mod6: ok, well, at least i've got some breadcrumbs back to that great convo lastnight.
mircea_popescu: prolly the linchpin of the entire thing, if we can actually use off the shelf fs we can almost even proceed.
mircea_popescu: http://btcbase.org/log/2016-11-02#1561808 << still has to be separate from that because of the risks involved in fucking up the wallet. nobody cares you leak your tx index say, that's public.
a111: Logged on 2016-11-02 03:16 ben_vulpes: http://btcbase.org/log/2016-11-01#1561232 << merely that wallet might reasonably be muntzed out of bitcoind proper into block-muncher-and-tx-indexer. topologically very similar to "reindex" and friends, but could eschew "wallet" idiocies involving change addresses and sensible address reuse.
mircea_popescu: also, what do you mean "whom" ? address ? you'll have duplicate indexes.
deedbot: http://trilema.com/2016/qntra-sqntr-october-2016-statement/ << Trilema - Qntra (S.QNTR) October 2016 Statement
mircea_popescu: BingoBoingo the Alert system having long been long purged << extra words!!!
mircea_popescu: jurov shares added.
shinohai: Buena dias mircea_popescu o/
BingoBoingo: mircea_popescu: ty snipped
BingoBoingo: In other news Qntra has been sitting at 2100 comments for some time now. There's a Qntest going on, so pls to correct.
asciilifeform: in other lulz, http://cluborlov.blogspot.com/2016/11/flotsam-on-fetid-tide.html , 'As she coughs, staggers, convulses, lies, pilfers, sells favors and lapses into intermittent confusion, she still has the courage to tell America that she loathes half of it. That´s candor.'
asciilifeform: and lol, apparently guest piece by... fred reed
mircea_popescu: i dunno why they find it remarkable, it's the end game for middle class womanhood since well before the french revolution.
asciilifeform had nfi he were still around. was a favourite of uncle al.
mircea_popescu: asciilifeform weirdly enough, the uk press moved to a "trump will win" stance, from sky to telegraph etc.
asciilifeform: mircea_popescu: american, also, they traditionally do this in the last days leading up to election to help nail a designated loser with 'turnout encouragement'
mircea_popescu: https://archive.is/LCAnf << even the most rabid socialists. the tinge of schadenfreude, delicious as it may be, is still the only distinguishing decoration between "tory" and labour.
asciilifeform: why the british are involved, i have nfi.
asciilifeform: (possibly because they haven't own brains, are simply an anal wart on usa now.)
phf: http://btcbase.org/log/2016-11-02#1561808 << i got prototype for that. there's only one method called from entire wallet codebase that injects the prepped up transaction into the general pool. i replaced it (or rather, right now it's augmented) with a shiva foreign call that takes a list of bytes, deserailizes it into transaction, and does the injection
a111: Logged on 2016-11-02 03:16 ben_vulpes: http://btcbase.org/log/2016-11-01#1561232 << merely that wallet might reasonably be muntzed out of bitcoind proper into block-muncher-and-tx-indexer. topologically very similar to "reindex" and friends, but could eschew "wallet" idiocies involving change addresses and sensible address reuse.
asciilifeform: phf: consider posting this
phf: yeah, it needs some more work. i think that wallet needs to be augmented do operations via shiva, but then instead of injecting it should do a call out into shiva of a byte list of transaction. once i get there, i'll do a post
mircea_popescu: alternatively, wallet could run as entirely separate process, and relay its txn by connecting to a node as if it were a node. except it asks for no txn.
phf: afaik wallet relies on some knowledge of blockchain, so airgapped solution will be a combination of blockchain eater and an augmented wallet. so you have two parallel nodes red and black. black sits on the wire and receives transaction, spitting blocks. you batch carry blocks to red, red eats them, you do your wallet operations, pick up serialized byte lists, carry them back to black, inject. etc
mircea_popescu: phf in principle wallet has all the knowledge of blockchain it cares about.
phf: in principle yes
mircea_popescu: i'm not altogether sure such a drastic separation can be implemented - but it seems theoretically possible
mircea_popescu: maybe worth pursuing.
asciilifeform: it really depends on what you expect out of 'wallet'
mircea_popescu: IF the wallet is correctly implemented (as discussed, text files etc), then fixing any problem is trivial for the operator.
mircea_popescu: asciilifeform EXACT same as the derps doing nuke security explained they expect in yest linked article. "that the authorised people can launch easily and no one else can period."
phf: but i think asciilifeform also had an imperative of keeping trb canonical sourth of all btc knowledge, so that wallet stays in (so that you can read and know what wallet even is), but you solve the separation by starting the daemon with different flags indicating intended usecase
mircea_popescu: bitcoin wallet is very literally superset of nuclear briefcase.
asciilifeform: that goes without saying. but does it really need to also be a miniature node ? or can wallet simply do the one essential thing, sign payloads with privkeys
mircea_popescu: asciilifeform and not relay them at all ?
mircea_popescu: phf yes but it seems it was at least tacitly agreed a package of tools is acceptable rather than monolith.
asciilifeform: spits out signed string, which you then drop in the hopper of an operating node.
mircea_popescu: asciilifeform also acceptable. but in neither these designs does wallet have access to blockchain.
mircea_popescu: it's just somehow assumed it does ; but there's no reason for it to.
asciilifeform: in the picture phf drew, it does
mircea_popescu: well yes, hence this discussion.
asciilifeform: imho private keys don't belong anywhere near a node.
mircea_popescu: im of the same sentiment.
mircea_popescu: they do not belong on an internet-connected machine, to be clear.
mircea_popescu: MAYBE something like "only open port is X and only process connects to it is Y and ALL Y does is push data out so and so" may work.
mircea_popescu: but that's as far as that goes.
asciilifeform: given nic dma and other wonders, i would not even sign under this.
phf: well you have a concept of an airgapped node already. it's the one where you rely on a whole different networked node to build a blockchain for you, and inject blocks into your airgapped node for you. there's hell of attack vector here though
asciilifeform: serial diode - yes.
mircea_popescu: phf myeah.
asciilifeform: phf: it isn't clear that the signing box needs to see raw blocks.
asciilifeform: it only needs to see the payloads for signing.
mircea_popescu: or any blocks in general. only you can spend, therefore only your updates are interesting to it.
mircea_popescu: asciilifeform i don';t think the wallet should do only signing. it should also do coinbase selection.
asciilifeform: this is where it gets painful
phf: that seems tricky, as far as my work is concerned, definitely version 3
asciilifeform: because there exists this animal, that isn't even properly part of bitcoin, called the unmined tx
mircea_popescu: BUT! coinbase selection is the MOST IMPORTANT part of bitcoin privacy
mircea_popescu: and unsurprisingly, the one that got 0est of prb effort.
mircea_popescu: asciilifeform explain ?
asciilifeform: well, see the doublespend threads
mircea_popescu: you mean the malleation stuff ?
asciilifeform: trb wallet is every bit as broken as prb wallet in this respect
asciilifeform: for instance.
mircea_popescu: that finally got irretrievably broken as i reported here a while back.
mircea_popescu: now high-s are doublespent automatically by transactions that oficially "do not exist",
mircea_popescu: notwithstanding that they are reported as doublespends.
mircea_popescu: pretty eggregious nonsense, vaguely surprised nobody gave a shit about it then, but w/e.
mircea_popescu: unless there's 17 btc to dream about and blood in the water from decapitated project nobody actually gives a shit about the network.
asciilifeform: i still don't fully grasp ~why~ the malleatron fires ONLY when the maker of original tx tries to doublespend own coin by making new one
mircea_popescu: this is not how it works ?
asciilifeform: this happened to me, while using bbet to lose 5btc on go players.
asciilifeform: and on one other uninteresting occasion prior
mircea_popescu: that i think is unrelated. i was talkign about https://archive.is/HG8sD https://archive.is/pmq78 stuff.
asciilifeform: the entire notion of 'marked as doublespend' is odd
mircea_popescu: (originally reported back in sept, http://btcbase.org/log/2016-09-11#1539608 )
a111: Logged on 2016-09-11 16:28 asciilifeform: http://btcbase.org/log/2016-09-11#1539596 << fwiw, as far as i can tell, my boxes never saw these.
mircea_popescu: it's a kludge.
asciilifeform: it's a nonsense. miners can induce pretty much anyone to 'doublespend' by failing, for long enough, to mine a tx
mircea_popescu: anyway, the point being, the miner cartel brink-of-war event didn't proceed, but "equipment" derived from it is now widely deployed, and as you can observe it can selectively disappear txn from the mempool.
asciilifeform: there is nothing intrinsically illegitimate about a 'doublespend'.
mircea_popescu: notwithstanding that those txn are valid in all respects.
asciilifeform: as i understand, it works by making mircea_popescu 'taint' (yes) his coins with 'doublespendiness'
mircea_popescu: i don't follow.
asciilifeform: and then the tx using these inputs get dropped by derps.
mircea_popescu: ah. yeah, possibly.
mircea_popescu: this is quite likely how it works, though the taint is currently attached to the txn itself rather than the inputs. while supplies last, anyway.
asciilifeform: and pretty much everyone who has attempted to fire a tx using trb prior to mod6's 'S' patch, now has a supply of such 'evil' coin with which to test this hypothesis, if he wants.
mircea_popescu: because you simply can't get the taint out of the stupid head. it's born with it, will die with it.
mircea_popescu: "gotta have taint! its how the world works!"
asciilifeform: the tale of procrustes had a point
asciilifeform: stupid folk cannot resist the urge to actually try an' cut the world to fit in stupid head.
mircea_popescu: thopugh i suspect the words urge and resist are misemployed.
asciilifeform: 'the selectively disappear tx' is not afaik really it, this weapon cannot be aimed.
mircea_popescu: anyway. the case that the current set of derps doing the mining will be allowed to continue remains dubious.
asciilifeform: (or rather, it ~can~ be aimed, but very cumbersome, like 'bertha' cannon, they gotta not-mine your tx first, make you double up)
mircea_popescu: asciilifeform works about as well as everything else usg.
asciilifeform: hard to see what could replace 'current set of derps' other than a quite identical set
asciilifeform: mining is -ev.
mircea_popescu: fucking your girlfriend is also -ev.
asciilifeform: well yes, we had the '-ev rocket' thread not long ago.
mircea_popescu: anyway. to not get entirely sidetracked : the exact sense in which wallet should be separated from rest of trb needs a lot more thinking.
asciilifeform: there is a small and enumerable, without difficulty, number of possible places to make the cut.
mircea_popescu: lets hear
asciilifeform: cut resulting in smallest walletron: wallet only stores privkeys and signs strings with'em.
asciilifeform: all payload crafting happens elsewhere.
mircea_popescu: that's one.
mircea_popescu is contemplating writing an article of these, with pros and cons etc.
asciilifeform: next after this, would be phf's variant. wallet also knows how to swallow blocks and craft a tx for itself to sign.
mircea_popescu: which block ? you mean any ?
asciilifeform: blocks, sequentially, so as to maintain a picture of what is available to spend.
mircea_popescu: so this is wallet+node combo.
asciilifeform: (hence why i brought up the miner shenanigans, it is not possible, sadly, to operate a wallet entirely 'blind')
mircea_popescu: the thing i proposed would fall in between, so this'd be three.
mircea_popescu: was there a fourth ?
asciilifeform: fourth is what we have now..
mircea_popescu: mkay, i guess ima go write.
asciilifeform: also include the possible cut between mempool and 'blockpool'
asciilifeform: which imho really ought to be made, those are quite separable concerns.
asciilifeform: (this type of cut is a very necessary thing, imho, per 'specificity of diddling', nothing beats the ability to mix&match parts, run queries in parallel on redundant subsystems on heterogeneous iron, etc)
mircea_popescu: yes, that's a settled thing and i see no need to drag it into this other discussion and muddy it up.
asciilifeform: tangentially relatedly, did prb ever get around to ordering mempool tx by fee ?
asciilifeform: because if not, we have here a ready hammer for flattening current crop of miners
asciilifeform: (give the new miners access to profitable, fee-ordered tx pool, the old ones get 0)
mircea_popescu: asciilifeform got loglink towhere we discussed wallet and how it should be a fucking text file ?
phf: sexps, sexps everywhere
mircea_popescu: phf aha. point being it was to be human readable.
mircea_popescu: for some reason i can't find it though i clearly recall ranting on it.
mircea_popescu: frustrating.
thestringpuller: as of current you have to dump block on TRB in order to manually grep for a tx-hash to use as an Input to construct a raw transaction
asciilifeform tried, failed, to turn up the thread.
mircea_popescu: oh it was anarticle! damn!
mircea_popescu: that was a horrible 15 minutes though. i was about to break the kbd
thestringpuller: i'm i really the only one with that article saved :P
thestringpuller: its in T-Bot for christ-sake
thestringpuller: phf: you don't have to inject blocks into your signing node. you don't even need a node to sign iirc? just raw transaction.
asciilifeform: thestringpuller: see thread. you still gotta craft the tx somewhere.
asciilifeform: based on some picture of the blockchain.
thestringpuller: asciilifeform: explain how you need blockchain to sign tx?
asciilifeform: you don't!
asciilifeform: you can sign tx with a z80.
asciilifeform: but where do you get the tx to sign.
phf: thestringpuller: you need blockchain to ~craft~ tx though
phf: you know, inputs
thestringpuller: yes. so I dont see why can't craft the tx first then move it physically to signing device
phf: you could, but ~i~ don't like that solution because then you're signing blind.
asciilifeform: thestringpuller: at least 2 people here already do some variant of this.
asciilifeform: but it leaves open the question of where and how to craft the tx.
asciilifeform: and as phf points out, it leaves you open to attack where the craftmachine is pwned and gives you a wallet-emptier to happily carry to the bunker and sign..
phf: you could probably have one black two red machines, wire node, tx crafting node, and a signing machine
mircea_popescu: funny, this is all in there :D
thestringpuller: asciilifeform: unless tx you craft is gargantuan, I don't see how you couldn't do a partial audit of the non-signed tx that is spit out. in this context it would be best to check against multiple known TRB nodes the tx hashes are valid
mircea_popescu: you could even regexp it.
asciilifeform: thestringpuller: how do you propose to 'check against multiple trb nodes' on an airgapped signing box ?
thestringpuller: 1) why would you not check raw unsigned tx before even contemplating signing the thing if you suspect comprimisation?
thestringpuller: what pieces are there to check other than the inputs and the usigned outputs?
mircea_popescu: check against what.
thestringpuller: http://btcbase.org/log/2016-11-02#1561981 << against whether or not the output is to "wallet emptying address". you'd know if output pubkey is differ than one you put in?
a111: Logged on 2016-11-02 15:11 asciilifeform: and as phf points out, it leaves you open to attack where the craftmachine is pwned and gives you a wallet-emptier to happily carry to the bunker and sign..
thestringpuller: or am I misunderstanding the attack?
mircea_popescu: you might be misunderstanding computers. if you sign a tx on the basis of "it's what my node told me to sign", then the node's in charge not you.
thestringpuller: i guess i still don't grok
mircea_popescu: there's a very fundamental difference between bare life, which evolves in between orders of behaviour relayed by computers ("now it's time to wake up! now click here!") and humanity, which uses computers strictly to answer questions.
mircea_popescu: and what you're proposing to do isn't having the computer answer a question ; but it's having the computer tell you what to do.
thestringpuller: if my node is compromised and nosuchlabs.com:8333 isn't
thestringpuller: woudn't I get two different answers?
asciilifeform: thestringpuller: with what would you be speaking to nosuchlabs box ? with wire in teeth ?
thestringpuller: from other internet connected box (airgapped machine isn't even in picture yet cuz tx is not ready for signature)
asciilifeform: let's take 'pessimal' case, where overflow or whatever is found such that all satoshi-derived nodes 'chain-react' and can be manipulated arbitrarily by the enemy.
asciilifeform: i argue that a properly-designed wallet will not leak coins even then.
asciilifeform: any coins.
deedbot: http://trilema.com/2016/how-to-cut-the-wallet/ << Trilema - How to cut the wallet ?
mircea_popescu: this is a fundamental requirement yes.
thestringpuller: then how would you construct reliable tx to begin without saving a record of all your UTXO's
thestringpuller: in this case you can't trust the UTXO set of any node
mircea_popescu: thestringpuller go read teh article so that next i look for it you can say you had it saved a minute after i found it eh!
thestringpuller: mircea_popescu: it's already bookmarked and saved. inb4deedbot
mircea_popescu: yes but the idea is to also read them lol.
thestringpuller: I have...i'll just write something up based on Ken Sheriff's stuff and then see if I can grok alf-ie
asciilifeform: incidentally, a more general observation re 'serial diodes', is that, quite like 'archive.is' and similar, they are a valuable detector of folks attempting to monkey with history.
asciilifeform: if a node behind a diode, and an otherwise-identical one outside of the diode, diverge in any respect whatsoever...
mircea_popescu: useful item to have.
asciilifeform: after slicing apart mempool-node from blockchain-node, building 'dioded node' becomes trivial exercise.
asciilifeform: (it dun care via what to 'eatblock', can be rs232)
asciilifeform: incidentally you can make this out of CURRENT trb simply by putting it on a box without a nic
asciilifeform: and letting it 'eatblock' via shell script.
asciilifeform: trb absolutely gives no fuck if it cannot find the network.
thestringpuller: trb the bsd of bitcoin
asciilifeform: (clock will, however, drift)
asciilifeform: in other noose, j. mcafee opens a mining pool for usg. (probably in exchange for non-prosecution for pyramidal flimflammery and/or non-extradition to the orc shithole of his past decade)
mircea_popescu: oh he's in the us now ?
asciilifeform: he's been there for some years
asciilifeform: at least 3.
mircea_popescu: i'm very vaguely following the whole raft of wanna-be leading ladies & other zsa zsa gabors. i recall some pics with him and a model on a boat ; about on par with whatever bs comes out of that meathead who sold out to yahoo, then lost money on every single deal hence and imagines this makes him an entrepreneur
mircea_popescu: a sort of redneck branson, wtf is his name
asciilifeform: his principal value to his new owner is his 'tor cred' or whatever one might call it.
asciilifeform: a reputation for '133337 d00d'ness among the types of folx who bite that particular variety of hook.
mircea_popescu: lol right. the sort of idiot who imagines tor is a thing, aka 20something potheads.
asciilifeform: aha. he is kept around as a tame priest specifically for use on them.
asciilifeform: (the entire racket has 0 to do with defense of the crown in the traditional kgb sense, but rather with 'terrorist creation' , a la the proverbial death ray case.)
mircea_popescu: ah mark cuban, there we go!
asciilifeform: afaik mcafee long ago lost ~all of his money. hence operating in esr mode now.
asciilifeform: the money - gone, the expensive tastes - remain.
mircea_popescu: like all of them. there's really a long list of these government "entrepreneurs" in all socialisms
mircea_popescu: if they spoke russian they'd be called oligarchs, but as it is...
mircea_popescu: "let's pretend the word is businessman"
asciilifeform: these folks are quite ideal from pov of new owners.
a111: Logged on 2016-11-02 15:39 mircea_popescu: lol right. the sort of idiot who imagines tor is a thing, aka 20something potheads.
asciilifeform: like the archetypical dope-addicted whore.
a111: Logged on 2016-10-21 00:01 mircea_popescu: Framedragger what are you, like 26 ?
mircea_popescu: Framedragger lol win.
mircea_popescu: asciilifeform btw, wanna bet cuban is sitting somewhere thinking trump really proves he could be president in a decade ?
mircea_popescu: evidently using the same plastic surgeon kerry-heintz uses, so there is that going for him!
trinque: hell he does reality tv iirc
trinque: he's on the fast track
mircea_popescu: the cuban wiki entry is fucking hysterical. lengthy discussion of the shitty jobs the dork did in college. how come none of these go "and then he took rhetorics with elena dragos and was the only one to get a b in any of her classes that decade"
shinohai: http://archive.is/KWUcD <<< Garzik and 2 women appointed to Linux Foundation board? It has went full Bitcoin Phoundation
mircea_popescu: "during college he had various business ventures, including a bar, disco lessons, and a chain letter."
mircea_popescu: fucking endless pile of lulz this guy
mircea_popescu: bitnami (cloud), redhat bitcoin agent, advocate.
mircea_popescu: sounds about right.
asciilifeform: shinohai: it started life as 'full phoundation'
asciilifeform: had 0 ever to do with linux.
shinohai: well duh
asciilifeform: its continued existence is the greatest afaik known shame of torvalds.
asciilifeform: he oughta have yanked its trademark use permission immediately.
mircea_popescu: who knows what he's doing there.
asciilifeform: but, as i gather, decided that it would pointlessly hasten his dekulakization, or some such.
mircea_popescu: general in teh field gets to use his assets as he pleases.
asciilifeform: general's been in 'strategic' retreat for so long that his arse is wet in pacific ocean.
asciilifeform: (incidentally, everybody in kindergarten makes fun of the italian tanks with 4 reverse gears, but for some reason nobody discusses american ejection seat developed for $maxint, but never deployed, in vietnam, with its own built-in little airplane wings, so as to skedaddle out of enemy lines when escaping!)
mircea_popescu: back to the font of lulz, the official story is that clinton is losing because "kgb controls the fbi and there's badly behaved men!"
asciilifeform: ( incidentally, does mircea_popescu know what is https://archive.is/71Wfw ? there are hilarious stories connected with it )
mircea_popescu: ejection tester thing ?
asciilifeform: it was (they were abolished in late '90s after the chair ~flew~ once) an ejection ~trainer~
asciilifeform: you sit in a mockup cockpit and sergeant lights a firework under your arse
asciilifeform: chair jumps up 8 or so metres.
asciilifeform: story goes, that in at least two academies where these existed, they ended up used as first-class auto-abortuators
asciilifeform: for gurlz from almost whole country, who came by word of mouth, and carrying bottles of bribe
mircea_popescu: placenta abrupta is a) painful b) an emergency and c) really not the best way to go.
mircea_popescu: i rate this "urban legend"
asciilifeform: works ok in 1st trimester iirc.
asciilifeform: the way it even came out publicly was a case where idiot chick with 3rd trimester jumped on.
mircea_popescu: rivanol via foley works even better. safer. longer. etcetera
asciilifeform: mircea_popescu: why 'diy' methods remained popular, and remain today, is own interesting thread
mircea_popescu: i dunno why this wouldn't count as dyi.
asciilifeform: because needs exotic pharma ?
asciilifeform: i suppose if yer an organiker, it is diy.
mircea_popescu: it does ?
asciilifeform: 'diy' typically refers to things an ordinary cowsie can make by itself from supplies from local shop and/or own kitchen..
mircea_popescu: you can buy it from ~any chem supplier
asciilifeform: go an' try, buy anything whatsoever from chem supplier in usa (as cowsie)
mircea_popescu: anyway. if they can make meth they can make ethacridine.
asciilifeform: perhaps PeterL can comment on the 'folk synthesis'.
mircea_popescu: anyway. sigma aldrich sells it for $952.90/100grams, which is indeed laughable.
mircea_popescu: iirc you want 0.5%
asciilifeform: vacuum distill ?
mircea_popescu: no i mean, 0.5% concentrated. 100grams 99% enough to make 4 gallons of the stuff.
mircea_popescu: ahhh the libertard butthurt pouring out of the election coverage is so delicious.
mircea_popescu: "With Nate Silver putting Trump on a 28.8 per cent chance of victory, it’s almost unbelievable that the race could be so close, given the consequences. A Russian puppet candidate with shady business affairs who hasn’t disclosed his tax returns, Trump has spent his campaign alienating minorities, horrifying women, offending religious and military voters, and having his career of awful business behaviour paraded in public.
mircea_popescu: That he has been able to surf these scandals regularly as little more than free media opportunities shows that American democracy is in serious need of rehabilitation." << in my view, this settles an ancient point of contention curtis yarvin never manned up to, re "the cathedral" or generally how pervasive, or "in power" the idiots are.
mircea_popescu: together with the bitcoin and the urbit dispute respectively, this puts him 0 for 3.
mircea_popescu: can i be excused if i consider the matter forever put to rest, and deem nothing he ever said of any import or conceivable consequence whatsoever ?
asciilifeform: where was this
mircea_popescu: one "rupery myers" for the telegraph
mircea_popescu: anyway, it's directly evident the most rabid of libertards realised clinton ain't got it ; and are in their grief dealing mode. pronouncements that "the election is rigged" (phrased, of course, as "this was an unedifying year" blabla), assurances that "whoever wins will be a single term president" as if that fixes anything ; even a pretense that putin will take advantage of trump. specifically. as if a) it isn't in the nature
mircea_popescu: of things for the stronger to take advantage of the obese shithead and b) anyone could get more buttraped by putin, or the world generally, than obama already has.
PeterL: If I were a woman, I don't think I would trust the purity of something made in somebodies garage to not have dangerous impurities
PeterL: but yes, not horribly complicated molecule
asciilifeform: PeterL: dope world, of both sexes, seems to care not a whit whether garage or not.
asciilifeform: and q is not even whether complicated, but whether feasible from commonplace materials.
PeterL: I guess if you are looking for a DIY abortion, impurities would be low on your scale of things to worry about
asciilifeform: and using commonplace equipment, a la meth.
PeterL: depends on if there is an easy starting material, I'm still reading up on it
phf: you ever seen that dmt guide
asciilifeform: phf: there is enough deadtree-era 'underground' pseudoscientific literature on 'dope cooking' to fill book case. most of it of dubious quality, approaching 'anarchist's cookbook', rather than what normal people think of as chemistry
phf: right
asciilifeform: but it is not worthless, school book does not discuss how to refine postindustrial rubbish from shops, utilize junkyard metal for the synthesis pots, etc.
asciilifeform: the 'underground' crapola - does.
phf: hmm, pretty sure the image is explicitly filtered out by google now :o
asciilifeform: for fucks sake, what isn't filtered
jurov: qntrola distributed
phf: used to be one of the first image hits for "dmt synthesis", a screenshot of a chanboard poast of making dmta "out of household objects"
asciilifeform: but this is good time to note that postindustrial junkyard wars chemistry, as every other craft, differs substantially from the 'you can get any starting material you like by drawing it on paper' schoolbook chem.
phf: hehe, trying to find it now though i get some really nice results e.g. http://sprott.physics.wisc.edu/pickover/pc/dmt2.jpg
shinohai: !~google Walter White's blue meth recipe
jhvh1: shinohai: A Comprehensive Guide to Cooking Meth on 'Breaking Bad' | VICE ...: <http://www.vice.com/read/a-comprehensive-guide-to-cooking-meth-on-breaking-bad>; Breaking Bad Fact vs Fiction: Walter White's Secret Formula: <http://www.popularmechanics.com/culture/tv/a9386/breaking-bad-fact-vs-fiction-walter-whites-secret-formula-15826137/>; Blue Sky | Breaking Bad Wiki | Fandom powered by Wikia: (1 more message)
shinohai: Also, ty jurov
asciilifeform: PeterL et al : did we ever do the brute-force synthesis thread ?
PeterL: perhaps, what are we synthesizing?
phf: yes we did
asciilifeform: phf: can haz link ?
phf: failing to find it so far, i think it's the one where we talked about looking through dirt for useful synths and how nobody is doing it (but when they do they get mad gains)
asciilifeform: nono this is different one
asciilifeform: let's illustrate :
asciilifeform: recall how to make nitric acid from air & water ?
asciilifeform: (you could do it simply with what is in your room where you sit right now)
phf: no, but i suppose electricity is involved
asciilifeform: same as in thunderstorm.
asciilifeform: put an arc through the raw materials, if there is any thermodynamically-plausible path to the end product, you will find some in the tube.
asciilifeform: it is not an ~economical~ way to make (almost) anything.
asciilifeform: but illustrative.
asciilifeform: what if you ~do not care~ how much electric arc you use ? because mains current is cheap and fungible.
asciilifeform: sorta like how makers of mining asic, to a certain point, do not care about error rate
phf: right
PeterL: not a very selective way of doing things though
asciilifeform: well the selection would have to happen on the purification end.
asciilifeform: where one might conceivably employ another riotously -ev but simple crackpottery, laser separator
asciilifeform: think 'ir spectrometer' but with motion.
PeterL: blast it and see what you get out kinda thing?
phf: wait, i'm missing the punchline. i guess brute force here means, that you don't have an optimal process, but rather exploit given environment to achieve objective no matter what?
asciilifeform: phf: correct.
PeterL: what would be the purpose of this?
asciilifeform: PeterL: very limited applications
asciilifeform: largely involving circumventing chemical bans.
asciilifeform: (on whatever you need - abortifacent, performance dope, poison, antidote, antibiotic, etc)
asciilifeform: (note what is not on the list - it is doubtful that you can make a usable explosive this way. thought! you can make nitric acid, even now, using it. and from that, it is a day's work to dynamite or whatever.)
PeterL: it would still be much easier to generate a synthetic pathway from what is available
asciilifeform: it is a gedankenexperiment, and likely not justified for almost any current scenario.
asciilifeform: but more useful as 'fleet in being'
PeterL: have you ever done separations of organics trying to get a very low percentage product into something usable?
asciilifeform: PeterL: problem is that your solution is not a Final Solution
asciilifeform: in that the 'cat and mouse' game continues, you come up with path, and usg bans formerly commonplace household crud, etc.
asciilifeform: a final solution - ends this process.
PeterL: until you go all the way back to common starting materials, then it is final solution
asciilifeform: permanently.
asciilifeform: PeterL: you would be surprised at what commonplace thing can be abolished by great inca. i was astonished, after moving to usa, that you cannot buy potassium permanganate in drug store here.
asciilifeform: because oh noez.
PeterL: so we need a sort of "frozen" archive of "how to make X, which you need to make Y", sort of like how trb has frozen deps
asciilifeform: PeterL: as you well know, the actual body of knowledge that is needed, has never really been written down, because it is at least partly a 'seat of the pants' craft, like flying jets
asciilifeform: and afaik nobody has seriously considered attempting to write it.
PeterL: yes, I have thought about this
PeterL: you end up needing something like wikipedia to hold it all
asciilifeform: how the fuck do you write down ~hand skills~
PeterL: I mean, not specifically wikipedia, just there are a lot of topics that each connect to one another
asciilifeform: and the feedstock problem is not escapable in postindustrial world. e.g., one can make nitric acid from, say, copper sulfate, saltpetre, and water. but where in the forest do i dig up copper sulfate ?
PeterL: write down skills with words, how else? arn't we literate people?
PeterL: have article in megabook describing geology and identification of minerals
asciilifeform: PeterL: would you fly as passenger in a mig that i offer you a ride in after reading 'how to mig' b0000k by, say, mthreat ?
PeterL: I assume that postapocalypse world you start by building small plane, learn to fly that, before moving onto mig
asciilifeform: point here is that - sadly - not everything is susceptible to the written-word treatment.
asciilifeform: PeterL: recall the 'copper caves' thread ? identification of minerals 'in the wild' was useful skill in 1700s.
asciilifeform: today - not so much.
asciilifeform: minerals live in 1) the shops, while supplies last and 2) in junkyard.
PeterL: so have article on identifying minerals in junkyard?
asciilifeform: there is some of this.
asciilifeform: i once encountered an entire monograph on the drilling, rifling, and tempering of barrels made specifically from old truck axles.
asciilifeform: (they, or so it was claimed, are perfect alloy for the purpose)
PeterL: I suspect this would depend on the year of the truck?
asciilifeform: almost entire 20th c.
PeterL is not metalurgist, does not know how much variation goes into these things
asciilifeform: point is not 'top metallurgy', but that the axle beats any kind of iron you can smelt in your cellar.
asciilifeform is of the - admittedly armchair - notion that 'backyard artillerists' oughta focus on rockets, lower pressure, better... 'bang for buck'
ben_vulpes: no this is an excellent idea
ben_vulpes: as evidenced by the usg-blessed rocketry associations insistent whine that rockets may only go up.
asciilifeform: anyone with a drill press, for instance, can make 'gyrojet'-style projectile
asciilifeform: where the jets were simply angularly-drilled openings.
PeterL: gyrojet is so futuristic weapon, shame it didn't make the cut
asciilifeform: PeterL: it compared poorly with ordinary luger.
ben_vulpes rather fond of simple barrages over gyrojet projectiles
asciilifeform: but it is a ~perfect 'cellar' weapon
asciilifeform: needs 0 advanced metallurgy.
asciilifeform: nor rifled barrels.
PeterL: should have made round slightly bigger, allow carrying explosive to target
asciilifeform: and can be of any calibre you like, with 0 recoil.
ben_vulpes: PeterL: what, kinetics not enough?
ben_vulpes: trade the explosive for a bit of mass and a bit more propellant.
asciilifeform: ben_vulpes: some applications call for thermite.
PeterL: IIRC, they were slightly too big and fell under the "dangerous weapons" regulations anyway, should have gone all the way to mini-rpg
asciilifeform: 'may as well hang for a sheep as for a lamb' aha.
ben_vulpes: the 'g' of grenade is a shameful waste of mass budget imho.
ben_vulpes: 'g' of rpg
asciilifeform: ben_vulpes: in atmosphere, 'v' only gets you so far.
asciilifeform: as mega-rocketeer, you oughta know that
ben_vulpes: asciilifeform: what application for thermite, armor?
asciilifeform: ben_vulpes: antimateriel in general.
ben_vulpes: asciilifeform: as systems engineer, charges are complex, and 'simple' 'v' that 'doesn't get me that far' gets me pretty far.
ben_vulpes: numbers, the rest.
PeterL: ben_vulpes wants a 'rpp'? rocket-propelled projectile?
a111: Logged on 2016-10-17 05:10 mircea_popescu: no, you can't do that, because air friction.
asciilifeform: drag goes up nonlinearly with v.
asciilifeform: which is why rifle bullets are not the size of grains of rice
asciilifeform: (it is possible to make such a thing)
thestringpuller: this is exactly why guys in suits show up to your front door if you launch a multistage "model rocket" from your back yard
asciilifeform: launch anything visible from nearest airport in usa, and have problems.
asciilifeform: Great Inca owns, in case anyone missed the memo, not only land, sea, but air.
thestringpuller: luckily you don't have to go through great lengths to bribe local county airport in bumfuck no where
thestringpuller: which ironically in th elocale legend a farmer launched a two stage rocket into the sea from here
asciilifeform: if you're 'in nowhere' just launch from the woods, neh?
ben_vulpes: nobody shows up at any doors, sheesh
asciilifeform: incidentally this possibility is a perennial thorn in the side of usg, and they keep coming up with crackpot mega-surveillance schemes against it, most recently the ill-fated $2B balloon
asciilifeform: (which was to photograph ~entire east coast of usa)
asciilifeform: ben_vulpes: 'nobody' shows up at any door -- until they do.
asciilifeform: a la 'silk road' idiots etc.
thestringpuller: well silk road idiots didn't follow the book of jeezy
thestringpuller: i.e. "You're the guy who wasn't good enough to sling dope."
asciilifeform: and when you helpfully light the way for gasenwagen with gigantic flare above your door..
thestringpuller: just cause you can buy weight from the comfort of your mom's basement does not mean you have capacity to sling said dope on street.
thestringpuller: asciilifeform: re: woods << wasn't this the premise of October Sky (the rocket boys?!?) from West VA back in the 50's?
asciilifeform: 'Homer Hickam stated that "Universal Studios marketing people got involved and they just had to change the title because, according to their research, women over thirty would never see a movie titled Rocket Boys"...' << l0l!!
PeterL: I've never made a multi-stage rocket, but me and my kids made a rocket out of a soda bottle and powered it with isopropanol, that was pretty fun
mircea_popescu: http://btcbase.org/log/2016-11-02#1562113 << that's silly. penis is already dangerous impurity enough.
a111: Logged on 2016-11-02 16:46 PeterL: If I were a woman, I don't think I would trust the purity of something made in somebodies garage to not have dangerous impurities
mircea_popescu: (to be clear : 14F catheter is inserted in the lus (lower uterine segment). the baloon is then inflated to ~5ml, and under light traction 100ml of 0.15% solutin in introduced as drip over 10 minutes. no antibiotics needed, abortion occurs within hours.)
a111: Logged on 2016-11-02 17:08 phf: failing to find it so far, i think it's the one where we talked about looking through dirt for useful synths and how nobody is doing it (but when they do they get mad gains)
mircea_popescu: http://btcbase.org/log/2016-11-02#1562147 << it is, or at least was, the explanation of "how life begun". nevertheless, this method fails amply for organic compounds : fill a tube with a all the organic compounds you can think dilute in the same solvent, run electrictity through it, congrats you have some lightly chlorinated toilet water.
a111: Logged on 2016-11-02 17:11 asciilifeform: it is not an ~economical~ way to make (almost) anything.
mircea_popescu: http://btcbase.org/log/2016-11-02#1562159 << he was born in soviet russia. there isn't a purpose, just, electricity is all he's got besides "the power of the soviets", and while neither can fill a hand before pissing in it would, nevertheless at least electricity DOES SOMETHING.
a111: Logged on 2016-11-02 17:14 PeterL: what would be the purpose of this?
mircea_popescu: http://btcbase.org/log/2016-11-02#1562173 << i wanted to show girls the thing (it's fucking pretty, innit ?) these idiots don't even know what it IS. i mean, pharmacists. they go to medical school here. NO FUCKING IDEA!
a111: Logged on 2016-11-02 17:19 asciilifeform: PeterL: you would be surprised at what commonplace thing can be abolished by great inca. i was astonished, after moving to usa, that you cannot buy potassium permanganate in drug store here.
mircea_popescu: fucking savagery. and it probably started "for your own good", as these things always go.
mircea_popescu: http://btcbase.org/log/2016-11-02#1562175 << this is not even half a bad idea. bonus : works natively on v lol.
a111: Logged on 2016-11-02 17:21 PeterL: so we need a sort of "frozen" archive of "how to make X, which you need to make Y", sort of like how trb has frozen deps
mircea_popescu: http://btcbase.org/log/2016-11-02#1562181 << same way you teach white chicks to twerk and black chicks to handjob.
a111: Logged on 2016-11-02 17:23 asciilifeform: how the fuck do you write down ~hand skills~
mircea_popescu: http://btcbase.org/log/2016-11-02#1562183 << afaik copper sulphate is one of the naturally occuring presentations. it comesa as mix of carbonate, phosphate and some oxides.
a111: Logged on 2016-11-02 17:24 asciilifeform: and the feedstock problem is not escapable in postindustrial world. e.g., one can make nitric acid from, say, copper sulfate, saltpetre, and water. but where in the forest do i dig up copper sulfate ?
asciilifeform: http://btcbase.org/log/2016-11-02#1562257 << did i not put in caveat, 'if there is any thermodynamically-plausible path to the end product' !
a111: Logged on 2016-11-02 19:29 mircea_popescu: http://btcbase.org/log/2016-11-02#1562147 << it is, or at least was, the explanation of "how life begun". nevertheless, this method fails amply for organic compounds : fill a tube with a all the organic compounds you can think dilute in the same solvent, run electrictity through it, congrats you have some lightly chlorinated toilet water.
mircea_popescu: yes but most organics are not "thermodynamically plausible" to use your terminology, making it misguiding. put caveat "if it's not organic, or interesting (ie explosives)"
mircea_popescu: then it's a good caveat.
asciilifeform: and naively, it does resemble 'break rsa key with random bit guess'. but you would be surprised at what ends up where an arc has been.
asciilifeform: even chiralane.
mircea_popescu: it's actually diagnosis for spark : looking for weird.
mircea_popescu: (in some ind processes, the "was there a spark" is mn dollar question post disaster)
asciilifeform: '“We don’t spy on anyone. We don’t work with any government to spy on others and we never would,” Dominic Carr, General Manager of Public Affairs at Microsoft, said.' << gold
mircea_popescu: remember jerry : it's not lying, if YOU believe it!
asciilifeform: http://btcbase.org/log/2016-11-02#1562259 << betcha that one could budge the otherwise astronomically-unfavourable equilibria with modulated arc, or something else unavailable to ancestors.
a111: Logged on 2016-11-02 19:31 mircea_popescu: http://btcbase.org/log/2016-11-02#1562159 << he was born in soviet russia. there isn't a purpose, just, electricity is all he's got besides "the power of the soviets", and while neither can fill a hand before pissing in it would, nevertheless at least electricity DOES SOMETHING.
asciilifeform: or not. but is certainly worth a shot.
mircea_popescu: if you're gonna do that better off doing resonant cavity em
asciilifeform: well yes
asciilifeform: a la klystron.
asciilifeform: have organic crapolade mechanically separate self by nmr spectra, or something similarly outrageous.
mircea_popescu: in ~principle~ all chemistry as practiced now could be changed to phys-chem through the process of, put substance inside magical cavity, shoot the right beams at the right atoms.
mircea_popescu: hence your laser suggestion in thread.
asciilifeform: btw you can buy 1T+ permanent magnet aggregates now.
asciilifeform: (and since '90s)
asciilifeform: desktop nmr, sans cryogens.
mircea_popescu: but this technology is 50 years away, idiots are too busy making "3d guns" out of the practical equivalent of a large plastic coathanger injector and other stencils.
mircea_popescu: asciilifeform aha.
asciilifeform: with the right hands it is 50 months, or 50 days away.
asciilifeform: like ~anything.
mircea_popescu: it's gonna be the "surprising nobody could have predicted what will those zany scientist kids think of next" of our old age.
mircea_popescu: and we'll be all "oh, good thing you did the rape thing first then mkay. THAT was the emergency"
asciilifeform: first we do the rape, then - the ape.
asciilifeform: (in the somewhat cryptic words of ilkka k.)
asciilifeform: re '3d gun' folk, it boggles my mind that they ignore 'gyrojet'
asciilifeform: which theoretically lets you make the entire orchestra, gun, barrel, bullet, from soft aluminum.
mircea_popescu: this entire "elective" driver for human activity is the pits.
mircea_popescu: they'll only do what they can cluck about.
mircea_popescu: human civilisation was built by very intelligent, special, sensitive doods DOING WHAT THEY WERE MOTHERFUCKING TOLD
PeterL: at my previous employer there was an equipment showcase, bunch of vendors showing off new stuff, one guy brought a shoebox sized nmr, blew my mind a bit
mircea_popescu: not by them polling their inside state at 5kHz
asciilifeform: PeterL: didja pop the cover on it? what does one need to make it ?
PeterL: didn't get to put my hands inside
asciilifeform: PeterL: then what led you to believe that it works ?
asciilifeform: and not a 'magic wand'.
PeterL: seemed like it was limited in application, would be ok for some sorts of process management or something, completely useless for what I was doing
asciilifeform: limited how ?
PeterL: If I remember correctly, low resolution
PeterL: basically it was like a 100 MHz, I only use 500 and up
PeterL: it could work with a flow cell, which would be cool for monitoring a process, but the low resolution would make it very bad for identification work
mircea_popescu: you can technically use 7 or so to get 500
mircea_popescu: seeing how even thz timers aren't expensive.
asciilifeform: mircea_popescu: you need higher field strength for higher f.
asciilifeform: for meaningful signal.
mircea_popescu: guess there's also that.
asciilifeform: hence the monster machines with liquid he etc.
mircea_popescu: yeah. just, you know, the miniaturization itself is important.
mircea_popescu: i mean "the miniaturization is important in itself", ie, even if obviously won't work to move large bodies, it's integral to the magical cavity.
asciilifeform: the business end of nmr box was never large.
asciilifeform: (there is variant where it is man-sized, it is sold as 'mri')
thestringpuller: looking through my research there doesn't seem to be a conclusion to hardware RNG thread
asciilifeform: thestringpuller: what kind of conclusion did you have in mind ?
mircea_popescu: http://btcbase.org/log/2016-11-02#1562186 << yes, actually. guy is a competent (if self-taught) engine engineer. in between him and the various trainers he had, he's the sane mind i've seen.
a111: Logged on 2016-11-02 17:25 asciilifeform: PeterL: would you fly as passenger in a mig that i offer you a ride in after reading 'how to mig' b0000k by, say, mthreat ?
asciilifeform: mircea_popescu: trainers don't simply hand 'patient' a book..
mircea_popescu: really ?
mircea_popescu: would you want someone working on trb on the basis of having read the book or on the basis of having watched "the videos" ?
asciilifeform: really, one studies in 2-seat machine, grunting out exercises
asciilifeform: ~while~ reading book also, yes.
mircea_popescu: there is a thin sliver of stuff your training is useful for ; but most accidents, including with planes, including with controlled flight into terrain, come from not having read the book.
asciilifeform: this - yes
mircea_popescu: note that the place where good training would have helped (concorde crashed into hotel ; smolensk lulz ; etc), the training though present didn't do anything, and nobody thought it proper to blame anyone for this.
asciilifeform: i was thinking more of the basics that folks learn 'with spinal cord' in training.
thestringpuller: asciilifeform: not conclusion, more "direction toward edible turd" vs "eat the mystery meat" re: << http://btcbase.org/log/2014-05-29#694660
a111: Logged on 2014-05-29 17:55 asciilifeform: i really can't fathom the purpose of buying a mystery meat hardware rng. if you're willing to eat mystery meat, why not use the vlsi turd found in current cpu?
thestringpuller: i'd rather attempt at raising my own shitty veal rather than continuing to eat mystery meat until end of lie
mircea_popescu: asciilifeform name one such basic. "don't suck through your nose from reagent bottle" ?
hanbot: http://log.mkj.lt/trilema/20161102/#279 << incredible collection of idiot euphemisms on that page. "provides vertically integrated production", srsly?! also, attempted to make some preserves of it with archive.is, which is broken/dead/? atm, so here's another bitchlog on that ongoing fire....
scriba: Logged on 2016-11-02: [15:46:51] <mircea_popescu> the cuban wiki entry is fucking hysterical. lengthy discussion of the shitty jobs the dork did in college. how come none of these go "and then he took rhetorics with elena dragos and was the only one to get a b in any of her classes that decade"
mircea_popescu: hanbot pretty epic isn't he.
mircea_popescu: https://archive.is/62PUQ << apparently it worked alright, supposing you hit it ~10 mins ago ?
hanbot: well in the same manner as'd be a museum of vinyl siding, sure.
asciilifeform: mircea_popescu: how to properly separate layers, for instance. how to boil without 'bumping'. various things that sound braindamagedly simple but many folks fuck up somehow.
mircea_popescu: all of these are temp skills.
hanbot: oh hey, i made it but can't load it. huzzah.
mircea_popescu: you don't handboil anymore ; there's magnetic stirrers specifically because of this skill being expensive. etc.
asciilifeform: magnetic stirrer does not magic away the hand skill.
asciilifeform: this is precisely the kind of notion which gets people into chemical mess.
mircea_popescu: the way it works is, two chunks of hardware that have to be interfaced are briefly interfaced by biofilm, until a proper solution is put in place.
asciilifeform: just like, incidentally, the notion that cnc magicked away machining skill.
asciilifeform: in practice, none of this happened, it only happened in the imagination of folks who only see the results on paper.
mircea_popescu: asciilifeform i suppose i missed all those steam pressure gauges in cars etc.
mircea_popescu: that it doesn't happen all the time, or within a short enough interval doesn't change the fact that it's the one mode of industry.
mircea_popescu: at some point oil was carried by barrel. then by trainload. then piped.
asciilifeform: this is not to say that nothing is ever usefully automated. just that we aren't at the 'wish and it happens!!11' level for, e.g., organiking.
mircea_popescu: surely not. yet.
asciilifeform: as for airplanes, i recently read, for instance, an entertaining piece, 'stick and rudder', classic, by one w. langewiesche. but if you wanted to fly in an airplane, i would still recommend going with davout at the wheel, or mthreat, rather than asciilifeform .
mircea_popescu: if they're there.
asciilifeform: because there is such a thing as practical craft.
mircea_popescu: when i first got laid i had nobody there to show me how it's done so i made do as best i could.
mircea_popescu: woman helped, in fairness.
asciilifeform: incidentally, wright airplane steered by bending wings, this is another item that could be reintroduced in small flying machines that keep popping up in threads here, 'because we now have computer', but afaik has not been.
mircea_popescu: the problem is material quality. they'd cost ~1mn, which is not what people wanna pay for cessna. they wanna pay 100k, and they do.
asciilifeform: it would only be a mega-win in plastic (yes) airplane.
asciilifeform: wrights - had no plastic. they had wood, and wood flexes well, but glue does not.
asciilifeform: plastic 'cessna', 10k.
mircea_popescu: "intelligent" plastic (ie, with electric bending cell infrastructure) would be pretty cool
asciilifeform: steer hydraulicly, bend wings from inside.
mircea_popescu: also just as expensive as discussed.
asciilifeform: like a cock.
mircea_popescu: o hey, iraqis are in mosul huh!
asciilifeform: no intelligent anything. just cavernous hydraulic cock wings.
asciilifeform: who was in mosul before ? eskimos ?
mircea_popescu: since 2014
mircea_popescu: aaand teh turks are getting restless.
asciilifeform: changed hands for 1st time since then ??
mircea_popescu: hasn't changed hands yet, but arguably the iraqis are edging into actual city.
asciilifeform: http://btcbase.org/log/2016-11-02#1562351 << thing is under epic ddos or wat.
a111: Logged on 2016-11-02 20:30 mircea_popescu: https://archive.is/62PUQ << apparently it worked alright, supposing you hit it ~10 mins ago ?
asciilifeform: i get a 'loading...' spinner, forever.
asciilifeform: i have never even ~seen~ this spinner prior.
asciilifeform: (did somebody walk away with the domain..?)
mircea_popescu: http://btcbase.org/log/2016-11-02#1562200 << i dunno there's any dispute re this, here. or outside.
a111: Logged on 2016-11-02 17:45 asciilifeform is of the - admittedly armchair - notion that 'backyard artillerists' oughta focus on rockets, lower pressure, better... 'bang for buck'
asciilifeform: mircea_popescu: in usa.
asciilifeform: american 'basement artillerists' almost inevitably fixate on small arms 'just like grandfather's'
mircea_popescu: im sure zimbabweans from actual zimbabwe do even funnier shit
asciilifeform: orcs tend to be practical folk. witness, e.g., palestine, even there - they understand rocket.
asciilifeform: and that a handmade rocket is more accurate, makes bigger and cheaper hole, than trying out medieval musketry.
mircea_popescu: not everyone's quite as castrated as "civilised" folk, you could say.
mircea_popescu: "and what have you learned in the city, billy bob ?" "oh ma, i have learned how to fail before i even try!"
asciilifeform: i'm not even convinced that it is about castration - the 'actiony' types are just as fixated, they would sincerely rather make a crappy aluminum musket that eventually kills himself and whoever stands next, than a perfectly serviceable rocket.
mircea_popescu: http://btcbase.org/log/2016-11-02#1562239 << people love the hope! hence okcupid.
a111: Logged on 2016-11-02 17:56 ben_vulpes: nobody shows up at any doors, sheesh
mircea_popescu: asciilifeform how is that not castrated ?
mircea_popescu: the difference between the placid capon and the overactive to mask impotence capon is not substantial.
thestringpuller: people still use okcupid now that tindr exists?
asciilifeform: mircea_popescu: willingness to depart from routine is orthogonal to virility.
mircea_popescu: not orthogonal.
mircea_popescu: "i want it to just fit"
thestringpuller: grade a badonkadonk
shinohai: !~ticker --market all
jhvh1: shinohai: Bitstamp BTCUSD last: 727.44, vol: 4634.84882059 | BTC-E BTCUSD last: 721.9, vol: 4557.80835 | Bitfinex BTCUSD last: 734.49, vol: 8993.49784423 | BTCChina BTCUSD last: 739.0158, vol: 716127.11400000 | Kraken BTCUSD last: 731.27, vol: 1419.68811149 | Volume-weighted last average: 738.766576406
BingoBoingo: <asciilifeform> who was in mosul before ? eskimos ? << Assyrians
BingoBoingo: <thestringpuller> people still use okcupid now that tindr exists? << mp doesn't have a guide to beating tindr
mircea_popescu: which one is tindr ? the gay app thing ?
thestringpuller: my bad it's tinder. grindr is the gay app thing
thestringpuller: but grindr is actually used more now for drug dealing iirc
mircea_popescu: historically gayness was mostly used for drug dealing in the first place.
ben_vulpes: what historic drugs are we talking about?
ben_vulpes: opium?
mircea_popescu: anything that gets you high, man
mircea_popescu: + muscle relaxants
mircea_popescu: + disco hair products.
ben_vulpes: i guess the argument kinda falls apart on 'historic' grounds, 'gayness' not being much of a thing pre late 1800s
mircea_popescu: of course it was.
ben_vulpes: qua "men who only have sex with other men"?
mircea_popescu: yes. take say rochester.
ben_vulpes: and you'll say that my cursory research finding that he slept with a few ladies to be entirely wrong?
mircea_popescu: well, the notion that gayness is incompatible with that IS very much a late 1800s thing.
ben_vulpes points at the fifth line up
mircea_popescu: would you say a woman that also fucks plastic isn't heterosexual ?
ben_vulpes: no, i'd say that "historic drugs" fits quite nicely into the same time window as "gay = only fucks men"
mircea_popescu: especially if you define "drugs" as "what the people who think gay = only fucks men would think drugs are"
ben_vulpes: hence my question!
mircea_popescu: well i didn't realise you were begging it!
mircea_popescu: anyway. drugs pre industrialisation are ~= alcohol.
ben_vulpes: yeah.
ben_vulpes: and not even the high proof stuff at that.
mircea_popescu: depends, they drank all sorts of swill. including jerez port absynth whatnot.
mircea_popescu: basically, the whole medieval period lived on hobo wine. cheap, sweetened, etc. the exact thing, midnight thunder or w/e it's called.
ben_vulpes: i was a few centuries off on stills.
mircea_popescu: except in the north where wine dun grow the poor drank beer.
shinohai: I always imagined they were drinking Night Train in The Name of the Rose.
mircea_popescu: very likely correct. though some northern monasteries did brew beer.
mircea_popescu: (note that medieval beer has no hops, as a result doesn't keep, it's a lot closer to braga than what passes for beer today)
mircea_popescu: ben_vulpes cognac, ie the first distilled spirit, is about half a millenium old by now.
mircea_popescu: !~google vital du four benefits armagnac
jhvh1: mircea_popescu: France vaunts '40 virtues' of Armagnac | The Independent: <http://www.independent.co.uk/life-style/food-and-drink/france-vaunts-40-virtues-of-armagnac-1891949.html>; Armagnac (brandy) - Wikipedia: <https://en.wikipedia.org/wiki/Armagnac_(brandy)>; The Virtues of Armagnac - Life At The Table: <https://lifeatthetable.com/the-virtues-of-armagnac/>
BingoBoingo: <mircea_popescu> basically, the whole medieval period lived on hobo wine. cheap, sweetened, etc. the exact thing, midnight thunder or w/e it's called. << Thunderbird, Night Train, Mad Dog, Wild Irish Rose, and Cisco. RIP Ripple.
BingoBoingo: Mad Dog doesn't really count anymore since they "rebranded" with blig.
BingoBoingo: *bling
BingoBoingo: This was illustrated as the most fair thing. Elliot discovering Thunderbird and becoming a Chief. Given his excess of will and manner of drinking it was inevitable. http://www.thedrinkingrecord.com/2016/10/29/is-so-unfair-cycle-12-fairness-strikes/
BingoBoingo: Just so long as a plot kept Elliot's will from making him an hero.
BingoBoingo: Anyways Make Great, Great Again. A bunch of hillary supporters burned a black church and wrote "Vote Trump" on it to mobilize the black vote.
thestringpuller: ^- hahahahaha Da scam keeps on scammin
BingoBoingo: Make Great Great Again: "You’re hardly irresponsible with your funds. You’re saving a decent sum of money and working on paying down debt. As for your company: It sounds like it won’t be a lifetime job. You can easily permit yourself the spending on your cat." << https://archive.is/thWwo
asciilifeform: BingoBoingo: it's dead
asciilifeform: colt health & life insurance corp.
asciilifeform reads sticker under elbow: 'prohibited the machine start of no water' (followed by buncha hieroglyphs)
asciilifeform: she cow pig had kittens!!
BingoBoingo: Colt Property, But Mostly Casualty Inc.
asciilifeform: colt retirement fund co.
asciilifeform: the american way!111
mircea_popescu: the reading of impossible without the garden.
BingoBoingo glad satoshi called it the wallet and not the purse. Imagines "How to cut the purse strings" on Trilema.
mircea_popescu: lol for srs
BingoBoingo waits for inevitable Trilema of that title now.
mircea_popescu: it's evitable.
hanbot: ("it's evitable", however, probably isn't)
mircea_popescu: screw you guise, i'm going to bed.
mod6: finally caught up :]
mircea_popescu: welcome among the current, mod6 :D
mod6: aha, ty!
BingoBoingo: it was evitable until mentioned.
mod6: !%e trb 29 F "Redesign Wallet" "The original Reference Implementation wallet needs a redesign. http://trilema.com/2016/the-ideal-bitcoin-wallet/ http://trilema.com/2016/how-to-cut-the-wallet/" 30
mircea_popescu: pretty healthy pile of tickets in there.
mod6: Yeah, some of these could be a bit reviewed/reorg'd
mod6: !%p trb 29
tb0t: Project: trb, ID: 29, Type: F, Subject: Redesign Wallet, Antecedents: 30, Notes: The original Reference Implementation wallet needs a redesign. http://trilema.com/2016/the-ideal-bitcoin-wallet/ http://trilema.com/2016/how-to-cut-the-wallet/
mircea_popescu: teh 29 F is open for discussion anyway.
mod6: For sure. I do like how I can use the tickets to track discussions thus far though. Saved the foundation from needing the stenographer.
mircea_popescu: pretty cool
mod6: yah, at least for now...
mod6: I like the idea of private projects too. Gotta dig into that maybe.
mod6: It's not a huge leap to get there anyway.
shinohai: evening mod6 o7
mod6: hey shinohai o/
mod6: how goes?
shinohai: Not bad here, on standby for the regrind and other things we discussed. Lots of thinking on the new trilema from today.
BingoBoingo: !~ticker --market all --currency rmb
jhvh1: BingoBoingo: BTCChina BTCRMB last: 5089.04, vol: 1045625.83120000 | Volume-weighted last average: 5089.04
mod6: shinohai: *nod* yeah lot to think about.
deedbot: http://www.contravex.com/2016/11/02/aga-refinery-party-danse-macabre/ << » Contravex: A blog by Pete Dushenski - AGA Refinery Party: Danse Macabre
asciilifeform: ^ no prizes for guessing how the cam was botched. but hey, learning exercise.
asciilifeform: (and yes, the plank was of shitwood and warped from heat also)
ben_vulpes: thin looking stuff
ben_vulpes: /very/ pretty card, asciilifeform
asciilifeform: a very common su deck
asciilifeform: (didja know, even ordinary playing cards are fuck-ugly in usa and brit world ??)
ben_vulpes: old story mass produced blablabla
asciilifeform: i have nfi why actually
ben_vulpes: no taste to be had at any price?
ben_vulpes: some of those teeth are very odd looking.
ben_vulpes: is that from the warping?
asciilifeform: ben_vulpes: overcooked
ben_vulpes: and you're doing this with a laser why?
asciilifeform: it was a helloworld!
ben_vulpes: ok ok
ben_vulpes: what /are/ you cutting with the laser?
asciilifeform: this will be described later.
asciilifeform: btw since ben_vulpes asked, what's the cheap way to make gear ?
ben_vulpes: what kind of application?
asciilifeform: because afaik laser is the easiest + cheapest, supposing you can live with material that it cuts
asciilifeform: there are, sadly, not so many uses for wooden or plexiglass gears.
ben_vulpes: well, no, and "depends"
asciilifeform: but if you have gigantic laser..
ben_vulpes: no you stop with that
trinque: lol
ben_vulpes: what application, asciilifeform
ben_vulpes: perhaps giant wooden cog with mega reduction will serve asciilifeform's purposes!
ben_vulpes: who is to know
asciilifeform: ftr i am not making mechanical rsatron.
ben_vulpes: get a temperature controllable oven, start with soft steel and harden it per the kindergarten heat treatment tables
ben_vulpes: if yer really strapped for cash, get a propane "poofer" and a laser thermometer.
ben_vulpes: 's how we did the bearing races on the fin can.
asciilifeform: strapped for fireproof work surface.
ben_vulpes: it's called a fucking driveway!
asciilifeform: i've none.
ben_vulpes: heart of the empire
asciilifeform: i shit thee not
ben_vulpes: the place to which all roads lead
asciilifeform: i 'parallel-park' on motherfucking city street, yes
ben_vulpes: seat of government from which eisenhower edicted that roads will be laid to all stoops
ben_vulpes: and you nignogs don't have cement /driveways/?
asciilifeform: fwiw, all the other houses on the street - do
asciilifeform: (well, gravel, not cement)
ben_vulpes: such imperium!
a111: Logged on 2016-10-31 17:27 asciilifeform: i always wondered if the very sad infrastructure in washington, a kind of frozen-in-time 1970s theme park, is at least partly on account of the expectation that anthill will be leveled 'any day'
asciilifeform: i also pay 2-3x per square m. vs anyone else who lives here. because not-mortgaged.
asciilifeform: this was in old thread, is not mega-newz.
ben_vulpes: in any event, the controllable kiln/oven should be achievable.
asciilifeform: not in a wooden shack, it isn't
ben_vulpes: you don't even have a steel work table outside?!
asciilifeform: on what to put it, on earth that turns liquid when rains ?
asciilifeform: (whole thing does..)
asciilifeform: one time i bought a truckload of plinths, made a walking-path, it... sank.
ben_vulpes: hold on a goddamn second
ben_vulpes: plinths are ~2ft tall
asciilifeform: these were 2 in. tall.
ben_vulpes: that is most definitely not a plinth.
asciilifeform: 'twas what they had at the plinth shop, lel.
ben_vulpes: i'd crucify the architect who tried to tell me that an ionian column could sit aesthetically o 2 inches of plinth.
ben_vulpes: > plinth shop
asciilifeform: no architects were harmed in the making of this production.
asciilifeform: just an old miser and a bunch of shit masonry.
ben_vulpes: "baliff? whack his architect."
ben_vulpes: only tangentially relatedly, cheech and chong scrubbed the rape jokes from their classic albums.
ben_vulpes: shame.
asciilifeform: ben_vulpes carries half tonne plinths with own hands ?
asciilifeform: or owns crane ?
ben_vulpes: no but i also don't call that which isn't a plinth a plinth
ben_vulpes still having trouble with the gravel driveway thing
ben_vulpes: water company showed up the other day to relocate our meter
ben_vulpes: left a gravel patch for ~3 days
ben_vulpes: came back and tarred the thing down level with the rest of the driveway
ben_vulpes: "The feature was so great that we started to overload the npmjs.org service."
asciilifeform: also since when does ben_vulpes use vs..?
ben_vulpes: since never!
ben_vulpes: but let me tell you about how well xcode <latest> upgraded this swift 2 project to swift 3
ben_vulpes: FUCKING POORLY
ben_vulpes: "o i see you have a target, i'll just swizzle these files around and source-to-source transform all these other files"
ben_vulpes: NEGLECTING COMPLETELY THE OTHER PROJECT TARGETS
ben_vulpes: from other parts of the room: "i'm sure there's some highfalutin' CS reason why -- "
ben_vulpes: "NO THERE IS NO REASON. IT IS PURE ARROGANCE AND DISREGARD FOR OUR BOXES."
ben_vulpes: "our boxes?"
ben_vulpes: "..."
asciilifeform: i was recently using a proggy called inkscape. vector drawing thing. and recent update broke ~ALL plugins.
asciilifeform: that ANYONE has written.
asciilifeform: this is somehow acceptable on the author's planet..?
ben_vulpes: well, using anything other than illustrator for vector work is very stupid for precisely this reason.
ben_vulpes: unrelatedly, el pequeno took his first steps at his one-year birthday/halloween party while i was on the back porch smoking cigarettes
trinque: aw shit
trinque: serious adventure time now, out the window, across the yard
ben_vulpes: "eh, i'll believe it when i see it ten times."
ben_vulpes: one day later...
ben_vulpes: trinque: miniature ice-mobiles, bicycles, skateboards and other mother-terrorizing devices may be delivered to <ADDRESS>
trinque: loller
ben_vulpes: naw, the girl is to be commended for her tolerance of and adaptation to all sorts of baby-genic father-driven torture
← 2016-11-01 | 2016-11-03 →