Skip to content

Instantly share code, notes, and snippets.

View icaromh's full-sized avatar
🦉

Ícaro Heimig icaromh

🦉
  • https://www.travelperk.com/
  • Barcelona, Spain
  • X @icaromh
View GitHub Profile
@icaromh
icaromh / cache-control
Created January 3, 2014 11:57
.htaccess para controlar o cache dos arquivos da aplicação. melhora significativamente Fonte : http://pastebin.com/eFihbb93 Original: Matheus Kramer
#Força a utilizar Cache-Control e Expires header
<IfModule mod_headers.c>
Header unset ETag
</IfModule>
FileETag None
<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 1 month"
ExpiresByType text/cache-manifest "access plus 0 seconds"
# Html

Sublime Text 2 Installation Guide: Ubuntu 13.04 and Elementary OS Luna

1. Install Sublime Text 2

Open terminal

sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text

2. Install Sublime Package Control

@icaromh
icaromh / sublime.txt
Created July 9, 2013 02:32
Instalar Sublime Linux
http://www.technoreply.com/how-to-install-sublime-text-2-on-ubuntu-12-04-unity/