<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:400,500,700); | |
@page { |
<html> | |
<head> | |
<style> | |
.label { | |
display: inline-block; | |
text-align: center; | |
margin: 0 0.25cm 0.05cm; | |
width: 4in; | |
height: 2in; | |
} |
// Parametric Involute Bevel and Spur Gears by GregFrost | |
// It is licensed under the Creative Commons - GNU GPL license. | |
// © 2010 by GregFrost | |
// http://www.thingiverse.com/thing:3575 | |
// Simple Test: | |
//gear (circular_pitch=700, | |
// gear_thickness = 12, | |
// rim_thickness = 15, | |
// hub_thickness = 17, |
- Setting a
CNAME
on a particular subdomain implies that an interested party should look at the other resource for ALL data referring to that subdomain. As such, it will "shadow" any other records, such asMX
records, on that subdomain. This is why email breaks when you use CNAME on an apex domain. source 2016-02-12
made with esnextbin
There's an app running at app.test.example.com
that I want to make changes to, but I don't want to go through the hassle of getting the source code and getting it set up on my machine. Not when I can fake it with nginx much quicker!
app.test.example.com
depends on a service svc.test.example.com
. The main JS looks for the environment in the page URL; if I run locally at app.local.example.com
it will declare the environment to be "local" and look for a service at svc.local.example.com
.
I just have to make sure the service sees what it wants to see: a Host of svc.test.example.com
and an Origin of http://app.test.example.com
. I also need to keep the browser happy by blocking the Access-Control-Allow-Origin value the service is passing down and using my local one instead.
Works like a charm! Now I can use a try_files
directive to selectively replace JS files from the app, and fetch them from the proxied app if they don't exist locally.
Fork of Mike Bostock's Now + Solar Terminator with a different projection.
{ | |
"ExchangeServices": { | |
"ExchangeServicePort": { | |
"ResolveNames": { | |
"input": "m:ResolveNamesType", | |
"output": "m:ResolveNamesResponseType" | |
}, | |
"ExpandDL": { | |
"input": "m:ExpandDLType", | |
"output": "m:ExpandDLResponseType" |