May 29, 2015
May 28, 2015
May 20, 2015
May 18, 2015
Windows 10 preview vs Apple Bootcamp
Installed Windows 10 tech preview on Bootcamp partition (MBPR 15' 2014). Got random freezes as response for trivial actions.
Windows Log contains numerous errors "Event 129, storahci - Reset to device ..."
Cure: disable PCI-e Link State Power management in "Power Options". (link)
Or you may use only high performance power profile.
Windows Log contains numerous errors "Event 129, storahci - Reset to device ..."
Cure: disable PCI-e Link State Power management in "Power Options". (link)
Or you may use only high performance power profile.
May 8, 2015
May 6, 2015
Apr 1, 2015
Connect to NodeJS Socket.IO server from Unity3d using WebSocketSharp
It wont work out of the box. So no connections with simple
using (var ws = new WebSocket ("ws://127.0.0.1")) {
ws.Connect();
};
Socket.IO clients hides much of inner details. So when you using plain WebSocket client you need to provide some additional params like this:
using (var ws = new WebSocket ("ws://127.0.0.1/socket.io/?EIO=3&transport=websocket&b64=1")) {
ws.Connect();
};
using (var ws = new WebSocket ("ws://127.0.0.1")) {
ws.Connect();
};
Socket.IO clients hides much of inner details. So when you using plain WebSocket client you need to provide some additional params like this:
using (var ws = new WebSocket ("ws://127.0.0.1/socket.io/?EIO=3&transport=websocket&b64=1")) {
ws.Connect();
};
Nov 10, 2014
Cool scripts for ndk developers
http://android-developers.blogspot.ru/2014/11/utilities-for-cc-android-developers.html?m=1
Mar 23, 2013
My contribution to OpenCOLLADA 3dsmax export
https://github.com/KhronosGroup/OpenCOLLADA/pull/161#issuecomment-15343540
Mar 7, 2013
Subscribe to:
Comments (Atom)

