jhvh1: BingoBoingo: (ticker [--bid|--ask|--last|--high|--low|--avg|--vol] [--currency XXX] [--market <market>|all]) -- Return pretty-printed ticker. Default market is Bitfinex. If one of the result options is given, returns only that numeric result (useful for nesting in calculations). If '--currency XXX' option is given, returns ticker for that three-letter currency code. It is up to you to make sure the code is a valid (1 more message)
jhvh1: BingoBoingo: Bitstamp BTCUSD last: 17749.96, vol: 28774.19176956 | Bitfinex BTCUSD last: 17491.0, vol: 82001.32135277 | Kraken BTCUSD last: 17670.0, vol: 5915.74651062 | Volume-weighted last average: 17563.9299123
BingoBoingo: First they make mantadory annoyance broadcast in old country when children go missing, now: "The FCC recently announced a new alert program called "Blue Alert" that will notify the public of threats to law enforcement in real time. "With the creation of a dedicated Blue Alert event code in the Emergency Alert System, state and local law enforcement will have the capability to push immediate warnings out to the public via broadcast,
BingoBoingo: cable, and satellite providers, as well as to consumer smartphones through the Wireless Emergency Alert system," reports Android Police. From the report"
diana_coman: for the very impatient: caller fails on the cases where it uses that broken macro i.e. any shift by a multiple of BITS_PER_MPI_LIMB; 0 is just one case, not the only one; further up, caller avoids the issue, as stated
mod6: nice work diana_coman
diana_coman: thing is now I'm even *less* comfortable using that whole mpi thing... makes me wonder what else is in there and not yet spotted
diana_coman: asciilifeform, myeah, I suspect it's still widely used in fact; if I get any time I'll take a peak at latest I suppose
diana_coman: in other words a whole new set of worms, veryverynice
diana_coman: so I just did a quick curl for latest gpg, 2.2.4; at least in name ~everything is changed ofc, but it's a load of lol to do a plain grep -r "workaround" .
mircea_popescu: "mp, why isn't your infinite world update, announced LAST YEAR, live yet ?!?!" "because ints don't work on computers. also because merely rewriting the crypto layer ain't fucking enough. and also because FUCK YOUR UGLY ASS MOTHER AND THE IDIOT DRUNKS SHE KEEPS FUCKING, FUCKO!"
trinque: hm cool. I'll remove it and see if I can do same, 6 -> 4
danielpbarron: who is saying that about eulora? i'm not in any rush. whenever there is a drastic change it makes me more nervous than excited, because now I gotta re-figure everything out again
mircea_popescu: i just get pissy when my brilliant ideas can't be implemented like, the next day.
mircea_popescu: but look on the bright side danielpbarron : if that process ain't making you a scientist, nothing will.
diana_coman: heh, in good old traditions of a long-gone world and age, eulorans are rather suspicious of change and they aren't old even!!
mircea_popescu: funny how the "days gone by" immediately reconstruct themselves just as soon as one ditches the rotten principles preventing them.
BingoBoingo: Gracias. Ought to be a valuable cultural immersion experience.
jhvh1: BingoBoingo: Bitstamp BTCUSD last: 16607.0, vol: 32318.56936603 | Bitfinex BTCUSD last: 16573.0, vol: 84487.14105495 | Kraken BTCUSD last: 16226.4, vol: 6052.27874841 | Volume-weighted last average: 16564.8695686
phf: that explains why when i tried building it it was chasing compatibility bugs down a rabbit hole
phf: "then told me that I had to abandon my cleanup work and start over on his tree, and explain everything to his satisfaction (as a Windows guy) before it could go in"
mircea_popescu: is this like... V before V, ie, all-the-disadvantages-and-no-more ?
phf: But these days, my complaint is that I have no confidence whatsoever in
phf: tinycc's maintainership. It has the tinycc.org domain, and Fabrice
phf: handed over the project, so it is the official final resting place of
phf: tcc. But it's still stagnant, because Fabrice put a Windows developer
phf: in charge of the project, one who apparently does not understand open
phf: source development in the slightest. He's putting out a windows-only
phf: version of tcc as far as I can tell, one which will never build an
phf: unmodified Linux kernel (has made zero progress on this front in the
phf: past _THREE_YEARS_), thus it cannot ever act as (even an infereior) gcc
phf: i think he doesn't like that they keep poaching his changes back into official cvs
a111: Logged on 2017-12-20 03:29 asciilifeform: .... Failed to emerge sys-process/procps-3.3.12-r1
ben_vulpes: shinohai: megalol at insider trading of altcoins
phf: looking at their commit history there's a lot of "utf8 support in ..." and "nls ..." which is probably the proverbial fleas bringing dog
trinque: nls, utf8, ipv6 support, all "lets bolt gendercommits to the side"
phf: asciilifeform: you know after staring at a lot of bad c code and last two days worth of conversations, i don't think there's much wrong with sbcl, but then i haven't looked at sbcl code in about a year at this point. i think i was mostly objecting to overall trajectory of lisp ecosystem
phf: but specifically it was small annoyances with "modern" enforcements. like style warnings, or my personal pet peeve, the fact that you can't shadow locked packages without having to unlock
phf: the awfully pedantic defconstant behavior (which sbcl specific, and which requires packages like alexandria to have asinine define-constant, which for all practical purposes is what defconstant is supposed to be)
phf: the fact that character type is not dynamic (which to be fair is the property of all free lisps for some reason), so if you're dealing with text, you're forced into 32byte per character nonsense
phf: the fact that macro evaluator inlines both compiled and non-compiled macros, which means that you have to manual track macro dependency and tediously reevaluate even when working in an interactive environment
phf: i think naggum has a rant about the last one
phf: none of these are properties of sbcl past certain vintage though though, sbcl is already a modernization of common lisp
phf: cmucl fwiw was designed like a lisp machine (though it had damage done to it by modernizers already), where the evaluator + vops was you primary interaction mode, and compilation was a way to evaluate a piece of code to a vop like status
phf: and vops in turn were an equivalent of a lisp machine microcode
a111: Logged on 2017-01-19 17:38 asciilifeform: also (and iirc i discussed this on my www at one point) the correct approach is to ditch the native compiler, in favour of the interpreter, hand-compiled to fit in L0 cache
phf: you're not going to even approach a performance of a compiled sbcl. at best you would do is non-jited lua
a111: Logged on 2017-12-20 18:27 phf: the fact that character type is not dynamic (which to be fair is the property of all free lisps for some reason), so if you're dealing with text, you're forced into 32byte per character nonsense
phf: you kind of have to these days yes
trinque: I dunno why orcograms aren't done the same way as image formats. doesn't need to be built into the OS.
phf: that's a very broad statement
trinque: then the kids can run wild with their UTF128s and nobody has to care
phf: trinque: ccl used to do it that way actually, interested parties might want to poach that code. they call the concept Rune and it's basically a way to support orcograms in a 8bit lisp
trinque: you'll have to justify why those need orcograms
trinque: literature sure, code? ui?
trinque: "neener, worked for the romans" ?
trinque: ah we're talking about linked-list strings then?
trinque: I wasn't, so I'll let you continue on that
phf: maybe he's talking about pascal strings, it's hard to say at this point
trinque: ah, my point was that the roman alphabet is sufficient for one of the most expressive languages to exist, so arguments that orcograms are needed would need to explain that.
a111: Logged on 2017-12-20 18:29 phf: the fact that macro evaluator inlines both compiled and non-compiled macros, which means that you have to manual track macro dependency and tediously reevaluate even when working in an interactive environment
mircea_popescu: what do you do, vrite yourself vbasic macros to do it like goldman sachs gausscopulators ?
phf: naggum has a rant about it specifically
phf: heh, while looking for that rant "I have designed and implemented one for my own needs, but I find the number of disgusting losers who would benefit from it if I published my code to be too high."
a111: Logged on 2017-12-20 19:00 trinque: I dunno why orcograms aren't done the same way as image formats. doesn't need to be built into the OS.
a111: Logged on 2017-12-20 19:00 trinque: then the kids can run wild with their UTF128s and nobody has to care
mircea_popescu: she can't read it nor is she intended to read it. find/beg/pay someone to get it back to smileys state first.
mircea_popescu: inferiority of inferior must be baked into every single UNIT of everything around them
mircea_popescu: if i was in charge of "human services" all govt housing would have on all walls "you are here ; because you suck."
phf: source reading can be a preprocessor stage (which is a lot saner to do in common lisp than elsewhere), this is also how traditional tex handles orclangs, before xetex and luatex and such. special ascii sequences to represent local lang glyphs and if you don't want to write those by hand, you use (or write) a tool that takes a local encoded document and translates it into ascii
phf: fwiw bulk of these tools have been written through the 90s and what was worthwhile from orcland was published that way then. until silent takeover by latex & 1.8gb tex installations happened and none of these tricks work anymore (because the necessary hooks are so deep within the layer of cruft it's near impossible to get to them, and one way they did it is through standard file system lay out, that requires a chain of compilation stages to move files
phf: from location A to location B to location C where they are expected)
phf: there's two sbcl apologists further in thread, one of them saying "I don't mind provocative /per se/, but what you were saying gives the a| impression that SBCL is willfully bad, as opposed to in development. But lumping it in with willfully noncompliant systems for this reason, | given it's version number, is inappropriate." and the other one is a core dev saying that they might add it. of course the expected behavior is still not there
phf: even though i hear that sbcl now has a evaluator added back?
phf: yeah, bill newman had to rip it out when he was doing the original bootstrapping work
mircea_popescu: btw that picture of matthew green is so ridoinculous...
mircea_popescu: "but we were never able to find it or prove it existed." << we still never found the gnupg culprit ; and most interestingly to my knowledge NONE of the idiots with broken keys put a post on their blog, "here is the software that made it"
mircea_popescu: though ALL SORTS of rank imbeciles, such as that "pirate party" fucktard, had complaints of the proofy proof flavour.
phf: i mean guy says so himself "Specifically, you never really get absolute proof. There’s always some innocent or coincidental explanation that could sort of fit the evidence — maybe it was all a stupid mistake."
mircea_popescu: if you don't own it, who the fuck does ? daytime tv starlets ? fat brown women behind fast food counter ? who ?
mircea_popescu: and no, "everyone" is not a fucking answer. state exists to enforce priviledge against the mass. whose.
BingoBoingo: mircea_popescu: Ah, there's a few of them scattered around my Barrio, but few and usually at least dos quadras off la avenida 26 de de Marzo
BingoBoingo: On la avenida, such a building would have been kept its bones and been given a new facade because gotta sell vacation homes. 2 blocks away? What tourist would go there?
BingoBoingo: Outside of tourist and mega business areas the trend seems to polished interiors while letting exeteriors do as they do.
BingoBoingo: In a bit under an hour, I visit la ciudad vieja for the first time and there spanish test
phf: mp is quite dangerous with them bash scripts
phf: i think a proper cuntoo doesn't even need x11, bash scripts, lynx and framebuffer to render images if need be
phf: eh it's all irrelevant to substance anyway, since bulk of computer activity amongst programmers is, to badly quote logs from memory, getting everything ready to meet girls by doing some misplacing activity somewhere where girls will never be
phf: that is to say, that mp machine can really be anything, and it'll be used directly, rest of us will spend next year fucking around with dlls
ben_vulpes: i had to laugh last night; someone at the table wanted to stake out the position that "people with downs syndrome aren't defective. you can't have defective humans!"
mircea_popescu: asciilifeform you're missing the point. perhaps the reason YOU didn't think about it before is that YOU are malicious ?
mircea_popescu: would make a pretty great sf/steampunk/altsovietrealism item
ben_vulpes: a few short seconds later the same person practically pulled a 'halt and catch fire' when attempting to use a word that doesn't mean broken to describe f. ex. chromosomal abnormalities
ben_vulpes: not even use, but locked up trying to find
ben_vulpes: it's wildly entertaining watching people thrash in their own contradictions
ben_vulpes: "humans can't be defective!" "well what do you call it when they're missing a chromosome, eh?"
ben_vulpes: the real fun is in asking "what word do you want me to use instead?" and then using it in such a way that all the partizans wince, knowing that word means The Bad Thing now.
ben_vulpes: in other top notch lolz, the redhat "totp" ios "app" does not provide for backing up the shared seeds.
ben_vulpes: asciilifeform: yr defectively steeped in security theater
ben_vulpes: here i was, thinking that a redhat product would have features like 'backup'
ben_vulpes: im astonished this idiocy made it past the enterprise sales people; 'IT will want to know how to back these codes up'
ben_vulpes: or 'IT will want to know how to upgrade users devices without revoking every key and leaving accounts 'unsecured' during the TOTP rotation"
phf: ben_vulpes: before i finally gave up my ios, i was using pythonista for almost everything, including totp. there's some python totp implementation that i lifted from somewhere, that can be easily ported. i gave up writing a barcode recognizer, though it's not a particularly daunting task with numpy
ben_vulpes: i guess this is new as of the lifted ban on interpreters and compilers?
phf: pythonista has been around for a while. it's literally the only useful application for the iphone
phf: both times i wrote anything on pythonista was when i was traveling without a computer, and i do it semi-recreationally. with automatic indentation and completion it's not particularly painful, if the goal is to get some interesting computations going, rather then you know "programming environment". it's more of a turtle kind of exercise
phf: one thing i wrote that i was really happy with is a very simple gps coordinates to atlas grid mapper. the thing would basically draw a rectangle with atlas grid number, like p34 A7 and inside the rectangle it'll draw a large red dot which roughly indicates where in the quadrant you are. i was using it extensively on a trip through alaska, because the toy catches gps readily, but naturally can't catch internet connection. so it was a kind of navigation
phf: would make for a lovely torrent dump
phf: because their maps are certainly shit for any kind of navigation that's not by road.
ben_vulpes: let's just continue with the apple idiocy: "try the new safari! fast, energy efficient, and with a beautiful new design."
ben_vulpes: probably tastes great with a dash of "selectively run js load from google.com, facebook.com after everything else because trackers are js dogs"
phf: major reason i gave up ios is because getting a working connection proxy requires a full blown vpn going
phf: jesus what the fuck is this
ben_vulpes: asciilifeform: hey, t9 implementations suck now too. no auto-updating dictionary, statistic-based wordguessing...
ben_vulpes: you're happier hammering each numpad up to three times for a single letter?
phf: ben_vulpes: t9's not bad, it has an auto-updating dictionary which i only use for names, because it also amuses me to write like i'm from a different planet.
ben_vulpes: pretty tragic that one even has the basis to ask 'how bad is the t9', given how well it worked two decades ago.
phf: "a face book? i do not poses a face book, i have many regular books though!"
ben_vulpes: i have developed an allergy to bending myself to fit my tools over the last four years; ios is one of the last bits of sand in me gears
phf: i recently threw out a perfectly working dual-sim nokia something or other, because i thought i lost the battery, but just yesterday i discovered that i had whole two batteries stored elsewhere.
a111: Logged on 2015-07-28 03:18 phf: asciilifeform: my point was that feature phones are not particularly good at their claimed purpose, that buying an old nokia is a hemingwriter, and compared to them iphone has a good sound quality.
phf: unlike the nokia though this t139 sound quality doesn't suck, so i retract my previous statements!
deedbot: cblgh voiced for 30 minutes.
ben_vulpes: anyways cblgh logs are in channel title, if you're going to not wash out at least register a gpg key with deedbot
phf: you want to be ready for when "i don't have a smartphone" thing is in full swing in portland. you can be a full blown hipster avantguard
phf: haha, that's pretty cool, reminds me of transformers my parents brought me from amsterdam in the early 90s
ben_vulpes: a) don't live there or care too much about barista fashion anymore b) already lead that charge by toting the mp01 for a few months c) wake me up when "i don't have facebook" is actually popular
ben_vulpes: had display on the outside, could read texts without opening the thing. had google maps; internet over cell; a marvelous little device. great camera for the time as well.
ben_vulpes: actually just dug out some photos from that era, oh gracious me. macs with cameras were all the rage and boy howdy did we have fun taking photos of ourselves misbehaving.
ben_vulpes: unrelatedly, does anyone know how to beat a trb into coughing up the actual raw transaction it sent?
ben_vulpes: aside from dumping the mempool and parsing each?
phf: you mean any and all transactions, or just wallet transactions you generated?
mircea_popescu: anyway, in re smartphone, kids today have seriously diminished executive function, roughly speaking incapable of communicating in any manner other than arbitrary-app-reimplementing-irc
mircea_popescu: most of them are too anxious to actually answer a phonecall (too much pressure! i only talk to my parents!) ; most of them are actually unaware of the web as such.
mircea_popescu: in short, two thirds or so of the neet population would actually meet mongoloid criteria cca 1917.
mircea_popescu: neglect has destroyed a generation. when 50yos don't fuck 15yos culture takes a hike.
mircea_popescu: there;s relatively little to differentiate white teenager born 1990/2000s from african teenager born at any point. which i guess was the point, or something.
ben_vulpes: and cwallettx has the kooky IMPLEMENT_SERIALIZE so it should be possible to hex to stdout through the rpc machinery?
phf: yeah, it'll automagically serialize itself when you put it into stream (obviously not hex, but raw binary)
phf: that gettransaction code seems to do everything that you want, you could probably just have something like "dumptransaction <txid> <destination>" and then it'll write to destination (and bail if destination exists)
ben_vulpes: sure, could be reasonable to dump to <txid>.bin in my mind as well
phf: i think correct method would really be to get the transaction out as a binary array into shiva, and then have a transaction parser in shiva itself that'll break it down into a sexp or whatever
deedbot: BingoBoingo_ voiced for 30 minutes.
ben_vulpes: phf: well i'd like to get something out of trb that i can dump into a txrelayulator
shinohai: I got mine back mircea_popescu
a111: Logged on 2017-12-21 00:54 ben_vulpes: you're happier hammering each numpad up to three times for a single letter?
a111: Logged on 2017-12-21 01:38 mircea_popescu: there;s relatively little to differentiate white teenager born 1990/2000s from african teenager born at any point. which i guess was the point, or something.
a111: Logged on 2017-12-21 02:17 ben_vulpes: phf: well i'd like to get something out of trb that i can dump into a txrelayulator
a111: Logged on 2017-12-21 00:07 ben_vulpes: i had to laugh last night; someone at the table wanted to stake out the position that "people with downs syndrome aren't defective. you can't have defective humans!"
deedbot: Cerber248 voiced for 30 minutes.
Cerber248: ▄▄▄▄▄▄▄▄▄▄
https://beta.companieshouse.gov.uk/company/10308021/filing-history christel sold freenode to Private Internet Access Andrew Lee WHO ALSO OWNS SNOONET AND IS MOVING FREENODE TO THAT SERVER (NEXT MONTH) AND CLOSING DOWN OPEN SOURCE ROOMS PLEASE COMPLAIN IN CHAN FREENODEuexlrbx: webbyz pete_dushenski ave1 lobbesbot kjj asciilifeform adlai whaack shinohai jhvh1 mats mod6 tb0t Framedragger
shinohai: I guess the world needed a spambot for that
jhvh1: mircea_popescu: Bitstamp BTCUSD last: 16885.93, vol: 25794.54155397 | Bitfinex BTCUSD last: 16841.0, vol: 67097.14176572 | Kraken BTCUSD last: 16470.0, vol: 4690.64507853 | Volume-weighted last average: 16835.0431779
jhvh1: mircea_popescu: 20 / 16835.0431779 = 0.001187998141059404