Skip to content

Instantly share code, notes, and snippets.

View alpocr's full-sized avatar

Allan Porras alpocr

View GitHub Profile
from SimpleCV import * #import FrameWork
import time # import time
frame = Image("1.jpg").scale(0.8) # open image
face = frame.findHaarFeatures("face.xml") #start a face.xml instance
if face: #if a face was found
face.draw((0, 255, 0), 3)
frame.show() # show result
time.sleep(10)
Asunto: Feria App
Estimado David Smith:
Espero que esté teniendo un gran día!
Mi empresa XYZ ABC ofrece aplicaciones en línea y móviles que proporcionan a los asistentes la oportunidad de planificar y conectarse a las conferencias antes de salir para un evento. Es una manera de crear buzz, comunicarse con sus asistentes, red, programar reuniones por adelantado y el intercambio de información.
El networking es importante en los eventos, sin embargo, tenemos algunos clientes que van con una sola aplicación básica que despoja a todas las características interactivas que tenga. Podemos acomodar una solución que sea adecuada para su evento. Nosotros suministramos estas apps a conferencias similares como la suya y le garantizo que le resultará beneficioso.
Para obtener más información visite nuestro sitio web para ver un video corto http://xyz.com/videos sitio web. Por favor, hágame saber si podemos arreglar una cita para una demostración. No dude en llamarnos si tiene alguna pregunta. Mi número es 603-555-1212.
Asunto: Feria AppEstimado David Smith: Espero que esté teniendo un gran día! Mi empresa XYZ ABC…
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<form id="fileupload" name="fileupload" enctype="multipart/form-data" method="post">
<fieldset>
<input type="file" name="filename" id="filename"></input>
<input id="uploadbutton" type="button" value="Upload to GCS"/>
</fieldset>
</form>
<script type="text/javascript">
<!--
Copyright (c) 2012 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
sudo ffmpeg -f v4l2 -i /dev/video0 -f alsa -i hw:1 -flags +global_header -ar 44100 -ab 16k -s 1280x720 -vcodec h264 -pix_fmt yuv420p -g 25 -vb 32k -profile:v baseline -r 30 -f flv "rtmp://a.rtmp.youtube.com/live2/STREAM-NAME"
<?xml version='1.0' encoding='utf-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
#!/usr/bin/python
import sys
class Course(object):
id = None
limit_courses=3
description = ""
name = ""
"""
Author: Allan Porras
Emil: alpocr@gmail.com
June 3, 2015
"""
import csv
from collections import defaultdict
# -*- coding: utf-8 -*-
import os
import urllib
import pytz
from datetime import datetime, date
from django.db import models
from django.db.models import signals