This file contains 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
############### | |
# Step 0: | |
# Disclaimer | |
# | |
# RAM DISK ARE VOLATILE. YOU WILL LOOSE DATA IF POWER IS INTERRUPTED. | |
# | |
############### | |
# Step 1: |
This file contains 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
$ f3read /Volumes/Untitled/ | |
F3 read 7.1 | |
Copyright (C) 2010 Digirati Internet LTDA. | |
This is free software; see the source for copying conditions. | |
SECTORS ok/corrupted/changed/overwritten | |
Validating file 1.h2w ... 2097152/ 0/ 0/ 0 | |
Validating file 2.h2w ... 2097152/ 0/ 0/ 0 | |
Validating file 3.h2w ... 2097152/ 0/ 0/ 0 | |
Validating file 4.h2w ... 2097152/ 0/ 0/ 0 |
This file contains 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
alias git-master='git checkout master' | |
alias git-add-commit='function _git-add-commit(){ git add -A "$1"; git commit -S -m "$2"; }; _git-add-commit' | |
alias git-undo='git reset HEAD~' | |
alias git-checkout-branch='git checkout' | |
alias git-checkout-tag='function _git-checkout-tag(){ git checkout tags/"$1"; }; _git-checkout-tag' | |
# Branch is created on both, local and remote | |
alias git-new-branch='function _git-new-branch(){ git checkout -b "$1"; git push -u origin "$1"; }; _git-new-branch' | |
alias git-new-tag='function _git-new-tag(){ git tag -a "$1" -m "$1"; }; _git-new-tag' |
This file contains 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
686 (Burton sub-brand) snowboard fleece - Size L. | |
Water proof. | |
Used with signs of wear. | |
$10 eur | |
https://photos.app.goo.gl/vD1CfNGkUvcAk6S98 |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- | |
References | |
- https://www.materialpalette.com/colors | |
- https://www.materialui.co/colors | |
- https://material-ui.com/style/color/ | |
--> |
This file contains 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
package testkotlin | |
import kotlinx.coroutines.experimental.channels.ReceiveChannel | |
import kotlinx.coroutines.experimental.channels.consumeEach | |
import kotlinx.coroutines.experimental.channels.produce | |
import kotlinx.coroutines.experimental.newFixedThreadPoolContext | |
import kotlinx.coroutines.experimental.newSingleThreadContext | |
import kotlinx.coroutines.experimental.runBlocking | |
import kotlinx.coroutines.experimental.withContext | |
import kotlin.coroutines.experimental.CoroutineContext |
This file contains 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 | |
CURRENT=$(git branch | grep "*" | cut -c3-) | |
printf "Your current branch is '$CURRENT'. Will be ignored.\n\n" | |
BRANCHES=$(git branch | cut -c3-) | |
BRANCHES=${BRANCHES[@]/$CURRENT} | |
for BRANCH in ${BRANCHES} | |
do |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<Response> | |
<Say>You just got your ass saved!</Say> | |
</Response> |
This file contains 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 | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" | |
exit 1 | |
fi | |
declare -a arr=( | |
"Calendar.app" | |
"Chess.app" |
This file contains 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 | |
open -a "Google Chrome" --new --args --new-window \ | |
'https://tweetdeck.twitter.com' \ | |
'https://web.whatsapp.com' \ | |
'https://blastersystems.slack.com/' \ | |
'https://www.messenger.com/' \ | |
'https://web.telegram.org/' \ | |
'https://web.skype.com' \ | |
'https://hangouts.google.com/' \ |
NewerOlder