Skip to content

Instantly share code, notes, and snippets.

var express = require('express');
var http = require('http');
var path = require('path');
var fs = require("fs");
var jade = require("jade");
var app = express();
app.set('port', process.env.PORT || 3000);
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
mixin func1(id, content)
.col
p= content
a(href="/view/#{id}") Click to Read More
p Test
i Indentation
b is Cool
i But not that cool
b Can slow down execution
i oh for real?
@mustafaakin
mustafaakin / fibo-js
Created February 11, 2012 21:33
Fibonacci Calculation - JS
function fibonacci(n) {
if (n < 2)
return 1;
else
return fibonacci(n-2) + fibonacci(n-1);
}
fibonacci(40);
@mustafaakin
mustafaakin / gist:2083326
Created March 18, 2012 22:41
Basic-PHP MySQL Code
<?php
$host = "localhost";
$username = "root";
$password = "123";
$db_name = "test";
$db=mysql_connect($host, $username, $password) or die('Could not connect');
mysql_select_db($db_name, $db) or die('no db');
$sth = mysql_query("SELECT * FROM sample s");
$rows = array();
function perform() {
console.log("Finding button")
$($("._4xev")[1]).click();
setTimeout(function() {
$(".uiContextualLayer").each(function() {
var b = $(this).is(':visible');
if (b) {
var t = $(this).find("._54nh");
var a = {};
t.each(function() {
@mustafaakin
mustafaakin / docker-compose.yml
Last active July 20, 2016 08:16
ShareLatex Docker Compose
version: '2'
services:
redis:
image: redis:3
mongo:
image: mongo:2.6
restart: always
volumes:
- "./data/mongo:/data/db"
# Create Key Store Node
docker-machine create -d virtualbox mh-keystore-vb
docker $(docker-machine config mh-keystore-vb) run -d \
-p "8500:8500" \
-h "consul" \
progrium/consul -server -bootstrap
# Create Primary Node
docker-machine create \
-d virtualbox \
$ eval $(docker-machine env --swarm mhs-demo0-vb)
$ docker info
Containers: 60
Images: 7
Role: primary
Strategy: spread
Filters: health, port, dependency, affinity, constraint
Nodes: 2
mhs-demo0-vb: 192.168.99.101:2376
└ Containers: 16
$ eval $(docker-machine env --swarm mhs-demo0-do)
$ docker info
Containers: 3
Images: 2
Role: primary
Strategy: spread
Filters: health, port, dependency, affinity, constraint
Nodes: 2
mhs-demo0-do: 188.166.113.176:2376
└ Containers: 2
docker run --name iperf_host -d -ti --net host \
--env="constraint:node==mhs-demo0-do" \
mustafaakin/alpine-iperf iperf -s
# Wait a little
sleep 1
for run in {1..5}; do
docker run --net host --env="constraint:node==mhs-demo1-do" -ti \
mustafaakin/alpine-iperf \