Skip to content

Instantly share code, notes, and snippets.

View robsonamendonca's full-sized avatar
🏠
Working from home

Robson Antonio Lima Mendonça robsonamendonca

🏠
Working from home
View GitHub Profile
1. Comentar Várias LinkedHashSet
1. Selecionar LinkedHashSet
2. CTRL + K
3. CTRL + C
2. Remover Comentários
1. Selecionar LinkedHashSet
2. CTRL + K
3. CTRL + U
3. Tutorial How to Deploy to Google App Store
1. Criando os ícones
@luizomf
luizomf / tutorial.txt
Created August 7, 2021 10:51
WSL2 e Docker no Windows 10.
### Tutorial oficial:
https://docs.microsoft.com/en-us/windows/wsl/install-win10
### Passo 1 (PowerShell Admin):
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
### Passo 2 (PowerShell Admin):
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
### Passo 3
@BrunoSDias
BrunoSDias / configuracao_e_instalacao_rails.markdown
Last active November 12, 2023 10:17
Configuração e instalação para ruby on rails

Aula 01 - Instalação e configuração de ambiente

Git:

  • Buscar por git no google

  • Após instalar:

      git config --global user.name "seu nome"
    

git config --global user.email "seu email"

@diego3g
diego3g / settings.json
Last active June 30, 2024 01:04
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [80, 120],
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
@codesorter2015
codesorter2015 / reverse_proxy_setup.txt
Last active June 6, 2024 00:15
Reverse Proxy Setup with XAMPP/WAMP
Open apache httpd.conf file
Enable the following Modules by removing the # at the front of the line.
- LoadModule rewrite_module modules/mod_rewrite.so
- LoadModule proxy_module modules/mod_proxy.so
- LoadModule proxy_http_module modules/mod_proxy_http.so
- LoadModule proxy_connect_module modules/mod_proxy_connect.so
Open apache httpd-vhosts.conf
<VirtualHost *:80>
ProxyRequests On
@gabrielfroes
gabrielfroes / Dockerfile
Created October 5, 2018 14:55
Docker + VS Code #CDFTV #MaoNoCodigo3
FROM php:7.2-apache
RUN docker-php-ext-install mysqli
RUN a2enmod rewrite