Skip to content

Instantly share code, notes, and snippets.

View ionatan-israel's full-sized avatar
🏠
Working from home

Jonatan Rodríguez ionatan-israel

🏠
Working from home
View GitHub Profile
Function Shortcut
previous tab ⌘ + left arrow
next tab ⌘ + right arrow
go to tab ⌘ + number
go to window ⌘ + Option + Number
go to split pane by direction ⌘ + Option + arrow
go to split pane by order of use ⌘ + ] , ⌘ + [
split window horizontally (same profile) ⌘ + D
split window vertically (same profile) ⌘ + d
@ionatan-israel
ionatan-israel / pasukim_por_pereq.py
Created November 17, 2013 19:31
Tupla con el número total de pasukim por pereq de cada sefer del TaNa"J
# -*- coding: utf-8 -*-
pasukim_pereq = (
(
# Bereshit
31, 25, 24, 26, 32, 22, 24, 22, 29, 32,
32, 20, 13, 24, 21, 16, 27, 33, 38, 18,
34, 24, 20, 67, 34, 35, 46, 22, 35, 43,
54, 33, 20, 31, 29, 43, 36, 30, 23, 23,
57, 38, 34, 34, 28, 34, 31, 22, 33, 26
#! /usr/bin/env python
# script for ubnt device discovery
# Usage: python discover.py or ./discover.py
import socket
from contextlib import closing
PORT=40860
#entOS release 6.4 (Final)
#16:23:42 2013-10-24
#[Ivan Lyon]([email protected])
python -V #see the python version
yum -y install gcc #install the gcc
wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tar.bz2 #download the python open source code
tar -jvx -f ./Python-2.7.5.tar.bz2 #Decompress the open source code
#!/bin/bash
# Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/
# Install stuff #
#################
# Install development tools and some misc. necessary packages
yum -y groupinstall "Development tools"
yum -y install zlib-devel # gen'l reqs
# -*- coding: utf-8 -*-
from django import forms
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Layout, Div, Submit, HTML, Button, Row, Field
from crispy_forms.bootstrap import AppendedText, PrependedText, FormActions
class MessageForm(forms.Form):
text_input = forms.CharField()
/*!
* Bootstrap v2.2.1
*
* Copyright 2012 Twitter, Inc
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Designed and built with all the love in the world @twitter by @mdo and @fat.
*/
@ionatan-israel
ionatan-israel / gist:9438153
Created March 8, 2014 20:10
Script to reload apps of PythonAnywhere
#! /usr/bin/env python
import mechanize
import getpass
import time
import os
def reload(username=None, password=None):
if username is None:
username = raw_input('Username: ')
#!/usr/bin/env bash
if [ $EUID != 0 ]; then
"This script must be run with sudo"
exit $?
fi
echo " Installing dependencies"
apt-get install ia32-libs -y # Note: This dep is a bit overkill but it's useful anyway
ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0