I hereby claim:
- I am uetchy on github.
- I am uechi (https://keybase.io/uechi) on keybase.
- I have a public key ASB3p7n7ezpVina06FyMi_9hgeqEwjCiEbRp4TpBw8d7TQo
To claim this, I am signing this object:
[Adblock Plus 2.0] | |
! Title: Social Detox Filter | |
! Homepage: https://gist.github.com/uetchy/c6b774ea8e0221d71d1fe87720223c72/ | |
!Twitter - Remove Counters | |
twitter.com##div[data-testid="reply"] > div > div:nth-child(2) | |
twitter.com##div[data-testid="like"] > div > div:nth-child(2) | |
twitter.com##div[data-testid="unlike"] > div > div:nth-child(2) | |
twitter.com##div[data-testid="retweet"] > div > div:nth-child(2) | |
twitter.com##div[data-testid="unretweet"] > div > div:nth-child(2) |
#!/usr/bin/env python | |
from __future__ import print_function | |
import subprocess | |
import re | |
def getIOReg(): | |
cmd = "ioreg -l | grep Capacity" | |
response = subprocess.check_output(cmd, shell=True) |
I hereby claim:
To claim this, I am signing this object:
# install CUDA 8.0 | |
brew cask install cuda | |
## add alias for libcuda.dylib to suppress the issue related to TensorFlow - https://github.com/tensorflow/tensorflow/issues/3263 | |
sudo ln -s /usr/local/cuda/lib/libcuda.dylib /usr/local/cuda/lib/libcuda.1.dylib | |
# install cuDNN 5.1 | |
# get cuDNN from https://developer.nvidia.com/rdp/cudnn-download | |
tar xzf cudnn-8.0-osx-x64-v5.1.tgz | |
sudo cp cuda/include/cudnn.h /Developer/NVIDIA/CUDA-8.0/include |
#!/bin/bash | |
set -eu | |
GOOWNER=uetchy | |
GONAME=nv | |
GOTAG=v2.0.0 | |
if [[ `uname -s` =~ ([Dd]arwin|mac os x) ]]; then | |
GOOS="darwin" |
#!/bin/bash | |
export PATH=/usr/local/cuda/bin:$PATH | |
export CPATH=/opt/cudnn/include | |
export LIBRARY_PATH=/usr/local/cuda/lib:/opt/cudnn/lib | |
export LD_LIBRARY_PATH=$LIBRARY_PATH | |
export DYLD_LIBRARY_PATH=$LIBRARY_PATH | |
LDFLAGS="-F/Library/Frameworks -framework CUDA" pip install --no-cache-dir chainer |
#!/bin/bash | |
brew cask install basictex | |
export PATH="/Library/TeX/texbin:$PATH" | |
sudo tlmgr update --self --all | |
sudo tlmgr install collection-langjapanese draftcopy | |
# tlmgr search —global foobar |
class Platformio < Formula | |
desc "An open source ecosystem for IoT development" | |
homepage "http://platformio.org" | |
url "https://pypi.python.org/packages/source/p/platformio/platformio-2.8.4.tar.gz" | |
sha256 "5728bee3281a10e33f4727da0cdb3f7b1f333fd415fdbbde6ad1591a963344b5" | |
depends_on :python if MacOS.version <= :snow_leopard | |
resource "bottle" do | |
url "https://pypi.python.org/packages/source/b/bottle/bottle-0.12.9.tar.gz" |