Sep 14, 2015
Sep 3, 2015
GitHub overview: Libs for lua binding
https://github.com/jeremyong/Selene - Simple C++11 friendly header-only bindings to Lua
https://github.com/dafrito/luacxx - C++11 API for creating Lua bindings
https://github.com/SteveKChiu/lua-intf - very similar to luabind, but modern and lightweight
https://github.com/AdUki/LuaState
https://github.com/Rapptz/sol - A C++11 Lua wrapper
https://github.com/xpol/lua-rapidjson
https://github.com/lubyk/xml - Very fast XML parser for Lua based on RapidXML
https://github.com/guwere/luapath - C++ library which makes loading of tables from Lua files very easy.
https://github.com/OldFisher/lua-api-pp
https://github.com/vinniefalco/LuaBridge
https://github.com/vinniefalco/LuaBridgeDemo
https://github.com/SuperV1234/SSVLuaWrapper (https://github.com/tomaka/luawrapper)
https://github.com/zdevito/terra - lowlevel lua with c-lib support
https://github.com/dafrito/luacxx - C++11 API for creating Lua bindings
https://github.com/SteveKChiu/lua-intf - very similar to luabind, but modern and lightweight
https://github.com/AdUki/LuaState
https://github.com/Rapptz/sol - A C++11 Lua wrapper
https://github.com/xpol/lua-rapidjson
https://github.com/lubyk/xml - Very fast XML parser for Lua based on RapidXML
https://github.com/guwere/luapath - C++ library which makes loading of tables from Lua files very easy.
https://github.com/OldFisher/lua-api-pp
https://github.com/vinniefalco/LuaBridge
https://github.com/vinniefalco/LuaBridgeDemo
https://github.com/SuperV1234/SSVLuaWrapper (https://github.com/tomaka/luawrapper)
https://github.com/zdevito/terra - lowlevel lua with c-lib support
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();
};
Subscribe to:
Posts (Atom)