Skip to content

Instantly share code, notes, and snippets.

View Henrilin28's full-sized avatar

Henry lin Henrilin28

View GitHub Profile
@Henrilin28
Henrilin28 / custom_worker.py
Created December 22, 2017 06:44
RQ custom worker
from rq.worker import Worker, WorkerStatus, StopRequested
from rq.utils import make_colorizer
from rq.logutils import setup_loghandlers
from rq import Queue
class CustomWorker(Worker):
def __init__(self, queues, name=None, default_result_ttl=None,
connection=None, exc_handler=None, exception_handlers=None,
@Henrilin28
Henrilin28 / get_job_status.sh
Created November 8, 2017 20:38 — forked from arturmkrtchyan/get_job_status.sh
Apache Spark Hidden REST API
curl http://spark-cluster-ip:6066/v1/submissions/status/driver-20151008145126-0000
@Henrilin28
Henrilin28 / get_job_status.sh
Created November 8, 2017 20:38 — forked from arturmkrtchyan/get_job_status.sh
Apache Spark Hidden REST API
curl http://spark-cluster-ip:6066/v1/submissions/status/driver-20151008145126-0000

Top-down learning path: Machine Learning for Software Engineers

Top-down learning path: Machine Learning for Software Engineers GitHub stars

Top-down learning path: Machine Learning for Software Engineers

Top-down learning path: Machine Learning for Software Engineers GitHub stars

@Henrilin28
Henrilin28 / beautiful_idiomatic_python.md
Created March 2, 2017 05:14 — forked from JeffPaine/beautiful_idiomatic_python.md
Transforming Code into Beautiful, Idiomatic Python: notes from Raymond Hettinger's talk at pycon US 2013. The code examples and direct quotes are all from Raymond's talk. I've reproduced them here for my own edification and the hopes that others will find them as handy as I have!

Transforming Code into Beautiful, Idiomatic Python

Notes from Raymond Hettinger's talk at pycon US 2013 video, slides.

The code examples and direct quotes are all from Raymond's talk. I've reproduced them here for my own edification and the hopes that others will find them as handy as I have!

Looping over a range of numbers

for i in [0, 1, 2, 3, 4, 5]:
@Henrilin28
Henrilin28 / beautiful_idiomatic_python.md
Created March 2, 2017 05:14 — forked from JeffPaine/beautiful_idiomatic_python.md
Transforming Code into Beautiful, Idiomatic Python: notes from Raymond Hettinger's talk at pycon US 2013. The code examples and direct quotes are all from Raymond's talk. I've reproduced them here for my own edification and the hopes that others will find them as handy as I have!

Transforming Code into Beautiful, Idiomatic Python

Notes from Raymond Hettinger's talk at pycon US 2013 video, slides.

The code examples and direct quotes are all from Raymond's talk. I've reproduced them here for my own edification and the hopes that others will find them as handy as I have!

Looping over a range of numbers

for i in [0, 1, 2, 3, 4, 5]:

The data was obtained in the form of a .json file (called Primary.json).

It had the following keys:

[u'dates',
u'processing_time',
u'generated',
u'races',
u'national_summary',
u'load_time',
u'data_load_time']
@Henrilin28
Henrilin28 / gist:b9f2532199354af240e5
Created September 24, 2014 14:01
BooStrap : Starter101
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">