Skip to content

Instantly share code, notes, and snippets.

@padewitte
padewitte / basic-vanilla-custom-element.markdown
Last active December 27, 2018 13:28
basic-vanilla-custom-element
@padewitte
padewitte / index.html
Last active December 27, 2018 13:07
VueJS running in pure module mode
<div id="app">
Hello : {{ message }}
</div>
@padewitte
padewitte / CamelMongoDBCursorExample.groovy
Last active November 27, 2018 10:28
Quick example of a Camel route using the DBCursor outputype with a MongoDB endpoint
/*
* Demonstration of the new MongoDB outypeType attribute in Camel 2.16.
* Priorir to launching script lower the maximum ram available for groovy by setting maximum size to 664M `export JAVA_OPTS="$JAVA_OPTS -Xmx64M"`.
* MongoDB should run localy with no security on test database otherwise change the mongoClient initialization.
* First feed the base by running the script with FEED parameter ( groovy CamelMongoDBCursorExample.groovy FEED )
* Try to list all document by running the script with LIST parameter ( groovy CamelMongoDBCursorExample.groovy LIST ). You should face a OutOfMemory error.
* Run again with CURSOR parameter ( groovy CamelMongoDBCursorExample.groovy CURSOR ) all documents are print in the console.
*
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
* "THE BEER-WARE LICENSE" (Revision 42):
@padewitte
padewitte / docker-compose-cheatsheet.sh
Created September 22, 2017 13:31 — forked from buonzz/docker-compose-cheatsheet.sh
docker-compose cheatsheet
$ docker-compose up -d # start containers in background
$ docker-compose kill # stop containers
$ docker-compose pull # refresh the local images with the ones of the registry
$ docker-compose up -d --build # force rebuild of Dockerfiles
$ docker-compose rm # remove stopped containers
$ docker ps # see list of running containers
$ docker exec -ti [NAME] bash # ssh to the container
# list all images
docker images
@padewitte
padewitte / PEP_TESTING_PAGE.html
Created December 30, 2015 13:37
A page to test jquery pepe events across devices -- vanilla
<!DOCTYPE html>
<!--
Inspired by :
Created using JS Bin
http://jsbin.com
Copyright (c) 2015 by anonymous (http://jsbin.com/bojumofowa/1/edit)
Released under the MIT license: http://jsbin.mit-license.org
Modified and destructured by P.A.DEWITTE
-->
<meta name="robots" content="noindex">
@padewitte
padewitte / _service.md
Last active August 29, 2015 14:19 — forked from naholyr/_service.md

Sample service script for debianoids

Look at LSB init scripts for more information.

Usage

Copy to /etc/init.d:

# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
#!/bin/sh
#
# /etc/init.d/kibana4 -- startup script for kibana4
# bsmith@the408.com 2015-02-20; used elasticsearch init script as template
# https://github.com/akabdog/scripts/edit/master/kibana4_init
#
### BEGIN INIT INFO
# Provides: kibana4
# Required-Start: $network $remote_fs $named
# Required-Stop: $network $remote_fs $named