HackerTrans
TopNewTrendsCommentsPastAskShowJobs

42jd

no profile record

Submissions

Feds Notes – The Stable in Stablecoins

federalreserve.gov
1 points·by 42jd·قبل 4 سنوات·0 comments

Intel's Alder Lake BIOS Source Code Reportedly Leaked Online

tomshardware.com
25 points·by 42jd·قبل 4 سنوات·8 comments

U.S. Bureau of Labor Statistics – Consumer price index [pdf]

bls.gov
2 points·by 42jd·قبل 4 سنوات·0 comments

The Blockchain Revolution: Decoding Digital Currencies

stlouisfed.org
3 points·by 42jd·قبل 4 سنوات·0 comments

Peer-to-Peer Communication Across Network Address Translators

bford.info
7 points·by 42jd·قبل 4 سنوات·2 comments

In praise of the dollar bill

technologyreview.com
2 points·by 42jd·قبل 4 سنوات·0 comments

Caffeine, the king of local cache

programmer.ink
3 points·by 42jd·قبل 4 سنوات·0 comments

A guide to building a DNS server from scratch in Rust

github.com
12 points·by 42jd·قبل 4 سنوات·0 comments

Trade deals may encourage technology transfers

stlouisfed.org
1 points·by 42jd·قبل 4 سنوات·0 comments

Signing Git commits with your SSH key

calebhearth.com
3 points·by 42jd·قبل 4 سنوات·0 comments

NixOS configuration with flakes

jdisaacs.com
3 points·by 42jd·قبل 4 سنوات·0 comments

AI2 Macaw: multi-angle c(q)answering

macaw.apps.allenai.org
2 points·by 42jd·قبل 4 سنوات·1 comments

Draw with code – a sunset animation

solarpunk.cool
16 points·by 42jd·قبل 4 سنوات·0 comments

Family needs affect U.S. labor participation of prime-age Workers

stlouisfed.org
3 points·by 42jd·قبل 5 سنوات·1 comments

US Space Force solicits debris removal proposals from industry

payloadspace.com
3 points·by 42jd·قبل 5 سنوات·1 comments

Dagoba: an in-memory graph database

aosabook.org
2 points·by 42jd·قبل 5 سنوات·0 comments

The dynamics of international shipping costs

stlouisfed.org
1 points·by 42jd·قبل 5 سنوات·0 comments

Curlie: Human edited directory of the web

curlie.org
1 points·by 42jd·قبل 5 سنوات·0 comments

Scalability Prerequisites

1024cores.net
1 points·by 42jd·قبل 5 سنوات·0 comments

The fintech revolution in banking

stlouisfed.org
3 points·by 42jd·قبل 5 سنوات·0 comments

comments

42jd
·قبل 4 سنوات·discuss
Scratch was how I got started in programming back in elementary school. It was taught in our computer classes. Everything this article says is spot on, the social aspect is amazing. I made a few programs and got comments on it and stars which hooked me. Side note hearing griffpatch is still around amazes me, I remember playing his scratch programs and wishing I could eventually do that. What’s amazing is it’s all still around and runs![1]

1. https://scratch.mit.edu/users/miniman520/
42jd
·قبل 4 سنوات·discuss
The robotaxi’s draw will be its lower prices. They are removing the cost of a driver from the equation. Assuming the car felt as safe as a normal taxi, I’d take the cheaper one.
42jd
·قبل 4 سنوات·discuss
I’ve had this research paper on my reading list for a while (but haven’t gotten to reading the full thing)[1]. Not necessarily just a file system but It lays out an entire operating system backed by a database and OS state interactions are done through SQL.

1. https://vldb.org/pvldb/vol15/p21-skiadopoulos.pdf
42jd
·قبل 4 سنوات·discuss
I’m not sure how one could enable others to contribute easily but just making the code open source as is would be interesting. Those with a passing interest in search engines can browse the code of a capable engine and pick up some knowledge. While those who really want to help out will find a way to run it and contribute (in the process helping document and maybe making it easier).

My philosophy to open source is just do my personal projects in the open even if it’s not “accessible” and if someone comes along and likes it they can contribute or fork it and modify to their liking. Or they might just browse the code and pick up something in passing.
42jd
·قبل 4 سنوات·discuss
Ah that’s cool didn’t realize how old it was. The content seems to have held up well. Showed up in google when researching NAT and imo it’s up there with Tailscale’s article in terms of how well it’s written with the drawings.
42jd
·قبل 4 سنوات·discuss
Here are my two favorite (bookmarked) links for packaging and developing for rust. The trick is keep packaging and rust development separate and use specific dev environment flakes. So for dev work just bring cargo and rust as the nativeBuildInputs in mkShell (and any non rust dependencies) and then use standard cargo for development. But for packaging use one of the fancy tools. 1. https://srid.ca/rust-nix

