Forum logs for 23 Mar 2019

Monday, 16 March, Year 12 d.Tr. | Author:
mircea_popescu: sooo, my amd socket 3 mobo that was powering the chatstation crapped out. just like that, turned off for the last time, wouldn't come back. [06:33]
mircea_popescu: obviously i did what any respectable lord would do : reach for the spare. which, once installed, wouldn't post either, just spun the cpu fan at max rotation and that's that. [06:34]
mircea_popescu: and, of course, NO SHOP IN THIS COUNTRY (literally, tried all shops) even has socket 3 amd mobo. [06:34]
mircea_popescu: i mean i get it, they're 20 years old by now. but give me a break, i can find chicks that were spawned 20 years ago just fine, for one thing. and for the other, what the fuck, 2001 era amd cpus STILL to this day the state of the art, they've not yet made better. [06:36]
mircea_popescu: phf, http://p.bvulpes.com/pastes/TaPSh/?raw=true [06:55]
mircea_popescu: http://btcbase.org/log/2019-03-22#1903996 << evidently alf finally found language fit for self! (and anyone who frequented same kindergarten). [07:01]
a111: Logged on 2019-03-22 16:56 asciilifeform: !A .6$x.3$y:y.2+$yxyG.1={xy*{_.0}{$x.1}_}{.1}_,x#QY [07:01]
mircea_popescu: but yes, 024776FFD3CBD21C872ECCD26AD078C5BA0586E2E57CF68515E3C4828A673A6E goes into trilema bylines. [07:02]
mircea_popescu: http://btcbase.org/log/2019-03-22#1904018 << totally not requiring nato intervention / replacement of dictator with herpyderp kid, france not venezuela [07:05]
a111: Logged on 2019-03-22 19:37 feedbot: http://qntra.net/2019/03/macron-order-french-soldiers-to-join-police-for-19th-week-of-yellow-jacket-protests-with-authorization-to-open-fire/ << Qntra -- Macron Order French Soldiers To Join Police For 19th Week Of Yellow Jacket Protests With Authorization To Open Fire [07:05]
mircea_popescu: (not even kidding, venezuela has oil, france has nothing. buncha cuntshat worms are a liability, not a resource, femstate propaganda notwithstanding.) [07:06]
mircea_popescu: BingoBoingo, btw could delete item http://qntra.net/2019/03/uranium-convoy-fired-on-in-brazil/#comment-126190 ? was just a test of the comment filteruing issue not understood at the time, has nothing to do with qntra per se. [07:08]
feedbot: http://thetarpit.org/posts/y05/08a-feedbot-i.html << The Tar Pit -- Feedbot [i]: the feed db its manipulation and the feed checker [08:43]
asciilifeform: http://btcbase.org/log/2019-03-23#1904022 << sounds like dead cap [10:10]
a111: Logged on 2019-03-23 10:33 mircea_popescu: sooo, my amd socket 3 mobo that was powering the chatstation crapped out. just like that, turned off for the last time, wouldn't come back. [10:10]
asciilifeform: http://btcbase.org/log/2019-03-23#1904025 << is how asciilifeform ended up with http://www.loper-os.org/?p=1871 [10:10]
a111: Logged on 2019-03-23 10:36 mircea_popescu: i mean i get it, they're 20 years old by now. but give me a break, i can find chicks that were spawned 20 years ago just fine, for one thing. and for the other, what the fuck, 2001 era amd cpus STILL to this day the state of the art, they've not yet made better. [10:10]
asciilifeform: http://btcbase.org/log/2019-03-23#1904027 << the example looks gnarly but is actually simple. in pseudocode :x:=6 y:=3 do{y:=y+2 if gcd(x,y)==1 then x:=x*y}until (x*y is wider than width) return x [10:18]
a111: Logged on 2019-03-23 11:01 mircea_popescu: http://btcbase.org/log/2019-03-22#1903996 << evidently alf finally found language fit for self! (and anyone who frequented same kindergarten). [10:18]
asciilifeform: mircea_popescu: surely you meant 'socket am3' ? 'socket 3' was iirc their 486-compat ! [10:21]
asciilifeform: ( and if so, mircea_popescu's box is actually younger than mine... ) [10:21]
asciilifeform: *until width exceeded (the mul has nonzero upper half) to be pedantic. [10:23]
asciilifeform: i'ma take a bit of log space to expand, cuz thing is a kind of 'pons asinorum'. [10:24]
asciilifeform: .6$x assigns 0x6 to reg 'x'. .3$y assigns 0x3 to reg 'y'. : starts loop (by pushing its pos to controlstack.) [10:25]
asciilifeform: y.2+$y increments reg 'y' by 2 ( y pushes current reg 'y' to stack .2 pushes 0x2 + adds the top 2 items on stack. $y assigns result to reg 'y' ). [10:26]
asciilifeform: xyG pushes to stack reg 'x', then reg 'y', and computes gcd, which then is sole item on stack. [10:27]
asciilifeform: .1= computes whether this is equal to 1, leaving 1 on stack if it were, and 0 if were not. [10:28]
asciilifeform: after this, { ..... }{.1}_, and so if it were not, the loop simply cycles again [10:31]
asciilifeform: in the 'gcd == 1' left clause, we have xy*{_.0}{$x.1}_ [10:32]
asciilifeform: xy*{_.0}{$x.1}_ pushes to stack and multiplies regs 'x' and 'y' after this, the stack contains two numbers, the upper half of the mul result followed by the lower [10:32]
asciilifeform: {_.0} happens if the upper half is not zero, i.e. overflow (really can be replaced by {}, i wrote it hastily) , it puts down a 0 so the loop will halt the 'else' clause is {$x.1} , where we did not overflow, so we put the xy* lower half into reg 'x' and leave a 1 on stack so the loop continues. [10:35]
asciilifeform: finally _ discards the 0 put down by the final clause of the conditional when 'not taken'. , (ch17) is the loop terminator, it pops from stack and if sees nonzero, then cycles back to the : , otherwise moves forward. in the end, x puts reg 'x' on stack, $ prints, QY returns 'yes' verdict. [10:36]
asciilifeform: fin. [10:36]
asciilifeform: for untrained eye, these are prolly indistinguishable from 'brainfuck' and other kunstkammerisms. but for trained eye, oughta be quite unambiguous imho . [10:40]
asciilifeform: the forth-like notation admittedly requires some practice, for the unprepared but the win from it is a fits-in-head interpreter ( ch.17 -- 1024 ln ch.18 , with subroutines , currently writing the docs -- 1516 , and not expected to ever grow much ) [10:43]
asciilifeform: a large % of the delta , by mass, is eggog detection + helpful message prints for same [10:43]
asciilifeform: * $ prints, QY returns 'yes' verdict. >> grr, # prints [10:46]
asciilifeform: typo. [10:46]
asciilifeform: otherwise correct expansion. [10:46]
asciilifeform: i'dve posted the commented orig version, but naturally dun fit in log line. [10:47]
asciilifeform: the reg-less version, i will leave as exercise for readers. [10:49]
* asciilifeform still waking up, may have made other mistake in above, will leave this q also as exercise ! [10:51]
asciilifeform: the underlying algo, tho, oughta be obv -- if you have a primorial up to X, you dun need to do anything fancy (e.g. m-r) to get the next prime you want to multiply into it , all you need is to gcd and see if the next number is relatively prime to it, if it is -- then it is prime, and can go 'in'. [10:55]
asciilifeform: so we begin with the accumulator having 2*3 = 6 , and roll from there ( the first number tested is 5, then after that 7, then gets to 9 and that's the first rejected one that doesn't get multiplied in, then 11 does, then .... and so forth until the termination condition ) [10:57]
asciilifeform: the 'limiting reactant' speedwise is gcd ( o(n^2), see ch. 15. ) . [11:00]
BingoBoingo: <mircea_popescu> BingoBoingo, btw could delete item http://qntra.net/2019/03/uranium-convoy-fired-on-in-brazil/#comment-126190 ? was just a test of the comment filteruing issue not understood at the time, has nothing to do with qntra per se. << done [12:05]
mircea_popescu: asciilifeform, very likely, though cursory examination did not reveal it and im not momentarily equipped to solder on mobos. [12:43]
mircea_popescu: http://btcbase.org/log/2019-03-23#1904041 << yeah. [12:45]
a111: Logged on 2019-03-23 14:21 asciilifeform: mircea_popescu: surely you meant 'socket am3' ? 'socket 3' was iirc their 486-compat ! [12:45]
mircea_popescu: http://btcbase.org/log/2019-03-23#1904055 << that's the primo quality of a good brainfuck. just ask the sluts. [12:47]
a111: Logged on 2019-03-23 14:40 asciilifeform: for untrained eye, these are prolly indistinguishable from 'brainfuck' and other kunstkammerisms. but for trained eye, oughta be quite unambiguous imho . [12:47]
mircea_popescu: http://btcbase.org/log/2019-03-23#1904064 << yes, basically diana_coman 's by-6 used as a bootstrapper and a two pouch mutualizer to expand it to size [12:48]
a111: Logged on 2019-03-23 14:55 asciilifeform: the underlying algo, tho, oughta be obv -- if you have a primorial up to X, you dun need to do anything fancy (e.g. m-r) to get the next prime you want to multiply into it , all you need is to gcd and see if the next number is relatively prime to it, if it is -- then it is prime, and can go 'in'. [12:48]
asciilifeform: mircea_popescu: exactly like that one [12:49]
mircea_popescu: yeah. [12:49]
asciilifeform: mircea_popescu: if you still haven't thrown that mobo and wanna put it back in service, feel free to gpgram which caps you need, and where to poste'em, i'ma send you some from own crate, then possibly you can get the bmw fixer d00d to solder it for a bottle o'rum or etc [12:51]
asciilifeform: i fix mine not cuz like the smell but cuz they're rare enuff , aint nobody making moar. [12:51]
mircea_popescu: asciilifeform, unfortunately i uprooted my electronics lab already. it's ok though, i have a crate of replacements on its way. [12:52]
asciilifeform: aite [12:52]
mircea_popescu: took some doing, like everything worth doing fucking does these days. [12:52]
asciilifeform: btw pre-07 (or so) mobos solder easily, they still have pb [12:54]
asciilifeform: it's the 'rohs' europitarded newer ones that dunwant [12:54]
mircea_popescu: these are rohs. [12:54]
asciilifeform: ( classic pb -- ~183 C rohs -- ~217 ) [12:55]
asciilifeform: aa [12:55]
asciilifeform: then you'd have to do what i did aha [12:55]
asciilifeform: ( since that article, asciilifeform did get a hotter iron, but reworking rohsisms is still a bitch, the high temp tends to lift the tracks ) [12:56]
asciilifeform: mircea_popescu: it's pretty odd that yer spare was dead tho. caps shelf-age but not ~that~ quickly [12:57]
mircea_popescu: nor does it look like a cap death. [12:58]
mircea_popescu: i suspect somehow the actual controller died somehow. nfi how as of yet. [12:58]
asciilifeform: mine wasn't an obvious (sans mag glass) capdeath either iirc [12:58]
mircea_popescu: once the electronix ppl land i might have a better something. [12:58]
asciilifeform: http://www.loper-os.org/pub/mobo/sad_cap_2.jpg << for ref, 'non-obv. cap death' [12:59]
asciilifeform: mircea_popescu: if you end up throwing it, feel free to send for xray ( if thing is >35cm on the long edge, may have to saw it ) , then can say 'solder ball this-here unballed' etc. valuable old irons aging data point, potentially. [13:02]
asciilifeform: ~nobody seems to actually study this q. [13:02]
asciilifeform: even the satellite people only seem to give a shit up to 7 yrs or so, re iron life [13:03]
mircea_popescu: yeah but i mean... seriously ? ten thousand man-hours of work for a peanut ? [13:05]
asciilifeform: xray takes 1min or so looking at the balls, maybe hr, i'ma pro bono. beyond that prolly not worth. [13:06]
asciilifeform: ftr recapping my 'tyan' took maybe half hr, counting the photographies. [13:07]
asciilifeform: ( and i was grrr cuz expected '5 minutes', but see rohs ) [13:08]
asciilifeform: mircea_popescu: will add that 'peanut' can grow to 'pea-elephant' if -- and this time verily cometh -- there is not a replacement on hand. [13:09]
asciilifeform: sorta why submarine has lathe etc. on board. [13:10]
mircea_popescu: i honestly don't expect we'll ever be recreating these gnarly insanities. x86 mobos nothing to worship, even leaving aside the [13:11]
asciilifeform: lol ffs why wouldja re-create the whole thing. [13:11]
mircea_popescu: hey, where's that logline where i say it's not yet clar to me symboix ever amounted to anyting worthwhile ? [13:11]
asciilifeform: lol all the bolx thrds ? [13:11]
asciilifeform: mircea_popescu was hardline skeptic of subj from start iirc [13:11]
mircea_popescu: but i mean, by the time we [13:12]
mircea_popescu: re out there doing systematic by-hand mobo-ing because "valuable resource ran extinct", might as well have baked... i dunno, a half-sane southbridge ? [13:12]
mircea_popescu: make the whole damn thing the civilised way rather than sinking "half hours" into by-hand bs. [13:12]
asciilifeform: tho since we're on subj, i'ma add that the bolix, for what its faults, was entirely repairable, the only 'magic' part that aint off-shelf is the cpu [13:12]
asciilifeform: ( errything else is either standard catalogue '80s piece, or PAL ) [13:13]
mircea_popescu: you'll be surprised how inaccessible "standard catalogue pieces" are becoming. [13:13]
asciilifeform: entirely inaccessible if you dun know where. if you know where, coupla bux ea. [13:13]
mircea_popescu: by which i don't mean "can't be got", especially "at my so and so magic provider who's essentially this 60yo who will soon die". [13:13]
asciilifeform: exactly like yer bmw [13:13]
asciilifeform: the genuine 'can't gets' , i stocked up on [13:14]
mircea_popescu: i mean, used to be every town of 100k or more white people had a store with some of ALL of those in stock [13:14]
mircea_popescu: but not anymore. [13:14]
asciilifeform: ( dks dug up a crate of cpu, i bought a coupla ) [13:14]
asciilifeform: mircea_popescu: i expect ~99.99... of ye olde golden age opterons have been melted down by nao, just like bolix etc [13:14]
mircea_popescu: "but mp, it's all for the better, think of all the space and inventory capial saved by the better jit methods of commercial distribution" [13:15]
asciilifeform: lol [13:15]
asciilifeform: funnily enuff, even repairable-period crapple parts go for hefty $ nao [13:16]
mircea_popescu: right ? and WHAT THE FUCK do they put IN THE PLACE, physical as well as financial, thus saved ? same thing women put in the place where "floor washing on hands and knees" and "bake cake" used to go, ie subhuman africanisms ? oh, but tyvm, this progress is so very fecal./ [13:16]
asciilifeform: mircea_popescu: y'know full well what 'they put in place'. single-chip disposable rubbishes that konsoomer is expected to buy and shuddup etc [13:16]
mircea_popescu: n-th restatement of "not beating wives and children has created irrespirable world, a fie on you" etc thread, we'll skip. [13:17]
BingoBoingo: <mircea_popescu> i mean, used to be every town of 100k or more white people had a store with some of ALL of those in stock << And then Retards killed radioshack [13:17]
asciilifeform: '90s irons were solid, in comparison even with that opteron. e.g. i still have a 486 that worx like the day it was new, not even recapped ever [13:17]
asciilifeform: for that matter, that same bolix, and the 1989 crapple it rides on, 100% orig parts ( save for http://www.loper-os.org/?p=2943 which i stuffed in preemptively ) [13:18]
mircea_popescu: BingoBoingo, radioshack was already symptom of death, federalized to "survive". in the sane world of the 90s these were so many independent shops, ran by period roger vers, tryna do radio advertisements and whatnot. [13:18]
mircea_popescu: a much saner milieu than "here's our corporate brochure" [13:18]
asciilifeform: mircea_popescu: ratshack afaik 100% dead in north amer [13:19]
BingoBoingo: <mircea_popescu> right ? and WHAT THE FUCK do they put IN THE PLACE, physical as well as financial, thus saved ? same thing women put in the place where "floor washing on hands and knees" and "bake cake" used to go, ie subhuman africanisms ? oh, but tyvm, this progress is so very fecal./ << What they put in the place are a bunch of storefront kiosks each selling a particular wireless carrier's products. [13:19]
asciilifeform: ( iirc mircea_popescu found 1 down south at some pt, but there is no resupply for'em, the co long ago folded , asciilifeform went and bought ~entire contents of 1 for a hundy or so ) [13:19]
mircea_popescu: asciilifeform, yes, but even it was BORN -- it was born because the local tards did not have the intellectual capacity to support actual infrastructure, nevertheless wanted to pretend to participate in human world. [13:19]
mircea_popescu: so they did what they do, "band together and preternd on a 1. 1 >0 even if 1 != the infinity it should be" [13:19]
BingoBoingo: mircea_popescu: Well, where I grew up local radioshack was a franchise op. Part Radioshack, part crafts stuff franchisee sold in his other store the next county over. [13:20]
BingoBoingo: The craft store still survives next county over as of December 2017 [13:20]
mircea_popescu: BingoBoingo, aha, the beginning. [13:20]
asciilifeform: iirc ratshack already was a zombie in 1990 or so. the wonder is how long the zombie walked, not that it finally crumbled [13:20]
mircea_popescu: except some dood selling bracelet stamped parts from china, "crafts" for the esty moron femcrowd ain't the same as the hamradio4lyf dood. [13:21]
BingoBoingo: Well, the other sort of crafts. Model rockets, and model trains. [13:21]
mircea_popescu: ah ah [13:21]
asciilifeform: the ham4lyf d00dz even in '90 already considered ratshack a ripoff, and went to buy/sell the junkyard-scavenged parts 100% from ea. other [13:21]
mircea_popescu: cuz it was. [13:22]
mircea_popescu: which is my point. [13:22]
asciilifeform: ikr? 3bux for resistor, etc [13:22]
BingoBoingo: Still, the place survived through 2005 or so in town of white folks under 10k heads [13:23]
asciilifeform: BingoBoingo: if it was anyffin like the ones here : survived by selling overpriced tv [13:23]
asciilifeform: and pnojes etc [13:23]
asciilifeform: with coupla drawers of parts, under 10cm of dust, in the back [13:23]
mircea_popescu: the ppls don't see how electronics relates to them! [13:24]
asciilifeform: in the very last yrs, ratshack tried to live by offering ipnoje glass replacement. problem is , chinese d00dz in open air market do it 2x cheaper. [13:25]
asciilifeform: btw i find it interesting, you go on a train ride in washingtonistan and count the ipnojes, 6 outta 7 have smashed glass. apparently even the 50bux or so that it costs if yer hands grow from arse and cant do it yerself, is toomuch for the typical ipnojist.. [13:26]
BingoBoingo: asciilifeform: Displayed those yes, but the town has a Walmart. Survived on being the shop with the things it had in the place it was. Death of the parent killed it. [13:26]
asciilifeform: BingoBoingo: i'ma guess it folded the day lolmart realized it , too, could stock a chinese soldering iron [13:27]
BingoBoingo: Could have been [13:28]
mircea_popescu: asciilifeform, empire degraded significantly, past 20 or so years. [13:28]
mircea_popescu: literallty can not afford. in the early 2000s, it was azn chicks commuting to "pink" in shanghai treasuring an antique, smashed iphone, white chicks commuting to "professional" in washington pristine last generation TWO (cuz gifts from each boyfriend, had spare) [13:29]
mircea_popescu: nowadays... azn chicks more last cry than knows what to do with, white chicks suckling the cock for free. [13:29]
asciilifeform: ipnoje per se is a '06+ item [13:29]
asciilifeform: but can picture. [13:29]
BingoBoingo: <mircea_popescu> the ppls don't see how electronics relates to them! << The rule the Peruana has to follow is the less important something seems, the more important it actually is. [13:30]
mircea_popescu: this is always the punishment, for failure to fem properly, too. and it's so fucking amusing to expose "womens lib" tard to this sort of "oh but look, the women in THAT group do so much better at all the tings [you falsely claim not to be important though its all that really interests you]". [13:30]
asciilifeform: BingoBoingo: the 'tailhook' people, pre-clintonization, had a proverb, where iirc 'what you dun know, will not only happily kill you , but eat you for lunch and spit out the bones' [13:30]
mircea_popescu: possibly the one most mentally disruptive piece of converesation for the http://trilema.com/2016/stfu-attention-whore-culture/ crowd [13:31]
mircea_popescu: (kinda why the "this is everything" pretense is even there otherwise if Mrs. Betjeman gets to thinking of what them girls do in paris.... "all is lost!!!" [13:36]
* mircea_popescu notices he didn't write up the ballad of buster scriggs, proceeds to fix [13:37]
* asciilifeform found substantial similification for ch18 mechanism, goes to put it in [13:45]
asciilifeform: *simplification [13:46]
feedbot: http://bimbo.club/2019/03/gary-clark-jr/ << Bimbo.Club -- Gary Clark Jr. [13:56]
feedbot: http://trilema.com/2019/the-ballad-of-buster-scruggs/ << Trilema -- The Ballad of Buster Scruggs [14:26]
mircea_popescu: meanwhile in top keks from the mid 1800s, "Mr. Seward is exerting himself to provoke a quarrel with all Europe, in that spirit of senseless egotism which induces the Americans, with their dwarf fleet and shapeless mass of incoherent squads which they call an army, to fancy themselves the equal of France by land and Great Britain by sea." [15:22]
feedbot: http://qntra.net/2019/03/turmoil-continues-at-slpc-hate-organization-as-departures-continue/ << Qntra -- Turmoil Continues At SLPC Hate Organization As Departures Continue [15:55]
mircea_popescu: keks. [16:01]
mircea_popescu: wut, femstate can only make dresses and cake decorations, nothing substantial ever ? SHOCKER!!! [16:02]
BingoBoingo: Nah, the gave away the dressmaking tradition to Asia. All they got is the decorations for their boxmixed cakes [16:04]
mircea_popescu: in other news, ima close http://btcbase.org/log/2019-02-03#1892053 early feb project in failure, given that http://btcbase.org/log/2019-03-20#1903539 seems a dead end and i got pressing matters to apply her to.. [16:24]
a111: Logged on 2019-02-03 17:20 mircea_popescu: hanbot pick a laptop, bake the man's cuntoo. (principal issue, that gentoo->cuntoo "bridge", see if his sig matches). [16:24]
a111: Logged on 2019-03-20 01:38 hanbot: btw trinque anything grab you re the patchlessness/lack of portage dir in http://thewhet.net/2019/03/hanbots-cuntoo-bake-test-notes-part-iv/ ? [16:24]
mircea_popescu: BingoBoingo, feel free to repo the machine involved. [16:24]
BingoBoingo: Aite [16:25]
mircea_popescu: meanwhile in top keks : http://www.coenbrothers.net/ (transparent "blog network" for https://top10cryptorobots.com/ which exactly as you imagine...) [16:44]
feedbot: http://bimbo.club/2019/03/reviewing-reviews/ << Bimbo.Club -- Reviewing reviews [17:16]
lobbes: http://btcbase.org/log/2019-03-10#1901346 << I can also confirm: I made this change, mounted my cuntoo usb to the build directory and reran ./scripts/make_portage_tree.sh. Sig verified on the resulting genesis [19:23]
a111: Logged on 2019-03-10 23:28 trinque: bvt: diana_coman: I wager that if you change line 14 of scripts/make_portage_tree.sh to the following, my sig will verify on the resulting genesis.vpatch : dest=$pdir/profiles/${src#$bdir/usr/portage/profiles/} [19:23]
hanbot: ok, so i'm encountering the strangest problem with v. here it is: [21:34]
hanbot: 1. if i try to press the current head of mp-wp (ie, including the patches, either as reconstructed from our blogs or as maintained on btcbase), it dies with a hash mismatch [21:34]
hanbot: (specifically : File: */mp-wp/wp-admin/custom-header.php Expected: 3e4322c7d8f1757f883a9f11abec332b8c952d7b050c801e4ba60e72853509f0603e0ea63b093dacf4ca158fe309043984900efa5ea0348c2d1cd9d0eb46388f Actual: 05f567bca8d936ec36e315dd8b667a8654fbcb256758165986810db3f5402d3a9fdf1d3d4bc00de626d627d7e997da9ee08e5261127a216199ce8ff661a4c600 ) [21:34]
hanbot: 2. the file itself is found on my very hard drive, untouched since i made this thing last year. a ~new~ genesis, which i just made, on the basis of those exact original files, displays the same exact problem. [21:35]
hanbot: 3. the actual hash of the file, as computed now, matches the actual reported. the signed vpatch, as it exists, contains the expected as listed. [21:35]
hanbot: 4. all other files in that bundle pass just fine. [21:35]
hanbot: 5. i specifically checked, sieving the file through tr -dc '\0-\177' produces the exact same object unchanged, so i don't think it's utf shenanigans. [21:35]
hanbot: 6. what's incomparably worse : | tr '\n' '\r' will transform the file as it correctly stands into a file that matches the "expected" hash. [21:35]
hanbot: basically it looks like the one file got mangled (possibly via bad upload/download). can anyone else confirm whether either a) they can actually press the god damned thing or b) they have/have not the mangled file ? [21:35]
hanbot: this is pretty much what v exists to prevent, but it seems wp managed to stick one in! billymg did you manage to actually press the genesis? how did you do it? diana_coman, you said you pressed it too? not ran into the issue? anyone else? [21:36]
danielpbarron: i pressed the genesis just the other day, and it worked from what i can tell [21:44]
mircea_popescu: sounds like some implicit lf/nl conversions, the loveliest thing in nature. [22:53]
mircea_popescu: hanbot, the file is correct. the expected hash (3e43*) matches the keccak hash of that file the actual hash (05f5*) matches the sha hash of that file. you are for some reason using a sha v for this ? [23:03]
Category: Logs
Comments feed : RSS 2.0. Leave your own comment below, or send a trackback.
Add your cents! »
    If this is your first comment, it will wait to be approved. This usually takes a few hours. Subsequent comments are not delayed.