I wrote this four years ago, so instead use this command:
$ docker rmi $(docker images -q -f dangling=true)
| $base-font-size: 16px; | |
| $base-line-height: 1.5; | |
| // this value may vary for each font | |
| // unitless value relative to 1em | |
| $cap-height: 0.68; | |
| @mixin baseline($font-size, $scale: 2) { |
| package httptimeout | |
| import ( | |
| "net/http" | |
| "time" | |
| "fmt" | |
| ) | |
| type TimeoutTransport struct { | |
| http.Transport |
| @mixin breakpoint($min: 0, $max: 0) { | |
| $type: type-of($min); | |
| @if $type == string { | |
| @if $min == xs { | |
| @media (max-width: 767px) { @content; } // Mobile Devices | |
| } | |
| @else if $min == sm { | |
| @media (min-width: 768px) { @content; } // Tablet Devices |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| [{"place_id":"97994878","licence":"Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http:\/\/www.openstreetmap.org\/copyright","osm_type":"relation","osm_id":"161950","boundingbox":["30.1375217437744","35.0080299377441","-88.4731369018555","-84.8882446289062"],"lat":"33.2588817","lon":"-86.8295337","display_name":"Alabama, United States of America","place_rank":"8","category":"boundary","type":"administrative","importance":0.83507032450272,"icon":"http:\/\/nominatim.openstreetmap.org\/images\/mapicons\/poi_boundary_administrative.p.20.png"}] | |
| [{"place_id":"97421560","licence":"Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http:\/\/www.openstreetmap.org\/copyright","osm_type":"relation","osm_id":"162018","boundingbox":["31.3321762084961","37.0042610168457","-114.818359375","-109.045196533203"],"lat":"34.395342","lon":"-111.7632755","display_name":"Arizona, United States of America","place_rank":"8","category":"boundary","type":"administrative","importance":0.83922181098242,"icon":"http:\/\/nominatim.openst |
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
HTTPS: Requests per second: 89.07 [#/sec] (mean)
HTTP: Requests per second: 4622.12 [#/sec] (mean)
Be aware: https://twitter.com/jessemcnelis/status/508456580384178178
| // This plugin will add a @3x size to all existing slices and exportable layers, | |
| // that already have a @1x and @2x size | |
| var p = [doc pages] | |
| for (var i = 0; i < [p count]; i++) { | |
| var current_page = [p objectAtIndex:i] | |
| var exportable_layers = [current_page exportableLayers] | |
| for (var l = 0; l < [exportable_layers count]; l++) { | |
| var slice_or_layer = [exportable_layers objectAtIndex:l] | |
| if ([slice_or_layer exportOptions]) { |
| package main | |
| import ( | |
| "fmt" | |
| "os" | |
| "os/signal" | |
| "syscall" | |
| ) | |
| func main() { |