Skip to content

Instantly share code, notes, and snippets.

View teshi04's full-sized avatar
🐟
sakana

Yui Matsuura teshi04

🐟
sakana
View GitHub Profile
@gabrielemariotti
gabrielemariotti / AndroidManifest.xml
Last active April 4, 2023 11:15
Android Wear: Heart Rate and Samsung Gear Live. (basic example)
<!-- Declare the permission for body sensor -->
<uses-permission android:name="android.permission.BODY_SENSORS" />
@katsyoshi
katsyoshi / mac_sound.rb
Created November 2, 2013 10:54
macでmikutterの音を鳴らすプラグイン
Module.new do
if command_exist? "afplay"
Plugin::create(:mac_sound).add_event(:play_sound){ |filename, &stop|
SerialThread.new {
bg_system("afplay", filename) if FileTest.exist?(filename) }
stop.call
}
end
end