float rand(float n){return fract(sin(n) * 43758.5453123);}
float noise(float p){
float fl = floor(p);
float fc = fract(p);
return mix(rand(fl), rand(fl + 1.0), fc);
}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// No JQuery version of https://gist.github.com/bradcrawford/7288411 | |
// Modified to return a blob with the json results | |
// Simple script that exports a users "Saved For Later" list out of Feedly | |
// as a JSON string. | |
// How to use: | |
// 1) Open up your browser | |
// 2) Login to Feedly and go to the "Saved For Later" list. | |
// 3) Keep scrolling down the page until all saved documents have been loaded |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
_id: '78895dsdfq45qfq', | |
list: [{ | |
name:'Bob', | |
group: 'Intern' | |
},{ | |
name:'Joe', | |
group: 'Extern' | |
}, { | |
name:'Gertrude', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="lizt"> | |
<form id="lizt"> | |
<ul id="tazks"> | |
{{#if lizt}} | |
{{> tazks}} | |
{{focus_on}} | |
{{else}} | |
<li><input name="tazks[0][description]" type="text"/></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="lizt"> | |
<form id="lizt"> | |
<ul> | |
{{#if lizt}} | |
{{#each key_value lizt.tazks}} | |
<li><input name="tazks[{{key}}][description]" type="text" value="{{value.description}}"/></li> | |
{{/each}} |