To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
- Homebrew
- Mountain Lion -> High Sierra
| ּ_בּ | |
| בּ_בּ | |
| טּ_טּ | |
| כּ‗כּ | |
| לּ_לּ | |
| מּ_מּ | |
| סּ_סּ | |
| תּ_תּ | |
| ٩(×̯×)۶ | |
| ٩(̾●̮̮̃̾•̃̾)۶ |
| function map(x, in_min, in_max, out_min, out_max) { | |
| return (x - in_min) * (out_max - out_min) / (in_max - in_min) + out_min; | |
| } |
| web: node server |
To setup your computer to work with *.test domains, e.g. project.test, awesome.test and so on, without having to add to your hosts file each time.
| .filter("timeago", function () { | |
| //time: the time | |
| //local: compared to what time? default: now | |
| //raw: wheter you want in a format of "5 minutes ago", or "5 minutes" | |
| return function (time, local, raw) { | |
| if (!time) return "never"; | |
| if (!local) { | |
| (local = Date.now()) | |
| } |
| (function() { | |
| var CSSCriticalPath = function(w, d, opts) { | |
| var opt = opts || {}; | |
| var css = {}; | |
| var pushCSS = function(r) { | |
| if(!!css[r.selectorText] === false) css[r.selectorText] = {}; | |
| var styles = r.style.cssText.split(/;(?![A-Za-z0-9])/); | |
| for(var i = 0; i < styles.length; i++) { | |
| if(!!styles[i] === false) continue; | |
| var pair = styles[i].split(": "); |
| 'use strict'; | |
| /** | |
| * This module monitors angularFire's authentication and performs actions based on authentication state. | |
| * directives/directive.ngcloakauth.js depends on this file | |
| * | |
| * Modify ng-cloak to hide content until FirebaseSimpleLogin resolves. Also | |
| * provides ng-show-auth methods for displaying content only when certain login | |
| * states are active. | |
| * |
| /*jslint nomen: true, indent: 2, maxerr: 3 */ | |
| /*global self, buffer */ | |
| (function (worker_instance) { | |
| "use strict"; | |
| //JavaScript Audio Resampler (c) 2011 - Grant Galitz | |
| var INCORRECT_BUFFER_LENGTH = "Buffer was of incorrect sample length."; | |
| var INCORRECT_SETTINGS = "Invalid settings specified for the resampler."; |