This is going to be a bit of a geeky post, about how we’re setting the servers which hold and protect your data. I think it’s quite interesting, and important to get it right and for you to know what we are doing 🙂 Continue reading “EyeSkills Infrastructure”
Issues with static IPv6 addresses being reassigned
For reasons I don’t still fully understand, my local backup server decided that it was no longer going to be reachable from the outside world. Along the way to fixing it, I learnt a little more about IPv6 which might be worth sharing…
Continue reading “Issues with static IPv6 addresses being reassigned”
Git Fight Rules!
As you know by now, EyeSkills is hosted on BitBucket as a git repository. Git can be pretty confusing if you haven’t had a few years experience with it, but this might help! This is a great set of “Fight Rules” for dealing with common (and not so common) situations!
https://github.com/k88hudson/git-flight-rules
Building EyeSkills in Unity
These are some coarse instructions to help you get started. Although they are for OSX it ought to be a similar process for Windows.
cd EyeSkillsCommunityApp/Assets/EyeSkills
#The following will work on OSX/Linux. You can also just grab the .zip from https://cloud.eyeskills.org/s/GziZbNNWQAoyxXr and do the following steps manually
wget -O out.zip https://cloud.eyeskills.org/s/GziZbNNWQAoyxXr/download
unzip out.zip
mv FrameworkDependencies-master FrameworkDependencies
rm out.zip
Next, open the EyeSkillsCommunityApp directory in Unity as a new project.
Open File->Build Settings… and choose “Android” as your Platform, then click “SwitchPlatform”. Then you can “Build and Run”.
You should be good to go 🙂
Here’s a cheatsheet for some of the bluetooth keyboard presses inside the different scenes : https://www.eyeskills.org/keypress-cheatsheet-for-using-eyeskills/
Exploring an API for generating custom VR headset designs
Another target I’d like to accomplish is to provide an api for generating custom parameterised EyeTracktive pupil tracking headsets.
OpenSCAD can theoretically produce .stl or .png images via the cmd line, but it requires a lot of cruft to get this to work (an XServer or xvfb) – so wouldn’t it be nice if there was a pre-configured docker container?
After a little look around I found this :
https://hub.docker.com/r/wtnb75/openscad
Theoretically, the simplest way to handle this would be to exec/run openscad from inside the container to output a file mapped to a directory on the host accessible from the API which is part of (e.g.) EyeTracktive.org.
It looks, however, like I’ll have to see if I can cook up a docker file based on https://github.com/wtnb75/dockerfiles/tree/master/openscad-fedora first.