Skip to content

Instantly share code, notes, and snippets.

@MrCoder
MrCoder / screen.css
Created May 19, 2016 01:56 — forked from jasonm23/screen.css
markdown friendly css
html, body { height: 100%; }
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 150%;
line-height: 1.3;
color: #f6e6cc;
width: 700px;
margin: auto;
background: #27221a;
@MrCoder
MrCoder / markdown-image-resize.md
Last active April 6, 2017 23:57
markdown image resize with examples
  1. Normal image in markdown (original size)

![](http://www.5besttools.com/wp-content/uploads/2017/04/qrcode.png)

Test

Real examples can be found here. 5 best BPMN stencils

@MrCoder
MrCoder / myfirstgist.markdown
Created April 11, 2017 23:39 — forked from Homer-W/myfirstgist.markdown
the first markdoan
@MrCoder
MrCoder / 0_reuse_code.js
Created April 18, 2017 06:36
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console

DevFreeBooks

private static final String someLangSourceCode =
"class SomeClass {\n"+
" fun1 {\n"+
" instruction11\n"+
" instruction12\n"+
" }\n"+
" fun2 {\n"+
" instruction21\n"+
" instruction22\n"+
" }\n"+
@MrCoder
MrCoder / dabblet.css
Created June 19, 2017 01:21 — forked from anonymous/dabblet.css
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
@MrCoder
MrCoder / package-library-with-webpack.js
Last active August 30, 2017 11:35
Package sequence parser for http://www.zenuml.com .
var path = require('path')
var JavaScriptObfuscator = require('webpack-obfuscator')
function resolve (dir) {
return path.join(__dirname, '..', dir)
}
module.exports = {
entry: {
//Relative to the directory where the command is running (not where this configure is)
@MrCoder
MrCoder / restful-web-service.java
Created September 25, 2017 11:52
Example for www.zenuml.com. RESTful Web service
RestfulController.getBook(ID) {
Service.getBook(ID) {
Repository.getBookById(ID)
}
}