[-] PrettyFlyForAFatGuy@feddit.uk 1 points 20 hours ago

We got to the moon in the last big arms race so maybe something good will come of it

[-] PrettyFlyForAFatGuy@feddit.uk 8 points 20 hours ago* (last edited 20 hours ago)

He's why i stopped my recurring donation to lemmy development.

My instance owners get that money now

[-] PrettyFlyForAFatGuy@feddit.uk 2 points 1 day ago* (last edited 1 day ago)

There was some fiddling to do post installation to get wifi and audio through the speakers working (although careful with this, apparently fiddling with alsa can cause hardware damage. you have to set a kernel flag for it to work).

It's mostly fine, The omnibook is apparently one of the least problematic models in getting shit working. There isn't a catch all guide though you have to sort of figure it out from the launchpad bug comments

The function bar at the top doesnt have the shortcuts for things like vol up and vol down working; it's literally just F1-12, wasnt a big deal for me. and apparently, although i havent tried it myself yet, external displays over HDMI isnt working. screen bightness goes up to 95ish% and then for some reason drops down to basically nothing which is kind of weird but not game breaking. Software support is reasonably good since a lot of linux stuff is already compiled for ARM because of the Raspberry Pi and other SBCs. mine is currently running the "Raspberry Pi" build of Private Internet Access

I set it all up pretty quickly before i flew off on holiday. i did a two and a bit hour flight watching movies and still had 75% battery.

couple days later i did a 4 hour train journey watching movies and having bluetooth and wifi with VPN active and was trying (and failing) to compile stuff and ended the journey with like 30% battery

It's mostly silent so long as you keep it on a hard surface.

Honestly it's game changing not having to hover around a power outlet. i'm probs selling my 2020 Razer when i get back to the UK

i learned from my recent incursion into setting up a concept ubuntu build for snapdragon laptops that you can pull binaries from the windows partition to make the wifi drivers work

[-] PrettyFlyForAFatGuy@feddit.uk 3 points 2 days ago

i settled on Manjaro in the end for my desktop PCs. it has the flexibility of Arch including use of the AUR but i don't have to put much effort into setting it up

[-] PrettyFlyForAFatGuy@feddit.uk 4 points 2 days ago

This was in the desert in texas wasn't it?

good chance nobody has been in that particular spot for a long time

[-] PrettyFlyForAFatGuy@feddit.uk 5 points 2 days ago

did you try and use Arch?

i've only ever had to fuck around with wifi drivers when installing Arch

Everytime i've installed ubuntu on a laptop it's worked fine out of the box, including on the same laptop i had to fuck around with drivers on for Arch

[-] PrettyFlyForAFatGuy@feddit.uk 11 points 2 days ago* (last edited 2 days ago)

bought one of the new snapdragon x elite laptops refurbished recently. obviously it came with windows 11 and i had to briefly use it to shrink the boot partition and disable bitlocker so i could install the ubuntu concept image on it.

The amount of advertising i was subjected to in that time was infuriating. not to mention the frankly arduous setup wizard.

Even with the slight bugginess of a "concept image" OS, the user experience is SOOOO much better than shitty horrible windows.

Sent from my HP OmniBook running NOT windows

[-] PrettyFlyForAFatGuy@feddit.uk 3 points 5 days ago

I've been saying for a while that the left in the US needs to embrace the 2nd ammendment.

Dark times are fast approaching... be prepared

29
111
submitted 1 month ago* (last edited 1 month ago) by PrettyFlyForAFatGuy@feddit.uk to c/world@lemmy.world

Other sources:

https://www.euronews.com/my-europe/2025/05/01/ukrainian-activist-injured-in-an-attempted-assassination-suspect-detained

[i removed the reddit link that was here after having read the rules. it was CCTV footage of the attempt]

https://www.kyivpost.com/post/51847

9
submitted 3 months ago* (last edited 3 months ago) by PrettyFlyForAFatGuy@feddit.uk to c/webdev@programming.dev

i'm not serving this anywhere. it's just in a html file i'm opening locally, and it uses ChartJS. I'm trying to create charts for each day of a given csv of data so i can complain to my ISP about their DOGSHIT service. for some reason only the last chart is rendering and i can't figure out why, there's nothing in the console. I'm not a frontend guy so could be something very obvious.

I have 4 days of data so there should be 4 charts. The actual amount of data is much much larger than the subset i have posted below; over 6000 datapoints per day

