Skip to content

Instantly share code, notes, and snippets.

View mrmushfiq's full-sized avatar
💻
☕️

Mushfiq Rahman mrmushfiq

💻
☕️
  • Memorial Sloan Kettering Cancer Center
View GitHub Profile
@mrmushfiq
mrmushfiq / Dockerfile
Created September 7, 2022 20:54 — forked from arifwn/Dockerfile
(Relatively) Simple Dockerfile that bundles Django, Nginx, Gunicorn, Supervisord, Celery, Redis, Memcached, wkhtmltopdf, nodejs and React frontend build in a single container
FROM python:3.8
ENV PYTHONUNBUFFERED 1
# Install node prereqs, nodejs and yarn
# Ref: https://deb.nodesource.com/setup_10.x
# Ref: https://yarnpkg.com/en/docs/install
RUN \
apt-get update && \
apt-get install -yqq apt-transport-https xfonts-base xfonts-75dpi libsasl2-dev
RUN \
@mrmushfiq
mrmushfiq / 01_readme.md
Created September 14, 2021 05:36 — forked from pbugnion/01_readme.md
Airflow on SherlockML

Airflow on SherlockML

Apache Airflow is an open source tool for creating task pipelines. It lets you define sets of tasks and dependencies between those tasks, and then takes care of the execution.

Airflow can be a useful add-on to SherlockML: you can schedule

@mrmushfiq
mrmushfiq / algo.py
Created February 28, 2020 01:20 — forked from umitanuki/algo.py
An example of live algo migrate from Quantopian
from pylivetrader.api import (
attach_pipeline,
date_rules,
time_rules,
order,
get_open_orders,
cancel_order,
pipeline_output,
schedule_function,
)
@mrmushfiq
mrmushfiq / program.cs
Created March 22, 2019 15:09 — forked from omniscient/program.cs
C# Citrix StoreFront WebAPI sample (Authentication, Application List, ICA File)
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml;
using Newtonsoft.Json.Linq;
using RestSharp;
namespace ConsoleApplication3