| #!/bin/bash | |
| set -oue pipefail | |
| INFO='\033[0;36m' # Cyan for general information | |
| SUCCESS='\033[0;32m' # Green for success messages | |
| WARN='\033[0;33m' # Yellow for warnings | |
| ERROR='\033[0;31m' # Red for errors | |
| NC='\033[0m' # No Color | |
| echo "This script will help you set up 1Password in a Flatpak browser." |
| #btrfs benchmark for daily used desktop OS |
| Windows Registry Editor Version 5.00 | |
| ; | |
| ; How to disable internet search results in start menu post Creators Update? | |
| ; https://superuser.com/questions/1196618/how-to-disable-internet-search-results-in-start-menu-post-creators-update | |
| ; | |
| [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search] | |
| "BingSearchEnabled"=dword:00000000 | |
| "AllowSearchToUseLocation"=dword:00000000 | |
| "CortanaConsent"=dword:00000000 | |
| ; |
| [Unit] | |
| Description=vlmcsd | |
| Wants=network.target | |
| After=syslog.target | |
| [Service] | |
| Type=forking | |
| PIDFile=/var/run/vlmcsd.pid | |
| ExecStart=/usr/local/vlmcsd/vlmcsd -l /var/log/vlmcsd.log -p /var/run/vlmcsd.pid |
| diff --git a/builddefs/common_features.mk b/builddefs/common_features.mk | |
| index 18f8b0bbfc..4ef3e230e4 100644 | |
| --- a/builddefs/common_features.mk | |
| +++ b/builddefs/common_features.mk | |
| @@ -878,6 +878,10 @@ ifeq ($(strip $(JOYSTICK_ENABLE)), yes) | |
| endif | |
| endif | |
| +ifeq ($(strip $(APPLE_FN_ENABLE)), yes) | |
| + OPT_DEFS += -DAPPLE_FN_ENABLE |
I’m currently working (I’m just at the beginning, and I’m quite slow) on a personal project that will use Keepass files (kdb and kdbx).
I tried to find some documentation about .kdb and .kdbx format, but I didn’t find anything, even in the Keepass official website. I you want to know how these file formats are structured, you must read Keepass’s source code. So I wrote this article that explains how Keepass file format are structured, maybe it will help someone.
Author: Chris Lattner
[ Update 2025-03-24: Commenting is disabled permanently. Previous comments are archived at web.archive.org. ]
Most of the terminal emulators auto-detect when a URL appears onscreen and allow to conveniently open them (e.g. via Ctrl+click or Cmd+click, or the right click menu).
It was, however, not possible until now for arbitrary text to point to URLs, just as on webpages.