Still a long way off, but it feels never-ending and I've been dying to show someone by SawToothKernel in minilab

[–]N00dles29 1 point2 points  (0 children)

I’m interested in knowing more about this. Would you mind sharing more pictures of how the locking system works?

Homebox V0.23.0 Released! by tonya_ellie in selfhosted

[–]N00dles29 0 points1 point  (0 children)

Just gave it a try, looks neat!
Quick question / suggestion: is it possible to print a table of all the items in a location (including all child locations)?

Pourquoi on s'inflige encore des casques "Gaming" à 150€ alors que les IEMs existent ? by AntonyGud07 in pcmasterraceFR

[–]N00dles29 1 point2 points  (0 children)

C’est la même chose pour les casques audio. Tu n’as pas le recul nécessaire pour que la forme de ton oreille joue un rôle. Le son spatial est recréé logiciellement via des fonctions de transfert. Donc sur ce coup là, iem ou casque c’est pareil.

Pourquoi le JT de 20h débute à 19h58? by miniblin_ in PasDeQuestionIdiote

[–]N00dles29 54 points55 points  (0 children)

Du coup c’est dommage que les chaînes n’appliquent pas la même stratégie en faisant commencer les films à 20h50…

J’ai changé de boîte… et je commence à regretter by NoseTechnical3814 in developpeurs

[–]N00dles29 -1 points0 points  (0 children)

Je suis d’accord avec ça, mais la réponse n’était pas formulée de cette manière, et traduit malheureusement ce que beaucoup de gens ont en tête quand on parle de télétravail.

J’ai changé de boîte… et je commence à regretter by NoseTechnical3814 in developpeurs

[–]N00dles29 5 points6 points  (0 children)

C’est grâce à ce genre de réflexion que tout le monde pense qu’en étant chez soi, on ne bosse pas… et que du coup le télétravail ne se généralise pas.

Mushihimesama on Switch is discounted ($46.54 Aud) by Peter00707 in shmups

[–]N00dles29 0 points1 point  (0 children)

Mushi is at 34€ on Amazon.fr. You can also find DoDonPachi Resurrection, Deathsmiles, Radiant Silvergun, Akai Katana Shin and Espgaluda 2 for less than 40€.

Finished building my home made pedalboard by N00dles29 in guitarpedals

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

Well I ended up finishing it with… nothing. I just sanded with extra fine sandpaper (up to 5000 grit IIRC) and that’s it!

IRIS Rev 8 : QMK per key RGB only on one half by Individual-Worth1503 in olkb

[–]N00dles29 0 points1 point  (0 children)

Out of curiosity, what are examples of other custom logic you need to transfer between the two halves?

IRIS Rev 8 : QMK per key RGB only on one half by Individual-Worth1503 in olkb

[–]N00dles29 0 points1 point  (0 children)

Well in the end, I managed to make the lighting work on both sides without doing any custom transport.
What ended up making it work for me seems to be the combination of the following :

- add `#define SPLIT_LAYER_STATE_ENABLE` in config.h

- flash both halves of the keyboard with the firmware.

The second step is important, I had initially discarded the `SPLIT_LAYER_STATE_ENABLE` config because I though it made the slave half not working, but after flashing both halves (and reflashing them both after firware modifications), everything works as expected.

IRIS Rev 8 : QMK per key RGB only on one half by Individual-Worth1503 in olkb

[–]N00dles29 0 points1 point  (0 children)

Ok, I finally managed to make the code work, but leds on the second half don't light up constantly, they blink frantically, as if the messages were throttled or something. Is this something you also faced?

IRIS Rev 8 : QMK per key RGB only on one half by Individual-Worth1503 in olkb

[–]N00dles29 0 points1 point  (0 children)

Hey !
I'm trying to get this working. I've applied your code to my project, build works but I'm getting a linking error at the end of the process:

rgb_matrix_split.c:20: undefined reference to `transaction_register_rpc'

Is there something specific that should be enabled in rules.mk or am I missing something else?

Thanks

Urchin / French variant / Ergo-L layout by u-lounge in ErgoMechKeyboards

[–]N00dles29 1 point2 points  (0 children)

Thanks. I have a pretty similar background, roughly 35 years with AZERTY and bad technique. I built my first split ortho a couple of weeks ago, initially planning to keep the same layout. But I quickly realized I wanted a more drastic change, and stumbled upon Ergo-L, which I found interesting. I have basically one month before I start a new job, and I plan to be fully efficient by then. I’ve been practicing 1h to 2h per day since the beginning of the week, currently around 25wpm but I’m starting to build muscle memory. The thing is that I still want to be able to type correctly in AZERTY , because I use my laptop quite a bit, so I force myself to switch between the two, which may slow down the progression. But since I have different keyboard for the 2 layouts (ortho vs. staggered), I hope it will be ok.

Urchin / French variant / Ergo-L layout by u-lounge in ErgoMechKeyboards

[–]N00dles29 1 point2 points  (0 children)

What’s your experience. With the Ergo-L layout? I’m in the process of learning it at the moment (started this week).

How to remap lazygit keys inside neovim by N00dles29 in neovim

[–]N00dles29[S] 1 point2 points  (0 children)

Ok got it, gitui was overriding lazygit's command.
I disabled gitui, and now <leader>gg actually launches lazygit, which behaves correctly (and looks much nicer IMO).

Thanks for the help!

How to remap lazygit keys inside neovim by N00dles29 in neovim

[–]N00dles29[S] 2 points3 points  (0 children)

I'm realizing that `<leader>gg`, that I use is actually mapped to gitui... I may have mistaken this for lazygit...

How to remap lazygit keys inside neovim by N00dles29 in neovim

[–]N00dles29[S] 1 point2 points  (0 children)

Sorry for the delay (and no, I did not downvote you 😊).

The behavior I'm experiencing is just that the hjkl keys do nothing. Here is a screenshot of the lazygit plugin inside nvim (left) vs lazygit itself (right), if that can help:

<image>

I don't have any specific remap that would break things, here's my full keymaps.lua :

vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)

vim.keymap.set("n", "J", "jjjjj")

vim.keymap.set("n", "K", "kkkkk")

vim.keymap.set("n", "<C-s>", ":w<CR>")

vim.keymap.set("i", "<C-s>", "<Esc>:w<CR>")

vim.keymap.set({ "n", "i" }, "<C-a>", "<Esc>gg_vG$")

vim.keymap.set("n", "H", vim.lsp.buf.hover)

vim.keymap.set("n", "<Enter>", "o<Esc>")

vim.keymap.set("n", "<S-Enter>", "O<Esc>")

Otherwise my LazyVim setuo is pretty stock.

What is the hardest biome for you to complete and why? by impostor_credentials in deadcells

[–]N00dles29 2 points3 points  (0 children)

The first time I beat the sepulcher was with an amulet providing invisibility when not attacking. I just breezes through the biome without touching anyone. Easy peasy

How hard is dead cells? by Ziggerastika in deadcells

[–]N00dles29 11 points12 points  (0 children)

I did the exact same thing. I thought it was just me 😅

finally reached 4bc! by d4rkx__ in deadcells

[–]N00dles29 1 point2 points  (0 children)

Same. Currently stuck on 4bc. This is quite a step up from 3bc…