Navigator

Turn your chrome browser to a putty


Install Secure Shell application to your chrome browser to use chrome browser as remote terminal for any SSH connections (of course any remote connections.)

Main abilities:
1. Multi tab.
2. click on address bar and press Ctrl+F to find any word in putty history.
3. Huge scroll back.
4. No need of any other putty connection managers etc...

How to wrap dlopen and dlsym for C++


Use below type of code
Class DynLib
{
    /* All your functions */
    void fun1() {};
    void fun2() {};
    .
    .
    .
}

DynLib getDynLibPointer()
{
    DynLib x;
    return x;
}
use dlopen() for loading this library at runtime. and use dlsym() and call getDynLibPointer()which returns DynLib object. from this object you can access all your functions jst as obj.fun1().....