Relax, I only have one Sunday to work on idea, literally my weekend project. So I tried Deepseek to see if it can help. Surprisingly, it works and it saves me another weekend...
Just chat.deepseek.com (cost = free) with prompts adapted from this gist.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { data: accounts } = useDrizzleLive((db) => | |
db.query.accounts.findMany({ | |
limit: 100, | |
with: { | |
institution: true, | |
}, | |
}), | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { network, Encryption } from 'socket:network' | |
import process from 'socket:process' | |
import Buffer from 'socket:buffer' | |
import fs from 'socket:fs' | |
window.onload = async () => { | |
const peerId = await Encryption.createId() | |
const signingKeys = await Encryption.createKeyPair() | |
const clusterId = await Encryption.createClusterId('asdfasdfasdfasdfas') // change this! |
You can use it the same as you do with other yjs providers, but you have to pass it a socket which can be created with someting like this:
// set the peer id
const peerId = window.localStorage.getItem('peerId') ?? (await Encryption.createId())
window.localStorage.setItem('peerId', peerId)
// set the signing keys
const keySeed = window.localStorage.getItem('keySeed') ?? createId()
You can use it the same as you do with other yjs providers, but you have to pass it a socket which can be created with someting like this:
// set the peer id
const peerId = window.localStorage.getItem('peerId') ?? (await Encryption.createId())
window.localStorage.setItem('peerId', peerId)
// set the signing keys
const keySeed = window.localStorage.getItem('keySeed') ?? createId()
You can use it the same as you do with other yjs providers, but you have to pass it a socket which can be created with someting like this:
// set the peer id
const peerId = window.localStorage.getItem('peerId') ?? (await Encryption.createId())
window.localStorage.setItem('peerId', peerId)
// set the signing keys
const keySeed = window.localStorage.getItem('keySeed') ?? createId()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// Required Plugin: https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension | |
// settings.json | |
{ | |
// Remove left-side icons | |
"workbench.activityBar.location": "hidden", | |
// Remove bottom status bar | |
"workbench.statusBar.visible": false, | |
// Remove position indicator in the editor's scrollbar | |
"editor.hideCursorInOverviewRuler": true, |
How to make an application icon for macOS using
iconset
&iconutil
NewerOlder