Edit: moved to here https://blog.haicon.moe/posts/logitech-f310-to-work-with-macbook-usb-c-port/
The proposal you’re about to read is not just a proposal. We have a working implementation of almost everything we discussed here. We encourage you to checkout and build our branch: our fork, with the relevant branch selected. Building and using the implementation will give you a better understanding of what using it as a developer is like.
Our implementation ended up differing from the proposal on some minor points. As our last action item before making a PR, we’re writing documentation on what we did. While I loathe pointing to tests in lieu of documentation, they will be helpful until we complete writing docs: the unit tests.
This repo also contains a bundled version of npm that has a new command, asset. You can read the documentation for and goals of that comma
| mybinary |
| # http://basho.com/blog/technical/2012/10/16/Basho-Package-Repos-Now-Online/ | |
| $ curl http://apt.basho.com/gpg/basho.apt.key | sudo apt-key add - | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 1016 100 1016 0 0 1407 0 --:--:-- --:--:-- --:--:-- 4861 | |
| OK | |
| $ sudo bash -c "echo deb http://apt.basho.com `lsb_release -sc` main > /etc/apt/sources.list.d/basho.list" | |
| $ sudo apt-get update | |
| ... | |
| Ign http://apt.basho.com precise/main Translation-en_US |
| #!/bin/bash | |
| # Install Monaco font in Linux | |
| # Version from nullvideo https://gist.github.com/rogerleite/99819#gistcomment-2799386 | |
| sudo mkdir -p /usr/share/fonts/truetype/ttf-monaco && \ | |
| sudo wget https://gist.github.com/rogerleite/b50866eb7f7b5950da01ae8927c5bd61/raw/862b6c9437f534d5899e4e68d60f9bf22f356312/mfont.ttf -O - > \ | |
| /usr/share/fonts/truetype/ttf-monaco/Monaco_Linux.ttf && \ | |
| sudo fc-cache |