-
Open the Terminal
-
Use
mysqldumpto backup your databases -
Check for MySQL processes with:
ps -ax | grep mysql -
Stop and kill any MySQL processes
-
Analyze MySQL on HomeBrew:
brew remove mysql
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
| # This file is part of my tinytinyRSSinstallation | |
| # It is used by systemd under Debian Jessie | |
| # WorkingDirectory=/var/www/html/ttrss must be YOUR Installationpath without | |
| # ending slash / | |
| # | |
| # vim /lib/systemd/system/ttrss-update.service | |
| # systemctl enable ttrss-update.service | |
| # systemctl --system daemon-reload | |
| # systemctl start ttrss-update.service | |
| # systemctl status ttrss-update.service |
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
| @import "minima"; | |
| /* Global styling */ | |
| $heading-font-family: "Courier New", Courier, monospace !default; | |
| @for $i from 1 through 6 { | |
| h#{$i} { | |
| font-family: $heading-font-family; | |
| } | |
| } |
sed -E -f solver.sed input where input is a file containing the maze.
For best results, resize your terminal to match the height of the maze. To disable animations, delete the lines containing p.
The solver assumes the following:
- The maze only contains the characters
# \nSE - Every line has the same number of characters
- There is only one start (
S) and end (E)
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
| #!/bin/bash | |
| read -rsn1; clear; echo -e "\nHello all! Let's talk about Vault today\n"; | |
| read -rsn1; clear; echo -e "\n\n | |
| - Vault solves many problems. But lets talk secret sprawl today | |
| - Secrets are spread everywhere (code, config, VCS) | |
| - Its hard to reason about who had accessed what | |
| - Which secrets were actually used? | |
| - If the infrastructure is compromised, it gets difficult to guage the attack surface which makes it even more harder to execute any break glass procedures. |
See the new site: https://postgresisenough.dev
OlderNewer