This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
++++++++++[>+++++++>++++++++++>+++++++++++>++++++++++++>+++<<<<<-]>+++.>>>>++.<<<++++++++.>+.+++++++.<-------.>>>.<+.<-------.++++++.>>+.<<<<<+++++++++++. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding : utf-8 -*- | |
""" | |
@author: Diogenes Augusto Fernandes Herminio <[email protected]> | |
""" | |
# Director | |
class Director(object): | |
def __init__(self): | |
self.builder = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding : utf-8 -*- | |
""" | |
@author: Diogenes Augusto Fernandes Herminio <[email protected]> | |
""" | |
# Product | |
class Churrasco(object): | |
def __init__(self): | |
self.fala = None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding : utf-8 -*- | |
""" | |
@author: Diogenes Augusto Fernandes Herminio <[email protected]> | |
""" | |
from abc import ABCMeta | |
#Abstract Factory | |
class StandardFactory(object): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
OlderNewer