HackerTrans
TopNewTrendsCommentsPastAskShowJobs

asimpson

no profile record

Submissions

[untitled]

1 points·by asimpson·3 เดือนที่ผ่านมา·0 comments

New Evidence on the Impacts of Birth Order (2017)

nber.org
2 points·by asimpson·4 ปีที่แล้ว·0 comments

comments

asimpson
·13 วันที่ผ่านมา·discuss
> The gov can use it's buying power to sway things towards Intel, for example, over AMD

Pretty sure that's the goal: the government wants a competent cutting edge chip maker on US soil.
asimpson
·13 วันที่ผ่านมา·discuss
The investments listed here in the article make this seem like an effort to shore up or incentivize industries or companies that are integral to national defense. One example, in the ongoing US-China trade war one of the strongest moves China did was put [export controls on rare earth minerals][1] which are essential components across technology, defense, and healthcare to name a few. The government investing in these companies isn't ideal from a free enterprise perspective but seems rational from a national security perspective.

[1]: https://en.wikipedia.org/wiki/Rare_earths_trade_dispute
asimpson
·3 เดือนที่ผ่านมา·discuss
…you have bigger problems
asimpson
·8 เดือนที่ผ่านมา·discuss
I've used a HP EliteDesk 800 G4 SFF (with an i5-8500) as a NAS/home server for several years now. It's quiet, power efficient, has space for 2 HDDs plus additional nvme slots and regular PCI-e slots. These type of machines are cheap to get on eBay, I highly recommend getting one.
asimpson
·ปีที่แล้ว·discuss
I wonder if there would be a perf increase on the Mac minis if they ran OrbStack instead of Docker?
asimpson
·2 ปีที่แล้ว·discuss
You can achieve something similar using vlc + slop on Linux, here's the script I usually use (I run i3 typically).

    selection=$(slop -f %w,%h,%x,%y)
    width=$(echo "${selection}" | cut -d , -f 1)
    height=$(echo "${selection}" | cut -d , -f 2)
    top=$(echo "${selection}" | cut -d , -f 4)
    left=$(echo "${selection}" | cut -d , -f 3)

    cvlc --no-video-deco --no-embedded-video --screen-fps=20 --screen-top=$top --screen-left=$left --screen-width=$width --screen-height=$height screen:// &
Then "just" share the VLC window instead of your desktop.
asimpson
·2 ปีที่แล้ว·discuss
Important caveat: "Apple MacBook Pro with Intel chip was used in tests that met all requirements specified in this section". What I really want to see is performance evaluations between current generation x86 Linux, x86 Windows, and ARM macOS.
asimpson
·3 ปีที่แล้ว·discuss
My experience as well. While I’d love a proper go to source approach, chatGPT nails most of the issues I run into with SwiftUI.
asimpson
·4 ปีที่แล้ว·discuss
Ah yes, this footgun. Sometime last year I discovered our QA databases had all been locked with a ransom demand, how were they exposed? We had `ufw` blocking the db port?! Ah yes, Docker -p. smh.
asimpson
·4 ปีที่แล้ว·discuss
Fly.io is really good.
asimpson
·4 ปีที่แล้ว·discuss
I've been working on a small Go program to do this specifically for the lofi hip hop beats youtube stream (file here: https://git.sr.ht/~asimpson/lofibar/tree/exec-ffmpeg/item/ma...). You can pretty easily parse the Youtube page to get the HLS stream and pass that to ffmpeg. No need to even have the overhead of another browser tab then.

P.S. also if anyone knows how to statically compile ffmpeg or libvlc into go I'd love to know :)