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
@robsonamendonca
robsonamendonca / reverse_proxy_setup.txt
Created February 28, 2023 17:03 — forked from codesorter2015/reverse_proxy_setup.txt
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
@robsonamendonca
robsonamendonca / configuracao_e_instalacao_rails.markdown
Created January 13, 2021 11:04 — forked from BrunoSDias/configuracao_e_instalacao_rails.markdown
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"

@robsonamendonca
robsonamendonca / extensions.txt
Created December 9, 2020 14:17 — forked from rafaelmaiach/extensions.txt
VSCode installed extensions
code --install-extension abusaidm.html-snippets
code --install-extension alexdima.copy-relative-path
code --install-extension christian-kohler.npm-intellisense
code --install-extension christian-kohler.path-intellisense
code --install-extension CoenraadS.bracket-pair-colorizer-2
code --install-extension cssho.vscode-svgviewer
code --install-extension darkriszty.markdown-table-prettify
code --install-extension DavidAnson.vscode-markdownlint
code --install-extension dbaeumer.vscode-eslint
code --install-extension dracula-theme.theme-dracula
@robsonamendonca
robsonamendonca / index.html
Created February 2, 2019 13:50 — forked from caio-ribeiro-pereira/index.html
Simple Voice Recognition in JS
<!DOCTYPE html>
<html>
<head>
<title>Simple Command Voice</title>
</head>
<body>
<p id="output"></p>
<button id="start">Click and say something!</button>
<script>
(() => {