Skip to content

Instantly share code, notes, and snippets.

View eloyz's full-sized avatar
🎯
Focusing

Eloy Zuniga Jr. eloyz

🎯
Focusing
View GitHub Profile
var serializer = new XMLSerializer(),
html = serializer.serializeToString(document);
# https://warehouse.python.org/project/pypi-cli/
$ sudo pypi stat tendenci-case-studies
Fetching statistics for 'http://pypi.python.org/pypi/tendenci-case-studies'. . .
Download statistics for tendenci-case-studies
=============================================
Downloads by version
1.0.0 13/02/25 [ 1,000 ] *******************************************
@eloyz
eloyz / .gitconfig
Last active August 29, 2015 14:02 — forked from mitsuhiko/.gitconfig
# Alternatively don't use slog but something else. I just like that more.
[alias]
slog = log --pretty=format:"%C(auto,yellow)%h%C(auto)%d\\ %C(auto,reset)%s\\ \\ [%C(auto,blue)%cn%C(auto,reset),\\ %C(auto,cyan)%ar%C(auto,reset)]"
addprx = "!f() { b=`git symbolic-ref -q --short HEAD` && \
git fetch origin pull/$1/head:pr/$1 && \
git fetch -f origin pull/$1/merge:PR_MERGE_HEAD && \
git rebase --onto $b PR_MERGE_HEAD^ pr/$1 && \
git branch -D PR_MERGE_HEAD && \
git checkout $b && echo && \
git diff --stat $b..pr/$1 && echo && \
@eloyz
eloyz / download_image.py
Last active August 29, 2015 14:05
A script that downloads images. Script was design with the intent of teaching basic Python programming skills
import os
import StringIO
# import the request module
import requests
from PIL import Image
# Storing the image URL in a constant variable
IMAGE_URL = 'http://www.distractify.netdna-cdn.com/wp-content/uploads/2014/08/slugsolos-1-620x.jpg'
@eloyz
eloyz / is_none.py
Last active August 29, 2015 14:05
Function that tests if all values in dictionary are a None type object
def is_none(d):
"""Returns True if dictionary contains
all None type objects
"""
for i in d.itervalues():
if i is not None:
return False
return True
@eloyz
eloyz / uri.js
Last active August 29, 2015 16:08 — forked from jlong/uri.js
URI Parsing with Javascript
var parser = document.createElement('a');
parser.href = "http://example.com:3000/pathname/?search=test#hash";
parser.protocol; // => "http:"
parser.hostname; // => "example.com"
parser.port; // => "3000"
parser.pathname; // => "/pathname/"
parser.search; // => "?search=test"
parser.hash; // => "#hash"
parser.host; // => "example.com:3000"
@eloyz
eloyz / user_object_max_length_validation.py
Created June 24, 2011 14:59
Validate Django user max length object against database
from django.contrib.auth.models import User
from django.db.models.fields import FieldDoesNotExist
# Used for user import feature.
# There's no form validation; so we validate max_length this way.
# loop through user properties; truncate at max_length
for key, value in user.__dict__.items():
max_length = None
try:
@eloyz
eloyz / is_email_valid.py
Created June 24, 2011 15:10
Check if Valid Email via Django Regex
from django.core.validators import email_re
def is_email_valid(email):
""" Check if valid email via Django regex """
return bool(email_re.match(email))
@eloyz
eloyz / entity2unicode.py
Created June 30, 2011 22:39
Convert HTML Entity to Unicode in Django Pages Module
import re
import HTMLParser
from django.core.management.base import BaseCommand
class Command(BaseCommand):
"""
Converts title and content html entities to unicode
"""
@eloyz
eloyz / content_type_and_permissions.py
Created July 24, 2011 13:05
Content Type and Permissions
from django.core.management import setup_environ
try:
import settings
except ImportError:
import sys
sys.stderr.write("Couldn't find the settings.py module.")
sys.exit(1)
setup_environ(settings)