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
<?php | |
/** | |
Template Name: Content Only | |
*/ | |
?> | |
<html> | |
<head> | |
<title><?php wp_title( '|', true, 'right' ); bloginfo('url'); ?></title> | |
<style> | |
html,body,div,iframe {height:100%;} |
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="text/javascript"> | |
$(document).ready(function() { | |
if(top.location != location) { | |
$('a, form').each(function() { | |
if(!this.target) { | |
this.target = '_top'; | |
} | |
}); | |
} | |
}); |
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
<iframe src="http://www.example.com"></iframe> |
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
recipes: | |
global: | |
- dotfiles::gitconfig | |
- applications::sass | |
- applications::ssh_config | |
- dotfiles::vim | |
- applications::composer | |
- applications::postgresql | |
- applications::mysql | |
- applications::php55 |
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
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
Set-CornerNavigationOptions -EnableUpperRightCornerShowCharms -EnableUpperLeftCornerSwitchApps -EnableUsePowerShellOnWinX | |
cinst dotnet4.5 | |
cinst git | |
cinst git-credential-winstore | |
cinst poshgit | |
cinst windowsazurepowershell |
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> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>@yield('title')</title> | |
{{ HTML::style('css/foundation.css') }} | |
{{ HTML::style('css/app.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
using System; | |
using System.Configuration; | |
using System.IO; | |
using Microsoft.WindowsAzure.Jobs; | |
namespace dataimportwebjob | |
{ | |
partial class Program | |
{ | |
public static JobHost Host; |
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
var storageConnection = CloudConfigurationManager.GetSetting("StorageConnectionString"); | |
var containerName = CloudConfigurationManager.GetSetting("StorageContainerName"); | |
var storageAccount = CloudStorageAccount.Parse(storageConnection); | |
var blobClient = storageAccount.CreateCloudBlobClient(); | |
var container = blobClient.GetContainerReference(containerName); | |
var blobLog = container.GetBlockBlobReference(id); | |
string logText; |
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
Console.WriteLine("Starting Clean Containers WebJob..."); | |
try | |
{ | |
var removeThreshold = int.Parse(ConfigurationManager.AppSettings["RemoveThresholdDays"]); | |
var storageConnectionString = CloudConfigurationManager.GetSetting("StorageConnectionString"); | |
var dataContainerName = CloudConfigurationManager.GetSetting("StorageContainerDataName"); | |
var storageAccount = CloudStorageAccount.Parse(storageConnectionString); | |
var blobClient = storageAccount.CreateCloudBlobClient(); |
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
<div id="TileOverlay" ng-show="tileIsVisible" style='background-color: Highlight; height: 100%; width: 100%; top: 0px; left: 0px; position: fixed; color: black; z-index: 99999;'> | |
<img src="/Content/img/app_tile.png" width="320" height="320" /> | |
<div style='margin-top: 40px'> | |
Tap the menu bar ('...') and then select "Pin to Start" to add your start screen. | |
</div> | |
</div> |