mkdir /etc/X11/xorg.conf.d/;
echo 'Section "InputClass"
Identifier "Touchpad" # required
MatchIsTouchpad "yes" # required
Driver "synaptics" # required
Option "MinSpeed" "0.5"
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
| apt-get install git vim curl build-essential | |
| # Requirements for PHP 5.6 | |
| ## Source https://stackoverflow.com/questions/46378017/install-php5-6-in-debian-9 | |
| ### https://deb.sury.org/ | |
| apt-get install apt-transport-https lsb-release ca-certificates | |
| cd ~ | |
| wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg | |
| echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list | |
| cat /etc/apt/sources.list.d/php.list |
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
| # Run as sudo | |
| path="/usr/share/themes" | |
| iconpath="/usr/share/icons" | |
| cd $path | |
| wget https://github.com/B00merang-Project/Windows-10/archive/master.zip | |
| unzip master.zip | |
| rm master.zip |
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
| package com.company; | |
| import java.util.Scanner; | |
| public class Main { | |
| // OBS: comentários em um código podem ser feitos com // (que comenta uma linha) ou usando o /* para abrir e o */ para fechar o escopo do comentário | |
| public static void main (String[] args) { | |
| int jogador = 1; |
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android
mkdir -p $ANDROID_HOME/ndk-bundle/toolchains/mips64el-linux-android/prebuilt/linux-x86_64
mkdir -p $HOME/.dockerdata/couchdb/data $HOME/.dockerdata/couchdb/etc; \
docker run -v $HOME/.dockerdata/couchdb/data:/opt/couchdb/data \
--name couchdb \
-p 5984:5984 \
-d couchdb:2;
Ubuntu 18.10
sudo add-apt-repository ppa:ondrej/php
Debian 9
sudo apt -y install lsb-release apt-transport-https ca-certificates
sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
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
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Firefox Developer | |
| GenericName=Web Browser | |
| Comment=Access the Internet | |
| Exec=/opt/firefox/firefox %U | |
| StartupNotify=true | |
| Terminal=false | |
| Icon=/opt/firefox/browser/chrome/icons/default/default128.png | |
| Type=Application |