2. https://discourse.nixos.org/t/cargo2nix-dramatically-simpler...
42jd
·قبل 4 سنوات·discuss
It’s a really commonly used among gen z. It’s used to mean it’s really good/one of the best. Eg these tacos are goated.
42jd
·قبل 4 سنوات·discuss
Wintergatan is doing a lot of live design/cad sessions the past few weeks on his “wintergatan live” channel which might be useful or interesting
42jd
·قبل 4 سنوات·discuss
Any password manager worth their salt has a white paper with their security design. Here is Bitwarden’s: https://bitwarden.com/images/resources/security-white-paper-...
42jd
·قبل 4 سنوات·discuss
I’m not sure I follow. Is your issue with Wayland that it’s not like x11 with a separate server and window manager? Someone can come along and write that in the future if that’s your preference.

As Wayland is just a protocol itself, the client doesn’t care how it’s implemented. Thus I see Wayland providing the extreme flexibility to implement its protocols how you see fit. Right now wlroots makes it easiest but if in a few years another implementation proves to be better, all those client programs aren’t going to stop working. For now the scene graph allows a whole bunch of compositors/window managers to be easily written that replace x11 ones. And better designs can be further iterated.
42jd
·قبل 4 سنوات·discuss
Seems the strategy is to eliminate as many numbers/operators before you attempt to guess. Was able to get it in 4 as by the second row I had the set of values to work with.
42jd
·قبل 4 سنوات·discuss
The missing compositor issue will change a lot I believe very soon. Wlroots[1] just recently landed their scene graph api which enables building wayland compositors with full damage tracking support without needing to touch some of the low level stuff like rendering and buffer management. For example I am currently working on my own wayland compositor and it is super easy to use. Really excited for the future! [1]: https://gitlab.freedesktop.org/wlroots/wlroots
42jd
·قبل 4 سنوات·discuss
I use bemenu (https://github.com/Cloudef/bemenu) as my replacement for dmenu.
42jd
·قبل 4 سنوات·discuss
I wrote a blog post on NixOS/home manager configurations with nix flakes. I make sure to link out to other resources for those who don’t have the whole background. See: https://jdisaacs.com/blog/nixos-config/
42jd
·قبل 4 سنوات·discuss
As a heads up they fixed the intel xe graphics sandboxing issue in firefox 96. See https://bugzilla.mozilla.org/show_bug.cgi?id=1698778 It works great on my Framework with NixOS. My about:config settings (taken from my home-manager):

graphics = { "media.ffmpeg.vaapi.enabled" = true; "media.rdd-ffmpeg.enabled" = true; "media.navigator.medidataencoder_vpx_enabled" = true; };
42jd
·قبل 4 سنوات·discuss
It's open sourced! The github repository: https://github.com/allenai/macaw
42jd
·قبل 4 سنوات·discuss
Highly recommend Fastmail. Fantastic server side search and web app (plus has calendar which is essential for an email app imo). There also is nothing holding you back from bringing your own mail client (that can actually interact with the server eg tagging). They also allow connecting to other accounts such as gmail letting you have a single inbox on Fastmail itself.

Favorite “hidden” feature is the ability to do sieve scripting which combined with wildcards and send from identities lets me auto sort emails by path. Eg [email protected]. Also the standard account comes with 100 domains and are real easy to setup.

Been using it for a year now and I haven’t had a single issue. Also the pricing is very reasonable.
42jd
·قبل 5 سنوات·discuss
> Our discussion here suggests that the reasons for the increase in nonparticipation are not strongly related to a weak economy or insufficient labor demand, but rather due to a change in individuals’ desire to supply labor in the market.

The most interesting tidbit from the article is that the data supports the very popular idea that people are withdrawing from the labor market as they just don’t want to work (for any reason eg low pay, hazardous conditions, etc)
42jd
·قبل 5 سنوات·discuss
I agree wholly with this. I only very recently started using RSS and almost every site/blog has one that produces quality content. For example the St. Louis Fed has a few high quality blog feeds and when I couldn’t find the RSS feed I sent them an email and lo and behold, there was an RSS feed to each one (just on a different page that I missed). It seems to be a rarity that good content feeds don’t have RSS.
42jd
·قبل 5 سنوات·discuss
I’m not on Ubuntu but using Wayland on nixos. Fractional scaling does not look or work well at all in my experience. I decided on 1.0 scaling and pushed it all over to font sizing (around 1.5). This works pretty well for most apps but it is a little small sometimes. The biggest issue is having to manually scale up some apps that don’t keep my preferences.