Skip to content

Instantly share code, notes, and snippets.

Avatar
🐍
Machine Learning / Deep Learning

kevincruz kevinjosue2326

🐍
Machine Learning / Deep Learning
View GitHub Profile
@kevinjosue2326
kevinjosue2326 / simple_mjpeg_streamer_http_server
Created May 5, 2019 21:22 — forked from n3wtron/simple_mjpeg_streamer_http_server
Simple Python Motion Jpeg (mjpeg server) from webcam. Using: OpenCV,BaseHTTPServer
View simple_mjpeg_streamer_http_server
#!/usr/bin/python
'''
Author: Igor Maculan - n3wtron@gmail.com
A Simple mjpg stream http server
'''
import cv2
import Image
import threading
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer
from SocketServer import ThreadingMixIn
View 00_epat_january_2018.md

Executive Program in Algorithmic Trading (QuantInsti)

Python Sessions by Dr. Yves J. Hilpisch | The Python Quants GmbH

Online, 27. & 28. January 2018

@kevinjosue2326
kevinjosue2326 / 00_cqf_ml_elective.md
Created February 18, 2018 05:35 — forked from yhilpisch/00_cqf_ml_elective.md
Machine Learning for Finance | Dr. Yves J. Hilpisch | CQF Elective | London, 23. May 2017
View 00_cqf_ml_elective.md

Machine Learning for Finance

A CQF elective with Dr. Yves J. Hilpisch, The Python Quants GmbH

General resources:

@kevinjosue2326
kevinjosue2326 / example.cu
Created January 17, 2018 16:43 — forked from dpiponi/example.cu
Minimal CUDA example (with helpful comments).
View example.cu
#include <stdio.h>
//
// Nearly minimal CUDA example.
// Compile with:
//
// nvcc -o example example.cu
//
#define N 1000