Friday, January 15, 2016

Color Temperature: Big Blackstar & Whitestar

Big Whitestar 3400K
Big Whitestar 1900K
Big Blackstar 3400K
Big Blackstar 1900K

Color Temperature: Double Tulip

Double Tulip
Double Tulip 3400K
Double Tulip 1900K

David Bowie: Girl Loves Me

David Bowie

Matrix (行列): Learning (学習)

Order (順序):

中学・高校大学教養課程大学専門課程(前)大学専門課程(後)
連立方程式行列線形写像有界線形作用素
幾何ベクトル数ベクトル空間抽象線形空間位相線形空間

Smashing Theory in Smashing Theory in Smashing Theory in Smashing Theory in Smashing Theory 1900K

Smashing Theory in Smashing Theory in Smashing Theory in Smashing Theory in Smashing Theory 1900K

Smashing Theory in Smashing Theory in Smashing Theory in Smashing Theory 1900K

Smashing Theory in Smashing Theory in Smashing Theory in Smashing Theory 1900K

Smashing Theory in Smashing Theory in Smashing Theory 1900K

Smashing Theory in Smashing Theory in Smashing Theory 1900K

Smashing Theory in Smashing Theory 1900K

Smashing Theory in Smashing Theory 1900K

Smashing Theory 1900K

1900K

Thursday, January 14, 2016

Swift: Dialog box

Initialization:
var alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .Alert)

iOS8: Objective-C: Dialog box

Initialization:
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title" message:@"Message" preferredStyle:UIAlertControllerStyleAlert];

Objective-C: Dialog box

Initialization:
NSAlert *alert = [[NSAlert alloc] init];

[alert addButtonWithTitle:@"A"];

[alert addButtonWithTitle:@"B"];

[alert setMessageText:@"Message text"];

[alert setInformativeText:@"Informative text"];

[alert setAlertStyle:NSWarningAlertStyle];

Javascript: Dialog box

Code 1:
window.alert("Dialog");

Code 2:
alert("Dialog");

AppleScript: Dialog box

Code 1:
display dialog "Dialog" buttons {"A", "B"} default button "B" giving up after 3

Code 2:
display dialog "The Continuation Character test." buttons {"A", "B"} ¬
default button "B" giving up after 3