install the normal way:
wget https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.7.2-omnibus.5.4.2.ci-1_amd64.deb & > /dev/null
sudo apt-get update
sudo apt-get upgrade
<?xml version="1.0" encoding="UTF-8"?> | |
<style-scheme id="darcula" _name="Darcula" version="1.0"> | |
<author>Sash0k</author> | |
<_description>Dark color scheme using IntelliJ IDEA colors</_description> | |
<!-- Scribe Theme Generator 1.3 --> | |
<!-- COLORS --> | |
<color name="comment_color" value="#629755"/> |
#!/bin/bash | |
# Author: Natan Felles <[email protected]> | |
# Description: Easy LEMP Management | |
# Local: /usr/local/bin/lemp | |
# Foreground colors | |
declare -A COLOR | |
COLOR[default]=$(tput sgr0) | |
COLOR[red]=$(tput setaf 1) | |
COLOR[green]=$(tput setaf 2) |
/** | |
* Create a web friendly URL slug from a string. | |
* | |
* Requires XRegExp (http://xregexp.com) with unicode add-ons for UTF-8 support. | |
* | |
* Although supported, transliteration is discouraged because | |
* 1) most web browsers support UTF-8 characters in URLs | |
* 2) transliteration causes a loss of information | |
* | |
* @author Sean Murphy <[email protected]> |
install the normal way:
wget https://downloads-packages.s3.amazonaws.com/ubuntu-14.04/gitlab_7.7.2-omnibus.5.4.2.ci-1_amd64.deb & > /dev/null
sudo apt-get update
sudo apt-get upgrade
<?php | |
/** | |
* @author Natan Felles <[email protected]> | |
*/ | |
defined('BASEPATH') or exit('No direct script access allowed'); | |
/** | |
* Class Access | |
*/ | |
class Access extends CI_Controller { |
<?php | |
/** | |
* @author Natan Felles <[email protected]> | |
*/ | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
if ( ! function_exists('add_foreign_key')) | |
{ | |
/** | |
* @param string $table Table name |
var lang = { | |
// Text | |
unspecifiedRule: 'Por favor, insira um valor válido', | |
unspecifiedField: 'Este campo', | |
// Prompt | |
empty: '{name} deve ter um valor', | |
checked: '{name} deve ser marcado', | |
email: '{name} deve ser um valid e-mail', | |
url: '{name} deve ser uma url válida', | |
regExp: '{name} não está formatado corretamente', |
{ | |
"estados": [ | |
{ | |
"sigla": "AC", | |
"nome": "Acre", | |
"cidades": [ | |
"Acrelândia", | |
"Assis Brasil", | |
"Brasiléia", | |
"Bujari", |
#!/bin/bash | |
# Author: Natan Felles <[email protected]> | |
# Description: Serve Jekyll According to Environment | |
echo -n "Environment [d = development, p = production]: " | |
read ENV | |
rm -r .sass-cache/ | |
rm -r _site/ | |
rm .jekyll-metadata |