【UE4】Loop
ForEachLoop 配列分ループしてPrintString
ForEachLoop 配列分ループしてPrintString
保存とロード 下記のブループリントを作る ・保存するデータ構造体 myData 変数+ float value, string name ・保存のためのクラス SaveGame > mySaveGame 変数+ myDataの配列とか ・外部BPと共有するためのゲームインスタンス GameInstance > myGameInstance 変数+ myData(アプリ内で利用するため)
https://www.arduino.cc/en/Reference/MouseKeyboard Arduino Microをキーボードにする
brew install opencv3 sampleコンパイル clang++ -o sample `pkg-config –cflags opencv` `pkg-config –libs opencv` sample.cpp ld: library not found for
表示されなかったら、アンインストールして、端末再起動。 マップが表示されないときは、AndroidManifest.xmlに直接描いちゃうべし。 <meta-data android:name=”com.google.android.geo.API_KEY” android:value=”AIzaSsssssssssssssssssssssssssssBo” />
uwsgi –help Usage: /Users/mknod/.pyenv/versions/3.5.1/bin/uwsgi [options…] -s|–socket bind to the specified UNIX/TCP socket using default protocol -s|–uwsgi-socket bind to the specified
黒いウインドウがかぶってしまう場合の対処策 int main( ){ ofSetupOpenGL(2560,1600, OF_GAME_MODE); // <——– setup the GL context // this kicks off the running of my
librealsense https://github.com/IntelRealSense/librealsense/blob/master/doc/installation.md librealsense.xc/librealsense.xcworkspaceからビルド
構成 3GIM v2.0 AHIRU nestra board. FTDIケーブル Arduino 1.6.9 接続 3GIM v.2.0 —- AHIRU(ESP8266) – 1(POWER)—-14 2(RX)—-13(TX) 3(TX)—-12(RX)
import hashlib from passlib.hash import pbkdf2_sha256 print(hashlib.algorithms_available) print(hashlib.algorithms_guaranteed) password =’abcd1234′ # hash _hash = pbkdf2_sha256.encrypt(password, rounds=200000, salt_size=16) print(_hash) #save
検索 cli = MongoClient() db = cli.sample _datas = list(_col.find()) _datas = list(_col.find({})) #上に同じ _datas = list(_col.find({‘temp’:’10’})) # temp=10 _datas
キーが存在するかどうか _data = { ‘keyname’, ‘1234’ } if ‘keyname’ in _data: … True/False
サーバーセキュリティランク付け https://www.ssllabs.com/ssltest/ コンテンツランク付け https://securityheaders.io/
There is no excerpt because this is a protected post.
ubuntu 14.04 【install】 sudo apt-get -y update sudo apt-get -y upgrade sudo apt-get dist-upgrade -y sudo apt-get -y install build-essential
from bottle import route, run, template,get,post,put,delete,request,response import json import os def secure_response_headers(response): response.set_header(‘Content-Type’, ‘application/json’) response.set_header(‘X-XSS-Protection’, ‘1; mode=block’) response.set_header(‘X-Frame-Options’, ‘deny’) response.set_header(‘Content-Security-Policy’,
ViewControllerを背景透過してかぶせる。 ViewContorollerのViewの背景を透過し、Viewを追加する。 このViewの背景は例えば黒70%とかにする。 Presentationに、Over Current Contextを設定する。
UsbSerial https://github.com/felHR85/UsbSerial/releases Android Studio File>New>New Module>Import JAR,AAR Package usbserial-release.aar File >Project Structure > app > Depemdencies >
【osx 】 ssh–keygen –t rsa –v で公開キー作成 ls ~/.ssh id_rsa id_rsa.pub 【server】 ssh-keygen cd ~./ssh touch authorized_keys id_rsa.pubの中身をauthorized_keysへコピー chmod 600 authorized_keys ・/etc/ssh/sshd_config の内容確認。
$ xcode-select –install pyenvのinstall brew install pyenv .bash_profile PYENV_ROOT=”$HOME/.pyenv” export PATH=”$PYENV_ROOT/bin:$PATH” eval “$(pyenv init -)” pythonのversion確認 $ pyenv install