Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)FV
Posts
20
Comments
756
Joined
2 yr. ago
  • Reminded me one of the vids of f4mi, although that ladiy's approach is far more beautiful. Basically, she took advantage of ai scrapers relying on subtitles and YouTube allowing for pretty advanced styling of those very subtitles to insert garbage that only bots will see.

    To those interested in the details, https://www.youtube.com/watch?v=NEDFUjqA1s8 (selecting a working invidious instance is left as an exercise for the reader)

  • Or start adding "-site:reddit.com". On the other hand, in some cases it kinda makes sense with SEO being basically "generate a wall of text on what should be one paragraph with 3.5 sentences".

  • I guess I misunderstood the meme, then: to me it looked like a jab at nerds that ignore "simpler" solutions when they themselves have a problem, rather than said nerds giving overcomplicated advice

  • As in, symfonium.app? If so, seems questionable, given its proprietary nature and unavailability outside the play store. Although, the feature set is interesting.

    Edit: yeeeah, no

    From their FAQ:

    licences checks requires a call to the verification server from time to time

    The license is tied to your Google account

  • linuxmemes @lemmy.world
    fl42v @lemmy.ml

    I've been asking myself the same for quite a while now

    ThinkPad @lemmy.ml
    fl42v @lemmy.ml

    Observations on librebooting t480

    Basically, a collection of notes on building and running libreboot on t480. Hope it helps sb avoid a few pitfalls I've personally encountered. Corrections/other ways to do stuff are welcome.

    1. If you're building libreboot from source like I did, you may want to replace repo URLs with mirrors in config/git/grub, as gnu repos are slow AF;
    2. To boot your system, you'll need it to either be bootable via legacy bios (libreboot uses seabios by default), or, more realistically, have grub bootloader. On NixOS, I've changed the bootloader config to:
     (nix)
        
    boot.loader.grub = {                          
      enable = true;                  
      device = "nodev"; # generate grub.cfg without installing grub itself  
      theme = lib.mkForce null;       
      font = lib.mkForce null;        
      splashImage = lib.mkForce null; 
    };                                
    
    
      

    Notice the disabled theming/fonts/background image: in my case, libreboot's grub would only show the blank screen 'til I disabled them, so

    linuxmemes @lemmy.world
    fl42v @lemmy.ml

    Should've searched for a mirror

    Well, technically anywhere from 5 to 40, but I still have a nice chance to grow old before libreboot starts building. Also, still slower than dial-up.

    Technology @lemmy.world
    fl42v @lemmy.ml

    Clevo reseller wants get coreboot ported, ends up throwing a temper tantrum and banning Germany, Poland, Texas and AMD over unsatisfactory experience

    While the whole exchange must've sucked for them, I've found their reaction extremely amusing at times, especially the carpet banning for life of everyone within a country/state to the offending party. But hey, that'll definitely show AMD how to hire those coreboot developers

    ThinkPad @lemmy.ml
    fl42v @lemmy.ml

    Flashing coreboot with rp2040

    So, yet another "if you're in the middle of nowhere and can't/don't_want_to wait for proper tools to arrive" kind of post.

    Firstly, there's pico-serprog with quite good instructions from the libreboot project. Unfortunately, it didn't want to detect the chip at all in my case (in hind sight, likely due to the board pinouts being different between my board and a regular pico and them providing pico pins and not gpio numbers)

    What worked, albeit rather slowly, was pico-dirtyjtag. If using this one, the connections are as follows:

    • cs - gp19
    • miso - gp17
    • mosi - gp16
    • clk - gp18
    • gnd - gnd
    • 3v3 - 3v3

    The chip pinouts can be sourced from the libreboot guide/a laptop schematic/ic datasheet. Flashing with sudo flashprog -p dirtyjtag_spi -w rom.rom (or flashrom instead of flashprog). It may complain that there are multiple

    ThinkPad @lemmy.ml
    fl42v @lemmy.ml

    Coreboot allows using batteries for newer models on older ones (sometimes)

    So, I've dug up my corebooted t440p and decided to check if it'll work with the battery from my t480, and it did! Well, sort of.

    Since coreboot also replaces the embedded controller firmware (mb sometimes they keep blobs of it, idk, but certainly not in case of t440p), we won't get those nasty "battery not supported, pay me" messages even if they've changed the verification since then.

    However, I suspect some batteries may be unprepared for the power draw of earlier models. I've tested it on 2 batteries, one was a 22wh → 72wh conversion with BMS built on top of a cheap controller with rather unpleasant feedback from battery repair people; the other one was a more trustworthy 72wh clone powered by bq8050. The latter one worked ootb, while the former somewhat worked: fine in uefi, fine in grub, drop voltage to 0 as soon as the os starts loading → poweroff. If the power supply is plugged in during boot, the battery works fine (may drop voltage again under load, haven't tested it myself)

    ThinkPad @lemmy.ml
    fl42v @lemmy.ml

    What voltage does your thinkpad charge the battery to?

    I've replaced cells in my fake battery a few days ago, and while recalibrating the bms I noticed what looked like it trying to overcharge the cells -- the voltage went up to above 12.6v and stabilized at around 12.9 (which amounts to ~4.3v per cell and is 0.1v above what cell manufacturers generally recommend). Idk if that's the intended behavior or clone manufacturers trying to shorten the lifetime of said batteries, so if the owners with genuine batteries can provide that info, I'd really appreciate it.

    On linux, you can check this with cat /sys/class/power_supply/BAT*/voltage_now (as your usual user, those files are world-readable); not sure about windows, tho.

    Asklemmy @lemmy.ml
    fl42v @lemmy.ml

    Were zx spectrum +2 keyboards disgusting to type on?

    Out of curiosity, I've been watching a few restorations of those spectrums, and I've noticed the keyboards having a rather peculiar construction, judging by today's standards. They have 2 springs, the small one, as far as I understand, presses the membrane layers together, and the larger one returns the key into neutral position once the key is released.

    I personally haven't used any spectrums, yet I've encountered the very same construction on a keyboard of a Russian clone of said machines (namely, zx atas), and to this day I haven't touched anything worse... The only way I can describe it is like trying to type on a piece of raw meat.

    So, if anyone here had a chance to type on the original spectrums, was it this bad? I suspect otherwise since I haven't heard of crowds of people requesting PTSD treatment, but the whole thing still somewhat bothers me 😅

    Android @lemmy.world
    fl42v @lemmy.ml

    Unlocking the bootloader of some Qualcomm devices when the display is broken, PoC

    Just thought I'd share. Probably nothing new or fancy, but may help some of you find a way to repurpose devices that aren't worth repairing into home servers or something: e.g. op5 I've used has better CPU compared to raspberry pi 4, can run linux (postmarketos, albeit with some caveats), and costs less if bought with broken display (or nothing if you have one lying around)

    Open Source @lemmy.ml
    fl42v @lemmy.ml

    Nvidia tries to kill CUDA translation layers | Tom's Hardware

    Redneck Engineering @infosec.pub
    fl42v @lemmy.ml

    M$ Sculpt "brain transplant"

    Decided to share an older "project" of mine - ms sculpt wireless to wired conversion (also, it runs qmk, so we get all its features). A sensible person would order a custom pcb (such projects exist on the web, take a look if you're interested), but I went with removing all the components except from the ribbon cable connector, sending the PCB smooth, gluing a piece of discount card to isolate the traces, gluing a Chinese rp2040 on top, and wiring all the necessary traces to it. No, it wasn't fun. Yes, it works.

    Bonus: when I disassembled it now I found out the type-c wasn't soldered well and decided to separate from the board:

    So, here we go: using phone as a poor man's microscope (note: also, still works)

    ![ResizedImage_2024-04-08_18-20-32_1](https://lazysoci.al/api/v3/image_proxy?url=https%3A%2F%2Flemmy.ml%2Fpictrs%2

    linuxmemes @lemmy.world
    fl42v @lemmy.ml

    Who needs FHS, anyways?

    Programmer Humor @programming.dev
    fl42v @lemmy.ml

    You can certainly change it. But should you?

    Redneck Engineering @infosec.pub
    fl42v @lemmy.ml

    If it works...

    Redneck Engineering @infosec.pub
    fl42v @lemmy.ml

    Turns out headache pills can help fixing a button

    So, a while ago I bought a cheapest oneplus 6 available in my area to subject it to a few experiments with running Linux. Among the other issues that came for that price, the power button was almost flush to the frame, hard to press, and had almost no feedback.

    Today I finally got tired of it and decided to check what's wrong. The button itself turned out to be just fine, but the thingy that presses it looked weird:

    After a few tries of gluing smth to extend the middle pin, I found out that I can just cut off a piece of plastic from the blister of my favorite headache pills and place it between the button and said thingy. Works wonders 🤣

    Btw, the actual

    linuxmemes @lemmy.world
    fl42v @lemmy.ml

    Evil maid or something? Idk I use LUKS

    Linux @lemmy.ml
    fl42v @lemmy.ml

    What's (are) the funniest/stupidest way(s) you've broken your linux setup?

    Tinkering is all fun and games, until it's 4 am, your vision is blurry, and thinking straight becomes a non-option, or perhaps you just get overly confident, type something and press enter before considering the consequences of the command you're about to execute... And then all you have is a kernel panic and one thought bouncing in your head: "damn, what did I expect to happen?".

    Off the top of my head I remember 2 of those. Both happened a while ago, so I don't remember all the details, unfortunately.

    For the warmup, removing PAM. I was trying to convert my artix install to a regular arch without reinstalling everything. Should be kinda simple: change repos, install systemd, uninstall dinit and it's units, profit. Yet after doing just that I was left with some PAM errors... So, I Rdd-ed libpam instead of just using --overwrite. Needless to say, I had to search for live usb yet again.

    And the one at least I find quite funny. After about a year of using arch I was considering my

    Showerthoughts @lemmy.world
    fl42v @lemmy.ml

    If there was more than one Illinois, would they be called Illinoises or Illinoi?

    Off the top of my head, I can't think of a word in English that ends with "is" while being singular, only plurals and uncountables come to mind, so I can't really follow the examples of other words. What makes it even weirder, I'm not sure how to pronounce Illinoises... Would it be as written, or as if an Illinois was pronounced by someone who has never encountered it before? Illinoi are also meh, since now plural looks as a singular and the other way round.