- Set monitor to 150% scaling on 1080p (and sign out and back in)
- Auto-hide taskbar
- Turn on Quiet Hours (Win10)
- Turn on Do Not Disturb (iPhone)
- Turn on Do Not Disturb (OS X)
- Clear browsing history in Chrome
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
{ | |
"title": "Anchor text", | |
"body": { | |
"content": [ | |
{ | |
"endIndex": 1, | |
"sectionBreak": { | |
"sectionStyle": { | |
"columnSeparatorStyle": "NONE", | |
"contentDirection": "LEFT_TO_RIGHT", |
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
app.UseTwitterAuthentication(options => | |
{ | |
options.ConsumerKey = Configuration["Authentication:Twitter:ConsumerKey"]; | |
options.ConsumerSecret = Configuration["Authentication:Twitter:ConsumerSecret"]; | |
options.Events = new TwitterEvents | |
{ | |
OnCreatingTicket = context => | |
{ |
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
# /\\ \\ /\\\ /\\\\\\ /\ /\\\ /\\\\\\ /\ /\\ /\\ /\\ /\\ | |
# /\\ /\\ /\\ /\ \\ /\\ /\ \\ /\ /\\ /\\\ /\\ /\\ /\\ | |
# /\\ /\\ /\ /\\ /\\ /\ /\\ /\\ /\\ / /\\ /\\ /\\ | |
# /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ | |
# /\\ /\\ /\\\\\\ /\\ /\\ /\\\\\\ /\\ /\\ /\ /\\ /\\ /\\ | |
# /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ /\\ | |
# /\\ \\ /\\ /\\ /\\ /\\ /\\ /\\/\\ /\\ /\\ /\\\\ | |
# | |
########################################################################################### | |
# |
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 MonoTouch.UIKit; | |
namespace OneLove | |
{ | |
public static class FlatUIColors | |
{ | |
public static UIColor TurqoiseColor = UIColor.FromRGBA(26, 188, 156, 100); | |
public static UIColor GreenSeaColor = UIColor.FromRGBA(22, 160, 133, 100); | |
public static UIColor EmeraldColor = UIColor.FromRGBA(46, 204, 113, 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
<ResourceDictionary | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | |
<!-- Flat UI Colors --> | |
<Color x:Key="TurquoiseColor">#FF1ABC9C</Color> | |
<Color x:Key="GreenSeaColor">#FF16A085</Color> | |
<Color x:Key="EmerlandColor">#FF2ECC71</Color> | |
<Color x:Key="NephritisColor">#FF27AE60</Color> | |
<Color x:Key="PeterRiverColor">#FF3498DB</Color> |
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.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Optimization; | |
namespace JSE.App.IPS.Web.Portal.App_start | |
{ | |
public class BundleConfig | |
{ |