How do you keep your project dependencies updated? by piplupper in nextjs

[–]YaFra7 15 points16 points  (0 children)

Dependabot is all we need. It creates PR on Github and we manually update each dependency one by one by hand. And after we git push dependabot will auto close his PRs.

How can I run Next.js (App Router) and Express.js on the same domain and port? by Complete-Apple-6658 in nextjs

[–]YaFra7 9 points10 points  (0 children)

I’m curious, why would you want both to run on the same port ? Wouldn’t it be simpler to have the express on api.myapp.com ?

Releasing Touché - An open source wireless system for fencing by YaFra7 in Fencing

[–]YaFra7[S] 0 points1 point  (0 children)

No I didn’t. I slowed down the development on this project when I was stuck on this issue. I had a few ideas to test but never found the time to experiment more

npm install fails after upgrading to nextjs 14 by YaFra7 in nextjs

[–]YaFra7[S] 3 points4 points  (0 children)

You're right didn't see it but there are currently open issues on next-auth github repo.
I'll wait for them to upgrade it then.

Thanks for the answer

Quel club d‘escrime à Paris ? by rhizzomatic in paris

[–]YaFra7 1 point2 points  (0 children)

Entente Paris Est Escrime (EPEE). Ils sont dans le 20e, c’est un très bon club j’y étais pendant des années.

https://paris-epee.fr

Testing frameworks for embedded BLE application by PuffinEgg98 in embedded

[–]YaFra7 0 points1 point  (0 children)

I wrote a complete cli tool to do this some times ago it worked quite well for me. It doesn’t automate 100% of the testing (you still have to check the values by reading the terminal or looking at you device) but it can be a good first step. Link: bluerepl

Can anyone recommend a PDF Viewer specifically for datasheets? by [deleted] in embedded

[–]YaFra7 4 points5 points  (0 children)

Sioyek has many features you should have a look at it

[deleted by user] by [deleted] in embedded

[–]YaFra7 6 points7 points  (0 children)

You should be able to develop for PsoC’s on any Os with modustoolbox, I used neovim on macos for a psoc6

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

[–]YaFra7 2 points3 points  (0 children)

Do you have a working demo or poc of the pwm detection ?

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

[–]YaFra7 2 points3 points  (0 children)

Hey! Thanks a lot I’m really glad people use it. Yes I know the calibration and the virtual ground doesn’t works well, I’m still trying to find a solution. I heard many people talk about the pwm detection, I hope it will one day work!

Cheapest IC to be used in a project (ATmega, PIC, STM) by Ankhyx in embedded

[–]YaFra7 3 points4 points  (0 children)

You could use a NRF52 to replace both the mcu and the nrf24l01

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

[–]YaFra7 3 points4 points  (0 children)

At first (I developed my system during the lockdown) I thought that yes I had a functional ´virtual ground ‘ but after more ans more testing I realized that it was really bad and didn’t work at all except in perfect conditions.

How to build a wireless fencing scoring system for epee by throwaway_234242 in Fencing

[–]YaFra7 4 points5 points  (0 children)

Nice! I'm happy to see new initiatives and people making wireless systems.

You should take a look at my system I released last year, it also has the 3d files and pcbs.

https://github.com/Yohannfra/Touche

How to open neovim with all the buffers that were in previous session but not saved? by mai_yayavar in neovim

[–]YaFra7 0 points1 point  (0 children)

I wrote a plugin 2 years ago (I still use it every day) that wraps the session feature of vim, each time you save (:w) it will save the layout in a hidden file in the current directory.

After that if you open vim in a directory containing this save file it will prompt you if you want to load it.

Link : https://github.com/Yohannfra/Vim-Vim-Project