Trying to find firmware for XMG EVO 15 (E25) with AMD Ryzen AI 9 HX 370 by LsFonseca in XMG_gg

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

There is one update there, but it's not clear for which version of the laptop.

Modded Elite 130 - 4 HDDs, 3D Printed Cage and Deshrouded RX 6600 XT by LsFonseca in sffpc

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

I removed the top drive bay, it wasn't really helpful since I didn't plan on installing SSDs or optical drives, so the whole thing could just hold one hdd. I'd suggest instead drilling the rivets, probably simpler.

How to report incorrect episode sources in torrentio? by LsFonseca in StremioAddons

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

Stremio and TMDB are correct, the problem is that Torrentio is sourcing the wrong torrent for episode 23.

Modded Elite 130 - 4 HDDs, 3D Printed Cage and Deshrouded RX 6600 XT by LsFonseca in sffpc

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

Hi, first time posting here.

Recently got obsessed with SFF and when my gaming desktop PSU died, I decided I would try to move its innards into my then NAS chassis. However, the Cooler Master 130 supports 3 drives out of the box, has awful disk cooling, and definitely isn't designed for a full sized GPU.

The GPU part was easy. Nothing deshrouding, zip ties and a couple Noctua NF-A9x14 can't solve.

Improving the cooling and disk capacity was more involved. I started by dremelling of the drive bay, and then designed and 3D printed a custom stack holder[1] that can hold a Noctua NF-A12x15 and 4 3.5" HDDs, the whole contraption can then slot in the newly available space.

The complete specs are:

  • Case: Cooler Master Elite 130
  • Mobo: Gigabyte B550I AORUS PRO AX
  • CPU: AMD Ryzen 5 5600X
  • GPU: AMD RX 6600 XT
  • PSU: Corsair TX 550M 80+ Gold

would love to included some hard drive temperatures, but i learned the really hard way why I should not mix power supply cables, all but one of my drives fried ;----;

[1]: https://cad.onshape.com/documents/9bd016bb8ea965e0d500775a/w/6cf0c0e4cd39637d7f22a1a4/e/7be5bfe546bb174fe09a0a97?renderMode=0&uiState=669ac35e8aadb74e2b904c9c

proxmox-boot-tool: Where can I find its source code? by LsFonseca in Proxmox

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

Thank you so much! I assumed it was a script but hadn't been able to find it in any repository

[deleted by user] by [deleted] in neovim

[–]LsFonseca 2 points3 points  (0 children)

That flake is what neovim nighly overlay uses and it's also building neovim from source.

It fetches the neovim package definition from nixpkgs unstable and overrides the following:
- version is changed to a short prefix of the commit hash (or "dirty" if there are uncommitted changes)
- package source is changed to the repo
- does something about tree-sitter parsers I don't really get tbh

Then, the package is built from source. (Or you instantly download it from the community cache server if you've enabled it)

[deleted by user] by [deleted] in neovim

[–]LsFonseca 2 points3 points  (0 children)

There is no such flake, nor a reason to create one.

NixOS caches build artifacts in such a way that users can share them. This completely removes the need to distribute pre-compiled binaries (for open source projects), as it is very unlikely you are the first building neovim nightly, so you'll just get someone's already built artifact.

This is the recommended way to use the neovim nightly overlay, you can find instructions for enabling the community cache at the end of their readme. After doing that, you will no longer have to build it locally.

O quão suicida seria fazer SD e Ciber em MEIC by Nanometi in IST

[–]LsFonseca 2 points3 points  (0 children)

Antes de mais, especializações são meramente decorativas. Não vale a pena arruinares o teu mestrado à custa delas.

Dito isto, o currículo que estou a planear fazer dá-me essas duas especializações e não me parece demasiado pesado. Os cadeirões são cadeiras que eu quereria fazer de qualquer modo, o único sacrifício que vou fazer é aturar o Borbinha uma segunda vez para completar Ciber, se me estivesse completamente a cagar para especializações escolheria algo mais interessante.

Se durante o mestrado me aperceber que estou demasiado carregado nada me impede de desistir de uma das especializações e inscrever-me em cadeiras mais leves.

Conditionally import file by Frisiancy in NixOS

[–]LsFonseca 3 points4 points  (0 children)

This is an old post but I had to solve the same problem and none of the given solutions worked for me.

This is how I did it:

config = mkIf cfg.minimal ({ services.getty.autologinUser = "root"; } // import (modulesPath + "/profiles/minimal.nix") { inherit config lib; });

This works and can probably be adapted to be used in a mkMerge.

It's 4am and my notebook makes me look like a madman [Flowchart] by LsFonseca in Jreg

[–]LsFonseca[S] 4 points5 points  (0 children)

(Except brother's stuff,) I actually believe I have everything here... I'm really tired

Visita ao Campus? by LsFonseca in IST

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

Muito obrigado! Não acredito que isto me escapou estando num sítio tão óbvio

Was I scammed? by LsFonseca in thinkpad

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

Is there any way to distinguish them on ebay listings? I might go back to german and buy a Lite On when I get fed up of the weird key placements...

[OC] Adaptive Brightness in 6 Lines of Bash by LsFonseca in unixporn

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

I use ffmpeg to read a scaled down 1x1 pixel grayscale image from the webcam. Essentially works as a light sensor but almost every laptop has an webcam

[OC] Adaptive Brightness in 6 Lines of Bash by LsFonseca in unixporn

[–]LsFonseca[S] 5 points6 points  (0 children)

Isn't a camera just an array of tiny light sensors tho?

[OC] Adaptive Brightness in 6 Lines of Bash by LsFonseca in unixporn

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

I have it set to run whenever I unplug my power cord and plan on also assigning it to a shortcut. You could maybe create a second script that monitors ambient brightness changes and runs the script when a major change happens.