Developer Tools in browser. Load page under Network Can save load meta data as HAR file (rt click / save as HAR with content)
Make your web pages fast on all devices https://developers.google.com/speed/pagespeed/insights/
| /** | |
| * jQuery Plugin Boilerplate | |
| * | |
| * Call the plugin by supplying a method and/or options: | |
| * | |
| * $("element").myplugin(); | |
| * $("element").myplugin({ option1: true, option2: true }); | |
| * $("element").myplugin("secondary_method"); | |
| * $("element").myplugin("secondary_method", { option1: true, option2: true }); | |
| * |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var notify = require('gulp-notify'); | |
| var sass = require('gulp-ruby-sass'); | |
| var autoprefix = require('gulp-autoprefixer'); | |
| var minifyCSS = require('gulp-minify-css') | |
| var coffee = require('gulp-coffee'); | |
| var exec = require('child_process').exec; | |
| var sys = require('sys'); |
Developer Tools in browser. Load page under Network Can save load meta data as HAR file (rt click / save as HAR with content)
Make your web pages fast on all devices https://developers.google.com/speed/pagespeed/insights/
You're not gonna become a master in your spare time, but you can get decently good at photography in five years of dedicated but non-full-time practice. It's taken me about twice that to get decent, but I fucked around a lot along the way.
You don't need a ton of fancy equipment, but photography does require some gear. I'll limit the gear-buying here to once a year (not counting books).
| The MIT License (MIT) | |
| Copyright (c) 2015 Justin Perry | |
| Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| this software and associated documentation files (the "Software"), to deal in | |
| the Software without restriction, including without limitation the rights to | |
| use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
| the Software, and to permit persons to whom the Software is furnished to do so, | |
| subject to the following conditions: |
| launchctl unload -w -S Aqua /System/Library/LaunchAgents/gpg.agent.daemon.plist | |
| launchctl load -w -S Aqua /System/Library/LaunchAgents/gpg.agent.daemon.plist |
This launchd script will ensure that your Docker environment on your Mac will have 10.254.254.254 as an alias on your loopback device (127.0.0.1). The command being run is ifconfig lo0 alias 10.254.254.254
Copy/Paste the following in terminal with sudo (must be root as the target directory is owned by root)...
sudo curl -o /Library/LaunchDaemons/info.kevingustavson.docker_10254_alias.plist https://gist.github.com/kgust/3fe1ae7420e2b35ed3b40eb3feef4efe/raw/info.kevingustavson.docker_10254_alias.plist| // This makes two connections, one to a tcp server, one to an http server (both in server.js) | |
| // It fires off a bunch of connections and times the response | |
| // Both send strings. | |
| const net = require(`net`); | |
| const http = require(`http`); | |
| function parseIncomingMessage(res) { | |
| return new Promise((resolve) => { |