This file contains 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
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="styles.css" /> | |
</head> | |
<title>Fluent Design Talks at Build 2018</title> | |
<body> | |
<H1>BUILD 2018 Fluent Design Talks</H1> | |
<p>Visit <a href="https://fluent.microsoft.com/">https://fluent.microsoft.com</a> for more info</p> | |
<a href="https://medius.studios.ms/Embed/Video/BRK3501?sid=BRK3501">Modernizing Desktop Apps on Windows 10, Mike Harsh</a><br/> | |
<a href="https://developer.microsoft.com/en-us/events/build/content/whats-new-for-windows-ux-developers">What's New for Windows UX Developers? Fluent and XAML, Paul Gusmorino</a><br/> |
This file contains 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
sudo apt-get update | |
sudo apt-get install default-jre | |
sudo curl -L -o /usr/local/bin https://github.com/Microsoft/Git-Credential-Manager-for-Mac-and-Linux/releases/download/git-credential-manager-1.7.1/git-credential-manager-1.7.1.jar | |
java -jar /usr/local/bin/git-credential-manager-2.0.2.jar install |
This file contains 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
execute pathogen#infect() | |
set gfn=Consolas:h12:cANSI | |
set ignorecase | |
set number | |
set ruler | |
set autowrite | |
set incsearch | |
color molokai | |
let g:go_highlight_types = 1 | |
let g:go_highlight_fields = 1 |
This file contains 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
curl -o ~/.vim/vimrc --create-dirs https://gist.githubusercontent.com/clarkezone/47bf48053787f4fd178aa85be02f7100/raw/eb73b8c8cc46c0237372f5f4b75f75de3e802f9e/vimrc | |
curl -o ~/.vim/colors/molokai.vim --create-dirs https://raw.githubusercontent.com/fatih/molokai/master/colors/molokai.vim | |
curl -o ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
curl -LSso ~/.vim/autoload/pathogen.vim --create-dirs https://tpo.pe/pathogen.vim | |
git clone https://github.com/scrooloose/nerdtree.git ~/.vim/bundle/nerdtree | |
git clone https://github.com/fatih/vim-go.git ~/.vim/bundle/vim-go | |
git clone https://github.com/majutsushi/tagbar.git ~/.vim/bundle/tagbar | |
git config --global core.editor "vim" |
This file contains 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 Microsoft.Graphics.Canvas.UI.Composition; | |
using Robmikh.Util.CompositionImageLoader; | |
using System; | |
using System.Numerics; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Windows.Foundation; | |
using Windows.UI; | |
using Windows.UI.Composition; | |
using Windows.UI.Xaml; |
This file contains 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-FileExplorerOptions -showFileExtensions | |
cinst vim | |
cinst poshgit | |
cinst ngrok.portable | |
cinst visualstudiocode | |
cinst slack | |
mkdir $home\Source\Repos | |
mkdir $home\Source\Repos\Clarkezone |
This file contains 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 UIKit; | |
using Foundation; | |
var Main = getTestImage(); | |
UIImage getTestImage(){ | |
using (var url = new NSUrl("http://www.bringcast.com/images/themes.png")){ | |
using (var data = NSData.FromUrl(url)){ | |
return UIImage.LoadFromData(data); | |
} |
This file contains 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 Microsoft.Graphics.Canvas; | |
using Microsoft.Graphics.Canvas.DirectX; | |
using Microsoft.Graphics.Canvas.Text; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Runtime.InteropServices.WindowsRuntime; | |
using Windows.ApplicationModel; | |
using Windows.Foundation; |
NewerOlder