• 1 Post
  • 22 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle


  • You’re looking at the full mc package rather than just mcedit. Even then, Midnight Commander is absolutely worth that whopping 7.9MB of space it takes for all the functionality it provides.

    Openwrt is not an example to use to compate against a package size, as it’s target built to fit into small firmware storage spaces on all sorts of random hardware. That’s comparing existential philosophy with oranges.

    Would you download a car?



  • Looks more like you are interested in more influence power, and control for yourself.

    What qualifies you to be in a leadership position that directly affects content control?

    Your instances are not being used the way you wanted, so you propose structural and organizational changes that, suprise, benefit your administrative influence from your instances.

    You’re so focused on the details of your solution, you don’t seem to be holding or acknowledging any objective perspectives.





  • VOTES ARE ALREADY PUBLIC.

    If you are using Lemmy because you want privacy, you’ve already missed the boat, everything is wide assed open for datamining and advertising fingerprinting.

    I’d hoped for an open system with open APIs and open implementations that allow everyone equal access to the system and bring equal accountability.

    If people just want Reddit style fiefdoms with no real public accountability possible, then make a blackjack and hookers fork.

    I’m really not interested in a system that bakes in more authoritarian secrecy and control, which could very well be an unexpected outcome of backlash to how this has been presented.







  • Well, now they just make you throw out the old Mac hardware and buy new for $1299 (8gb RAM lol) because it’s now out of support for the latest MacOS and the newest versions of Adobe Suite/MS Office/insert productivity work related proprietary software suite here is on board with Apple’s bullshit and won’t run on older MacOS versions.

    The more things change, the more they stay the same.


  • dezmd@lemmy.worldtoFediverse@lemmy.worldLemmy.ml tankie censorship problem
    link
    fedilink
    English
    arrow-up
    13
    arrow-down
    2
    ·
    edit-2
    5 months ago

    I’ll argue that crocodile tears deserve downvotes, as do bullies.

    Im pro jewish, Im pro Israeli, but im so anti-injustice that I’m willing to stand up to anyone pushing for or acting as a pro-war Israel supporter, or jewish as an Israeli identity when it comes to being prowarfare, when they still support what has quickly evolved into a politically strategic genocide against palestinians. Hamas deserved what it got in the immediate aftermath of October 7, but after 2 weeks then 3 weeks then a month then 2 months it showed that despite all of Israels’ military and civilian efforts of having an experienced security apparatus steeped in information warfare and threat containment, they didnt have the effective strategic competence to actually wipe out Hamas without having to constantly murder civilians.

    But they went ahead and kept on fucking killing.

    So now, they keep moving goal posts for any chance of peace. Its not a new strategy, but it has far more violent consequences and only further spreads fervor for more violence. Peace begets peace. One side doesn’t get to play that against the other like a ping pong match and expect objective obervers to fall for either side’s propaganda.

    This is all revenge without justice now.

    Take your foot off the throttle.



  • Yeah, totally.

    Just imagine trying to do this with Windows Powershell, without a package manager like chocolatey to make it simple like linux…

    $workdir = "c:\installer\"
    
    If (Test-Path -Path $workdir -PathType Container)
    
    { Write-Host "$workdir already exists" -ForegroundColor Red}
    
    ELSE
    
    { New-Item -Path $workdir  -ItemType directory }
    
    $source = "https://download.mozilla.org/?product=firefox-latest&os=win64&lang=en-US"
    
    $destination = "$workdir\firefox.exe"
    
    if (Get-Command 'Invoke-Webrequest')
    
    {
    
         Invoke-WebRequest $source -OutFile $destination
    
    }
    
    else
    
    {
    
        $WebClient = New-Object System.Net.WebClient
    
        $webclient.DownloadFile($source, $destination)
    
    }
    
    Start-Process -FilePath "$workdir\firefox.exe" -ArgumentList "/S"
    
    Start-Sleep -s 35
    
    rm -Force $workdir/firefox*