Pie – A loose structured python project manager

Pie is a loose structured python project manager. A Loose structured and easy to use python project manager. Different sets ofcommands can be accessed by using the cli inside a project directory oroutside of it. Installation Install PIE Project Manager on pip pip install pie-manager pip3 install pie-manager Changelogs Changelogs Usage

Read more

A simple vault structure using OP_CTV

This repository demonstrates an implementation of simple, “single-hop” vaultsusing the proposed OP_CHECKTEMPLATEVERIFY opcode. OP_CTV allows the vault strategy to be used without the need to maintain criticalpresigned transaction data for the lifetime of the vault, as in the case of earliervault implementations. This approach is much simpler operationally, since all relevantdata aside from key material can be regenerated algorithmically. This makes vaultingmore practical at any scale. The code included here is intended to be approachable and easy to read, thoughit […]

Read more

A library for solving the satellite structure from motion problem

Maintained by Kai Zhang. Overview This is a library dedicated to solving the satellite structure from motion problem. It’s a wrapper of the VisSatSatelliteStereo repo for easier use. The outputs are png images and OpenCV-compatible pinhole camreas readily deployable to multi-view stereo pipelines targetting ground-level images. Installation Assume you are on a Linux machine with at least one GPU, and have conda installed. Then to install this library, simply by: Inputs We assume the inputs to be a set of […]

Read more

Associate arbitrary structured metadata to each glyph in your font

This plugin for Glyphs3 allows you to associate arbitrary structured metadata to each glyph in your font. Each font can define the data it wants to keep track of, and the palette allows you to view and edit the data for each glyph. Why do I want to do that? You could keep track of how finalised your outlines are, any review feedback you have received, and whether that feedback is integrated. You can link glyphs with other glyphs. You […]

Read more

Ordered Neurons: Integrating Tree Structures into Recurrent Neural Networks

This repository contains the code used for word-level language model and unsupervised parsing experiments in Ordered Neurons: Integrating Tree Structures into Recurrent Neural Networks paper, originally forked from the LSTM and QRNN Language Model Toolkit for PyTorch. If you use this code or our results in your research, we’d appreciate if you cite our paper as following: @article{shen2018ordered, title={Ordered Neurons: Integrating Tree Structures into Recurrent Neural Networks}, author={Shen, Yikang and Tan, Shawn and Sordoni, Alessandro and Courville, Aaron}, journal={arXiv preprint […]

Read more

My notes on Data structure and Algos in golang implementation and python

My notes on Data structure and Algos in golang implementation and python Arrays Advantages of array Reading and writing is O(1) Disadvantages of array Insertion and deletion is O(n) Arrays are not dynamic If you need to store an extra element, you would have to create a new array and copy all the elements over. O(n) List Slicing in python [start:stop:step] Reverse a list list[::-1] LinkedList Linked lists are great for problems that require arbitrary insertion. Dynamic arrays allow inserting […]

Read more