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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- So that mobile will display zoomed in --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- enable media queries for windows phone 8 --> | |
<meta name="format-detection" content="telephone=no"> <!-- disable auto telephone linking in iOS --> | |
<title>Schedule</title> | |
<style type="text/css"> |
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
<script type="javascript/template" id="js-code-template"> | |
<!-- Here is the mobile gmail first (but still works in Outlook) markup --> | |
<table width="{{ container }}" border="0" cellpadding="0" cellspacing="0" align="center"> | |
<tr> | |
<td> | |
{% _(cols).times(function(n) { %} | |
{% if (n === 0) { %} | |
<!--[if mso]><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td valign="top" width="{{ colWidths[n] }}"><![endif]--> | |
{% } %} | |
<table width="100%" border="0" cellpadding="0" cellspacing="0" align="left" class="col" style="width: 100%; max-width: {{ colWidths[n] }}px;"> |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- So that mobile will display zoomed in --> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- enable media queries for windows phone 8 --> | |
<meta name="format-detection" content="telephone=no"> <!-- disable auto telephone linking in iOS --> | |
<title>Test: CSS, to inline or not?</title> | |
<style type="text/css"> |
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
{ | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\sysnative\\bash.exe", | |
"workbench.colorTheme": "One Monokai", | |
"workbench.colorCustomizations": { | |
"[One Monokai]": { | |
// "editor.background": "#282c34" | |
} | |
}, | |
"editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 14, |
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
# Starter pipeline | |
# Start with a minimal pipeline that you can customize to build and deploy your code. | |
# Add steps that build, run tests, deploy, and more: | |
# https://aka.ms/yaml | |
trigger: | |
- master | |
pool: | |
vmImage: 'Ubuntu-16.04' |
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
{ | |
"workbench.colorTheme": "One Monokai", | |
"workbench.colorCustomizations": { | |
"[One Monokai]": { | |
// "editor.background": "#282c34" | |
} | |
}, | |
"editor.fontFamily": "Hack, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 14, | |
"editor.minimap.enabled": false, |
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
locals { | |
name = "my-workspace" | |
} | |
# RESOURCE GROUP | |
resource "azurerm_resource_group" "workspace_rg" { | |
name = "${local.name}-rg" | |
location = var.location | |
} |