I hereby claim:
- I am romanroibu on github.
- I am romanroibu (https://keybase.io/romanroibu) on keybase.
- I have a public key whose fingerprint is 7E1B 5811 F39B 76F8 20A5 4186 015F 3038 EFD3 AF9D
To claim this, I am signing this object:
/////////////////////////////////////////////////////// THEORY /////////////////////////////////////////////////////// | |
// | |
// Source: https://en.wikipedia.org/wiki/Bellman–Ford_algorithm | |
// | |
// | |
// function BellmanFord(list vertices, list edges, vertex source)::distance[],predecessor[] | |
// // This implementation takes in a graph, represented as | |
// // lists of vertices and edges, and fills two arrays | |
// // (distance and predecessor) with shortest-path | |
// // (less cost/distance/metric) information |
I hereby claim:
To claim this, I am signing this object:
import Foundation | |
//Inspired by: https://github.com/devxoul/Then | |
public protocol Configurable {} | |
extension Configurable { | |
public func configure(block: (inout Self)->Void) -> () -> Self { | |
return { | |
var copy = self |
//This is basically a description of the cache along with the type | |
public struct Cache<T> { | |
let fileName: String | |
let transform: (T) throws -> Data | |
let reverse: (Data) throws -> T | |
} | |
extension Cache { | |
//You can define a "convenience" initializer that takes a fileName, | |
//and provides PList serialization as transform and reverse transform operations |
import Foundation | |
extension DateFormatter { | |
static let iso8601Full: DateFormatter = { | |
let formatter = DateFormatter() | |
formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ" | |
formatter.calendar = Calendar(identifier: .iso8601) | |
formatter.timeZone = TimeZone(secondsFromGMT: 0) | |
formatter.locale = Locale(identifier: "en_US_POSIX") | |
return formatter |
{ | |
"meta": { | |
"theme": "flat" | |
}, | |
"basics": { | |
"name": "Roman Roibu", | |
"label": "Software Engineer", | |
"email": "[email protected]", | |
"summary": "I'm a motivated Software Engineer, with an eye for designing complex systems. Passionate about solving challenging technical problems. Most often I write high-quality Swift code. I also regularly find myself working with modern C++, Python, and TypeScript, and experimenting with Rust. Interested in Artificial Intelligence, Computer Vision, and Reinforcement Learning. Always on the lookout for opportunities to learn.", | |
"profiles": [ |
With Pupil v1.22, built-in support for RealSense cameras was removed. See the release notes for more information. However, the previous code will still function and can be imported as a user plugin into Pupil Capture.
There are two different ways to setup and use this plugin:
1) Running Pupil from source
When running Pupil from source, you will have to install pyrealsense2, normally just with pip install pyrealsense2
into the environment you use to run Pupil. Then download the realsense2_backend.py file from this gist and place it into your pupil source folder in: pupil/pupil_capture_settings/plugins/realsense2_backend.py