Viewing profile — suchar
suchar
HN member- Joined
- Mon, Aug 23, 2021, 8:08 PM UTC
- HN karma
- 86
- Public activity
- 39 items
- HN profile
- View on Hacker News ↗
About suchar
No profile information was provided.
Recent public activity
-
comment
Comment #48146061
This is not privilege separation/sandboxing. Separate virtual machine for an agent with limited credentials is reasonably safe approach
-
comment
Comment #45766896
With remote development (vscode and remote extension in jetbrains with ssh to VM) performance is good with headless VM in UTM. Although it always (?) uses performance cores on Appl…
-
comment
Comment #45740040
In my case (although I have not yet flown with APP3) the ANC works great, however, transparency mode (and adaptive mode) have issue with a noise. In a silent room I hear quiet nois…
-
comment
Comment #43731431
They need to keep KV cache to avoid prompt reprocessing, so they would need to move it to ram/nvme during longer api calls to use gpu for another request
-
comment
Comment #42700480
Could you point to some functionalities removed from dbt Core? I love dbt and use it where applicable but I have not yet encountered a loss of features upon upgrade yet - it would …
-
comment
Comment #41526377
I would imagine that good IDE integration would summarise each module/file/function and feed high-level project overview (best case: with business project description provided by t…
-
comment
Comment #41457038
Sometimes you can avoid writing multiple queries with different filters by creating single parameterized query with conditions like: WHERE (name LIKE :name OR :name IS NULL) AND (c…
-
comment
Comment #41286314
For remote development there is Fleet from JetBrains which is still in preview but mostly works (year ago it had a lot of issues). Nonetheless, it still needs a lot of improvements…
-
comment
Comment #40429233
Tmux integration: tmux is running remotely in control mode and local iTerm2 is managing it. This way tmux panes and windows are mapped to native windows and iTerm2's split panes. M…
-
comment
Comment #38817288
Same here, but IMO, if company believes that such software is useful (and they wouldn't be using it if company believed otherwise), then why do they often (always?) include node_mo…
-
comment
Comment #38471672
I do not see license in either repository and it seems that this tool only has 30 day evaluation tier for free. Anyway, using this means that you have dependency on a single vendor…
-
comment
Comment #38463479
Some time ago I tried Retool and it does have "Query JSON with SQL": https://docs.retool.com/queries/guides/sql/query-json (it is somewhat relevant because it was extremely conveni…
-
comment
Comment #38463352
I'm not sure if there is any open source XSLT tool as complete as jq is for JSON. There is xsltproc but IIRC it does not support streaming scenarios (jq has some support for stream…
-
comment
Comment #37109765
For DigitalOcean (and several other providers) you can build your own image with provided configurations, e.g.: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/v... (see…
-
comment
Comment #36288575
From my personal experience, the first example doesn't really happen: thankfully I rarely see people randomly throwing annotations at methods/classes hoping one of them will stick.…
-
comment
Comment #36284331
The main issue with Java-based projects (possibly using Spring) is the amount of existing resources: there are thousands/millions of example projects, code snippets, answers on Sta…
-
comment
Comment #35816135
Yup, it's "funny" that even basic functionality doesn't work as expected: https://gitlab.com/gitlab-org/gitlab/-/issues/350662 I encounter this issue pretty often and it makes code…
-
comment
Comment #35677187
One major disadvantage of triggers is the inability to do canary deployments and vastly increased complexity of rolling deployments. When SQL code lives within the application, we …
-
comment
Comment #34558070
This is true for SSH key, but not for all data on MacOS, e.g. if you run `find ~/Library/Application Support/AddressBook` the OS will ask you if you want to give access to contacts…
-
comment
Comment #34166221
Major benefit of Airflow is the number of already implemented integrations. Importing data from GCS to BigQuery, copying data from Postgres to GCS, KubernetesPodOperator and so on.…
-
comment
Comment #34104830
I used Ansible in the past for the exact same purpose and it has one major flaw: Ansible is imperative. What I mean is: if I add a line in a config file and want to rollback then I…
-
comment
Comment #33440314
Readme says: https://marketplace.visualstudio.com/items?itemName=ms-vscod... > A compromised remote could use the VS Code Remote connection to execute code on your local machine. S…
-
comment
Comment #33440232
As long as your are creating web applications then browsers are pretty good at limiting blast radius of a single attacked website. Well, at least until attacker discovers that he c…
-
comment
Comment #33324270
It is not a zero-day if it has been fixed in a newer OS version. I would say, the main risk here are known vulnerabilities, like, bug in a system library which does image rendering…
-
comment
Comment #33244943
With crappy Internet connection you still can do remote development (it doesn't take much bandwidth, after all it's mostly text). But what if you need to download dependencies/dock…