Skip to content

Instantly share code, notes, and snippets.

import sublime
import sublime_plugin
import time
class ExampleCommand(sublime_plugin.TextCommand):
def run(self, edit):
the_sels = self.view.sel()
the_sels_begin = the_sels[0].begin()
the_sels_end = the_sels[0].end()
import sublime
import sublime_plugin
import urllib2
class ExampleCommand(sublime_plugin.TextCommand):
def run(self, edit):
the_sels = self.view.sel()
the_sels_begin = the_sels[0].begin()
the_sels_end = the_sels[0].end()
var http = require('http'),
fs = require('fs'),
url = require('url'),
qs = require('querystring'),
io = require('socket.io');
var server = http.createServer(function(req, res){
res.setHeader('Content-Type','application/json');
if (req.headers['user-agent'] == 'RTC-UA'){
var GET = qs.parse(url.parse(req.url).query);
function checar_tiempo (startdate, tiempo_de_creacion) {
if(startdate.getSeconds() > tiempo_de_creacion.getSeconds() && startdate.getMinutes() === tiempo_de_creacion.getMinutes() && startdate.getDay() === tiempo_de_creacion.getDay() && startdate.getMonth() === tiempo_de_creacion.getMonth() && startdate.getFullYear() === tiempo_de_creacion.getFullYear() && startdate.getHours() === tiempo_de_creacion.getHours()){
tiempo = "A few ";
quees = "seconds";
}else if(startdate.getMinutes() > tiempo_de_creacion.getMinutes() && startdate.getDay() === tiempo_de_creacion.getDay() && startdate.getMonth() === tiempo_de_creacion.getMonth() && startdate.getFullYear() === tiempo_de_creacion.getFullYear() && startdate.getHours() === tiempo_de_creacion.getHours()){
tiempo = startdate.getMinutes() - tiempo_de_creacion.getMinutes() ;
quees = " minutes";
@Verurteilt
Verurteilt / client.py
Last active December 17, 2015 07:19
CouchDb client in process
import base64
import urllib2
import json
import httplib
class CouchDatabase(object):
def __init__(self,host="http://localhost", port=5984):
http://stackoverflow.com/questions/4475251/django-through-model-iteration
http://www.djangobook.com/en/2.0/chapter10.html
@Verurteilt
Verurteilt / gist:5580281
Created May 14, 2013 22:45
document.py
from database import CouchDatabase
import base64
import urllib2
import json
import httplib
class CouchDocument(CouchDatabase):
def __init__(self, host="http://localhost", port=5984, database="pruebas"):
@Verurteilt
Verurteilt / gist:5580282
Created May 14, 2013 22:45
database.py
import base64
import urllib2
import json
import httplib
class CouchDatabase(object):
def __init__(self, host="localhost", port=5984):
https://gist.github.com/anonymous/5580444
def pdf(request):
response = HttpResponse(content_type="application/pdf")
response['Content-Disposition'] = 'attachment; filename="UTEL_Tramites.pdf"'
file_ = GenerarPDF(response=response, user=User.objects.get(id=1))
to_admin = 'mini.guero@hotmail.com'
html_content = "Informacion recibida de <br><br><br>***Mensaje****<br><br>"
msg = EmailMessage('Correo de Contacto', html_content, 'from@server.com', [to_admin])
msg.attach('UTEL_Tramites.pdf', response.content, 'application/pdf')
msg.send()
return response