Skip to content

Instantly share code, notes, and snippets.

View chezou's full-sized avatar

Aki Ariga chezou

View GitHub Profile

Voice Meeter Bananaを使ってビデオ会議のノイズ軽減をするメモ.md

自宅でビデオ会議をしていると、空調とか屋外のノイズなどをマイクが拾いがちなので、Voice Meeter Bananaを使ってノイズを軽減するための工夫をあれこれ試してみたメモ。

使うもの

@xerial
xerial / Prestobase Connection.ipynb
Last active August 22, 2018 05:56
Interactive Analysis Using Treasure Data Presto and Python
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@aodag
aodag / how-to-use-private-package.md
Created July 23, 2017 11:46
プライベートパッケージを扱う方法について

プライベートパッケージを扱う方法について

いくつかの方法

  • gitリポジトリに同梱する
  • パッケージをディレクトリにまとめてhttpサーバーで公開する
  • pypi相当のサーバーをたてる

pypi相当のサーバーをたてるのは大掛かりであるし、そこまですることもないと思うのでとりあえずここでは前者2つのことだけ書いておく。

@miyohide
miyohide / memo.md
Created April 26, 2015 10:06
bashさんにお聞きしたいこと
  • 所属会社の事業領域に全力で飛び込まれているように見受けられます。その原動力は?モチベーションは?
  • 昨年度は、bashさんがいろんな場で発表されている機会をお見受けしたように思います。
    • Rubyworld ConferenceとかRuby Businessとか渋谷Ruby会議とか。
    • Web上での記事も数多くお見受けした感じがします。
      • たまたま重なっただけですか?
      • 個人の意志ですか?会社が何らかの支援をしてもらっているとか?
  • すごくポジティブなお考えをお持ちのようです。
    • 正直羨ましいです。
  • これから何していきたいですか?
  • 仕事の方向性としてはどのような道を目指したい?
@neubig
neubig / plot-gp.py
Created November 19, 2014 02:25
A simple program to sample functions from a Gaussian process and plot them
#!/usr/bin/python
from math import exp
import numpy as np
import matplotlib.pyplot as plt
def rbf_kernel(x1, x2, variance = 1):
return exp(-1 * ((x1-x2) ** 2) / (2*variance))
def gram_matrix(xs):
@kakutani
kakutani / Annotation.md
Last active September 26, 2019 13:35 — forked from ursm/Gemfile
Raw Gemfile on Idobata (master - 5adeddb)

Idobata Gemfile プレゼント

tl;dr IdotabaのGemfileは"全プレ"になりました。ご笑納ください。→ Gemfile

プレゼントについてのお詫び

rebuild.fmのep36でお知らせさせていただきました、Idobataの最新版Gemfileプレゼントをお届けいたします。 過日はIdobata会議01への多数のご参加ありがとうございました。おかげさまで盛況なミートアップとなりました。 (当日会場を提供いただいたEngine Yardさまのブログにて、Idobata会議01当日の様子がまとめられています。ありがとうございます!)

@neubig
neubig / crf.py
Created November 7, 2013 10:59
This is a script to train conditional random fields. It is written to minimize the number of lines of code, with no regard for efficiency.
#!/usr/bin/python
# crf.py (by Graham Neubig)
# This script trains conditional random fields (CRFs)
# stdin: A corpus of WORD_POS WORD_POS WORD_POS sentences
# stdout: Feature vectors for emission and transition properties
from collections import defaultdict
from math import log, exp
import sys
@robmiller
robmiller / .gitconfig
Created July 17, 2013 07:52
Some useful Git aliases that I use every day
#
# Working with branches
#
# Get the current branch name (not so useful in itself, but used in
# other aliases)
branch-name = "!git rev-parse --abbrev-ref HEAD"
# Push the current branch to the remote "origin", and set it to track
# the upstream branch
publish = "!git push -u origin $(git branch-name)"
@ravasthi
ravasthi / _config.yml
Created February 15, 2012 08:59
Multiple authors on Jekyll
authors:
hanzou:
name: Hanzou Hattori
display_name: Hanzou
gravatar: c66919cb194f96c696c1da0c47354a6a
email: hanzou@company.com
web: http://company.com
twitter: company
github: hhattori
jorgen: