Viewing profile — _paulc
_paulc
HN member- Joined
- Sun, Nov 10, 2013, 6:05 PM UTC
- HN karma
- 206
- Public activity
- 73 items
- HN profile
- View on Hacker News ↗
About _paulc
No profile information was provided.
Recent public activity
-
comment
Comment #49104478
I’d completely agree - the transition to and instability of esp-hal has been a complete nightmare and I’ve also given up on trying to keep up with this. I have transitioned to usin…
-
comment
Comment #47388395
Slightly strangely I did see that the .h export does contain temp / press registers (but not the trimming params) but they dont show up in the interactive display: https://passthea…
-
comment
Comment #47388033
It shows the 0xD0, 0xD0, 0xF3, 0xF4, 0xF5 registers but misses 0xF7-F9 (pressure) and 0xFA-FC (temp) - which are the actual measurement registers - plus all the trimming parameters…
-
comment
Comment #47378594
This would be a good idea of it was reliable however browsing the parsed data for the BMP280 [1] (which in familiar with because I’ve written a driver for this) it looks like it mi…
-
comment
Comment #45140846
If you need GPIO support on a mini-PC you can just use a cheap FT232H breakout [1] with either PyFTDI [2], which supports pretty much all the protocols you need (UART/GPIO/SPI/I2C)…
-
comment
Comment #43600333
> FreeBSD has committed the original sin of UNIX by deliberately dropping support for all non-Intel architectures, intending to focus on optimising FreeBSD for the Intel ISA and pl…
-
comment
Comment #43491265
It looks like it is a Direct Conversion (Zero IF) rather than a Direct Sampling Receiver [0] - ie. it uses does a quadrature LO to down convert to baseband I/Q (in this case a Tayl…
-
comment
Comment #41705345
As a long term FreeBSD user (since 2.0) and advocate, my view is that FreeBSD should focus on its niche as a rock-solid server operating system. For most developers buying a MacBoo…
-
comment
Comment #38360079
If you want to automate FreeBSD deployments on Hetzner Cloud you can try: https://github.com/paulc/hcloud-freebsd (Allows you to provision instances using either the hcloud utility…
-
comment
Comment #32508981
That's really useful (I was trying to work out how to do this without using a custom image) but I would just note that there actually is a FreeBSD 13.1 image available under Images…
-
comment
Comment #31210897
If you want a simple lightweight symmetric crypt CLI utility try ccrypt: http://ccrypt.sourceforge.net/
-
comment
Comment #31056147
The Colossus tape reader could read at c.5000 cps (with the tape running at 27mph [1]) - which is 2.5 x faster (and 20 years before). Worth seeing the replica Colossus at Bletchley…
-
comment
Comment #30665497
Keep trying apparatchik - we’re not all as weak and stupid as you think.
-
comment
Comment #30664878
6 day old account that has only posted Russian talking points - hmmmm
-
comment
Comment #30171758
Simple python version which does a bit more validation (checks response matches query) and also supports CNAMEs and different record types (37 lines - using dnslib library) - thoug…
-
comment
Comment #29814721
dnslib author here - wasn’t expecting to see this so thanks for the reference. Key thing I learnt writing dnslib (which was originally to provide a DNS API for an application) is t…
-
comment
Comment #26232307
If you are looking for an authoritative DNS server with a sane API try KnotDNS [1]. Really easy to automate dynamic updates using `knotc` [2] without worrying about manually updati…
-
comment
Comment #24972100
The more surprising point was the disparity in staffing levels which multiplies the cost differences: “For example, in New York, the number of workers at the face of the tunnel can…
-
comment
Comment #22854311
I've been a FreeBSD user since 2.05 (1995) and a strong supporter - FreeBSD still excels as an ultra-stable 'old-school' UNIX server OS (which to be honest meets a lot of use-cases…
-
comment
Comment #22102639
To be honest it’s probably not worth running FreeBSD on a laptop/desktop - it’s really a server operating system. If you are looking for a well engineered, stable, ‘traditional’ UN…
-
comment
Comment #21957476
As it's not on Drew's list: Nim: $ cat hello.nim stdout.write("hello, world!\n") Static (musl): $ nim --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --passL:-static c -d:release hello…
-
comment
Comment #21900317
This looks really good, I've used ccrypt (#1) for years as a simple Unix-y encryption tool to avoid the complexity of GPG (though this is symmetric encryption only so you need to h…
-
comment
Comment #20068470
Also see the 32blit by Pimoroni: https://www.kickstarter.com/projects/pimoroni/32blit-retro-i...
-
comment
Comment #16405211
> I couldn’t get networking working Try using the e1000 network adapter emulation - Win10/Server 2016 work fine with this.
-
comment
Comment #16146621
Actually this is pretty simple if you use ConfigParser properly: # test.ini [host1] ip = 1.2.3.4 [host2] ip = 5.6.7.8 [host3] ip = 9.10.11.12 # config.py import configparser c = co…