Viewing profile — vsroy
vsroy
HN member- Joined
- Tue, Oct 08, 2019, 8:55 PM UTC
- HN karma
- 191
- Public activity
- 87 items
- HN profile
- View on Hacker News ↗
About vsroy
No profile information was provided.
Recent public activity
-
comment
Comment #46404078
The tele-op stuff is very interesting. Are there off the shelf SDKs for this type of thing or do you need to build it yourself?
-
comment
Comment #42487741
o1-pro understands JS proxies better than me tbh, so probably a positive acknowledgment.
-
comment
Comment #42487729
The API is basically the prompt LOL. I chucked in the API, and had o1-pro write tests + fix bugs until it worked.
-
comment
Comment #42487691
Yes that is exactly what it is! It's basically a very small upgrade over my favorite database: A JSON-file :)
-
comment
Comment #42487684
dang -- why was this flagged? Seems like a perfectly reasonable post.
-
comment
Comment #42487656
The implementation is very clearly included, if you... scrolled down. And the point is, you could easy do `const db = new Database("./database.sqlite")` instead. The wrapper makes …
-
comment
Comment #42487609
100% ;)
-
story
Show HN: NoSQL, but it's SQLite
Manipulate your SQLite database like a giant Javascript object. Built with o1.
-
story
Ask HN: Has anyone used Devin for web-dev?
I'm thinking of purchasing the Devin subscription, so I can give it screenshots of a web-app, and have it just implement the flows. But ... I don't know if it will be capable of do…
-
story
Ask HN: Is there an AI-agent I can run on my CLI?
I want to do things like tell an AI agent to "resize all videos in this folder to 480p", and just have it run the appropriate CLI commands. Are there any good tools that can do thi…
- story
-
comment
Comment #41781421
Follow-up question is: Isn't it extremely unlikely to output 0?
-
comment
Comment #41777898
Is the thing that's going on here that softmax can't push a value to 0, but by subtracting 2 softmax maps we can output 0s?
-
comment
Comment #37637443
Thanks for the help. After upgrading my instance, all the query times dropped dramatically. The thing is, I did not even upgrade the instance that much (micro -> medium). I'm guess…
-
story
Ask HN: How do I profile my Postgres database?
I am running a t3.micro instance -- and doing about 8 queries / second. Not many, but it seems like queries are consistently taking 1-10 seconds to respond, and as a result, the si…
-
comment
Comment #37614963
It seems like the modern solution is to use something like temporal.io -- (related to windmill). Alas, surely people have been solving this problem for ages now without temporal.io…
-
story
Ask HN: What is the correct way to deal with pipelines?
I have an application where once a job succeeds it needs to go through a series of steps, some are CPU intensive (ffmpeg, etc.), others require communicating with an external API t…
-
story
Ask HN: How do I write a good request-for-feedback email to my users?
I have a project with some users, and I'm trying to determine the root cause of churn. I've been sending the following email to my users to get feedback, but I'm not sure if it's a…
-
story
Ask HN: What is the simple way to ensure internal services stay up?
My server runs a core loop that must do an iteration at least once a minute. If it fails to do an iteration, I should be notified. What's the easiest way to do this? Seems like I c…
-
story
Ask HN: What is an error reporting service that does not have size limits?
I'm using Sentry right now, but the scopes field is limiting the size of the items we can provide. Is there some other logging service we can use that has less size limits?
-
story
Ask HN: What is an simple logging aggregator?
I'm running a NodeJS server that currently prints nice logs to the console using the `debug` package. As the server gets more busy, I would like to print my logs as pretty graphs (…
-
story
Ask HN: Has anyone else had trouble with Cloudflare R2?
Last ditch tech support question, but was wondering if anyone else has run into the following issue with R2: When transferring a moderate amount of files (~ 50+), the last file oft…
-
story
Ask HN: How does everyone keep track of user reactions to their LLM output?
For example: If you make a chat bot and let the user regenerate their responses; then there is an implicit preference ranking of the chatbot responses. Do any of you keep track of …
-
story
Ask HN: Good admin panels (read-only) for SQLite and Node.js?
I'm running a NextJS application with sqlite as the backend. Would be useful to have a dead simple admin panel where I can view all the data in the database. Ideally, I could just …
-
story
Ask HN: Realtime Subscriptions for SQLite?
For postgres, there are a variety of realtime options, including postgraphile or supabase's realtime. What about for sqlite? Does anything similar exist? (I want to get notified wh…