2016/3/5 VSUG DAY FINAL
Visual Studio 97, Visual Studio 6.0 を経て 2002 年の初めにリリースされた .NET Framework 1.0 と Visual Studio .NET 2002。ここから 10 年以上の歳月が流れる中で .NET と Windows を主な開発プラットフォームとして進化を続けた Visual Studio は、最新版 Visual Studio 2015 で大きく変貌を遂げました。そして、10 周年の VSUG がその役目を終える今、改めて Visual Studio の過去を振り返り、現在を学び、未来に触れてみませんか?
RespClient - Minimal Redis Client for PowerShellYoshifumi Kawai
RespClient is a minimal RESP(REdis Serialization Protocol) client for C# and PowerShell.
https://github.com/neuecc/RespClient
at Japan PowerShell User Group #3
#jpposh
RespClient - Minimal Redis Client for PowerShellYoshifumi Kawai
RespClient is a minimal RESP(REdis Serialization Protocol) client for C# and PowerShell.
https://github.com/neuecc/RespClient
at Japan PowerShell User Group #3
#jpposh
This document introduces Markdown Presenter, a simple presentation framework based on Markdown. It allows users to convert Markdown files into interactive HTML presentations. Some key features include formatting text in real-time as slides are updated, compatibility across devices with only a modern browser needed, and the ability to convert slides to PDF. The tool is open source and its development involved contributions from users through the GitHub fork and pull request process.
Filipe Falcão presents an overview of AngularJS 2.0 compared to AngularJS 1.x. Some key differences include components replacing directives, using TypeScript for annotations instead of AngularJS, and bootstrapping components instead of controllers. AngularJS 2.0 also standardizes syntax, improves performance with zones and immutable objects, and uses a reactive system for change detection across the component tree. While still in alpha, AngularJS 2.0 shifts to web standards, improves speed, and simplifies the architecture with a focus on components.
2017/12/12
Infragistics Web Day 2017: https://connpass.com/event/72386/
~ Any developer, Any app, Any platform ~
"今" 押さえておきたい! Web アプリ開発の技術トレンドとツールの進化
2020/1/23
VS Code Meetup #2 Live Share 編の資料です。
https://vscode.connpass.com/event/160083/
https://vscode.connpass.com/event/160088/
14. TypeScript Type System Example
// Any
var x: any; // 明示的
var y; // y: any と同じ
var z: { a; b; }; // z: { a: any; b: any; } と同じ
function f(x) { // f(x: any): void と同じ
console.log(x);
}
// Number
var x: number; // 明示的
var y = 0; // y: number と同じ
var z = 123.456; // z: number = 123.456 と同じ
// Boolean
var b: boolean; // 明示的
var yes = true; // yes: boolean = true と同じ
var no = false; // no: boolean = false と同じ
// String
var s: string; // 明示的
var empty = ""; // empty: string = "" と同じ
var abc = 'abc'; // abc: string = 'abc' と同じ
// Null
var n: number = null; // 基本型は Null 設定可
var x = null; // x: any = null と同じ
// Undefined
var n: number; // n: number = undefined と同じ
var x = undefined; // x: any = undefined と同じ
// Enum
enum Color { Red, Green, Blue }
var myColor = Color.Red;
Console.log(Color[myColor]); // Red
15. TypeScript Interface, Classes Example
interface Dog {
name: string;
Talk: () => string;
}
class Corgi implements Dog {
name: string;
constructor(name: string) {
this.name = name;
}
Talk(): string {
return "Bow wow!";
}
}
class myDog extends Corgi {
constructor() {
super("reo");
}
Talk(): string {
return "Wan wan!";
}
}
var reo = new myDog();
alert(reo.Talk());
16.
Generics : Parameterized Types
class Human<T> {
constructor(public name: T) { }
Talk(): T { return this.name; }
}
var me = new Human<string>("Akira");
alert(me.Talk());
17.
Arrow Function Expressions
var s1 = function (x: number) { return Math.sin(x); } // 標準式
var s2 = (x: number) => { return Math.sin(x); }
var s3 = (x: number) => Math.sin(x)
var s4 = x => { return Math.sin(x); }
var s5 = x => Math.sin(x)
var s0: (x: number) => number;
s0 = x => Math.sin(x)
18.
Get Accessor / Set Accessor
class Who {
private _name: string;
get Name() { return this._name; }
set Name(name: string) { this._name = name; }
}
var me = new Who();
me.Name = "Akira Inoue";
console.log(me.Name);
27. Visual Studio
Dev Essentials
AND MORE…
http://aka.ms/vsfreejp
開発ツール
Visual Studio Community
Visual Studio Code
クラウド サービス
Visual Studio Team Services
$25/month Azure credits
ソフトウェア
SQL Server Developer Edition
R Server Developer Edition
Parallels for Mac Pro (3 か月間)
Windows 10 Development VHD (60 日評価版)
Office Online Apps
Power BI / App Insights / HockeyApp Free Plan
トレーニング & サポート
Pluralsight (3 か月間)
WintellectNOW (3 か月間)
Xamarin University
Microsoft Virtual Academy