I initially thought it to be the AI context already filled with previous rehearsal conversations. And it remembers that the ingredients are already prepped. In which case, they could just start another chat to start fresh.
HN user
reynaldi
meet.hn/city/id-Special-capital-Region-of-Jakarta
Socials: - x.com/reynaldicher - github.com/reynaldichernando
---
What's the use case? I mostly use Notion for writing notes
As someone not familiar with MCP, so the tool definition is just the request spec and resource definition is just the response?
Then I have the same question with the article, why do we need this standard? If it's just to let the LLM know to call the tool in JSON format
Ignoring the Spain block for a while, I wonder how/why these piracy sites use Cloudflare. Are they using something like R2 or Stream? This means someone still has to pay for it, right?
Not sure if my feedback can help.
As someone who don't know anything about SOC2, but still aware that if I want to signal 'data privacy' that I need to get it: I don't know what I'm supposed to do on your site.
Some sort of onboarding can help, like what are my steps from knowing nothing to actually getting the SOC2. Maybe some educational contents or resources can also help.
VS Code with GitHub Copilot works great, though they are usually a little late to add features compared to Cursor or Windsurf. I use the 'Edit' feature the most.
Windsurf I think has more features, but I find it slower compared to others.
Cursor is pretty fast, and I like how it automatically suggests completion even when moving my cursor to a line of code. (Unlike others where you need to 'trigger' it by typing a text first)
Honorable mention: Supermaven. It was the first and fastest AI autocomplete I used. But it's no longer updated since they were acquired by Cursor.
Currently building a CORS Proxy.
After working on it for a while, I noticed there’s a stigma around using CORS proxies, often associated with fetching undocumented APIs.
While that’s sometimes true, I’m hoping to change that perception, to show that they can also be used for accessing real APIs. It just requires the proxy to correctly handle credentials and secrets.
The idea is to open up more possibilities for building static-first apps without worrying about CORS.
So sad, I was looking at Fauna for a MongoDB alternative after they removed their serverless tier. But still I'm glad I didn't go with Fauna, especially after knowing they are shutting down.
I agree with this, but in my past online discussions about fetching publicly available information, two main arguments often arise:
1. The resource owner doesn’t want you fetching their resource.
2. They don’t want to suddenly be flooded with requests.
Each of these points has counterarguments. For example, the Same Origin Policy (SOP) only restricts fetches from the client side, and nothing stops people from fetching via a backend.
The second argument makes sense, the resource owner doesn’t want their resource to be freely fetched and to suddenly receive thousands of requests that their server likely can’t handle. SOP helps prevent this, but if you’re fetching from the backend, you should implement caching to avoid repeatedly hitting the target resource.
I created a CORS proxy [0] to handle this scenario, including caching responses.
There are also several free CORS proxies [1] available, they might be considered sketchy, but they’re probably fine for testing.
[1] https://gist.github.com/reynaldichernando/eab9c4e31e30677f17...
i think youtube allows you to blur some parts of your video
in case you don’t want to recreate the video
this looks amazing, can't wait to use it for my next articles
also nice job on the video demo, was it made using inscribed? :p
This is the way to go, you wouldn't want to use a CORS proxy for something authenticated/with credentials (e.g. API key). But for public unauthenticated request, they work just fine.
These services are called CORS proxies! I recently made an updated list of the currently working free ones here: https://gist.github.com/reynaldichernando/eab9c4e31e30677f17...
Do note that these proxies are for testing only, and they are heavily rate limited.
For production use case, you might consider using Corsfix (https://corsfix.com)
(I am affiliated with Corsfix)
Some impressive results
1.58-bit FLUX achieves a 7.7× reduction in model storage and more than a 5.1× reduction in inference memory usage
Happy New Year HN!
Interesting, I just now know about selective testing after reading this post. But, now I wonder when do you do selective testing and when do you just break up the codebase?
I’m interested to know if you let the LLMs automatically make posts and interact on their own, or do you only use the response and submit manually?
In addition to the ChatGPT’s search, the advanced voice model also supports web search, making it even easier to search.
Thanks for making it, I love the idea of more and more apps being built using web technologies. I currently use Caliber app (IOS), and it’s robust enough for me, while not too overwhelming and limiting as Strong and Hevy.
Since Minimal is a static website maybe it can be a PWA?
If you can think it, the Microbots can do it. The only limit is your imagination. Microbots!
Merry Christmas, Hacker News! Hope you’re staying cozy and enjoying time with loved ones.
Neat project, although prices are inaccurate for premium domains. I looked for sh.me, the options show like $7 price, but in reality it was $20k something on the domain registrar.
This is so cool! Although I'm not sure about my Total Commit stats, surely I've done a bit more than that.
Really cool! Now do it with colored text. :p
Very cool, I am surprised how it loaded so fast!
Awesome demo! Are you paying for the TURN server?
Thanks Herman, glad you enjoyed it! I agree with your suggestion, having the middle finger + thumb for tap and index finger for the movement will mitigate the cursor drift. The only reason I used index finger + thumb is so that it is like the Apple Vision Pro input. But definitely could be an improvement.
Unrelated, but shoutout to bearblog. My first blog was on bearblog, which made me start writing. Although I later ended up self-hosting my own blog.
Hi Jacob, thanks for checking it out. Regarding the calibration step for front facing mode, I'm glad you brought this up. I did think of this, because the distance from the camera/screen to the hand affect the movement so much (the part where the angle of the hand is part of the position calculation).
And you are absolutely right regarding its use for the correct scale. For my implementation, I actually just hardcoded the calibration values, based on where I want the boundaries for the Z axis. This value I got from the reading, so in a way it's like a manual calibration. :D But having calibration is definitely the right idea, I just didn't want to overcomplicate things at that time.
BTW, I am a happy user of Exponent, thanks for making it! I am doing some courses and also peer mocks for interview prep!
Hmm, I couldn't remember if I tried it without the text being written to stdout. But that's an interesting point, I just didn't expect the print() blocking to be significant.