Skip to content

Instantly share code, notes, and snippets.

View patrickod's full-sized avatar
🔐

Patrick O'Doherty patrickod

🔐
View GitHub Profile
diff --git a/SConstruct b/SConstruct
index 5965b53..50a76ef 100644
--- a/SConstruct
+++ b/SConstruct
@@ -320,7 +320,7 @@ add_option('propagate-shell-environment',
0, False)
if darwin:
- osx_version_choices = ['10.6', '10.7', '10.8', '10.9']
+ osx_version_choices = ['10.6', '10.7', '10.8', '10.9', '10.10', '10.11']
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAutEP6vYJsdiyj02nmz8Kzl1BKyxdnTJe6g8MH8wStPyzbwuTnGvHt/8fv8ZkgzgB/xbVsZ0L7SlL+VHTDuImHJvA6ln0/uwSl5PI2cHzCpzEBjcp3vpyOpB4xhg3YDxEK7fz6xEUIBn4/Qh5kxtkuV7k27KyE19uyZswH9/zbsLVpa58NAdgFK79zBTvQ5cfMYqS2+4Ua7ms6NDLH+iioLCl7T+QeldQSmrKemb48VFN0miIoN0aVkB2purpecrWd9IHKzSruKqfp9DxJSLWSMsVsjilHP4CpIYqdQ0Xh4cNKUceTftvRKAasynF6VWamE22K20rDuUSKzSpksR5bQ== [email protected]
Executable: /usr/local/bin/mopidy
Platform: Darwin-13.4.0-x86_64-i386-64bit
Python: CPython 2.7.10 from /usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7
Mopidy: 1.1.1 from /usr/local/lib/python2.7/site-packages
Pykka>=1.1: 1.2.0 from /usr/local/lib/python2.7/site-packages
requests>=2.0: 2.7.0 from /usr/local/lib/python2.7/site-packages
setuptools: 18.0.1 from /usr/local/lib/python2.7/site-packages
tornado>=2.3: 4.1 from /usr/local/lib/python2.7/site-packages
certifi: 14.5.14 from /usr/local/lib/python2.7/site-packages
backports.ssl-match-hostname: 3.4.0.2 from /usr/local/lib/python2.7/site-packages
-> % brew install mopidy-spotify
==> Installing mopidy-spotify from mopidy/homebrew-mopidy
==> Downloading https://pypi.python.org/packages/source/M/Mopidy-Spotify/Mopidy-Spotify-2.1.0.tar.gz
Already downloaded: /Library/Caches/Homebrew/mopidy-spotify-2.1.0.tar.gz
==> python -c import setuptools... --no-user-cfg install --prefix=/usr/local/Cellar/mopidy-spotify/2.1.0 --single-version-externally-managed --record=installed.txt
🍺 /usr/local/Cellar/mopidy-spotify/2.1.0: 38 files, 228K, built in 4 seconds
ERROR Extension spotify failed during setup, this might have left the registry in a bad state.
Traceback (most recent call last):
File "/usr/local/lib/python2.7/site-packages/mopidy/__main__.py", line 145, in main
extension.setup(registry)
File "/usr/local/lib/python2.7/site-packages/mopidy_spotify/__init__.py", line 49, in setup
from mopidy_spotify.backend import SpotifyBackend
File "/usr/local/lib/python2.7/site-packages/mopidy_spotify/backend.py", line 13, in <module>
from mopidy_spotify import Extension, library, playback, playlists
File "/usr/local/lib/python2.7/site-packages/mopidy_spotify/library.py", line 8, in <module>
from mopidy_spotify import browse, distinct, images, lookup, search, utils
src/main.rs:12:59: 12:66 error: cannot move out of borrowed content
src/main.rs:12 match silent_doorbell::sms::send_sms("+15005550006", &patrick.phone_number.unwrap(), "Hey there") {
^~~~~~~
error: aborting due to previous error
Could not compile `silent-doorbell`.
To learn more, run the command again with --verbose.
LCS - Location Services
GMLC - Gateway Mobile Location Center
RRLP -
HLR - Home Location Register
SCF - Service Control Function
TASK: [web | create mediawiki MySQL database] *********************************
failed: [m3.vm.host.net] => {"failed": true, "parsed": false}
BECOME-SUCCESS-cxqwtmcinxhzjculgsemkvfjeusnbieo
/bin/sh: 1: Public: not found
Shared connection to m3.vm.host.net closed.
FATAL: all hosts have already failed -- aborting
{"key": "value", "name": "patrick"}
public class Webhook {
public static String jsonContent(List<Object> triggerNew, List<Object> triggerOld) {
String newObjects = '[]';
if (triggerNew != null) {
newObjects = JSON.serialize(triggerNew);
}
String oldObjects = '[]';
if (triggerOld != null) {
oldObjects = JSON.serialize(triggerOld);