Skip to content

Instantly share code, notes, and snippets.

@samtse
samtse / gist:db8b3999b377e4d13b1bd4376c699a74
Last active November 11, 2019 13:16
cannotpost problem in express
"use strict";
const PORT = process.env.PORT || 5000;
const express = require("express");
var people;
var mysql = require("mysql")
var connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'privatePassword',
@samtse
samtse / gist:1792746
Created February 10, 2012 20:49
quick simple no config rest WCF hosting in iis
<%@ ServiceHost Factory=
"System.ServiceModel.Activation.WebServiceHostFactory"
Service="bla.bla.class" %>