Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
threePointFive
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
threePointFive
1y ago
My company just implemented the SaaS Bitwarden with Google SAML on their Enterprise Plan. Very easy to set up, not too expensive ($6/user/month). Their compliance page made it much easier to sell to my manager who had to give the
2.
▲
by
threePointFive
1y ago
While i think i know what you're getting at, for the sake of discussion, could you elaborate?
3.
▲
by
threePointFive
1y ago
Can someone comment on the cost of running agentic models? Not for a company but for an individual. I tried "vibe coding" a personal project I was struggling with and left even more frustrated because I kept running into token rat
4.
▲
by
threePointFive
1y ago
Moreutils has a great command `chronic` which is a wrapper command like `time` or `sudo`, ie. you just run `chronic <command>`. It'll supress stdout and stderr until the command exits at which point it will print only if the exit
5.
▲
by
threePointFive
1y ago
That's quite impressive by the standards I'm used to. Do you mind if I ask what scale you're operating at and what tools you use to manage the staged rollout?
6.
▲
by
threePointFive
2y ago
I've been super happy with Fedora since switching to it on desktop. Unfortunately I'm still biased to Debian for the server usecase. Fedora moves too quickly but RHEL (and derivatives) not supporting major version upgrades is pret
7.
▲
by
threePointFive
2y ago
My first question when reading this was how is it going to affect the `whois` CLI tool, which I use at least weekly for both IPs and Domains. I even started trying to find source code before getting pulled away. Luckily I had an excuse to u
8.
▲
by
threePointFive
2y ago
I wish that were true. Every enterprise I've seen has thrown their hands up and said "we already use microsoft for everything else (generally email, ad, or office) and teams is bundled why would we use anything else". So inst
9.
▲
by
threePointFive
2y ago
Does anyone have access to the full article? I'm curious what their alternative was. Terraform? Directly using cloud apis? VMs and Ansible?
10.
▲
by
threePointFive
2y ago
> Newlines are now forbidden in filenames No. To quote that article > A bunch of C functions are now encouraged to report EILSEQ if the last component of a pathname to a file they are to create contains a newline This, yes, makes newl
11.
▲
by
threePointFive
2y ago
I might be misunderstanding the ruling, but I believe if your play involves an infinite loop that cannot resolve, you tie the game. Combine that with the fact the game is Turing complete, and this makes it such that you could force a game s
12.
▲
by
threePointFive
2y ago
-O (for name based on end of the URL) or -J (for name based on the returned HTTP header)
13.
▲
by
threePointFive
2y ago
I had a similar issue trying to do a Windows reinstall on a Dell laptop. The cause was due to the default setup of Intel RST for the storage. The suggested fix was injecting the RST drivers into the Windows installer. I couldn't get th
14.
▲
by
threePointFive
2y ago
Jupyter and pytorch can be installed completely as python packages via pip thanks to the modern wheel distribution format. Because of that, I would generally not recommend using an external package manager for project dependencies. I prefer
15.
▲
by
threePointFive
2y ago
My biggest gripe with the ecosystem right now is complete lack of any consistency around language servers, which seems to come from the fact that many were written assuming they would only ever be a VSCode plugin (ie. typescript-language-se
16.
▲
by
threePointFive
2y ago
How does precedent about how commercial is interpeted here apply? If I use this to fire off a work email, is that commercial? Or does this only apply if I'm selling a product built around this?
17.
▲
by
threePointFive
2y ago
Nohup still attaches to the terminal's stdin/out/err. If the process is known to be non-interactive, redirecting to log files should be sufficient (tail -f to "reattach"). If it does expect interaction, creating a f
18.
▲
by
threePointFive
2y ago
I don't develop for Mac, so I'm probably missing something important here, but what is the point of code signing if the owner of the signing key isn't publicly verifiable? Is there not a chain-of-trust back to Apple that can
19.
▲
by
threePointFive
2y ago
Wasn't nano released after the CUA spec? Hardly seems correct calling these "modern" keybinds
20.
▲
by
threePointFive
2y ago
AppImage is a good distribution format, but IMO is not comparable to your system's package manager or Flatpak for that matter. For starters, when you downloads an AppImage, you are just getting the binary. Documentation, Desktop and Se
21.
▲
by
threePointFive
2y ago
Is this open source? I don't see a link anywhere. Would love to know the graph rendering works.
22.
▲
by
threePointFive
2y ago
Thanks for the summary. I've been using Meson + Nix, so the comments about using Nix as a build system have been confusing. I think what I've been seeing though are "use Nix instead of Bazel", not "use Nix as your b
23.
▲
by
threePointFive
2y ago
Work locks me into Outlook but god I wish I could just grep my inbox
24.
▲
by
threePointFive
2y ago
I'm still trying to understand why people recommend Nix in place of a build system. Nixpkgs stdlib by default expects an autotools project. It will happily integrate with other build systems, as long as you've spelled out your dep
25.
▲
by
threePointFive
2y ago
Annecdotally, from my dad who is a controls engineer programming PLCs for manufacturing equipment, the proprietary toolchains needed for the PLC control language runs better under Wine.
26.
▲
by
threePointFive
2y ago
"the DCHP server" implies it is somehow a special device on your network, which is a flawed assumption. DHCP works on an broadcast protocol and your device will accept the first offer. The fact that the most common residential con
27.
▲
by
threePointFive
2y ago
The gravity of ASP.NET, SQL Server, AD, etc. Is hard to break out of
28.
▲
by
threePointFive
2y ago
I like Go's approach to this same idea. The standard database/sql library provides the standard API and the individual database drivers implement their own backend. You can use the URI connection string for your database (ie. post
29.
▲
by
threePointFive
2y ago
I'm not familiar with Bazel, but Nix in it's current form wouldn't have solved this attack. First of all, the standard mkDerivation function calls the same configure; make; make install process that made this attack possible.
30.
▲
by
threePointFive
3y ago
You've been able to write custom formulas in VBA in Excel for a while now. The same functionality exists in Google Sheets with the much nicer macro language of JavaScript. https://developers.google.com/apps-script/
More ›