MetaCreations Fix 3.0, dev.depeuter.org
(Painter Classic etc.)
http://web.archive.org/web/20160523164345/http://dev.depeuter.org/metacreations_fix_30.php
leftside, rightside, uniside
MetaCreations Fix 3.0, dev.depeuter.org
(Painter Classic etc.)
http://web.archive.org/web/20160523164345/http://dev.depeuter.org/metacreations_fix_30.php
ノーマルユーザーで実行するとsystemdのパーミッションエラーやXの権限昇格なんとかが出て、動かない。
なんとか動かす。
xvfb =
を次のように書き換える。xvfb = Xorg -noreset -novtswitch -nolisten tcp +extension GLX +extension RANDR +extension RENDER -auth $XAUTHORITY -configdir ./ -config xpra.conf
systemd-run =
を次のように書き換える。systemd-run = no
あとはjetsonでcd /etc/X11
して、xpra start :100
して、転送を受けたい側(クライアント側)でxpra attach ssh:<login id>@<host ip>:100
して、jetsonでDISPLAY=:100 chromium-browser
すると、クライアント側で画面が投影される。
エンコーディングのオススメはPNG (8bpp colour)。
encoding = png/P
参考
106jpキーボードのレイアウトは、クライアント側の~/.xpra/xpra.confでkeyboard-layout = jp
とします。
クライアント側のGPUを使うにはクライアント側の~/.xpra/xpra.confでopengl = yes
とします。
Xpra Bug tracker and wiki > Getting Started : Configuration
プレビルドバイナリはLLVMのサイト。
clang-clでmsvc互換のオプションを使える。
clang-cl /I ..
参考:Clang Compiler User’s Manual clang-cl
msvcで作られたPEバイナリ形式のライブラリも変換せずに使える。
/link user32.lib
一時的に:
$ setxkbmap -model jp106 -layout jp
または、IMがXのキーボードの設定をオーバーライドしてるときがあるので、IMにそういった仕様がないか、または設定ファイルに記述がないかを確認。
ex. Fcitx: ~/.config/fcitx/conf/fcitx-xkb.config
[X Keyboard]
# Allow to Override System XKB Settings
# Available Value:
# True False
OverrideSystemXKBSettings=False # default : True
インストール
キーボード(日本語配列)
タッチパッド
X-Window
ビデオのその他
HDMI-2 connected (normal left inverted right x axis y axis)
音
ネットワーク
電源とBattery
#!/bin/sh
sudo acpiconf -s4
X_PID=`ps -x | grep -v "grep" | grep bin/X | awk 'BEGIN {FS=" "} { print $1 }'`
if [ $X_PID ]; then sudo kill $X_PID; fi
仮想化
Thunderbolt2
vgapci1@pci0:10:0:0: class=0x030000 card=0x237519da chip=0x140110de rev=0xa1 hdr=0x00
vendor = 'NVIDIA Corporation'
device = 'GM206 [GeForce GTX 960]'
class = display
subclass = VGA
Building Blender https://wiki.blender.org/wiki/Building_Blender
macOS
外部ライブラリのリポジトリはdarwin-9.x.universalからdarwinに変わってる(Xcode6.3〜、cxx11〜に対応のため)。
– apache 2.4
- apache2handler default
- TimeOut = 300 # 秒
- https://httpd.apache.org/docs/2.4/mod/core.html#timeout
– php latest
- mod_php default
- max_execution_time = 30 # 秒
- http://php.net/manual/ja/info.configuration.php#ini.max-execution-time
- # RELATION
- memory_limit = 128M # PHP 5.2.0 より前は “8M”、PHP 5.2.0 では “16M”
- http://php.net/manual/ja/ini.core.php#ini.memory-limit
– Adobe Air
- air 1.5 runtime default
- RemoteObject 60秒 (macOS)
- requestTimeoutをリセットできない(?)
- https://forums.adobe.com/thread/696177?tstart=0
- URLRequest ???
- NetConnection. httpIdleTimeout = ??? # milli second
- air 1.5.3 runtime default
- RemoteObject 30秒オーバー(?)
- requestTimeoutをリセットできる
- https://forums.adobe.com/message/3041722#3041722
- air 2.x runtime default
- RemoteObject 60秒 (macOS)
- requestTimeoutをリセットできない(?)
- https://forums.adobe.com/thread/696177?tstart=0
- URLRequest ??? milli second
- idleTimeoutをリセットできない(?)
- https://help.adobe.com/ja_JP/FlashPlatform/reference/actionscript/3/flash/net/URLRequest.html#idleTimeout
- https://peterkeating.co.uk/long-running-web-service-requests-in-adobe-air/
blender_full.cmake
# Turn everything ON thats expected for an official release builds.
#
# Example usage:
# cmake -C../blender/build_files/cmake/config/blender_full.cmake ../blender
#
set(WITH_ALEMBIC ON CACHE BOOL “” FORCE)
set(WITH_BUILDINFO ON CACHE BOOL “” FORCE)
set(WITH_BULLET OFF CACHE BOOL “” FORCE)
#OFFで保存したら、make fullでビルドする。
http://docs.monaca.io/ja/reference/cordova_6.5/camera/#convert