Skip to content

Instantly share code, notes, and snippets.

View vanjos's full-sized avatar

Victor ... wait for it .... Anjos vanjos

View GitHub Profile
@vanjos
vanjos / NC-MySQLDUMP.sh
Last active January 2, 2023 00:15
Easy way to do a mysqldump and restore using netcat (this is NOT encrypted)
#####
# You'll be needing two machines, the target machine and source one (makes sense, right)?
#####
# On the target machine
nc -l 55555 | gzip -d -c | mysql <database name> -u<user> -p<password> [ | <decrypt> ]
#####
# On the source machine
mysqldump -u<user> -p<password> <database name> | gzip | nc <ip of target server> 55555 [ | <encrypt> ]
@vanjos
vanjos / datastax_cassandra.sh
Last active April 4, 2017 10:51
Very quick and easy Cassandra (1.2) Installation on an EC2 (or really any) Ubuntu offering.
#!/bin/bash
###
#
# Find out which ami to use on http://www.alestic.com
#
# at the time of this writing, Ubuntu 12.04 (Precise) was ami-23d9a94a
# with EBS boot
#
# In order for this to work, tuned your firewall for the following:
@vanjos
vanjos / bpnn.py
Created February 4, 2013 18:09
Backward Propagation Neural Network (XOR)
#!/usr/bin/env python
import math
import random
import string
random.seed(0)
# calculate a random number where: a <= rand < b
@vanjos
vanjos / innodb_memcheck.sql
Created January 31, 2013 20:22
Find out how much possible MEM MySQL would use (with INNODB)
SHOW VARIABLES LIKE 'innodb_buffer_pool_size';
SHOW VARIABLES LIKE 'innodb_additional_mem_pool_size';
SHOW VARIABLES LIKE 'innodb_log_buffer_size';
SHOW VARIABLES LIKE 'thread_stack';
SET @kilo_bytes = 1024;
SET @mega_bytes = @kilo_bytes * 1024;
SET @giga_bytes = @mega_bytes * 1024;
SET @innodb_buffer_pool_size = 2 * @giga_bytes;
SET @innodb_additional_mem_pool_size = 16 * @mega_bytes;
SET @innodb_log_buffer_size = 8 * @mega_bytes;