Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
CREATE TABLE `calles` (
`id_calle` int(11) NOT NULL,
`nombre_calle` varchar(250) COLLATE utf8_spanish_ci NOT NULL,
`id_comuna` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci ROW_FORMAT=COMPACT;
--
-- Volcado de datos para la tabla `calles`
--
@joecabezas
joecabezas / gist:0b552253bdd1bf20ff625e66f59e43b2
Created December 5, 2017 20:54
stream game for streamlabs
var url = "ws://localhost:1004";
var ws = new WebSocket(url);
ws.onopen = function()
{
console.log("connected to " + url);
// Web Socket is connected, send data using send()
ws.send(
JSON.stringify({
type:"MESSAGE_TYPE_MEMORIZE",
data: "{userMessage}"
@joecabezas
joecabezas / .bashrc
Created March 15, 2012 13:47 — forked from ralfebert/.bashrc
git settings
# Prompt (Debian)
#source /usr/local/bin/git-completion.sh
# Prompt (OS X + homebrew)
#source /usr/local/etc/bash_completion.d/git-completion.bash
#PS1="\[\033[31;38m\]\w\[\033[1;31m\]\$(__git_ps1)\[\033[00m\] "
#export GIT_PS1_SHOWDIRTYSTATE=1
# Set git autocompletion and PS1 integration