View PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname=mopidy-mpris | |
pkgver=3.0.1 | |
pkgrel=1 | |
pkgdesc="Mopidy extension for controlling Mopidy through the MPRIS D-Bus interface" | |
arch=('any') | |
url="http://www.mopidy.com" | |
license=('APACHE') | |
depends=( | |
'mopidy>=3.0' | |
'python-pykka>=2.0' |
View PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Marcin (CTRL) Wieczorek <marcin@marcin.co> | |
# Contributor: bjo@nord-west.org | |
pkgname=mopidy-podcast | |
_pypiname=Mopidy-Podcast | |
pkgver=3.0.0 | |
pkgrel=1 | |
pkgdesc="Mopidy extension for searching and browsing podcasts." | |
arch=('any') | |
url="https://github.com/tkem/mopidy-podcast" |
View PKGBUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Tony Finn <aur at tonyfinn dot com> | |
# Contributor: scsnow54@gmail.co | |
pkgname=mopidy-podcast-itunes | |
_pypiname=Mopidy-Podcast-iTunes | |
pkgver=3.0.0 | |
pkgrel=1 | |
pkgdesc="Mopidy-Podcast extension for searching and browsing podcasts on the iTunes Store" | |
arch=('any') | |
url="https://github.com/tkem/mopidy-podcast-itunes" |
View Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "mouseonly" | |
version = "0.1.0" | |
authors = ["Tony"] | |
[[bin]] | |
name = "mouseonly" | |
[dependencies] | |
rand = "0.4.2" |
View main.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::collections::HashMap; | |
struct MyResult { | |
data: u32 | |
} | |
impl MyResult { | |
fn new(input: &String) -> MyResult { | |
let mut sum = 0u32; | |
// Assume this was an expensive calculation |
View .vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Add filetype dependent plugins | |
filetype plugin on | |
filetype plugin indent on | |
" Easier to type | |
let mapleader="," | |
" General junk | |
set modelines=0 | |
set encoding=utf-8 |