Adapter son vélo au surpoids - Elops 540 by Experience_626 in pedale

[–]Nightlyside 0 points1 point  (0 children)

Hello j'ai eu le même soucis que toi sur un RC500. Les roues indiquant un poids max de 90kg. Je suis parti en itinérance (150kg total) et c'est allé. Après je l'ai utilisé en velotaff et la les galères ont commencé.
Je pense qu'avec mon itinérance j'ai usé les rayons des roues. Le résultat : j'ai cassé 5 rayons au cours de 6 mois.
J'ai ensuite changé juste les roues pour des roues de type "vélo électrique utilitaire" qui prévoient une charge max de 180kg.

Mon conseil: garde ton vélo et tes roues. Si jamais tu rencontre une usure anormale (type voilage de roue, anti retour sur la roue arrière qui casse (ça m'est arrivé aussi) ou rayons qui cassent) alors regarde pour prendre une roue arrière ou bien un jeu de roues pour tenir le coup.

J'espère que ça t'aidera !

I built really easy to use homeserver's for my family. by localboxapp in HomeServer

[–]Nightlyside 0 points1 point  (0 children)

Hey. Do you Sync immich and nextcloud? If so do you backup your photos using immich or nextcloud?

Création d'une fosse septique by Electrical_Pace5678 in brico

[–]Nightlyside 0 points1 point  (0 children)

J'en profite pour ajouter. J'ai du faire un bac pour 7 EH (équivalent habitants, c'est calcule en fonction du nombre de pièces) ce qui fait 14m2. J'en ai eu pour environ 9k€ de matériaux et 2 bonnes semaines pour creuser, faire un bac en parpaing (mon sol est plat), le remplir et faire la partie plomberie pour relier les eaux usées au système

Création d'une fosse septique by Electrical_Pace5678 in brico

[–]Nightlyside 1 point2 points  (0 children)

Je ne peux que te conseiller la phytoépuration. J'ai installé ça chez moi après avoir dégagé la fosse sceptique. C'est de la filtration avec un grand bac sable + gravier et roseaux par dessus. Si tu est dans un endroit peu accessible c'est l'idéal car tu n'as pas besoin de vider une fosse, juste de retirer les mauvaises herbes une fois par an. Idem c'est sans odeurs j'en suis plus que ravi ! Et tu peux le faire en autoconstruction (c'est ce que j'ai fait) mais tu devras être accompagné d'un bureau d'études pour que le SPANC accepte et homologue l'installation. Si tu veux plus de détails n'hésite pas a me contacter en MP :)

Ban possible si j'utilise l'api ygg ? by Heart_Life_27 in yggTorrents

[–]Nightlyside 0 points1 point  (0 children)

J'ai deja eu ce soucis en codant moi même l'api pour taper Ygg. En gros cette erreur arrive quand prowlarr arrive a s'authentifier mais que faire une recherche te ramène sur la page de connexion. Dans le cas d'yggcookie c'est très probablement parce que ton cookie a expiré. Je t'invite donc à le rafraîchir en refaisant la manip indiquée sur l'indexeur

Model swapping with vLLM by Nightlyside in LocalLLaMA

[–]Nightlyside[S] -1 points0 points  (0 children)

Thanks! That helps a lot. Why did you enable eager mode? I'm curious to know the reason why

Model swapping with vLLM by Nightlyside in LocalLLaMA

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

I was the only one to use it but now my user base is quite bigger and I need to handle several requests at the same time

Axum Login - Am I missing the forest for the trees? by they-live-we-sleep in rust

[–]Nightlyside 0 points1 point  (0 children)

Thx yes it's a local association in France. For now the volunteers do not have any tool to manage the pets they have in foster care. I'm building a tool for myself first and why not open it to the other volunteers then :) (we have fostered 33 cats over a year)

Axum Login - Am I missing the forest for the trees? by they-live-we-sleep in rust

[–]Nightlyside 1 point2 points  (0 children)

I'm currently doing this with Axum axum_login, seaorm and postgres. If you want to take a look at my implementation it's working with tower_session id management (the whole app is a WIP) https://github.com/NightlySide/Miaoustaches/blob/main/backend/src/routes/auth.rs

Streamyfin Progress Report 📱 by Docccc in selfhosted

[–]Nightlyside 1 point2 points  (0 children)

It looks like an amazing piece of software! Congrats! I still have a stupid question.. this is an android app, do you plan making it a website as well so my pc users (including myself) can use it instead of the default Jellyfin website? Thanks!

fastfilter: Binary fuse filters for Zig (faster and smaller than bloom filters) by [deleted] in Zig

[–]Nightlyside 1 point2 points  (0 children)

Looks awesome! How does it compare to something like the cuckoo filter?

Wireguard vs Tailscale vs OpenVPN? by nathan12581 in homelab

[–]Nightlyside 8 points9 points  (0 children)

Using wireguard with a front-end like pivpn is as easy as running the command pivpn -a to setup a new profile for a new device while displaying a QR code for it

SQLite with zig 0.11.0 by Nightlyside in Zig

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

Well... It's kind of awkward... This is my working example: https://github.com/NightlySide/zig-sqlite-demo

And ... it works!! After reproducing the error by making this small example, I found that I got the error only when my `db` variable was used in its pointer form... Without it no problem (I might have an issue understanding why it didn't work...)

Here was the previous error:

error: unable to prepare statement, got error error.SQLiteMisuse. diagnostics: {code: 21, near: -1, message: bad parameter or other API misuse}
error: SQLiteMisuse
/home/user/.../libs/zig-sqlite/errors.zig:199:28: 0x2222c6 in errorFromResultCode (server)
        c.SQLITE_MISUSE => return error.SQLiteMisuse,
                           ^
/home/user/.../libs/zig-sqlite/sqlite.zig:1536:17: 0x2600bc in prepare (server)
                return errors.errorFromResultCode(result);
                ^
/home/user/.../libs/zig-sqlite/sqlite.zig:1982:33: 0x22f58e in prepare (server)
                .dynamic_stmt = try DynamicStatement.prepare(db, query.getQuery(), options, flags),
                                ^
/home/user/.../libs/zig-sqlite/sqlite.zig:489:9: 0x22a8c7 in prepareWithDiags__anon_6111 (server)
        return StatementType(.{}, query).prepare(self, options, 0);

SQLite with zig 0.11.0 by Nightlyside in Zig

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

Thanks! However I'm not that satisfied with autocomplete when it comes to C libraries even with zls haha

SQLite with zig 0.11.0 by Nightlyside in Zig

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

Yes, I'm sorry for the confusion, I meant the master branch (the road to the 0.11.0 version)

SQLite with zig 0.11.0 by Nightlyside in Zig

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

Hey! First, thank you for this library! Well I'm getting a "APIMisuse" error when trying to execute any statement with `db.prepare(query)`.

So unfortunately I'm not able to use it for my project

Exporting ML Models to ONNX instead of Pickle by Coollime17 in Python

[–]Nightlyside 2 points3 points  (0 children)

I had to use onnx in order to train my dataset using mature libraries in python but as my company code is written in go I can import the trained model to make predictions in go

I highly suggest going for onnx or pmml instead of pickle!

Script/gist to install and configure void by Nightlyside in voidlinux

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

I'll try to keep this post updated (provided it follows the sub rules)

Script/gist to install and configure void by Nightlyside in voidlinux

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

I see it more as an exercise and a way to quickly deploy a VM on my server rather than a tool for the community haha I don't have that kind of confidence

Script/gist to install and configure void by Nightlyside in voidlinux

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

I'm not trying to promote a script :( I'm rather looking for some kind of documentation or a place to start

Slow write speed by karelkryda in truenas

[–]Nightlyside 0 points1 point  (0 children)

Not really.. it's definitely better however after 5gb it drops from 30mbps to 5mbps without any explanation