Showing all posts tagged solution:

Run IDLE (Python IDE) in virtual environment

Imagine: you are running software implemented in Python and there is a problem you would like to debug or edit away. The software resides in a virtual environment and apart from this virtual environment and a standard Python installation nothing else i...

Bootstrap does not use complete jQuery

Should you want to use Bootstrap framework, you will also include jQuery library, for example: <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1P...

Static netcat .exe files

Today we are going to create static .exe binaries for netcat. While there are many ports and reimplementations of netcat, we are going to stick with win32 ports for netcat 1.11 or netcat 1.12 (the latter one enables sending CRLF line endings instead of...

Solving locale problem on USB armory

Should you encounter the error message need UTF-8 locale (LC_CTYPE) but have ANSI_X3.4-1968 for example, when running tmux, you should do following steps to solve the problem that causes it: uncomment the appropriate locale in the /etc/locale.gen fi...

Using make for automatic processing

Recently, I needed to extract text from a PDF file. This PDF file was produced from scanned pages. To extract the pages back, I used command pdfimages file.pdf IMG This stored the original scans in PBM-formatted image files. The files were named in t...