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
/* | |
{ | |
"id": "cylinder-spray", | |
"label": "Cylinder Spray", | |
"icon": "❍", | |
"author": "Hiroyuki Sato" | |
} | |
*/ | |
// @baku89: Added metadata so that the app can load. |
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
#include "ofApp.h" | |
const int NUM_LED_PER_RING = 13; | |
const int NUM_ROW_IN_UV_LAYOUT = 6; | |
const int PIXEL_SIZE = 4; | |
const int PIXEL_MARGIN = 4; | |
const int STRIP_MARGIN = 10; | |
const int LAND_TEXT_HEADER_MARGIN = 60; | |
const int LAND_MARGIN = 20; |
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/sh | |
# 自動更新OFF | |
echo "Disable : SystemPreferences -> AppStore -> Automatically check for updates" | |
defaults write /Library/Preferences/com.apple.SoftwareUpdate AutomaticCheckEnabled -bool false | |
# 未承認のアプリでも右クリックなく開ける | |
echo "Disable Warning on opening new App." | |
spctl --master-disable |
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
open -n ./emptyExampleDebug.app/ --args --myargs 1 2 3 4 |