<!DOCTYPE HTML>
<html>
<head>  
<script>
const rawData = `2025-02-18 23:56:50,23.228
2025-02-18 23:57:03,23.076
2025-02-18 23:57:16,23.560
2025-02-18 23:57:29,23.492
2025-02-18 23:57:42,23.383
2025-02-18 23:57:55,23.189
2025-02-18 23:58:08,23.389
2025-02-18 23:58:21,23.202
2025-02-18 23:58:34,23.518
2025-02-18 23:58:47,23.678
2025-02-18 23:59:00,23.547
2025-02-18 23:59:13,23.515
2025-02-18 23:59:26,29.981
2025-02-18 23:59:39,23.165
2025-02-18 23:59:52,23.381
2025-02-19 23:58:29,22.427
2025-02-19 23:58:42,22.433
2025-02-19 23:58:55,22.744
2025-02-19 23:59:08,22.538
2025-02-19 23:59:21,22.073
2025-02-19 23:59:34,22.527
2025-02-19 23:59:47,22.563
2025-02-20 23:58:26,22.615
2025-02-20 23:58:39,22.954
2025-02-20 23:58:52,22.570
2025-02-20 23:59:05,60.804
2025-02-20 23:59:18,22.928
2025-02-20 23:59:31,24.429
2025-02-20 23:59:44,23.066
2025-02-20 23:59:58,22.273
2025-02-21 13:44:19,81.440
2025-02-21 13:44:32,48.237
2025-02-21 13:44:45,47.153
2025-02-21 13:44:58,70.316
2025-02-21 13:45:11,58.714
2025-02-21 13:45:24,57.107
2025-02-21 13:45:37,39.298`

function lineToXY(line){
    const lineArr = line.split(',')
    return {
        x: new Date(lineArr[0]),
        y: Number(lineArr[1])
    }
}
const parsedData = rawData.split('\n').map(line => lineToXY(line))

window.onload = async function () {
    const distinctDays = [...new Set(parsedData.map( o => o.x.toISOString().split('T')[0]))]
    const body = document.querySelector('body')
    const charts = []

    for(const distinctDay of distinctDays){
        const chartName = `chartContainer${distinctDay.replace(/-/g, '')}`
        const data = [{
            type: 'line',
            dataPoints: parsedData.filter( o => o.x.toISOString().includes(distinctDay))
        }]

        body.innerHTML += `<div id="${chartName}" style="height: 370px; width: 100%;">`

        charts.push(new CanvasJS.Chart(chartName, {
            animationEnabled: true,
            zoomEnabled: true,
            title:{
                text: `average ping times for ${distinctDay}`
            },
            data: data
        }));
    }


    charts.forEach(ch => ch.render())


}

</script>
<script type="text/javascript" src="https://cdn.canvasjs.com/canvasjs.min.js"></script></head>
<body>

</div>
</body>
</html>

-11
submitted 5 months ago* (last edited 5 months ago) by PrettyFlyForAFatGuy@feddit.uk to c/linux@lemmy.ml

In b4 "You wont make a profit"... i know, i want to use my computer to heat my apartment. i figure that even if i'm making a "loss" each month on the mining it's still cheaper than running my apartments electric heaters when you account for the sold (or not) bitcoin.

I've been doing well keeping things warm by Folding at home on the CPU but apparently AMD GPUs aren't supported for that and i want to put my GPU to work too.

I briefly mined some litecoin in like 2013/14 when BTC was just about popping off. other than that i have no mining experience (and i would have been using windows back then)

Need to sort something soon, Jan and Feb are probs the coldest months in the UK and i have gotten this far this year without using the heaters

26

inb4 "if it's legal it's not a crime"

[-] PrettyFlyForAFatGuy@feddit.uk 131 points 9 months ago

i used to work in remote tech support. one time i disabled the network adapter on the customers computer that i was remoting into

9
/mnt/myname/steam/SteamLibrary/steamapps/common/7 Days To Die/EasyAntiCheat/EasyAntiCheat_Setup.exe: Win.Malware.Generic-9828888-0 FOUND
/mnt/myname/steam/SteamLibrary/steamapps/common/Far Cry 3/bin/pb/pbcls.dll: Win.Virus.Ramnit-9837718-0 FOUND
/mnt/myname/steam/SteamLibrary/steamapps/common/Far Cry 3/bin/pb/dll/wc002312.dll: Win.Virus.Ramnit-9837718-0 FOUND
/mnt/myname/steam/SteamLibrary/steamapps/common/Far Cry 3/bin/pb/pbcl.dll: Win.Virus.Ramnit-9837718-0 FOUND
/mnt/myname/steam/SteamLibrary/steamapps/common/SteamVR/tools/bin/win32/Qt5WebKit.dll: Win.Trojan.Ramnit-5881 FOUND

These, as far as i'm aware, have come straight from steam. I've searched for these online but haven't found anyone else getting the same error.

results from clamscan

[-] PrettyFlyForAFatGuy@feddit.uk 92 points 1 year ago

Fallout 5 is going to suck

134
20
[-] PrettyFlyForAFatGuy@feddit.uk 70 points 1 year ago

Yeah, Afghanistan was pretty embarrasing for the USSR

31
submitted 1 year ago* (last edited 1 year ago) by PrettyFlyForAFatGuy@feddit.uk to c/linux@lemmy.ml

I want to display a symbol at the top right of one or both of my screens, similar to the lightning bolt symbol raspberry pi OS uses to indicate lack of power, when certain conditions are met.

I'm pretty sure i could cobble a bash script together to decide when to do it, but it's the actual displaying of the symbol i'm not sure where to start on. It would need to appear on top of anything else that may be on the screen at the time

Everything i have tried googling returns irrelevant results

view more: next ›

PrettyFlyForAFatGuy

joined 1 year ago