Oh nice! Can/will turbo help to manage the “references” in the tsconfig files like nx seems to do?
www.youtube.com/watch?v=RRst...
this is helpful but I still can't decide what we should do lel
ts monorepo with good performance is a myth, there's always something slow/hard to configure smh
turborepo says you dont need references, but nx says you should
but, maybe you should instead build your local packages but again annoying to setup 😩
turborepo.dev/blog/you-mig...
nx.dev/blog/typescr...
any good resources on how to set up typescript with good tsconfig??
navigating in my project at work is so slow, and I can't find good examples for my use case. I'm not using a monorepo, just ts files in src folder, tests are also in src
I'm not using tsgo for the lsp as I have too many issues
inherited from a project using terraform with a lot of code duplications for different envs (test,preprod,prod) and even some typos because of these copy/paste
I just learned about `module` with tf, seems to solve this issue
@django
Bluesky now has over 10 million users, and I was #675,056!
I've been trying to use coc.nvim again, at first it was so nice not to have much to configure
but in the end I went back to the nvim-lspconfig & stuff as I had no performance gain
an awesome way to start neovim with lsp though
pink iphone 15, obvious choice
confused by the iphone 15 batteries, saw a few posts saying the iphone 15 has a better battery than the 15 pro (eg. www.tomsguide.com/news/iphone-...)
so, the "pro motion" stuff on the pro series cannot save battery? this makes me want to go with 15 rather than the pro (and saves some $)
cool mixtape by Bon Entendeur!
www.youtube.com/watch?v=i-s1...
spent some times to try conform.nvim and nvim-lint on my neovim to replace null-ls, had no issue with null-ls besides biome not being embedded in it, as it appears after null-ls was archived)
great plugins, they both work ootb
thanks null-ls maintainer(s) for all the hard work though!
Awesome! Great to know, thanks again!
Hello @graysky.app is it possible to select a feed opened by default?
And, as a feature request it would be awesome if we could drag and drop image and/or paste image in the post on iOS (and I believe android too)!
Thanks!
npx*, obviously!
the linter seems to struggle a bit when running inside neovim, sometimes it shows me error like "gray is not defined" on the line "className='bg-gray-500'"
If I run `npm biome check filename.tsx` there are no errors reported (as expected)
in the meantime I was just `:!npx biome format % --write` in my nvim and it's quite fast!
wanted to try out biomejs toolchain within neovim
I guess I need to dive into my config again to replace null-ls with something like github.com/stevearc/con...
a bit lost on how you should work with development build with expo & eas
should I built another dev build each time I update the app.json/app.config.ts?
or is it only when I install new native modules?
while wezterm multiplexing capabilities are great, I believe I'll stay on tmux
I am so used to my keybindings and the workflow I have
Can’t add two keys to a tmux keybinding natively
A bit disappointed ☹️
Will explore more if there is any workaround, or I’ll try again to tinker with wezterm
I was wrong
I might have found the right config to make eas build our app with pnpm 🤞
every day I have to work on my company's application, I lose a little more life expectancy
using expo within a monorepo where we started with pnpm and now trying to move to yarn to make expo & eas happy
from iphone 8 to iphone 15 pro
can't decide on the color yet
interesting
Jsuis là
Need some kind of global search & replace in neovim/vim?
`cdo` might be the command to use!
It will run the command on each buffer present in the qflist, we can use it with `substitute` some strings in all our buffers and save them with `| update`
:cdo s/foo/bar/g | update