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 | |
# This bash script monitor the battery power and show a notification | |
# and reproduce a randon frase on GLaDOS Voice. | |
notify_levels=(3 5 10 20 30 50 75 100) | |
BAT=$(ls /sys/class/power_supply | grep BAT | head -n 1) | |
last_notify=101 | |
glados_speak() { |
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
Problema: Transferir snapshot RDS criptografado para outra conta AWS e em outra região. | |
Problemática: | |
- Um snapshot compartilhado e criptografado não pode ser trocado de região na conta destino. | |
Solução: | |
Primeiro deve transferir o snapshot entre regiões na conta de origem, onde o snapshot foi criado. | |
- Criar uma nova chave KMS na região pretendida nessa mesma conta, lembrar de já adicionar a ID da conta de destino. | |
- Selecionar o snapshot na região de origem e em "Action/Copy snapshot" selecionar a região de destino e o Master key que foi criado na região de destino. | |
Ir na região de destino, para compartilhar com a outra conta. |
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
Tested on a quelima sq11. | |
################################# | |
# ERRO | |
################################ | |
$ ffmpeg -f v4l2 -video_size 640x480 -i /dev/video0 -c:v libx264 -preset ultrafast webcam.mp4 | |
/dev/video0: Input/output error | |
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
If you are a XCode developer, check size of the ~/Library/Developer/CoreSimulator/Devices' folder. | |
run this command in terminal. | |
$ xcrun simctl delete unavailable | |
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
Register a API in https://www.strava.com/settings/api | |
// Install plugin inAppBrowser | |
$ ionic cordova plugin add cordova-plugin-inappbrowser | |
$ npm install --save @ionic-native/in-app-browser | |
// I create a provider, but in this example I will do inside a "page". | |
// Import inAppBrowser in /pages/login/login.ts | |
import { InAppBrowser } from '@ionic-native/in-app-browser'; |
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
# Configurar Swapiness para 10%, melhora o desempenho em computadores com muita memória RAM | |
########################################################################################### | |
# Somente na sessão | |
sudo sysctl vm.swappiness=10 | |
# Permanente | |
sudo nano /etc/sysctl.conf | |
# edite vm.swappiness=10 | |
sudo reboot |