For those wanting a quick and easy comparison between sRGB and Rec. 2020/Rec. 2100, here's the colour space mapped out on a CIE 1931 xy chromaticity diagram.
The summary is that screens supporting Rec. 2020 or Rec. 2100 offers a wider gamut than sRGB (40% wider).
Those deciding on the direction of the future of displays, especially the trend towards "HDR" technology, should look into Rec. 2100.
The following profile sheet can be used as a simple form to thoroughly survey someone, or as a template to create a fantasy character with.
Date of Birth, Age, Gender, Nationality
Hair Color, Eye Color
Height, Weight
Phone Number
Address: Suburb, Postcode/Zip, State, Country
Birthplace
Ethnic Background
Highest Year of Education, Occupation
Favorite Color, Favorite Food, Personality, Likes and Interests, Dislikes.
profilesheet_release.pdf - 37KB - https://mega.nz/#!5IEWFSxQ!xQuXqTNGBzmXuMmG7aqeHG-tdARqrk0r5dHu99BSCWk
Fields Given
Title, First Name, Last Name, Other Given Name(s)Date of Birth, Age, Gender, Nationality
Hair Color, Eye Color
Height, Weight
Phone Number
Address: Suburb, Postcode/Zip, State, Country
Birthplace
Ethnic Background
Highest Year of Education, Occupation
Favorite Color, Favorite Food, Personality, Likes and Interests, Dislikes.
Image
PDFs (Downloads)
profilesheet_release.pdf - 37KB - https://drive.google.com/file/d/0B1JvZsBu8DnkYXdKQXFwbHJQRzA/view?usp=sharing&resourcekey=0-2MQcDuhAG71aVJ6EPMWjhAprofilesheet_release.pdf - 37KB - https://mega.nz/#!5IEWFSxQ!xQuXqTNGBzmXuMmG7aqeHG-tdARqrk0r5dHu99BSCWk
Tutorial: Run Swift on Windows 10 the Easy Way (Using Linux Subsystem)
Posted: Wednesday, 7 September 2016
Running Apple's Swift programming language on Windows 10 is as simple as 1, 2 and 3.
https://www.youtube.com/embed/Z0PZc7WqPtE
And that's it.
Just note that both technologies are unstable as of September 2016
And the Windows Subsystem for Linux (WSL) is still in beta, with normally trivial tasks, such as interacting with the subsystem programmatically, almost impossible: https://github.com/Microsoft/BashOnWindows/issues/
Here's a summary:
And that's it! A mini non-Linux environment within Windows. Similar to how OS X does it, only 10 years behind.
Takes around 30 minutes.
With how administrative/root privileges work in WSL, you don't need "su/sudo" to run what are normally root commands (if you've skipped setting up the root user).
The build-essential package is required to run Swift. Without it, Swift would just fail in executing scripts. Unfortunately, this is quite a large package on Ubuntu, and even on Windows its no exception.
So run the command and wait it out, a tip to speed up the process of downloading packages is shown in the video.
Running
Takes around 30 minutes.
Extract the archive just like you would on Ubuntu (or extract it using the Windows method, whichever you prefer), and run /usr/bin/swift through bash.
Takes around 10 minutes.
And that's it! Swift (the programming language) running on Windows 10 using the Windows Subsystem for Linux!
Although REPL doesn't really work, and you're not exactly working with native Windows goodness.
- Setup the Linux Subsystem for Windows 10 Anniversary Edition
- Run
sudo apt-get install build-essential
(and optionallysudo apt-get install clang
) - Download, and Run swift! Note: for each of these links you can click or scroll down for more
https://www.youtube.com/embed/Z0PZc7WqPtE
And that's it.
Just note that both technologies are unstable as of September 2016
- Swift is a fairly immature programming language
- Due to the absence tools like a beautifier - though third-party tools such as Haaakon's SwiftFormat https://github.com/haaakon/SwiftFormat does the trick
- Due to missing tangible desires such as bug reports & support from fellow Windows users of Swift (of which there is none)
- And with breaking changes each major version of Swift (which might be why the Swift 1.0 code you found won't work on Swift 2.2 or even Swift 3.0 beta).
Setting up WSL
To set up the Windows subsystem for Linux, an official guide can be followed here: https://msdn.microsoft.com/en-us/commandline/wsl/install_guideHere's a summary:
- Start Menu -> Search "Turn Windows features on or off"
- Scroll Down to "Windows Subsystem for Linux (Beta)", and click the checkbox
- Restart your computer, it should display a screen along the lines of "Configuring Windows", similar to a Windows Update
- Once your computer has restarted, launch a normal Windows Command Prompt: Start Menu -> Search "Command Prompt" (or alternatively, cmd)
- Type the command "bash", and press enter
- Accept the T&C (or not, skipping this section and booting into Ubuntu is effectively the same)
- Wait for the ~200MB Ubuntu Subsystem Image to Download, Extract and Install
And that's it! A mini non-Linux environment within Windows. Similar to how OS X does it, only 10 years behind.
Takes around 30 minutes.
Those Linux commands
With how administrative/root privileges work in WSL, you don't need "su/sudo" to run what are normally root commands (if you've skipped setting up the root user).
apt-get install build-essential
should work on its own.The build-essential package is required to run Swift. Without it, Swift would just fail in executing scripts. Unfortunately, this is quite a large package on Ubuntu, and even on Windows its no exception.
So run the command and wait it out, a tip to speed up the process of downloading packages is shown in the video.
Running
apt-get install clang
allows for Swift code compilation support in Windows via swiftc (swiftc with build-essentials alone does not work). Interestingly the resulting binary that swiftc compiles is a native Linux/Ubuntu ELF instead of a Windows exe.
Takes around 30 minutes.
Swift
Download Swift from here: https://swift.org/download/, note that you'd want the Ubuntu 14.04 version, if still offered.Extract the archive just like you would on Ubuntu (or extract it using the Windows method, whichever you prefer), and run /usr/bin/swift through bash.
Takes around 10 minutes.
And that's it! Swift (the programming language) running on Windows 10 using the Windows Subsystem for Linux!
Although REPL doesn't really work, and you're not exactly working with native Windows goodness.
Labels:
apple,
guide,
microsoft,
programming,
swift,
tutorial,
windows,
windows 10
Subscribe to:
Posts (Atom)