Mode game_type game_mode
Classic Casual 0 0
Classic Compt 0 1
Arms Race 1 0
Demolition 1 1
Deathmatch 1 2
Wingman 0 2
DangerZoneFFA 6 0
π
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
The list of additives used in bread in the US that are banned in the EU is comprehensive, highlighting differences in food safety and health regulations between the regions. Some notable additives include: | |
- Potassium Bromate: Used as a flour improver, it strengthens dough and allows it to rise higher. It is banned in the EU, Canada, and several other countries due to cancer risk concernsββ. | |
- Azodicarbonamide (ADA): A whitening agent and dough conditioner. Its breakdown product, semicarbazide, has shown to increase tumor incidence in mice, leading to its ban in the EUββ. | |
- Brominated Vegetable Oil (BVO): Used in some sodas and potentially in bread for emulsification. It is banned in the EU due to health concerns stemming from its bromine contentββ. | |
- Butylated Hydroxyanisole (BHA) and Butylated Hydroxytoluene (BHT): These are synthetic antioxidants used to prevent rancidity. They are possible carcinogens and heavily regulated or banned in the EUββββ. |
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
* { | |
/* Keyword value */ | |
user-select: none; | |
/* Mozilla-specific value */ | |
-moz-user-select: none; | |
/* WebKit-specific value */ | |
-webkit-user-select: none; | |
/* Microsoft-specific value */ | |
-ms-user-select: none; | |
} |
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
How to open the developer console in CS:GO | |
Hereβs a simple step by step guide to help you open the developer console through the options menu in-game. | |
1. Once youβve launched CS:GO, youβll be brought to a main menu screen. | |
2. Click the settings cog at the bottom left of the screen and then head on over to the βGame Settingsβ tab. | |
3. Scan through the list until you see the βEnable Developer Consoleβ option and set it to βYesβ. | |
4. Now that youβve done this, make sure you click βApplyβ at the bottom of the screen before moving on. | |
5. Now select βKeyboard and Mouseβ settings. | |
6. Search for the βToggle Consoleβ option at the bottom of the page, click on it and bind it to the key youβd feel most comfortable with. Try and avoid clashing it with another if possible, as thisβll make life much easier! |
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
grep -rnw '/path/to/search' -e 'text' |
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/sh | |
ECHO='echo ' | |
for branch in $(git branch -a | sed 's/^\s*//' | sed 's/^remotes\///' | grep -v 'master$\|release$'); do | |
if ! ( [[ -f "$branch" ]] || [[ -d "$branch" ]] ) && [[ "$(git log $branch --since "6 months ago" | wc -l)" -eq 0 ]]; then | |
if [[ "$DRY_RUN" = "false" ]]; then | |
ECHO="" | |
fi | |
local_branch_name=$(echo "$branch" | sed 's/remotes\/origin\///') | |
$ECHO git branch -d "${local_branch_name}" |
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
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
git fetch --all | |
git pull --all |
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 post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
β did:3:bafyreiebqtxwlgpu3wofb4zrgihgrc5vmwnoqzr5miuu6qjglgh6hjc3x4 β | |
Create your profile today to start building social connection and trust online at https://3Box.io/ |
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
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
Warning, you are on Immutable Infrastructure! | |
IF YOU MAKE ANY CHANGES TO THIS SERVER | |
THEY WILL BE OVERWRITTEN BY A PROCESS! | |
[email protected] | |
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
- You can do that using the preference pane if you have that installed "Preferences" > "MySQL" (at the bottom)
- You can stop it using Terminal
sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop
- If you have installed MySQL5, fire up Terminal window and execute
/usr/local/mysql/bin/mysqld_safe --skip-grant-tables
- For older versions of MySQL, execute the following command
/usr/local/mysql/bin/safe_mysqld --skip-grant-tables
NewerOlder