Skip to content

Instantly share code, notes, and snippets.

@slopjong
slopjong / PHPUnit.md
Last active October 3, 2019 12:00
Become DevOp Talk Series
        $mapperMock = $this->getMock('Doctor\Mapper\Calendar');
        $mapperMock
            ->expects($this->once())
            ->method('getDoctorTimeSlots')
            ->will($this->returnValue([]))
        ;

        $translator = $this->getMock('Zend\Translator');
        $translator
<html style="background: #184b34">
<script>
window.color = {
red: 0,
green: 0,
blue: 0
};
window.color2 = [0, 0, 0];
window.steps = 0;
public function getServiceConfig()
{
return array(
'factories' => array(
'my-model' => function($sm) {
$model = new \My\Model($sm);
return $model;
}
)
);
@slopjong
slopjong / gist:3093757
Created July 11, 2012 21:38 — forked from pioz/autoclick.c
Autoclick
// Written by Pioz.
// Compile with: gcc -o autoclick autoclick.c -lX11
#include <stdio.h>
#include <string.h>
#include <X11/Xlib.h>
// Simulate mouse click
void
click (Display *display, int button)
<?php
$winners = array(
array(
array(8, 17, 21, 31, 34),
array(9, 10),
),
array(

Docker

Create: Request

POST /v1.14/containers/create HTTP/1.1
Host: 127.0.0.1:9999
User-Agent: Docker-Client/1.2.0
@slopjong
slopjong / the_space_name.json
Created June 2, 2014 18:56
Example showing how to post a gist.
{
"api": "0.13",
"space": "The space name",
"logo": "http://your-space.com/logo.png",
"url": "http://example.com",
"location": {
"address": "see the documentation",
"lon": 5.973817,
"lat": 39.240431
},
@slopjong
slopjong / svg2png.sh
Created June 1, 2014 12:39
Converts a single SVG or a set of SVGs to PNG
#!/bin/bash
function convert()
{
file="$1"
# remove the svg file extension and append .png
destination="${file%.svg}.png"
# -z is for launching inkscape without the gui
<?php
$zoom = 0;
$n = pow(2, $zoom);
$lon = 6.07057;
$lat = 49.61629;
$xtile = floor((($lon + 180) / 360) * pow(2, $zoom)) + 0.5;
$ytile = floor((1 - log(tan(deg2rad($lat)) + 1 / cos(deg2rad($lat))) / pi()) /2 * pow(2, $zoom)) + 0.5;