PrettyFlyForAFatGuy

joined 1 year ago
MODERATOR OF
[–] [email protected] 1 points 1 hour ago

one of us... one of us... one of us

[–] [email protected] 1 points 1 hour ago (1 children)

well tbf they are the two most active servers there though. not sure why .world isnt on there though. maybe removed temporarily so that newbies filter out to smaller instances

[–] [email protected] 9 points 7 hours ago

They certainly mislead me. My first year or so was on lemmy.ml @[email protected]

After repeated bans i decided to move to a more relaxed instance. i still interact with lemmy.ml because some of the bigger open source communities are there, but .ml admins now cannot block me from accessing the full lemmyverse, only their diminishing corner of it

[–] [email protected] 16 points 7 hours ago (1 children)

Yeah, well the guy who runs it is a notorious tankie.

You either tow the pro stalinist line or you are punished

[–] [email protected] 37 points 8 hours ago* (last edited 8 hours ago) (8 children)

I don't think that in itself if the problem. anyone can host an instance. The problem is lemmy.ml being the apparent default instance, advertising itself as an instance for privacy and FOSS enthusiasts, and not mentioning seemingly anywhere in the description/rules that only red flavour authoritarian dogma is allowed in political discussion.

"America bad, therefore former 'communist' russia and current 'communist' china good."

Edit: it's not featured as prominently as it used to be on join-lemmy.org so things may be improving. they should still mention in the description that western viewpoints on many issues are not allowed due to "rule 1"

[–] [email protected] 3 points 9 hours ago

about 100 nights at the cheapest campsite i know of that takes caravans

or about 17-20 nights at some of the more expensive ones

[–] [email protected] 2 points 1 day ago

i've only managed to get some of my fam to move over to signal. the other half full on refused

[–] [email protected] 8 points 2 days ago* (last edited 2 days ago)

Shahed drones are made in russia now under license

They get their shells from NK and home production too.

Their soldiers mostly come from home and poor african nations

I doubt this will affect the situation in ukraine much other than western allies holding back more materiel previously destined for Ukraine for their own insurance

[–] [email protected] 3 points 2 days ago (1 children)

I'm not american, nor do i live in america

[–] [email protected] 8 points 2 days ago (5 children)

not with the house in the hands of republicans.

Best hope there is enough democracy left in the US to swing it back to the Dems in 2026.

And even then, without a comfortable majority for the Dems in the senate it will just be another impeachment to add to the pile, no conviction.

They don't call him teflon don for no reason

[–] [email protected] 2 points 3 days ago

I got his book as an audiobook. was pretty good

[–] [email protected] 15 points 4 days ago (1 children)

you... chew... soup?

 

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

4
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 

Perhaps i'm misinterpreting candlestick charts but earlier today i noticed that briefly HE1 dropped to 0.08p before jumping back up to essentially what it was before, that is a huge drop if true.

what happened?

9
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 

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>

 

I saw other kentish towns (see [email protected]) had communities. so thought i would create one for Maidstone too

 

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

 

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

 
/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

 

I currently own two canon cameras, an EOS M10 i bought around 2017/2018 new for around £150 and a secondhand EOS 1300d i bought last week from a second hand electronics shop for £110 (body only, i already had lenses from an old EOS 200d)

Spec wise they seem to be extremely similar cameras just with the 1300 being larger with better lenses and more manual features

My dad mentioned that he was thinking of buying a new camera as his one was bought way back in like 2010 and wasn't a particularly up to date model at the time so i am considering selling him my M10.

looking at ebay though they seem to be going for £200-400 which i find a bit strange for a camera that first hit the market back in 2015 and is way more than i paid new (although reduced to clear) from John Lewis.

Am i missing something? How much is the M10 worth? and is it really worth more than it's newer (2016) DSLR counterpart?

 

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 ›