I hereby claim:
- I am alissonperez on github.
- I am alissonrperez (https://keybase.io/alissonrperez) on keybase.
- I have a public key whose fingerprint is 2172 F752 816A 0123 4D9F 123B 2506 9817 F5D2 5CE7
To claim this, I am signing this object:
(* To the extent possible under law, Rob Mayoff has waived all copyright and related or neighboring rights to “AppleScript to make Google Chrome open/reload a URL”. This work is published from: United States. https://creativecommons.org/publicdomain/zero/1.0/ *) | |
tell application "Google Chrome Canary" | |
activate | |
set i to 0 | |
repeat with w in (windows) -- loop over each window | |
set j to 1 -- tabs are not zeroeth | |
repeat with t in (tabs of w) -- loop over each tab | |
if title of t starts with "Meet:" then | |
set (active tab index of w) to j -- set Meet tab to active | |
set index of w to 1 -- set window with Meet tab to active |
I hereby claim:
To claim this, I am signing this object:
// Generate keys (based in https://gist.github.com/nghiaht/224f7fe04ea591c6d2fddbee6c173379) | |
// Gen private keys: | |
// openssl genpkey -algorithm RSA -out private.pem -pkeyopt rsa_keygen_bits:2048 | |
// Gen public keys: | |
// openssl rsa -pubout -in private.pem -out public_key.pem | |
package main |
#!/usr/bin/env python | |
import consumer | |
import os | |
import sys | |
import signal | |
import logging | |
from config import Config | |
from multiprocessing import Process |
# Install python (gcloud sdk), make and certificates (gcloud) | |
apk add --update make ca-certificates openssl python gettext | |
update-ca-certificates | |
# Installing GCLOUD SDK | |
wget https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz | |
tar zxvf google-cloud-sdk.tar.gz && ./google-cloud-sdk/install.sh --usage-reporting=false --path-update=true | |
google-cloud-sdk/bin/gcloud --quiet components update | |
echo $GCLOUD_SERVICE_KEY | base64 -d > ${HOME}/gcloud-service-key.json | |
google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json |
image: docker:latest | |
# When using dind, it's wise to use the overlayfs driver for | |
# improved performance. | |
variables: | |
DOCKER_DRIVER: overlay | |
GCP_PROJECT_ID: CHANGE-TO-GCP-PROJECT-ID | |
IMAGE_NAME: image_id | |
services: |
{ | |
'version': 1, | |
'disable_existing_loggers': False, | |
'formatters': { | |
'standard': { | |
'format': '%(asctime)s [%(levelname)s] %(name)s: %(message)s' | |
}, | |
}, | |
'handlers': { | |
'default': { |
I hereby claim:
To claim this, I am signing this object:
No /etc/fstab
, mudar a versão de 3 para 4:
# Note o parâmetro 'vers=4' no fim da linha
99.99.99.99:/path/para/o/ambiente/99 /montagem/local/99 nfs rw,rsize=32768,wsize=32768,timeo=14,intr,sync,vers=4
No /etc/idmapd.conf
, incluir a linha Domain = corp.folha.com.br
abaixo da linha # Domain = localdomain
, ficando assim:
# no seu bashrc | |
source ~/.bash-gitprompt.sh #<--- https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh | |
PS1='\[\033]0;\u@\h:\W\007\]`if [ $? = 0 ]; then echo "\[\033[01;32m\]✔"; else echo "\[\033[01;31m\]✘"; fi` \[\033[01;37m\ ]\h\[\033[01;34m\] \w\[\033[35m\]$(__git_ps1 " %s") \[\033[01;36m\]$\[\033[00m\] ' | |
# no do root | |
PS1='\[\033]0;\u@\h:\W\007\]`if [ $? = 0 ]; then echo "\[\033[01;32m\]✔"; else echo "\[\033[01;31m\]✘"; fi` \[\033[00;31m\]\u@\h\[\033[01;34m\] \w\[\033[35m\] \[\033[01;31m\]#\[\033[00m\] ' | |
# nas vms | |
PS1='\[\033]0;\u@\h:\W\007\]`if [ $? = 0 ]; then echo "\[\033[01;32m\]✔"; else echo "\[\033[01;31m\]✘"; fi` \[\033[01;33m\]\u@\h\[\033[01;34m\] \w\[\033[35m\] \[\033[01;30m\]$\[\033[00m\] ' |