sRGB vs Rec. 2020/Rec. 2100

Posted: Saturday 24 September 2016

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.

460 480 500 520 540 560 580 600 620 x 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 y 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 Rec. 2020/Rec. 2100 sRGB

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.




Character Profile Sheet

Posted: Thursday 8 September 2016

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.

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-2MQcDuhAG71aVJ6EPMWjhA
profilesheet_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.
  1. Setup the Linux Subsystem for Windows 10 Anniversary Edition
  2. Run sudo apt-get install build-essential (and optionally sudo apt-get install clang)
  3. Download, and Run swift!
  4. Note: for each of these links you can click or scroll down for more
Alternatively, the video below demonstrates the steps in motion...
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).
  • 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/


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_guide
Here'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.