パーツ | 内容 |
---|---|
タッチパネル | 縦2分割x横16分割=32タッチ判定 |
ライティング | メインパネル16個+ボーダーパネル(区切り)15個=31個 |
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
import java.io.BufferedReader; | |
import java.io.InputStreamReader; | |
import java.math.BigDecimal; | |
import java.math.RoundingMode; | |
import java.util.regex.Pattern; | |
public class Main { | |
private static final String CHARS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
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
o -> 成功 | |
- -> スプラッシュが存在しない | |
x -> できないor調査中 | |
o Ad Acrobat Distiller /Applications/Adobe Acrobat X Pro/Acrobat Distiller.app/Contents/Resources/AD_SplashScreen_j.png | |
x Ap Adobe Acrobat Pro | |
x Ae Adobe After Effects CS6 | |
x Au Adobe Audition CS6 | |
- Br Adobe Bridge CS6 | |
o Dw Adobe Dreamweaver CS6 /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Resources/png/splashNormal.png |
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
dhcp service server | |
dhcp server rfc2131 compliant except remain-silent | |
dhcp scope 1 192.168.50.2-192.168.50.254/24 | |
dhcp scope bind 1 192.168.50.49 01 d0 50 99 a6 7b XX # こっちは普通に動いてます(前までethernet macaddrでしたが変更しました) | |
dhcp scope bind 1 192.168.50.50 d0:50:99:ab:b3:XX # ethernetを入れても同じでした... | |
dhcp scope 2 192.168.51.2-192.168.51.254/24 | |
dhcp scope 3 192.168.52.2-192.168.52.254/24 |
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
#-*- coding:utf-8 -*- | |
from escpos import * | |
from tweepy.streaming import StreamListener, Stream | |
from tweepy.auth import OAuthHandler | |
from tweepy.api import API | |
from datetime import timedelta | |
from datetime import datetime as dt | |
def get_oauth(): |
あーちぇりー艦これ メンター呼び鈴(ファミレススタックスタイル)
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
process.stdin.resume(); | |
process.stdin.setEncoding('utf8'); | |
// Here your code ! | |
const NmlModel = (()=>{ | |
var text; | |
var type; | |
var properties; | |
return class { | |
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
try { | |
URL url = new URL("http://www.example.com/"); | |
URLConnection uc = url.openConnection(); | |
uc.setDoOutput(true); | |
uc.setRequestProperty("Content-type", "application/json"); | |
OutputStream os = uc.getOutputStream(); | |
PrintStream ps = new PrintStream(os); | |
ps.print("post message"); | |
ps.close(); |