Skip to content

Instantly share code, notes, and snippets.

View marcelcaraciolo's full-sized avatar
💭
Coding !

Marcel Caraciolo marcelcaraciolo

💭
Coding !
View GitHub Profile
var express = require('express')
, routes = require('./routes')
, http = require('http')
, path = require('path')
, fs = require('fs')
, uuid = require('uuid')
, yhat = require('yhat');
var app = express();
var yh = yhat.init("your username", "your apikey");
@marcelcaraciolo
marcelcaraciolo / example.py
Last active August 29, 2015 14:04
example command
def can_pipe(command, fastq_file):
'''
bwa-mem handles longer (> 70bp) reads with improved piping.
Randomly samples 5000 reads from the first two million.
Default to no piping if more than 75% of the sampled reads are small.
'''
min_size = 70
thresh = 0.75
head_count = 8000000
tocheck = 5000
@marcelcaraciolo
marcelcaraciolo / vm.py
Created July 19, 2014 04:35
example vm
class VM(object):
def __init__(self, uuid, name, status):
self.uuid = uuid
self.name = name
self.status = status
def __repr__(self):
return '%s - %s (%s)' % (self.uuid, self.name, self.status)
def export(self, directory_name=None):
@marcelcaraciolo
marcelcaraciolo / admin.py
Created February 25, 2015 13:25
Simple admin example
# -*- coding: utf-8 -*-
import xlwt
from django.contrib import admin
from django.http import HttpResponse
from models import (PaymentForm, Order, OrderItem,
Discount, Affiliate)
from forms import DiscountForm
for monitoramento in monitor_videos.find():
termos = {}
for video in monitoramento['value']['videos']:
x = db.youtube_history.find({'cod_video': video, 'date_year': final_date.year, 'date_hour': final_date.hour,
'date_month': final_date.month, 'date_day': final_date.day,
'classificacao': True})
for historico in x:
for termo in historico['terms']:
termos.setdefault(termo,0)
termos[termo] += historico['view_count']
if you in (depressed, sadness, resignation):
print 'me, my sweetheart'
if feel(you) is 'lonely' or feel(you) is 'neglected':
talk_me(this)
while always:
I.take_care(you)
if you.love() is not me:
# I will follow in the madness
# I will
break # down...
import unittest
from datetime import date, timedelta
'''
Vaga para Desenvolvedor Web na empresa Orygens
Script inspirado http://github.com/praekelt/careers/raw/master/software_engineer.py
'''
from pyroc import *
random_sample = random_mixture_Model() # Generate a custom set randomly
print random_sample
[(1, 0.53543926503331496), (1, 0.50937533997469853), (1, 0.58701681878005862), (1, 0.57043399840000497),
(1, 0.56229469766270523), (1, 0.6323079028948545), (1, 0.72283523937059946), (1, 0.55079104791257383),
(1, 0.59841921172330748), (1, 0.63361144887035825)]
from twitterauth.models import User
import base64
import httplib
import urllib
def send_msg(userkey,tp):
url = 'www.imified.com'
form_fields = {
@marcelcaraciolo
marcelcaraciolo / models.py
Created November 15, 2010 02:35
cadastro de cidades em compras coletivas
"""
MASSIVEcoupon.com
"""
from django.db import models # Replaced by models in gis package
from django.contrib.auth.models import User
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic