captcha_incorrect

joined 6 months ago
[–] captcha_incorrect@lemmy.world 9 points 8 hours ago (1 children)

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.

[–] captcha_incorrect@lemmy.world 3 points 8 hours ago (1 children)

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.

[–] captcha_incorrect@lemmy.world 5 points 1 day ago (5 children)

This is 100% off topic but I just realised username is ”I R mad lad” and not ”Irma Dlad”.

[–] captcha_incorrect@lemmy.world 6 points 1 day ago (3 children)

Really? I never tried the original but didn’t have much problems setting up quantum. I had to modify my caddy file somewhat to suite my needs, but just works now.

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.

That is how the above poster use it and the answer to the above question.

[–] captcha_incorrect@lemmy.world 4 points 2 days ago (2 children)

I figured it was something along those lines. Brilliant idea from marketing.

[–] captcha_incorrect@lemmy.world 5 points 2 days ago (5 children)

It is the sound of ”th”.

[–] captcha_incorrect@lemmy.world 25 points 2 days ago (4 children)

Anyone else noticed that it says paid partnership?

I like that hamburger unit is blocked.

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).

[–] captcha_incorrect@lemmy.world 7 points 6 days ago (2 children)

I tried NixOS after many years on Debian. I cannot go back, at least not on my server.

 

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 ›