Skip to content

Instantly share code, notes, and snippets.

View diofeher's full-sized avatar
🎯
Focusing

Diógenes Fernandes diofeher

🎯
Focusing
View GitHub Profile
from django.template.defaultfilters import slugify
def slugify_file_name(filename):
'''
Slugify a file name
Use case:
>>> slugify_file_name('/home/diofeher/R5drgébvśdv_SVSvxpoj x,se.jpg')
u'/home/diofeher/r5drgebvsdv_svsvxpoj-xse.jpg'
'''
++++++++++[>+++++++>++++++++++>+++++++++++>++++++++++++>+++<<<<<-]>+++.>>>>++.<<<++++++++.>+.+++++++.<-------.>>>.<+.<-------.++++++.>>+.<<<<<+++++++++++.
@diofeher
diofeher / builder_python.py
Created June 1, 2010 12:48
Builder Pattern implemented in Python
#!/usr/bin/python
# -*- coding : utf-8 -*-
"""
@author: Diogenes Augusto Fernandes Herminio <[email protected]>
"""
# Director
class Director(object):
def __init__(self):
self.builder = None
@diofeher
diofeher / factory_method.py
Created June 1, 2010 15:37
Factory Method implemented in Python
#!/usr/bin/python
# -*- coding : utf-8 -*-
"""
@author: Diogenes Augusto Fernandes Herminio <[email protected]>
"""
# Product
class Churrasco(object):
def __init__(self):
self.fala = None
@diofeher
diofeher / abstract_factory
Created June 1, 2010 16:22
Abstract Factory Pattern implemented in Python
#!/usr/bin/python
# -*- coding : utf-8 -*-
"""
@author: Diogenes Augusto Fernandes Herminio <[email protected]>
"""
from abc import ABCMeta
#Abstract Factory
class StandardFactory(object):
#coding:utf-8
class Desktop(object):
"""
Computador novinho, ainda está todo embalado.
"""
def __init__(self, preco):
self.preco = preco or 'a combinar'
self.monitor = 'Monitor AOC Widescreen 19'' 912Vwa'
self.cpu = 'Daten'
self.extras = {'mouse':True, 'mousepad': True, 'teclado': True}
@diofeher
diofeher / cc_validation.py
Created July 5, 2011 04:58
cc_validation
def sum_digits(num):
"""
@param: num number as string
"""
return sum([int(digit) for digit in num])
def validate(cc_number):
"""
@param: cc_number credit card number as string
"""
@diofeher
diofeher / leet.py
Created July 5, 2011 05:27
leet translator hehe
#coding:utf-8
from string import maketrans
class Leet(object):
def __init__(self):
self.intab = u"013457"
self.outab = u"oleast"
def encrypter(self, text):
@diofeher
diofeher / count_lines.sh
Created October 8, 2011 23:33
Count lines of directory
#!/bin/bash
num=0
for arq in ` find . -type f -name "*.html" -o -name "*.css" -o -name "*.conf" -o -name "*.js" -o -name "*.xml" -o -name "*.txt" -o -name "*.py"`
do
tmp=`wc -l $arq | awk '{print $1}'`
num=`expr $num + $tmp`
done
echo Total: $num