This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
montogeek@montogeek:~/.ssh$ dpkg -L git | |
/. | |
/usr | |
/usr/lib | |
/usr/lib/git-core | |
/usr/lib/git-core/git-parse-remote | |
/usr/lib/git-core/git-credential-store | |
/usr/lib/git-core/git-mergetool | |
/usr/lib/git-core/git-stash | |
/usr/lib/git-core/git-relink |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
ignorecase = true | |
precomposeunicode = true | |
[remote "origin"] | |
url = [email protected]:montogeek/clojure-examples.git | |
fetch = +refs/heads/*:refs/remotes/origin/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var watch = require('gulp-watch'); | |
var minifycss = require('gulp-minify-css'); | |
var rename = require('gulp-rename'); | |
var gzip = require('gulp-gzip'); | |
var livereload = require('gulp-livereload'); | |
var rev = require('gulp-rev'); | |
var gzip_options = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Rails | |
gpg --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3 | |
\curl -sSL https://get.rvm.io | bash -s stable --ruby | |
. /home/vagrant/.rvm/scripts/rvm | |
rvm gemset create ember-crm | |
rvm gemset use ember-crm | |
gem install rails | |
rails new ember-crm -d postgresql //Problem 1 | |
// Solution 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Predawn/predawn.tmTheme", | |
"copy_with_empty_selection": false, | |
"default_line_ending": "unix", | |
"drag_text": false, | |
"draw_minimap_border": true, | |
"enable_tab_scrolling": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ vagrant up system | |
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Importing base box 'laravel/homestead'... | |
==> default: Matching MAC address for NAT networking... | |
==> default: Checking if box 'laravel/homestead' is up to date... | |
==> default: Setting the name of the VM: Homestead_default_1414634756701_72856 | |
==> default: Clearing any previously set network interfaces... | |
==> default: Preparing network interfaces based on configuration... | |
default: Adapter 1: nat | |
default: Adapter 2: hostonly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
session_save_path($_SERVER['DOCUMENT_ROOT'].'/../app/storage/sessions'); | |
session_name('laravel_session'); | |
@session_start(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select referencias.titulo, autores.nombre, autores.apellido | |
from referencias | |
join autor_referencia on referencias.id = autor_referencia.referencia_id | |
join autores on autor_referencia.autor_id = autores.id | |
order by autores.apellido asc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BANCOLOMBIA S.A., establecimiento bancario con domicilio principal en Medellín, quien en adelante se denominará EL BANCO pone a disposición de EL CLIENTE el producto DE TARJETA VIRTUAL E – PREPAGO que se regirá por las cláusulas que se contienen en el presente reglamento y en lo no previsto en ellas, por las normas sobre contratos comerciales vigentes en Colombia: | |
PRIMERA. EL BANCO podrá habilitar a EL CLIENTE el uso de una Tarjeta Prepago, que podrá ser utilizada por EL CLIENTE para la adquisición de bienes y servicios, en adelante LAS COMPRAS, única y exclusivamente a través de Internet, en los sitios Web de los establecimientos de comercio adscritos a los sistemas de Tarjeta patrocinados por EL BANCO o donde éste se encuentre afiliado y en ningún caso podrá ser utilizada para el pago de importaciones de bienes, dentro del marco normativo previsto en el capítulo 4 de la Circular Reglamentaria DCIN 83 del Banco de la República y las modalidades de importación previstas en el régimen aduanero Colombiano. Di |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function getUltimaActualizacionAttribute() | |
{ | |
setlocale(LC_ALL, Config::get('app.locale')); | |
return ucfirst($this->updated_at->formatLocalized('%A %d de %B de %Y')); | |
} |