Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
| #!/usr/bin/env bash | |
| set -e | |
| # Ensure script is run as root. | |
| if [ "$(id -u)" -ne 0 ]; then | |
| echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' | |
| exit 1 | |
| fi |
| # Bluez monitor config file for PipeWire version "0.3.30" # | |
| # | |
| # Copy and edit this file in /etc/pipewire/media-session.d/ | |
| # for systemwide changes or in | |
| # ~/.config/pipewire/media-session.d/ for local changes. | |
| properties = { | |
| # Enable mSBC support, disabled by default. Be aware that | |
| # mSBC is not expected to work on all headset + adapter combinations. | |
| # This can be overloaded for a specific device and native backend |
Pentesting-Exploitation Programs and Commands , Protocols Network / Ports
############################################################################################################ ################## ############################# ################## #############################
This Gist collection contains all localstack related examples
################## ############################# ################## ############################# ############################################################################################################
| # ----------------------------------------- | |
| # Create new environment variable & print assignment statement to your shell's '.rc' file | |
| # | |
| # @1 = variable new | |
| # @2 = variable definition | |
| # @requires: '~/.zshrc' or '~/.bashrc' | |
| # ----------------------------------------- | |
| function new_env_var { | |
| local detected_shell="$(ps -o comm= -p $$)" | |
| local rcfile=$(echo "${HOME}/.${detected_shell//-/}rc") |
| " ~/.vimrc | |
| " ... | |
| " Check syntax in Vim asynchronously and fix files, with Language Server Protocol (LSP) support | |
| Plugin 'dense-analysis/ale' | |
| " ... | |
| " dense-analysis/ale options | |
| let g:ale_history_log_output = 1 | |
| let g:ale_use_global_executables = 1 |
| package com.nhn.jwt; | |
| import com.auth0.jwt.JWT; | |
| import com.auth0.jwt.algorithms.Algorithm; | |
| import com.auth0.jwt.interfaces.ECDSAKeyProvider; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import com.google.common.collect.Maps; | |
| import com.nimbusds.jose.*; | |
| import com.nimbusds.jose.crypto.ECDSASigner; | |
| import com.nimbusds.jose.jwk.Curve; |
| /* .header-bar.default-decoration { | |
| padding-top: 1px; | |
| padding-bottom: 1px; | |
| font-size: 0.3em !important; | |
| } | |
| .header-bar.default-decoration .button.titlebutton { | |
| padding: 0px; | |
| } | |
| window.ssd headerbar.titlebar { |
Don't do the crime, if you can't do the time.
-- Anthony Vincenzo "Tony" Baretta
Vim is an amazing text editor. I love it. Really, I wouldn't [organize][organize] a Vim advent calendar if I didn't. But, as amazing as it is, Vim is not for everyone. It can't solve all your problems, or be a TUI version of your favorite IDE, or make you a better programmer, or land you that dream job in the Bay Area. But Vim can help you be more mindful, focused, and efficient, as long as you approach it with the right mindset.
Don't get me wrong, I certainly welcome you to try Vim, but I'm not a proselyte. I don't thrive on newbies. I just want you to use the right tool for the job and not waste your—and anyone's—time on a fruitless quest.