Viewing profile — jborean93
jborean93
HN member- Joined
- Tue, Sep 01, 2020, 10:21 PM UTC
- HN karma
- 174
- Public activity
- 94 items
- HN profile
- View on Hacker News ↗
About jborean93
No profile information was provided.
Recent public activity
-
comment
Comment #48942421
> Plain old reflection that just works (why should it not?) I definitely don't fully understand the landscape, so I could certainly be wrong, but I assumed that normal reflection d…
-
comment
Comment #48932919
It works through the new UnsafeAccessorAttribute [1]. This provides the information needed for AOT to know what needs to be in the final binary and not trimmed. It also removes the…
-
comment
Comment #48018110
This only works if credential guard has implemented a way to build a subsequent token/value from that secret. For things like basic auth the secret would need to eventually hit the…
-
comment
Comment #47830937
> *nix fanboys were totes fine with wget and ls being an aliases in PowerShell for years but when they found out what PS is coming to Linux they made a biggest stink The curl and w…
-
comment
Comment #47830929
The runas command doesn’t elevate just runs as another user. This is a console executable that drives UAC and also provides a way to capture the stdout/stderr elevated process whic…
-
comment
Comment #47725362
Looks like Microsoft is trying to stop internal products from using MSI in favour of MSIX packages. MSIX is nice for interactive applications but has a few issues with dealing with…
- story
-
comment
Comment #46849251
I don't mind NRT but I hate dealing with C# projects that haven't set Enable in their csproj. It's not perfect because I know at runtime it can still be nullable but it's nice when…
-
comment
Comment #46611581
They didn't just write the PEP, they implemented them.
-
comment
Comment #46607788
That's the thing, you don't have to :) While I think uv is a great tool and highly recommend it, you are more than welcome to use any of the other build backends or package managem…
-
comment
Comment #46606773
> They refused to invest in packaging to the extent that a separate company (astral) had to do it for them uv didn't just happen in a vacuum, there has been lots of investment in t…
-
comment
Comment #46593594
There shouldn't be any difference between those two values. I'm not saying you are wrong and it didn't break but it's definitely surprising a parser would choke on that vs YAML its…
-
comment
Comment #46549539
& has no special behaviour in strings, backticks and $ on the other hand do. For example "&Some String&" and '&Some String&' are all the literal value `&Some String&`. Backticks an…
-
comment
Comment #46308761
per-minute is really just a way to express the cost in a human friendly name. Doing per-hour, per-second, per-day could all result in the same total value just at a different numbe…
-
comment
Comment #46214316
Maybe to you, I enjoy the fact that > I don't knock it out of my head by having the wire catching on something > Dealing with the cable and having to pack it back up when I'm done …
-
comment
Comment #45998835
This seems a bit pedantic, while you may be correct (I honestly don't know what standard this is referring to) the UTF-8 BOM is a thing that some tools do know about. Even then in …
-
comment
Comment #45792661
That's the realm side which should be upper case. The comment reference was for hostname themselves which I've always just done as lower case and have never seen a reason to make i…
-
comment
Comment #45792652
The problem I have with using a gMSA outside of Windows is you need a Kerberos principal and credential for that principal in the first place to allow retrieving the gMSA details. …
-
comment
Comment #45381728
The subsystem in question would be the one to handle the logic for the syscall. So the POSIX subsystem would use the reparse data buffer as needed. It's just that the Win32 subsyst…
-
comment
Comment #45381466
No idea if the POSIX subsystem used NTFS or some other filesystem but if it was NTFS it probably just used the same reparse data buffer. It's just that Windows only added a symlink…
-
comment
Comment #45381097
It had junction points and hard links but symbolic links were added in Vista/Server 2008.
-
comment
Comment #45069949
> Core biggest feature is running on Linux There are so many features that .Net 5+ brings to the table. Even if features aren’t important the performance improvements you get with …
-
comment
Comment #43781152
They call them pico processes and have documented them quite well [1]. The pico processes has a userland and kernel component and is quite interesting from a technical perspective.…
-
comment
Comment #42238996
Yep it’s been great to see the sites that try and track me vs them just doing it without me knowing.
-
comment
Comment #41891463
This only works tor RSA keys and I believe ciphers that do not have forward secrecy. Quic is TLS 1.3 and all the ciphers in that protocol do forward secrecy so cannot be decrypted …