Skip to content

Instantly share code, notes, and snippets.

View fmmsilva's full-sized avatar
🏖️
Meu escritório é na praia

Felipe Mendonça Marques Silva fmmsilva

🏖️
Meu escritório é na praia
  • Vitória, ES, BRA
View GitHub Profile
@patrickhammond
patrickhammond / android_instructions.md
Last active March 29, 2024 20:14
Easily setup an Android development environment on a Mac

Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.

Prerequisites (for Homebrew at a minimum, lots of other tools need these too):

  • XCode is installed (via the App Store)
  • XCode command line tools are installed (xcode-select --install will prompt up a dialog)
  • Java

Install Homebrew:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

@inancsevinc
inancsevinc / nginx_subfilter_config
Created June 18, 2012 21:07
configuration example of HttpSubModule, replaces "__name__" in the response
server {
listen 80;
server_name localhost;
root D:/Development/public;
sub_filter_once off;
location / {
if ($uri ~* /(\w+)\.html$) {
set $filename "$1";