Now a refresh won't drop off people at journals list page, instead it will show prompt to enter passphrase and will let them in after successful verification
We're adding support for AGENTS.md to Claude Code.
Starting today in version 2.1.277, if there is no CLAUDE.md in a folder, Claude will check for and use AGENTS.md.
You can toggle this behavior in /config.
Now a refresh won't drop off people at journals list page, instead it will show prompt to enter passphrase and will let them in after successful verification
I was thinking of using sqlite instead of postgres for this app, but dropped this idea because I already have production grade postgres server running for my other self-hosted projects, so better use that. People who are into self-hosting will also have the same setup. So less friction.
I was thinking of using sqlite instead of postgres for this app, but dropped this idea because I already have production grade postgres server running for my other self-hosted projects, so better use that. People who are into self-hosting will also have the same setup. So less friction.
My father is hospitalized at Fortis Hospital with a brain hemorrhage, and @CareInsuranceIN has been delaying his claim day after day for 5 DAYS, impacting his timely treatment.
At such an unimaginably painful time for our family, having health insurance that puts us throughβ¦
Asked Cursor to generate user related handlers (apis) for login, logout, etc. This is where LLMs create blunder, they over-complicate stuff and ignore best practices.
- it created a macro to get list of user columns
- abstracted out queries into const instead of just writing them in-place, they were used only once
- it didn't use type checked version on query macro
Asked Cursor to generate user related handlers (apis) for login, logout, etc. This is where LLMs create blunder, they over-complicate stuff and ignore best practices.
- it created a macro to get list of user columns
- abstracted out queries into const instead of just writing them in-place, they were used only once
- it didn't use type checked version on query macro
made some changes:
- even shelf name and entry is encrypted
- removed tags from entry
- added constraint on max size ofentry title and content
- size of the each entry is calculated on each insert and update
I'm building an end-to-end encrypted journal/notes app. Which would be completely secure since it can only be decrypted on the client side and that key will not be stored in the database at all.
I had subscribed to Cursor's $20 subscription, which is going to end on 17th Sept. But I've only used about 19% of it and I don't like to waste money, so I'm going to build a personal project for my personal need.
Server will be holding encrypted data encryption key, which will be encrypted using user's key derived from set password. So backend will also store password salt so that we can consistently generate the same key on the client side. This will take care of Multi-device issue.
If user forgets the password for workspace then it would be impossible to recover.