This file contains hidden or 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
| [ | |
| { | |
| owner: 'bcoe', | |
| repo: 'top-npm-users', | |
| description: ':star: Generate a list of top npm users by based on monthly downloads.', | |
| language: 'JavaScript', | |
| isFork: false, | |
| stargazers: 27, | |
| watchers: 27 | |
| } |
This file contains hidden or 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
| #!/bin/bash | |
| NVIDIA_DRIVER_VERSION=352.63 | |
| NVIDIA_CUDA_VERSION=7.5 | |
| NVIDIA_CUDA_FULL_VERSION=7.5.18 | |
| sudo yum update -y | |
| sudo yum groupinstall -y "Development tools" | |
| sudo yum install kernel-devel-`uname -r` |
This file contains hidden or 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
| import boto | |
| import boto.exception | |
| import boto.sns | |
| import pprint | |
| import re | |
| def send_push(device_id, body): | |
| region = [r for r in boto.sns.regions() if r.name==u'eu-west-1'][0] | |
| sns = boto.sns.SNSConnection( |
This file contains hidden or 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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Spectrogram</title> | |
| <style type="text/css"> | |
| .visualizer { | |
| display: block; | |
| background-color: black; | |
| } |
This file contains hidden or 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
| import numpy as np | |
| import pymc | |
| import pdb | |
| def unconditionalProbability(Ptrans): | |
| """Compute the unconditional probability for the states of a | |
| Markov chain.""" | |
| m = Ptrans.shape[0] |
NewerOlder