[–] 5 points 5 hours ago

Commissioners warned those in attendance against disruptive behavior, including clapping, snapping or rude comments. Lux Claridge and several others clapped in support of speakers opposing the Flint Hills Digital Campus data center. After commissioners issued a final warning, Lux Claridge continued to clap, leading to his arrest.

I wasn't there and I have never been to a city meeting, how bad is it to ask for people to not clap? They did give him a final warning.

  • source
  • [–] 2 points 5 hours ago (1 child)

    No changes to the container image, but I had to fiddle with the config file. There is an option (tokenExpirationHours) to set for how long a token is valid, default is 2 hours. I can only find this in the commented example config, setting it to sometime really high like 50 let my friend upload his audiobooks without problems.

    Create a config file and place it somewhere the container can access it. Then add the environment variable FILEBROWSER_CONFIG=/some/path/to/your/config.yaml.

    Here is a snippet from my config:

    server:
      # ...
    auth:
      tokenExpirationHours: 50
      # ...
    userDefaults:
      fileLoading:
        maxConcurrentUpload: 100 # The inferface only shows up to 10 so I don't know if setting this value higher does anything
        uploadChunkSizeMb: 10
    

    tokenExpirationHours is the key to set.

  • source
  • parent
  • context
  • I don't think everyone now anything about Linux, most people don't know about computers in general.

    This is to me most likely targeted at those (alias Anna) how know someone (alias Bob) how knows about this (or similar). Bob tells Anna to install Linux because Windows 10 EOL, Anna says "no Linux bad because reasons, plz install Windows", or some such.

  • source
  • parent
  • context
  • [–] 7 points 6 days ago

    Debian is great, I love it. But the ease of which I can repair my system when I break it is the main reason to stay. I made an error in my hardware config and I just had to use the previous generation to get back to a working state. After that, I could take my time to fix the issue without the server being down.

    This whole everything is in config files is also very appealing, even though there is a lot to learn to get to the same level of knowledge (https://nix.dev/ helps there).

  • source
  • parent
  • context
  •  

    I wanted to disable the prompt and button for new Outlook. I found this guide and wrote a few lines of PowerShell to automate it and wanted to share.

    # Source https://edi.wang/post/2025/1/20/how-to-stop-automatically-switching-to-new-outlook
    $path='HKCU:\Software\Microsoft\Office\16.0\Outlook'
    
    # Remove and create to ensure correct data type
    Remove-ItemProperty -Path "$path\Options\General" -Name 'NewOutlookAutoMigrationStage' -ErrorAction SilentlyContinue
    New-ItemProperty -Path "$path\Options\General" -Name 'NewOutlookAutoMigrationStage' -Type DWord -Value 1
    Remove-ItemProperty -Path "$path\Options\General" -Name 'NewOutlookAutoMigrationStage'
    Remove-ItemProperty -Path "$path\Options\General" -Name 'NewOutlookAutoMigrationType'
    Remove-Item -Path "$path\NewOutlook"
    # Remove and create to ensure correct data type
    Remove-ItemProperty -Path "$path\Preferences" -Name 'UseNewOutlook' -ErrorAction SilentlyContinue
    New-ItemProperty -Path "$path\Preferences" -Name 'UseNewOutlook' -Type DWord -Value 0
    Remove-ItemProperty -Path "$path\Preferences" -Name 'NewOutlookRenudgeStartDate'
    Remove-ItemProperty -Path "$path\Preferences" -Name 'NewOutlookRenudgeStartDate'
    
     

    I just installed Radicale and could not at first figure out how to add a calendar that I could edit in the app. And since I could not find any decent post on the topic, here is how to do it (as of iOS 18.7.3 on an iPhone 13 pro, but I imagine the process being very similar on other devices):

    1. Open the Settings application.
    2. Scroll to the bottom and open the Apps options.
    3. Open settings for the Calendar application.
    4. Open Calendar accounts.
    5. Add a new account.
    6. Chose "other".
    7. Chose "CalDav-account".
    8. Enter URL and credentials for your Radicale server.

    I have SSL set up with Let's Encrypt managed with Caddy so that was all I had to do. I say this because I read one discussion about SSL being needed.

    view more: next ›