Demo Name | Source |
---|---|
VS2019 – Search Functionality | https://visualstudio.microsoft.com/downloads/ |
VS2019 – New Project Experience | https://visualstudio.microsoft.com/downloads/ |
VS2019 – Code cleanup/Refactor | https://github.com/mbcrump/CodeCleanup |
VS2019 – Dev Command Prompt for PowerShell | Coming Soon! |
.NET Core 3 - Greenshot | https://github.com/greenshot/greenshot/ |
.NET Core 3 - - dotnet try demo | https://github.com/dotnet/try |
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
<body style="background-color:black;"> | |
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:400,200,300,600,700' rel='stylesheet' | |
type='text/css'> | |
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> | |
<button id="toggleButton" hidden="true">Toggle</button> | |
<ul class="timeline" id="timeline"> | |
<li class="li intro" id="intro"> | |
<div class="status"> | |
<h4> Intro </h4> |
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
# Author: Michael Crump | |
# Date: 1/18/2019 | |
# Functionality: To easily scrape an Azure YouTube playlist of the title and url and format it with '{number}. title url [new line] and - | |
from bs4 import BeautifulSoup as bs | |
import requests | |
r = requests.get('https://www.youtube.com/playlist?list=PLLasX02E8BPCNCK8Thcxu-Y-XcBUbhFWC') | |
page = r.text |
##Mobilize.NET SL Bridge
private void ApplicationBarMenuItem_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
{
var aboutprompt = new WindowsPhoneUWP.UpgradeHelpers.AboutPrompt();
var aboutPromptItem = new WindowsPhoneUWP.UpgradeHelpers.AboutPromptItem() { AuthorName = "Microsoft", Role = "PM", EmailAddress = "[email protected]", WebSiteUrl = "http://michaelcrump.net/" };
aboutprompt.Show(aboutPromptItem);
}
##Mobilize.NET SL Bridge
Mapping can be found on GitHub
- Open WeatherForecastSample and show it running inside the 8.1 Emulator
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
override func viewDidLoad() { | |
super.viewDidLoad() | |
let chart = TKChart(frame: CGRectInset(self.view.bounds, 15, 15)) | |
chart.autoresizingMask = UIViewAutoresizing.FlexibleWidth | UIViewAutoresizing.FlexibleHeight | |
self.view.addSubview(chart) | |
var items = [TKChartDataPoint]() | |
for i in 0..<8 { | |
items.append(TKChartDataPoint(x:Int(arc4random()%100), y:(i+1))) | |
} |
Here's my own list of the interesting stuff announced during this year's WWDC, collected from the keynotes, various Apple docs, blog posts and tweets.
If you're planning to watch the videos, I really recommend this Mac app that helps you download and watch them: https://github.com/insidegui/WWDC.
http://www.apple.com/osx/elcapitan-preview/
- split view - two apps side by side on full screen
##Contact info
Michael's Twitter | Blog | Slides
##Demos
##Contact info
Michael's Twitter | Blog | Slides
Sam's Twitter | Blog | Slides
##ASP.NET
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
apply plugin: 'com.android.application' | |
android { | |
compileSdkVersion 'android-L' | |
buildToolsVersion "20.0.0" | |
defaultConfig { | |
applicationId "com.example.michael.mynewtestapp" | |
minSdkVersion 15 | |
targetSdkVersion 'L' |