26.12.17

Install emerald on Ubuntu 1.10

apt install automake autopoint libtool intltool libdecoration0-dev libwnck-3-dev
./autogen.sh && ./configure --prefix /usr && make && make install


and now nothing...

5.12.17

28.11.17

Chrome standalone full install

Just add standalone=1 as query parameter.

10.8.17

HTTP requests debug in python


# These two lines enable debugging at httplib level (requests->urllib3->http.client)# You will see the REQUEST, including HEADERS and DATA, and RESPONSE with HEADERS but without DATA.# The only thing missing will be the response.body which is not logged.try:    import http.client as http_clientexcept ImportError:    # Python 2    import httplib as http_clienthttp_client.HTTPConnection.debuglevel = 1
# You must initialize logging, otherwise you'll not see debug output.logging.basicConfig()logging.getLogger().setLevel(logging.DEBUG)

6.3.17

7z include files

"\Program Files\7-Zip\7z.exe" a Soccer.zip Soccer\*.java Soccer\*.xml -r