Taste test accompanying some material injexion yesterday revealed the following: slightly acidic, surprisingly bubbly, I'm bad at describing tastes.
Dug this absolute beaut of a motherboard out a scrap box yesterday and was about to call it some weird but affexionate term for a child but… the damned thing's *five years* older than me, going by the BIOS and PCIset??
Replying to @nabijaczleweli
"Slightly acidic"? It's downright goddamn sour, doubt I can salvage this run :v
Lessons learned: dunno, probably don't use 18% fruit wine yeast for mead? Definitely trying a brewery or, as suggested by Grandfather, bread yeast next!
Today is the day I finally deployed my first commercial website built entirely using the C Preprocessor, which I'm pretty sure, puts me on the wrong side of any culture war thereregarding :Р
Replying to @0x111a
Look, I'm a simple woman, proficient with CPP, and absolutely bloody *abhor* the usual webdev/NPM/Node/what-the-fuck-ever clusterfuck.
Also, I already do a CPP-based thing for most of my website (https://nabijaczleweli.xyz/content/gen-epub-book/programmer.html (see footer for source link)), so it was an obvious choice
Replying to @0x111a
Granted, this approach does include a lot more Archaic Things To Usually Avoid like GNU Make, and a good bit of AWK, but, really, what does it say about the current State Of Webdev that this is one of the few ways I can write a website ~efficiently without wanting to fucking die?
Replying to @tpigarelli
https://twitter.com/nabijaczleweli/status/1091886005098033152
Replying to @0x111a
oh, god, it is, it so much is..
Replying to @tpigarelli and @0x111a
Well, I'm still not up on my legally mandated six months, but in a short bit I will be yes
Replying to @0x111a
big beautiful birb !!
Replying to @nabijaczleweli
s i p ping apparatus: installed
protochildren [current status: m o i s t] fresh off the presses
In today's episode of Grandmother Keeps Giving Me Children And I Can Not Refuse Any Of Them Because They're All Too Good:
[leg for scale]
Replying to @nabijaczleweli
The one on the right still needs to be trans-planted (if you would) into a more size-appropriate pot but they were too good not to be posted right away
Replying to @nabijaczleweli
Another day, same cardboard box, and thereinfrom a "Dolch Computer Systems" branded ISA video card; freshest-dated 1994(!).
Replying to @0x111a
do they do hard-hat-boosters tho 🤔
Replying to @0x111a
damn you're right, hard hats are mere exoskulletons anyway
Replying to @0x111a
ah yes, the Bayonetta approach :Р
baked a cake at 3am, as one does, with the recipe stolen (and butchered) from a strictly superiourly executed-upon variant from https://twitter.com/0x111a/status/1091578041560678400
Replying to @nabijaczleweli
Plant: transed
Replying to @greenTetrah
how in the absolute evergreen mother of god-forsaken shit, though, like, actually how thick do you need to be ??
Replying to @6b766e
Working with Rocket was really pleasant, the Diesel (despite version migrations being a minor PITA) and Serde integrations, worked surprisingly well (with the usual version matching jankiness).
Iron's extensibility meant that even when it lacked a feature I needed[...]
Replying to @6b766e
[...]it was super easy to add it in, the fully manual request handling felt and was really powerful, at the cost of being pretty bare in-of itself (as opposed to Rocket's), but also had the tendency to evolve into a little bit of a spaghetti monolith if not explicitly supervised.
cloister (angry, menacing)
Maybe the most surprising thing about Apex Legends to me is just how well my CoD:UO skill transfers into it? Like, I was not expecting a 2019 game to handle so... familiarly, I guess? to the 2004 banger.
Replying to @nabijaczleweli
Like, I haven't played a "run around and shoot people in first-person" game whose handling felt so... at home? for /years/. Hell, even Overwatch still felt slightly foreign after those couple-hundred hours.
Replying to @nabijaczleweli
Maybe it's the live movement optimisation, maybe it's the gun logistics, maybe it's the lack of easyscopes, maybe it's the pings which funxion as a faux quickchat, maybe it's the weirdly similar semi-loose squadplay mechanics; maybe it's the way I relate to Wraith? Who knows.
Replying to @mcclure111
deadcaf
you, weak: sirens
me, actively transcending the material realm:
Replying to @nabijaczleweli
ṯ̤̺̬̙e̩̪͖̲s̜ṱ̦͈̭̱͝i̻n̸g̞̞̭̟̝̗
Replying to @nabijaczleweli
Attempt: 2
Time: 5am
Batter: also in hair, somehow?
Replying to @greenTetrah
How would you know how a breadloaf looked like, anyway? Weren't you American?
Replying to @greenTetrah
>good actual bread
>America
please, I beg of you
Replying to @nabijaczleweli
z o o p !
Replying to @nabijaczleweli
the collective awakens
Replying to @nabijaczleweli
first time I see a discrete double diode mounted like this
Replying to @nabijaczleweli
As the fire fades, only embers remain
Replying to @greenTetrah
One need embrace the void 'fore it embraces them
Replying to @panarin_misha
the two genders
child egg
soon™
Replying to @0x111a, @amazon and @AmazonHelp
I mean like ha ha Amazon's Choice: Abysmal Refurb Of An Abhorrent Assembly Of A Terrible Design – Get Yours Today! but actually holy shit what the actual fuck?? I'd have a moral quandary with giving this away as a yours-if-you-want-it piece while this is being actively /sold/?!?
Replying to @0x111a
A bonfire *and* fireworks? We're in luck today! (but also oh god oh fuck who let this happen aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa)
Replying to @bofh453
no one:
bofh: <multiple photos of Paris>
Replying to @nabijaczleweli
The rat's nest bandit strikes again!
The timestamp on this file indicates 6:53am, but this is the first time I've managed to use KiCad's PCB layout thing without quitting and it worked pretty alrightly for this weird perfboard so 10/10, really
Replying to @nabijaczleweli
holy shit these renders are *beautiful* tho
Replying to @The6P4C and @mcclure111
deviceName.emplace(name).first is decltype(deviceName)::iterator, and it derefs to decltype(deviceName)::value_type, i.e. std::pair<const string, vector<int>>, so the ->second is correct to get the vec
Replying to @mcclure111
What type is name here? I can't get even the top emplace to compile with neither string nor cchar*. name would need to be something that can be converted to a pair<const string, vector<int>>? If you want an empty vector you can try deviceName.emplace(name, vector<int>{}); maybe?
Replying to @mcclure111 and @i2at7v
emplace() perfect-forwards all the arguments you pass it to the constructor of value_type (pair<const string, vector<int>> in this case), and pair<> doesn't have a single-value constructor.
Replying to @mcclure111 and @i2at7v
If you're feeling frisky – pair<>'s piecewise constructor (6) has you covered.
Otherwise – I don't think so, apart from moving/forwarding a pre-constructed argument (like mm.emplace(k, vector<int>{1, 2, 3}), because the pair<> *is* unfortunately the type you're constructing, so
Replying to @mcclure111 and @i2at7v
you need to go through one of its constructors if you want to get a specific element into the value (.second) member.
Replying to @PttPrgrmmr
you should probably not do that then
Replying to @nabijaczleweli
Where the hell do these people get these things from? Today, in the 1PLN/pc. box: a 32µF cap that's probably like twice my age, a triode (burn marks, but who knows, looks cool, anyway), wide 40-pin IC marked ALTERA.
Replying to @nabijaczleweli
Metal casing is ⌀45 L51, labeled [translation]:
L-17.
Kond. elektrolit. [Electrol. cap.]
32µF 250/275V
Minus na obudowie [Negative on the casing]
0÷60°C
3.58. 30
The top pip is rubbery
Replying to @nabijaczleweli
The label on the vacuum tube says, after the ZWLE logo at the top:
UY1N
VIII-56
Which means that it's not a triode as I'd originally thought, but an indirectly heated(?) rectifier diode produced in Warsaw's Zakłady Wytwórcze Lamp Elektrycznych im. Róży Luksemburg in August 1956
Replying to @nabijaczleweli
The filament reads roughly 75Ω so I'm not quite sure what blew there actually?
Replying to @nabijaczleweli
According to some 1999(!) Altera datasheet (hosted under Intel, obv – https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/ds/archives/classic.pdf), the chip, labeled
ALTERA
EP910PC-35
4F19031
and on the back
6SA106211
KOREA
is some sort of a 450-gate FPGA, which is majorly cool? Too bad I can't make out shit from the sheet.