Skip to content

Instantly share code, notes, and snippets.

@rniemeyer
rniemeyer / ThatConference2019PostmanTalk.md
Last active May 6, 2021 18:13
That Conference 2019 - Postman Talk - Ryan Niemeyer

Postman

An Incredible Tool For API Development And Testing

Ryan Niemeyer - @rpniemeyer - Planview / LeanKit

Postman getpostman

Download from here

Free tool is extremely useful. For paid services, check comparison here.

Basic Usage

@rniemeyer
rniemeyer / ThatConferenceFullStackJSNotes.md
Last active August 8, 2016 15:18
That Conference - Happy Full-Stack JavaScript Campers - Ryan Niemeyer

Presentation notes/links

Happy Full-Stack JavaScript Campers

A Journey Towards Node and Micro-services

Ryan Niemeyer - @RPNiemeyer

LeanKit's dev journey

@rniemeyer
rniemeyer / gist:4614131
Created January 23, 2013 21:51
Knockout-Kendo with AMD
require.config({
paths: {
"knockout": "../../ext/knockout-2.1.0",
"jquery": "../../ext/jquery.min",
"kendo": "../../ext/kendo.all.min",
"knockout-kendo": "../../build/knockout-kendo.min"
},
shim: {
"kendo": {
deps: ["jquery"],
// This is an example of one possible way to make a reusable component (or 'plugin'), consisting of:
// * A view model class, which gives a way to configure the component and to interact with it (e.g., by exposing currentPageIndex as an observable, external code can change the page index)
// * A custom binding (ko.bindingHandlers.simpleGrid in this example) so a developer can place instances of it into the DOM
// - in this example, the custom binding works by rendering some predefined templates using the ko.jqueryTmplTemplateEngine template engine
//
// There are loads of ways this grid example could be expanded. For example,
// * Letting the developer override the templates used to create the table header, table body, and page links div
// * Adding a "sort by clicking column headers" option
// * Creating some API to fetch table data using Ajax requests
// ... etc
@rniemeyer
rniemeyer / zurb.css
Created December 1, 2011 22:12
zurb
/* Foundation v2.1.1 http://foundation.zurb.com */
/* Artfully Masterminded by ZURB */
/* --------------------------------------------------
Reveal Modals
-------------------------------------------------- */
.reveal-modal-bg {
position: fixed;
@rniemeyer
rniemeyer / linq.js
Created August 27, 2011 14:37
linq.js
/*--------------------------------------------------------------------------
* linq.js - LINQ for JavaScript
* ver 2.2.0.2 (Jan. 21th, 2011)
*
* created and maintained by neuecc <ils@neue.cc>
* licensed under Microsoft Public License(Ms-PL)
* http://neue.cc/
* http://linqjs.codeplex.com/
*--------------------------------------------------------------------------*/