ohai.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A cozy, fast and secure Mastodon server where everyone is welcome. Run by the folks at ohai.is.

Administered by:

Server stats:

1.8K
active users

#config

0 posts0 participants0 posts today
Replied in thread

@kurtz @delta
In Settings>Advanced>Video Chat Instance > Enter one of these servers: github.com/tosterkamp/random-r ....with this at the end of the URL: "$ROOM#config.prejoinPageEnabled=false"
Or if you want to start the call with audio only (no video), add "$ROOM#config.prejoinPageEnabled=false&#config.startWithVideoMuted=true"

Page that redirects to a random page that offers the service you are looking for - tosterkamp/random-redirect
GitHubrandom-redirect/res/jitsi_servers.lst at develop · tosterkamp/random-redirectPage that redirects to a random page that offers the service you are looking for - tosterkamp/random-redirect

Modat Internet Index Solution führte Anfang 2025 eine umfassende Untersuchung durch und entdeckte 49.000 falsch konfigurierte, ungeschützte #Zugangsverwaltungssysteme (AMS) in mehreren Branchen und Ländern, die die Privatsphäre und die physische #Sicherheit in kritischen Sektoren gefährden könnten. Die #AMS waren nicht richtig für die sichere #Authentifizierung konfiguriert, so dass nahezu jeder darauf hätte zugreifen können.

Using different SSH keys for the same host, for example to have a separate key per repository, is very easy when using SSH aliases in ~/.ssh/config:

Host codeberg-myrepo
HostName codeberg.org
User git
IdentityFile ~/.ssh/codeberg-myrepo

And then use that alias instead of the original domain:

git clone codeberg-myrepo:myrepo/myapp.git

Here's a really interesting article about the 'includeIf' feature of the Git config file format:

benji.dog/articles/git-config/

It enables you to use different configuration values based on particular criteria like folder path, remote URL and more.

Great for configuring email addresses for different kinds of repositories (like work vs personal) without forgetting to set it up on each clone!

benjiHow I configure my Git identitiesThis may be overkill, but it works on my machine