edit your docker-compose.yml
file:
services:
database:
image: postgres:latest
command: postgres -c 'max_connections=250'
SOURCE:
edit your docker-compose.yml
file:
services:
database:
image: postgres:latest
command: postgres -c 'max_connections=250'
SOURCE:
website: https://ntfy.sh
services:
ntfy:
My notes on CAS server installation when learning it. Hope it will be helpful to somebody.
[Update 2025] Because CAS documentation site deprecates and removes the older versions, i've fetched and hosted the 6.6.X version docs to my domain.
Go to https://getcas.apereo.org/ui and download an overlay template project. You can use this example settings applied url (select version field 6.6.x if empty, or other versions)
#!/bin/bash | |
# This command sends this text on active window: { | |
# Go to settings - keyboard - shortcuts and add a shortcut to call this file and set your keyboard combinations. | |
windowid=$(xdotool getwindowfocus) | |
sleep 0.2 && xdotool windowactivate --sync $windowid type '{' |
# Do not forget to use .env variable for the ${...} fields | |
# With this setup, if you have a domain and manage it on cloudflare, | |
# you can use the cloudflare tunnels and use seafile on your self hosting machine, | |
# on your subdomain(i.e: cloud.example.com and cloud-sdoc.example.com.tr for the sdoc-server) | |
version: "3.8" | |
services: | |
db: | |
restart: unless-stopped | |
image: mariadb:10.11 | |
container_name: seafile-mysql |
@echo off | |
REM https://www.tenforums.com/tutorials/5645-rebuild-icon-cache-windows-10-a.html | |
set iconcache=%localappdata%\IconCache.db | |
set iconcache_x=%localappdata%\Microsoft\Windows\Explorer\iconcache* | |
echo. | |
echo The explorer process must be temporarily killed before deleting the IconCache.db file. | |
echo. |
[Desktop Entry] | |
Name=Launch TP | |
Exec=/home/user/tinyproxy/tinyproxy -d -c /home/user/tinyproxy/tinyproxy.conf | |
Comment=Launch TinyProxy | |
Terminal=true | |
PrefersNonDefaultGPU=false | |
Icon=csd-screensaver-proxy | |
Type=Application |
@ = WINKEY | |
+ = SHIFT | |
^ = CTRL | |
% = ALT | |
{ADD} = VK_ADD | |
{APPS} = VK_APPS | |
{AT} = @ | |
{BACKSPACE} = VK_BACK | |
{BKSP} = VK_BACK |
#!/bin/bash | |
string="EXAMPLE_TEXT..." | |
delay=0.05 # Delay between character inputs in seconds | |
sleep "0.5" # initial wait, without this, some of the chars in the beginning is missing | |
for char in ${string}; do | |
xdotool type "${char}" && sleep "${delay}" | |
done |