Skip to content

Instantly share code, notes, and snippets.

View juanignaciosl's full-sized avatar
🏠
Working from home

Juan Ignacio Sánchez Lara juanignaciosl

🏠
Working from home
View GitHub Profile
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Autocomplete - Remote datasource</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="http://libs.cartocdn.com/cartodb.js/v3/cartodb.core.js"></script>
<link rel="stylesheet" href="http://libs.cartocdn.com/cartodb.js/v3/3.11/themes/css/cartodb.css" />
@juanignaciosl
juanignaciosl / 0_reuse_code.js
Last active August 29, 2015 14:11
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@juanignaciosl
juanignaciosl / index.html
Last active August 29, 2015 14:11 — forked from Xatpy/index.html
World flags
<!DOCTYPE html>
<html>
<head>
<title>World flags | CartoDB.js</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<link rel="shortcut icon" href="http://cartodb.com/assets/favicon.ico" />
<style>
html, body, #map {
height: 100%;
@juanignaciosl
juanignaciosl / tmux_cartodb
Last active August 29, 2015 14:07
tmux cartodb workspace
#!/bin/bash
SESSIONNAME="cartodb_workspace"
tmux has-session -t $SESSIONNAME &> /dev/null
if [ "$?" != "0" ]; then
tmux new-session -s $SESSIONNAME -n script -d
tmux split-window -h -t $SESSIONNAME -t 0
tmux split-window -h -t $SESSIONNAME -t 1
tmux split-window -v -t $SESSIONNAME -t 0
R help
==========
- ?rnorm
- help.search("rnorm")
- args("rnorm")