- bootstrap with typeahead
- jquery
This will use bootstrap with typeahead to create an autocomplete search.
#!/bin/bash | |
########################################### | |
# Backup de aplicaciones git del servidor # | |
########################################### | |
################# | |
# Configuración # | |
################# | |
# Servidor | |
SERVER_IP=X.X.X.X |
wget http://sourceforge.net/projects/gsoap2/files/gSOAP/gsoap_2.8.1.zip/download | |
unzip gsoap_2.8.1.zip | |
cd gsoap-2.8/ | |
./configure --prefix=/usr | |
make | |
make install |
mkdir /usr/local/src/CEAAPI | |
cd /usr/local/src/CEAAPI | |
cp /usr/local/src/gsoap-2.8/gsoap/typemap.dat . | |
wsdl2h -o CEAAPI.h http://staging-api.call-em-all.com/webservices/CEAAPI_v2.asmx?WSDL | |
soapcpp2 -i CEAAPI.h -I/usr/share/gsoap/import/ |
INSERTING TEXT | |
ESC command mode | |
i Insert before cursor | |
I Insert before line | |
a Append after cursor | |
A Append after line | |
o Open blank line below the cursor | |
O Open blank line above the cursor |
/* | |
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
server, but for some reason omit a client connecting to it. I added an | |
example at the bottom. | |
Save the following server in example.js: | |
*/ | |
var net = require('net'); |
#SOLID Principles with ruby examples
##SRP - Single responsibility principle A class should have only a single responsibility.
Every class should have a single responsibility, and that responsibility should be entirely encapsulated. All its services should be narrowly aligned with that responsibility, this embrace the high cohesion.
##OCP - Open/closed principle Software entities should be open for extension, but closed for modification.
{ | |
"title": "Asterisk Dashboard", | |
"services": { | |
"query": { | |
"list": { | |
"0": { | |
"query": "*", | |
"alias": "", | |
"color": "#7EB26D", | |
"id": 0, |
This gist assumes:
Ariel Aizemberg | |
@aaizemberg ( https://twitter.com/aaizemberg ) | |
http://www.linkedin.com/in/arielaizemberg | |
Introducción | |
Que es D3 | |
Quién creó esta librería | |
Mirar algunos ejemplos de la galería | |
https://github.com/mbostock/d3/wiki/Gallery |