Skip to content

Instantly share code, notes, and snippets.

@huangyq23
huangyq23 / README.md
Last active February 2, 2024 18:51
CPT MQTT
"""
This fabric file makes setting up and deploying a django application much
easier, but it does make a few assumptions. Namely that you're using Git,
Apache and mod_wsgi and your using Debian or Ubuntu. Also you should have
Django installed on your local machine and SSH installed on both the local
machine and any servers you want to deploy to.
_note that I've used the name project_name throughout this example. Replace
this with whatever your project is called._
@huangyq23
huangyq23 / mincover.c
Created April 12, 2012 13:33
Minimun Set Cover
//
// main.c
// mincover
//
// Created by Yiqiu Huang on 4/3/12.
//
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>