sh install-docker.sh- log out
- log back in
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # List of plugins | |
| set -g @plugin 'tmux-plugins/tpm' | |
| set -g @plugin 'tmux-plugins/tmux-sensible' | |
| set -g @plugin 'tmux-plugins/tmux-resurrect' | |
| set -g @plugin 'catppuccin/tmux' | |
| set -g @plugin 'tmux-plugins/tpm' | |
| # --- Theme | |
| set -g @catppuccin_flavour 'frappe' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| require 'start_xdebug_reqbasedlogging.php'; | |
| require 'logeverything.php'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // gather_logs(); | |
| function gather_logs() { | |
| if (!isset($_SESSION)) { session_start(); } | |
| $session_keys = array_keys($_SESSION); | |
| $session = []; | |
| foreach ($session_keys as $key) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE); | |
| xdebug_start_code_coverage(); | |
| //error_log('starting coverage (main)' . $_SERVER["SCRIPT_FILENAME"]); | |
| function shutdown_ashd9va() | |
| { | |
| // Registering shutdown function inside shutdown function | |
| // is a trick to make this function be called last! | |
| register_shutdown_function('shutdown_kdnw92j'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:buster | |
| LABEL name "Brave pagegraph on Debian" | |
| RUN apt update &&\ | |
| apt install git curl -y | |
| RUN curl -fsSL https://deb.nodesource.com/setup_14.x | bash - | |
| RUN apt update &&\ | |
| apt install -y nodejs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "global": { | |
| "check_for_updates_on_startup": true, | |
| "show_in_menu_bar": true, | |
| "show_profile_name_in_menu_bar": false | |
| }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "parameters": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| #SingleInstance FORCE ; Skip invocation dialog box and silently replace previously executing instance of this script. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ;================================================================================================ | |
| ; CapsLock processing. Must double tap CapsLock to toggle CapsLock mode on or off. | |
| ;================================================================================================ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://taranjeet.cc/auto-backup-mysql-database-to-google-drive/ | |
| https://github.com/gdrive-org/gdrive/issues/426 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo fallocate -l 1G /swapfile | |
| sudo chmod 600 /swapfile | |
| sudo mkswap /swapfile | |
| sudo swapon /swapfile | |
| echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab |
NewerOlder