Python で音響信号処理 spectrum.py
2016-07-16 Takuya Nishimoto (@24motz)
広島版IoT縛りの勉強会! IoTLT広島 vol.2
$ sudo apt-get install portaudio19-dev python-dev
$ curl https://bootstrap.pypa.io/get-pip.py | sudo python
| {% extends "layout.html" %} | |
| {% block content %} | |
| <div class="card"> | |
| <img class="card-img-top" src="https://placehold.jp/24/cc9999/993333/318x180.png" alt="商品「スマイル」の写真"> | |
| <div class="card-body"> | |
| <h2 class="card-text">スマイル 1000円</h2> | |
| <p class="card-text">このサイトは pay.jp のテストモードで動作しています。</p> | |
| </div> | |
| </div> | |
| {% if email is none %} |
| # a2.rb | |
| require 'pp' | |
| counts = Hash.new(0) | |
| File.open 'Q2/Q2.txt' do |f| | |
| f.read.scan(/[A-Z]+/) do |w| | |
| #p w | |
| w.each_char do |c| | |
| #puts c | |
| counts[c] += 1 | |
| end |
| src = None | |
| with open('Q1/Q1.txt', encoding='utf-8') as f: | |
| for s in f.readlines(): | |
| if s and s[0] == '"': | |
| src = s.strip('"\n') | |
| break | |
| print(src) | |
| #counts = {} |
| # coding: UTF-8 | |
| # sendchars.py by Takuya Nishimoto | |
| import globalPluginHandler | |
| import globalCommands | |
| import winUser | |
| import wx | |
| import gui | |
| import api |
| nishimotz (24motz) あいさつ、この活動の狙い | |
| https://great-h.connpass.com/event/55176/ | |
| mu2in | |
| すごい広島とは | |
| グラフ、データ分析 | |
| Ishibashi | |
| Boot Camp が面白かったので続けないともったいない |
Python で音響信号処理 spectrum.py
2016-07-16 Takuya Nishimoto (@24motz)
広島版IoT縛りの勉強会! IoTLT広島 vol.2
$ sudo apt-get install portaudio19-dev python-dev
$ curl https://bootstrap.pypa.io/get-pip.py | sudo python
2016年5月25日
広島版IoT縛りの勉強会! IoTLT広島 vol.1
| # focus highlight | |
| # 2015-05-31 | |
| # Takuya Nishimoto | |
| import globalPluginHandler | |
| import tones | |
| import wx | |
| import gui | |
| from logHandler import log | |
| import threading |