I wanted to install cncjs on Raspberry, but a specific version of Node.js has to be installed. By default, the latest version is installed whatever if there is many sources. Check package availability Before installation, you can type apt-cache madison to see if there is many version available. apt-cache madison packagename Here is the output: … Continue reading How to install a specific version of a package
Reset PuTTY Settings
All PuTTY settings are available in registry. The path to have access to keys: HKEY_USERS\UID\Software\SimonTatham\PuTTY\Sessions\Default%20Settings The UID part is unique and will be different on your computer. My main issue was PuTTY was not able to save the default settings and in particular, my font parameter. So I update them directly in registry: Be careful … Continue reading Reset PuTTY Settings
Allow apt-get to connect to Internet (Kali Linux)
While performing an apt-get update with Kali Linux, packages cannot be retrieved, but a ping works. sources.list file needs to be setup. To fix it in a terminal: Type sudo -iType touch /etc/apt/sources.listType chmod 644 /etc/apt/sources.listType echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" > /etc/apt/sources.listType apt-key adv --keyserver hkp://keys.gnupg.net --recv-keys 7D8D0BF6Type apt-get updateGood to go.
Configure Visual Studio Code for Python
The first step is to install the extension needed. The official extension is edited by Microsoft. By typing 'Python' in 'Search' field, it will be the first one. Once installed, it should be able to use 'pylint' and 'pep8' to show errors and autoformat the code on save. Be sure that 'pylint' and 'pep8' extensions … Continue reading Configure Visual Studio Code for Python
Open a XML file with LibreOffice Calc
When I tried to import a XML file to Calc, it seems to me less obvious than on Excel. Generally, I just drag and drop and it does the job. In "Data" menu, there is "XML Source" option that should allow you to import. Nonetheless, it is gray by default. You need to activate experimental … Continue reading Open a XML file with LibreOffice Calc