Show Idle (>14 d.) Chans


← 2019-01-02 | 2019-01-04 →
mircea_popescu: asciilifeform i don't get it, what about it ?
feedbot: http://bimbo.club/2019/01/part-i-if-im-lucky/ << Bimbo.Club -- Part I - if im lucky
asciilifeform: http://btcbase.org/log/2019-01-03#1884045 << heathen www, hosted on garbage hoster, but turned out to be packed full of useful retro-comp tidbits, is all.
a111: Logged on 2019-01-03 06:54 mircea_popescu: asciilifeform i don't get it, what about it ?
asciilifeform: diana_coman: looks like ml not yet moved to pizarro, it's still hosted wherever it was that jurov had it
asciilifeform: ( lulazon iirc )
diana_coman: I was under the impression it moved
asciilifeform: loox like only the trb www moved, ml was on separate box, still needs moving.
BingoBoingo: !Xview 1027
auctionbot: Buy order # 1027: 2k wired Filthy Fiats Opening: 540mn ecu Leading Bid: None Ending: 2019-01-04 10:08:07.710708 UTC (30 hours 11 mins)
diana_coman: asciilifeform, you broke all your links on your www to FFA code on btcbase when you changed the name of vpatches because of keccak vs sha: e.g. btcbase.org/patches/ffa_ch7_turbo_egyptians/tree/ffa/ffacalc/cmdline.ads#L42 in Ch8 404s now because no ".kv"
asciilifeform: diana_coman: hm , i thought phf had the older ones still in there
asciilifeform: diana_coman: i'ma have to fix by hand.
diana_coman: well, it's meant as replacement not as alternative so I don't see why would one keep the sha patches; onth replacement in place aka no name change doesn't break anything either
a111: Logged on 2018-09-26 22:00 asciilifeform: mircea_popescu: prolly like most folx who actually work on proggies, asciilifeform has '9000' vtrees on various disk, on various boxen, that are in classical format, and many not even intended for publication, the ones that see daylight naturally will become newtype
asciilifeform: but i'ma have to fix the links.
asciilifeform: ( will replace'em all to ch11-and-up-style links to gnathtml-generated snapshots. )
asciilifeform: ty for the eggog report, diana_coman
diana_coman: np; and yes, I know how/why .kv
asciilifeform: btw, to round off yesterday's http://btcbase.org/log/2019-01-03#1884041 , culprit is https://www.spinics.net/lists/linux-scsi/msg08419.html ( 12 yrs! and still not fixed, apparently. )
a111: Logged on 2019-01-03 02:19 asciilifeform: aalso i spoke too soon, it stops mid through boot, dun see cd drive.
asciilifeform: box is dead in the water on apparently all linux kernels since ~2006ish, and seems like nobody gives a fuck.
asciilifeform: diana_coman: i fixed the links by hand, there were only a handful.
diana_coman: asciilifeform, phf updated with my sigs for FFA ch7 and ch8: http://ossasepia.com/reference-code-shelf/#selection-627.0-665.43
asciilifeform: plz lemme know if it turns out that missed one.
asciilifeform: congrats diana_coman !
diana_coman: ch8 was esp easy :P
asciilifeform: diana_coman: any interesting finds/nitpicks ?
diana_coman: apeloyee beat me to the cut; nothing else so far
asciilifeform: ty for putting in the sweat, diana_coman
asciilifeform: currently yer the champ in ffaology.
diana_coman: actually rather curious why doesn't apeloyee sign what he reads
asciilifeform: this, i do not know
asciilifeform: given as the fella didn't end up sticking to republic, i dun expect we'll ever find out.
asciilifeform: btw diana_coman -- your earlier nitpicks made it in to 14b.
diana_coman: cool; one day I'll make it to ch14b too, lol
asciilifeform: no need to hurry.
asciilifeform: ftr i very much appreciate all nitpicks, even purely stylistic ones, an explicit objective of ffa is to be not only bug-free but entirely clean of sharp edges, to the extent possible on the available irons.
diana_coman: the trouble is that "sharp edges" are quite often operator-shaped as it were
diana_coman: ftr I had to refresh a bit on Knuth Vol 2 at some point but I don't see that as a minus at all
asciilifeform: almost always sharp edge is invisible to the orig author, who 'knows where not to run fingers'
asciilifeform: hence the importance of other thinking folx giving the thing a thorough walk.
asciilifeform: diana_coman: where at all possible, i tried to use ~simpler~ algo than what was given by knuth. e.g. karatsuba without moving pivots.
diana_coman: if nitpick at all, the one thing that consistently nags at me (though for which I can't make up my mind as to actual solution) is the implicit reliance on indices to be in fact starting from 1 when copying stuff e.g. http://btcbase.org/patches/ffa_ch7_turbo_egyptians.kv#L187
diana_coman: asciilifeform, yes, it was rather basic stuff but the fact is that I read Knuth ~10 years ago so refresh was long due
diana_coman: re nitpick: in my code I tend to keep to XS'First..XS'First+X'Length but it does make it ugly & long
asciilifeform: diana_coman: where this appears, it is a concession to 1) speed 2) brevity of code . where the indexing of the array is known, because it is a local buffer, it is referred to explicitly; invocations X'First, X'Last, etc cost measurable cpu, it turned out. but where indexing is not known ( e.g. if operand may be part of a karatsuba ) , there it is unavoidably X'First etc.
asciilifeform: as i've said previously, ffa post-ch6 is largely an 'uglification' to buy usable performance on pc.
diana_coman: heh, talked in parallel there; I know and that's why I did not mention it at all at first; it was just because you asked for as much nitpick as possible, so now it's at least said
asciilifeform: i took the approach where i built the thing maximally-compactly, and then proceeded in direction of 'now let's make it go in less than geological time'.
asciilifeform: diana_coman: in fact i did ask; and happy to have it.
asciilifeform: imho the de-facto convention i proposed is reasonable tho -- if the array is a local creation, and its indexing is known, then to refer to it explicitly is permissible. otherwise, not.
asciilifeform: if diana_coman et al find instance where i deviated from said convention ( and not fixed in current spearhead ) -- i would like to know about it.
asciilifeform: btw no doubt must remain whatsoever re this point in the mind of anyone contemplating switching off the range checks in their build (this buys ~2x 'phree' speedup)
asciilifeform: diana_coman: when you read ch10, you will find that i had to rewrite some of the basic arithm logic, so as to remove dependence on indexing.
asciilifeform: when i started with adaism, i initially found the preservation of indexing in array-slices annoying. but then saw the wisdom, it whips programmer into having a much firmer grasp of wtf he is doing.
asciilifeform: ( it also buys the ability to know where in array you are, without 'pointerisms' )
feedbot: http://qntra.net/2019/01/usg-today-two-years-of-divided-congress-begins-partial-shutdown-continues-while-trump-remains-unfulfilled/ << Qntra -- USG Today: Two Years Of Divided Congress Begins, Partial Shutdown Continues While Trump Remains Unfulfilled
feedbot: http://qntra.net/2019/01/france-macron-arrests-particularly-loud-yellow-jacket-protestor-demands-french-people-in-france-submit-to-foreign-world-order/ << Qntra -- France: Macron Arrests Particularly Loud Yellow Jacket Protestor, Demands French People In France Submit To Foreign World Order
asciilifeform: http://btcbase.org/log/2019-01-03#1884066 << aand to properly round off the thread, that box nao runs openbsd ( which worx 100% ) , for nao.
a111: Logged on 2019-01-03 16:48 asciilifeform: btw, to round off yesterday's http://btcbase.org/log/2019-01-03#1884041 , culprit is https://www.spinics.net/lists/linux-scsi/msg08419.html ( 12 yrs! and still not fixed, apparently. )
asciilifeform: that thing has stupendously loud hdd, incidentally -- i can hear it from three rooms.
mircea_popescu: jesus that was the era of loud hdds
asciilifeform: 1 of those 15,000rpm scsi items. ( 'alpha' is moar or less the 'money no object' box from late '90s-early-2000s, tended to have the most outlandish periphs
asciilifeform: the spindle sounds like dental drill, the head motor -- like door buzzer.
asciilifeform: and guten tag mircea_popescu !
asciilifeform trimmed iron stash down to 2 'alphas', 1 runs barbaric 'tru64' (for that bolix emulator), 1 nao set up for 'ffa on arch that aint x64 or arm' tests laters
mircea_popescu: next we're going to dig up a 1990 era soviet stolen sub to run it on their handcranks also.
mircea_popescu: in other news, i look at the time, and it's 13:37.
asciilifeform: they're nifty boxes, in some ways (e.g. http://btcbase.org/log/2018-12-01#1877067 , and the mobo slides in and out without tools )
a111: Logged on 2018-12-01 01:22 asciilifeform quite fond of alpha, the architecture book was ~thin~
asciilifeform: mircea_popescu: i won't know whether the 'constanttimeism litmus' actuallyworx, until i dredge up an iron where it outputs negative
mircea_popescu: not much of a priority.
asciilifeform: not burning, no.
mircea_popescu: http://btcbase.org/log/2019-01-03#1884048 << oh i see. i just saw a "omfg my traffux" dork "blogger" typical piece, the numbers seemed low for a month of amateur bloggership so had to take a 2nd look, turned out they're FOR THE YEAR, what can yo9u do.
a111: Logged on 2019-01-03 14:58 asciilifeform: http://btcbase.org/log/2019-01-03#1884045 << heathen www, hosted on garbage hoster, but turned out to be packed full of useful retro-comp tidbits, is all.
asciilifeform: mircea_popescu: i can count on fingers of 1 hand how many times i dig up on 'lone man net' sumthing useful, in a yr
mircea_popescu: http://btcbase.org/log/2019-01-03#1884059 << yes, but he gotta invent problems for himself. which he does at an amazing rate, ~comparable to his capacity for solving problems. after all, stability is self-enforcing.
a111: Logged on 2019-01-03 16:36 diana_coman: well, it's meant as replacement not as alternative so I don't see why would one keep the sha patches; onth replacement in place aka no name change doesn't break anything either
mircea_popescu: asciilifeform i believe, but maybe deep link to the something useful.
mircea_popescu: http://btcbase.org/log/2019-01-03#1884068 << i don';t expect any of the ten thousand fly eyes has a dec, ever had a dec, or can come up with any actual use for a dec. or for that matter care to know whether their code doesn't work at all. different paradigm!!!
a111: Logged on 2019-01-03 16:49 asciilifeform: box is dead in the water on apparently all linux kernels since ~2006ish, and seems like nobody gives a fuck.
asciilifeform: mircea_popescu: well ~that~ d00d has dec. and even dec vax, and ports various soft to'em.
mircea_popescu: not bad.
asciilifeform: largely archaeological interest ( tho he also has some 'modern-day' items, bypasses for winblowz 'seekoority', etc . overall surprisingly high snr. )
mircea_popescu: http://btcbase.org/log/2019-01-03#1884081 << any reason you believe this ? (i have nfi, there's some obligation to participate in the sense of weighing in on decisions for the lordship, but afaikl dude never was/wanted to be, and for the citizenry at large there's no such thing is there ?)
a111: Logged on 2019-01-03 16:59 asciilifeform: given as the fella didn't end up sticking to republic, i dun expect we'll ever find out.
asciilifeform: mircea_popescu: fwiw i do not know whether he tuned out entirely, or lurks, or which.
asciilifeform: only that he hasn't been seen since...
asciilifeform: !#seen apeloyee
a111: 2018-01-17 <apeloyee> !#s whisperers
mircea_popescu: keks nice final note.
mircea_popescu: anyway, many people took yearish hiatuses, mats recently emerged after a slumber for eg.
asciilifeform: i admit that i'd be delighted to see apeloyee return ; he was '9000 level' useful d00d.
asciilifeform: wb Mocky
Mocky: thx asciilifeform
lobbesbot: Mocky: Sent 19 hours and 34 minutes ago: <mircea_popescu> further issue with bot for your list : if it dings two skills, it only trains one. really it should have a check ~before~ crafting whether it can do any skill upgrading somehiow.
mircea_popescu: !!up stratum
deedbot: stratum voiced for 30 minutes.
mircea_popescu: anyone knows who this is then ?
asciilifeform does not
a111: Logged on 2019-01-03 17:01 diana_coman: cool; one day I'll make it to ch14b too, lol
Mocky: oh hey, never thought about multiple skill dings, I'll note
lobbesbot: Logged on 2019-01-03 14:53:01: <diana_coman> 18 pops, lmao
mircea_popescu: Mocky but the important part is "resilient design" so to speak : it should keep polling after doing what it thought it did. same exact thing as with the "put stuff in inv" : put all you find of the type you're putting, if you miss some on one cycle, catch up on next. sorta thing.
mircea_popescu: there's a good principle in there we're digging out.
asciilifeform: briefly upstack to the archaeologies : switched on the http://btcbase.org/log/2019-01-02#1883853 device, and it worx a++++, simulates cdroms even (arbitrary # of'em) , and hdds, etc
a111: Logged on 2019-01-02 15:31 asciilifeform: mats: i haven't built anyffing useful from ice40 with own hands yet. but, interestingly, when bought a 'scsi2sd' device for replacing disk in bolix box, found that author in fact used ice40 for the job
asciilifeform: and has usb hose for mounting same from pc end.
mircea_popescu: specifically : the oldest illustration of "robotics" in the charlie chaplin deeply misguided http://btcbase.org/log/2015-03-06#1043874 approach (and yes, i am very unimpressed by charlie chaplin as the "intellectual great" pantsuit make him out to be, specifically because this sort of deliberate stupidity to cater to pantsuit nonsense dun count as wisdom) is an amelia bedelia-esque "person sent to broom will broom the room, r
a111: Logged on 2015-03-06 02:28 asciilifeform: 'On two occasions I have been asked, 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able rightly to apprehend the kind of confusion of ideas that could provoke such a question.'
mircea_popescu: obot sent to broom will broom individual items" sorta bs.
asciilifeform: ( imho must-have gadget for old-irons people , really )
mircea_popescu: there's no serious reason to write our poor people in the way THEIR poor people would like our poor people to work [for the transparent reason that thusly, our poor people won't outcompete and drown out their poor people].
mircea_popescu: (and yes, republican bot is ==== imperial "we the people", no question about it.)
asciilifeform: mircea_popescu: from the 'steam engine is 'the workerz' 'but minus the drinkin' and unionizin''' pov ?
stratum: i am a real person
mircea_popescu: from the gimme a second ima clean up this bimboconvo.
asciilifeform: oh hey talks
mircea_popescu: stratum and who might you be then ?
stratum: i am a real person who has seen the wonderful dpb spread the gospel and came here to watch
danielpbarron: he is from efnet, l0de fan
asciilifeform: stratum: y'know there is a log, http://btcbase.org/log/
danielpbarron: also a fan of https and skeptic of rsa
asciilifeform: 'promising' already..
asciilifeform: stratum: let's hear about this ?
stratum: I do not recall any skeptical talk about rsa, though, I do think https can be valuable in attempting to mitigating some issues one may encounter, this is true.
Mocky: yes, a more resilient design is much needed for the bot. it also needs to get out from under the thumb of the ps event/thread model so that adding capabilities doesn't require crimes-against-humanity levels of extra code in order to approach resilience
Mocky: unfortunately my cpp skills are not there yet
asciilifeform: stratum: valuable for what ?
stratum: In some cases, which do not involve a determined attacker or state actor, https can prevent man in the middle attacks, the capture of full browsing sessions, and, while unfortunately involving untrusted third party mega corporations tied to the security state, one can be slightly more assured you're talking to the actual website you intend to.
asciilifeform: stratum: given that the most active criminal is the nato reich itself, what exactly is the worth of pkiistic 'sekoority' where they have master key ?
stratum: It depends on ones threat model.
stratum: I think most IRC people would be more concerned with some random internet jackoff fucking with them than GCHQ.
asciilifeform: actual crypto worx just same against randojackoff and hitler.
stratum: Certainly, but one still has to survive among the internet places as they exist.. We cannot all be RMS and have a helper print out websites for us because we're paranoid.
asciilifeform: the notion pushed by reich where 'it is cheaper to only work against jackass' is fallacious, your cpu can bear the load.
asciilifeform: stratum: why wouldja need 'helper to print web sites' ?
asciilifeform: what's wrong with having multiple boxes for diff uses.
stratum: If one can afford the money, time, and hassle, nothing.
Mocky: also re bot, I do see the underlying problem that is revealed when someone says "oh hey, never thought of..."
asciilifeform: stratum: so enlighten me, what's the logic -- you can't afford to plug in 2 boxes , but want to tell self stories at bedtime re 'secure anyway' ?
stratum: Most people don't even have one "box" -- More and more browsing from their phones as their sole computing device, billions of them. I think there is a disconnect in what we're discussing: which is why I mention RMS and his helpers.
asciilifeform: stratum: y'know, the money argument dun hold water -- a new 'ipnoje' actually costs moar than ~several~ entirely usable pc
asciilifeform: ( not even counting its ~subscription~ )
stratum: I doubt any locksmith, who knows how easily they can be defeated, is arguing against locks for the average person, grandmas, and such. It seems like the argument against https from the likes of dpb is an argument of this type, in my opinion.
Mocky: more like the tsa luggage locks
asciilifeform: except where yer lock aint a lock at all, but instead is rather more similar to the plastic amulets 'boko haram' hands out to soldiers 'to stop bullets'
asciilifeform: !!up stratum
deedbot: stratum voiced for 30 minutes.
asciilifeform: stratum: one doesn't even need to sit on hitler's throne to bypass sslism; typical idjit os comes with root certs from such shitholes as e.g. greece and latvia
asciilifeform: all you need is to buy/borrow/steal 1 ( and not even this, protocol itself is swiss cheese and regularly broken by amateurs without any need to steal privkeys from some derpistan )
stratum: Right now, for the billions, I think it is probably better than nothing, just like easily popped household locks.
stratum: If individuals want to communicate using heavily encrypted sneakernet to avoid NSA goons, that is certainly okay by me. But I don't see that happening for the billions any time soon.
Mocky: are you an advocate on behalf of the billions?
asciilifeform: stratum: tech 'for the billions' remains a questionable proposition even in re 100 y.o. techs. 'the billions' still have trouble with not dropping running toaster in bathtub.
asciilifeform: the appropriate tech 'for the billions' is prolly the ox-plow ( and with proviso that they turn into a moar manageable 'millions' )
asciilifeform: danielpbarron: i wonder if the fella knows just what's behind the door he's walked into.
Mocky: unrelatedly, it's strange time distortion to be a newb and compress the reading of back #trilema & #ba logs into 8 months and then see http://btcbase.org/log/2019-01-03#1884140 and realize the fella (and plenty others fresh in the mind) hasn't even spoken here for a year
a111: Logged on 2019-01-03 18:47 a111: 2018-01-17 <apeloyee> !#s whisperers
danielpbarron: i did not tell him to join, and i have given up on reaching that crowd
mircea_popescu: stratum we are only interested in destroying the capacity of posturing of the "state actor" known asw the usg.
mircea_popescu: random schmuckette futzing with her phone "losing" her nudes is of no consequence, she is a party favour anyway, whether she knows this or not.
mircea_popescu: and "most irc people" is an undefined symbol. there's the lordship and absolutely nothing else. there's no "irc people".
mircea_popescu: poor danielpbarron, i'm starting to understand his problem : specifically because http://btcbase.org/log/2018-12-18#1881534 ie much lower intellectual bar, it is actually WAY THE FUCK EASIER to sell his church than the republic, to the sort of random interneteer. memory vs thought, hands down easier to memorize than structure the world.
a111: Logged on 2018-12-18 19:57 mircea_popescu: why is it that this church is notable in spite of not having a feedbot ?
mircea_popescu: http://btcbase.org/log/2019-01-03#1884196 << the point isn't the "monetary" cost, they have 0 money anyway. the point is the intellectual cost -- they're monkeys, they barely got enough brainpower to cluck at the shiny, what computer, what computers.
a111: Logged on 2019-01-03 19:18 asciilifeform: stratum: y'know, the money argument dun hold water -- a new 'ipnoje' actually costs moar than ~several~ entirely usable pc
mircea_popescu: Mocky we're in the same time distortion field. i recall people dead for centuries as if we just interrupted a coffee conversation days ago ; i forgot idiots i met yesterday as if milennia had passed.
mircea_popescu: time exists in the mind.
mircea_popescu: http://btcbase.org/log/2019-01-03#1884103 << i think the logs reflect my thinking similarily at first ; but kinda dropped it also.
a111: Logged on 2019-01-03 17:15 asciilifeform: when i started with adaism, i initially found the preservation of indexing in array-slices annoying. but then saw the wisdom, it whips programmer into having a much firmer grasp of wtf he is doing.
feedbot: http://trilema.com/2019/what-is-meant-by-ai/ << Trilema -- What is meant by AI ?
jurov: http://btcbase.org/log/2019-01-03#1884050 << asciilifeform next time please spend few precious seconds to actually check A and MX records. No, it's not on lulazon anymore.
a111: Logged on 2019-01-03 14:59 asciilifeform: diana_coman: looks like ml not yet moved to pizarro, it's still hosted wherever it was that jurov had it
asciilifeform: jurov: then mystery deepens . can you offer an explanation for http://btcbase.org/log/2019-01-03#1884046 ?
asciilifeform: why the everliving fuck would anyone ever see 'Generated by cloudfront (CloudFront)' from that thing ??
feedbot: http://bimbo.club/2019/01/philosophical-transactions-for-the-months-of-november-and-december-1715-part-iii/ << Bimbo.Club -- Philosophical Transactions. For the months of November and December, 1715 - Part III.
asciilifeform: http://btcbase.org/log/2019-01-03#1884225 << ada is surrounded by a kind of roman 'sudes' fort , consisting of 'why the fuck does it make me do this', kills 99+% of maggots on the spot. at least that's my hypothesis re why the thing remains usable ~40 yrs after first made, unlike e.g. unix
a111: Logged on 2019-01-03 20:00 mircea_popescu: http://btcbase.org/log/2019-01-03#1884103 << i think the logs reflect my thinking similarily at first ; but kinda dropped it also.
mircea_popescu: possibru.
asciilifeform: ( e.g. http://btcbase.org/log/2017-05-26#1662671 , and other examples i documented in 2016-7 l0gz )
a111: Logged on 2017-05-26 18:10 asciilifeform: for instance, the almost ubiquitous c-ism, of creating a pointer (ada 'access') variable on a procedure's local (stack) and passing it to something -- anything -- is illegal
asciilifeform: Mocky collected the whole, iirc, set, i'ma link ftr to http://mocky.org/Log-Reference-Why-Ada/ .
mircea_popescu: memory management in c is one of the weirdest things. this is not directly obvious first off, but if you stop to think about what you're saying ~actually means~ it's a guaranteed starseeing moment.
asciilifeform: c programmers who 'stop to think about what it means' tend to go insane and gouge out own eyes etc. so not much experience of this in the field.
asciilifeform: incidentally i'll add that most published heathen ada proggies use c-style heapism, it isn't banned by the lang per se.
mircea_popescu: i suppose the first step in the wonderful world of language is the kid's "what incantations do" rather than "what does this mean". takes a considerable time exposed to "she is your genie, ask what you will, she'll produce it" sorta situation for the former to mutate into the latter, "what the fuck am i asking these genies to do here!"
asciilifeform: ( in fact, if anyffing -- encouraged, the type safety makes it less immediately lethal than otherwise would be )
asciilifeform brb,teatime
feedbot: http://trilema.com/2019/qntra-sqntr-december-2018-statement/ << Trilema -- Qntra (S.QNTR) December 2018 Statement
jurov: http://btcbase.org/log/2019-01-03#1884230 << perhaps someone is avoiding DNS and has stale static IP entry in hosts.txt ?
a111: Logged on 2019-01-03 22:01 asciilifeform: jurov: then mystery deepens . can you offer an explanation for http://btcbase.org/log/2019-01-03#1884046 ?
asciilifeform: jurov: this is entirely possible. lessee what diana_coman says when wakes up.
asciilifeform: ( iirc diana_coman was the only 1 afflicted )
jurov: diana_coman: really, let's seriously troubleshoot this. if you aren't using hosts file, can you please paste the output of: dig therealbitcoin.org and: dig MX therealbitcoin.org
BingoBoingo: dig shows the MX pointed at the foundation's Pizarro box from here
asciilifeform: same here
mod6: Yeah, I get the pizarro ip for both A and MX records. Just in case, I have posted the clearsigned report to my website for viewing: http://mod6.net/2018/December/31/btcf_address_201812.txt
asciilifeform: unrelatedly : hey mircea_popescu , didja have a torrent tracker ? i seem to recall in the log ( tho cannot find. ) or was it an in-house thingie strictly.
asciilifeform: i ask because i have a 9GB disk image from that bolix 'macivory' ( recorded using the 'alpha' from earlier thrd ) but am reluctant to simply put on dulap, soaking up bw for errybody
asciilifeform: ( it's ~8GB gzipped )
asciilifeform: it aint that much good without the iron, but i would like the thing publicly gettable, given as i also baked a 'scsi2sd' config that eats the thing
asciilifeform: ( solid state gadget that replaces the ancient whining hdd in the thing )
asciilifeform: lol holySHIT is gzip inefficient for disk snapshots. '7zip' gets it down to 256MB !
asciilifeform: possibly dun need torrents after all. ( it is nao smaller than those jpegs from last wk. )
mircea_popescu: asciilifeform wasn't a tracker, just a large box with the entire collection of trilema reviewed films. on for a year or so, but turned it off recently.
mircea_popescu: when realised that i do not like the "community" enough to pump 1k/mo into it or anything.
asciilifeform: this is a fundamental problem with throwing up warez for 'public'. how to justify to self, the bird feeder.
asciilifeform: it costs real moneyz to throw up GBs.
mircea_popescu: nothing wrong with "here's a list of things you can have ~by request~ in my castle"
asciilifeform: this also. tho it is headachy to arrange in practice.
mircea_popescu: so asker must be this tall to ride.
asciilifeform: i mean on serving end.
mircea_popescu: when joe blow did enough for you that it overwhelms the headache, he can has.
asciilifeform: i have a half-written bot that takes a deedbot-style gpg wot decrypt and puts out a single-use emulated ftp login thing. but it is not alive, because gnarly in practice ( if single-shot, resumes dunwork; and no crypto, and prolly this is solvable but i dun have currently the time budget for massaging it )
asciilifeform: a reasonably-mechanized process for distributing warez to one's l1/l2 might be useful, but i haven't yet devised one that dun break in annoying ways in the field.
mircea_popescu: the correct way is reverse : take ~ftp login~, dump it in there.
asciilifeform: i.e. receiver puts up ftp ?
asciilifeform: i suppose that'd work ( tho still no crypto )
mircea_popescu: of course crypto.
asciilifeform: with what ?
mircea_popescu: with his key.
asciilifeform: as in, per file ?
mircea_popescu: per tarball, w/e.
asciilifeform: i guess would work.
asciilifeform: pretty heavy on the serving end, tho, needs scratch buffer of $file-length per each req.
asciilifeform: ( of much moar, in fact, than $file-length, cuz gpg is retarded )
mircea_popescu: you got collection-of-shit 1 throught 99. joe wants shit-item-5-6-7. joe sends !Z http://p.bvulpes.com/pastes/12345/?raw=true wherein is found "shit-item-5 ; shit-item-6 ; shit-item-7 ; pubkey"
mircea_popescu: you "shit-item-5 ; shit-item-6 ; shit-item-7" > tar > gpg -aer pubkey > joe.ftp.server
asciilifeform: right, it'd work in principle. but costly on transmitter end.
mircea_popescu: asciilifeform like this you can do it on an as-available basis.
asciilifeform: naturally as-available, how else.
mircea_popescu: WAY the fuck cheaper than alternative.
asciilifeform: but it won't be very available.
mircea_popescu: because www server will attempt to feed any clients at any time
asciilifeform: 7 folx want to load, each needs a, what, 4GB+ buffer (if turd is 1GB)
mircea_popescu: nah. it's a 20% overhead or so.
asciilifeform: classical gpg (base64) is a 400% neh
asciilifeform: ( assuming incompressible payload )
asciilifeform: given as most warez is already compressed
mircea_popescu: you don't even have to ascii armor, if that bothers you.
asciilifeform: this is prolly the most practical scheme suggested, to date, for this. but still feels heavy.
mircea_popescu: what can i tell you.
asciilifeform: also suffers from practical gnarl -- say the session gets thrown. how many times is the bot to retry upload.
mircea_popescu: until done.
mircea_popescu: ftp has resume, and besides, you got hashes.
mircea_popescu: and if it's such a problem, slice it.
asciilifeform: soon enuff we're back to alt.binaries lol
mircea_popescu: (if anyone wonders why all those r00 r01 etc slices back in the day)
mircea_popescu: asciilifeform correct design is correct design.
asciilifeform: oh hey remember the luby-style usenet archiver thing
asciilifeform: i fughet what it was called
asciilifeform: where you only needed e.g. 30 of 36 .rxx etc to magick the whole thing back into shape
mircea_popescu: i dunno anyone actually bothered.
asciilifeform: some defo bothered
asciilifeform: iirc it was a plain reed-solomon tho, not newfangled luby
asciilifeform: apparently there were even multiple versions of the thing, i had nfi.
asciilifeform: in the last days of the good old days, it was actually pretty common, in asciilifeform's recollection.
asciilifeform: 'golden age' of usenet may have ended in '93, before i even got hands on it, but 'silver age' imho ended ~decade later. ( when usenet more or less disappeared entirely )
mircea_popescu: you and naggum might've been the only ones left by then
asciilifeform: he outlived me there by considerable time.
asciilifeform was largely in lurk mode in those days, did not often presume to have what's worth saying.
asciilifeform: there was, however, warez. asciilifeform got most of his msdos-goldenage stuff from alt.binaries.*
asciilifeform: to round off the http://btcbase.org/log/2019-01-04#1884258 thrd : item confirmed to work. booted up box with it , it's a mixed blessing ( ~zero seek times, but slightly ~slower~ linear transfer than the mechanical disk. but, theoretically lasts '4evah', given as card can be easily backed up )
a111: Logged on 2019-01-04 01:15 asciilifeform: it aint that much good without the iron, but i would like the thing publicly gettable, given as i also baked a 'scsi2sd' config that eats the thing
asciilifeform: i'ma post complete recipe laters.
asciilifeform: at the very least, it's quiet, and pulls 1watt instead of 40, reducing strain on the ancient electrolytic caps..
asciilifeform: phf i expect these will work in your 'xl' also.
asciilifeform: ( you can actually set arbitrary block size, so the weirdo 1280byte blox will work )
asciilifeform: the crapple ftr uses ordinary 512byte blks.
asciilifeform: when i first went to look for the thing, found that there's a whole underworld of vintage crapple people ( and 'amiga' etc ) , most of'em moved to using these things.
asciilifeform: ( interestingly also found that nowadays certain vintage crapples command 4fig prices. why -- cannot say. )
asciilifeform: there's folx running 'aix' even, that old favourite of BingoBoingo .
asciilifeform bbl, meat
BingoBoingo: asciilifeform: TBF a lot of weird looks good when the alternatives are Windows, Lunix, and ManzanaBSD
feedbot: http://qntra.net/2019/01/longtime-national-security-journalist-quits-nbc-over-networks-pro-war-editorial-position/ << Qntra -- Longtime "National Security" Journalist Quits NBC Over Network's Pro-War Editorial Position
feedbot: http://bimbo.club/2019/01/my-new-g/ << Bimbo.Club -- My new G
trinque: http://btcbase.org/log/2019-01-02#1883981 << I'll give it some attention this weekend.
a111: Logged on 2019-01-02 20:15 diana_coman: trinque, how's it going with getting the Cuntoo .vpatch in fixed shape?
← 2019-01-02 | 2019-01-04 →