Copy Lollipop Playlists with Python. Update Oct. 27, 2019: Installed Pop! OS 19.10 and it is a solid OS. I’m still using Shotwell, which is downloading photos perfectly without any need for a third party tool or code and I am also still using Samba to download and play my…
Review or Delete Duplicate Files with Python.
My music and photos were getting out of hand. Thought I would share.
Extract CAB files with Python and Patool.
Install 7zip. This assumes you are on Windows. Add the 7zip path to the system path. In the searchbar type env and open the result. Click Environment Variables in the dialog. Add to PATH. Windows 10 just click add and browse to the folder 7zip installed to, i.e., C:\Program Files\7-zip….
Python3 Gtk3 Thread Example
Quick Python3 Gtk3 app to execute Python scripts to test long running threads in Gtk3 app. Some things could be better, like the python paths collection and displaying the PID, but I was focused on running threads without freezing the GUI and it just kind of happened. Hope it’s useful…
Create mov,mp4 thumbnails from Python3
I was working on a Gtk 3 project to roll up all my iPhone videos into a flowbox for easy locating and processing since iPhone doesn’t name things in a meaningful way and photo managers dump things into not so meaningful folders, thumbnails was a must to locate videos easily….
GTK3 Calendar dialog example in Python.
Open a calendar in a Gtk window and get the user’s selected values in the main App class.
Convert PostScript to PDF from D lang calling GhostScript ps2pdf.
I’m learning D. I know, I am a program language hopper. This code provides working examples of getopts, concurrency, and a process call to convert PostScript to PDF using GhostScript in the D language.
Gambas 3 TreeView and TabStrip Example Code
I sometimes play around with Xojo and PureBasic for quick and simple GUI apps since the interface designers are convenient and the language makes for easy coding. I was checking out Gambas 3 and found it to be fairly good but lacking in a lot of examples. I was messing…
Install Virtuoso 6.1.6 for use with Python 3 on LinuxMint 18
Install the following from the Software Manager (use apt if you prefer): Virtuoso-opensourceVirtuoso-serverVirtuoso-vad-conductorVirtuoso-vad-isparqlVirtuoso-vsp-startpageVirtuoso-opensource-6.1Virtuoso-opensource-6.1-binVirtuoso-opensource-61-commonUnixodbcLibvirtodbc0 Download zip and Install PyODBC from https://github.com/maparent/pyodbc/tree/v3-virtuoso Unzip, cd into the expended folder, then type: $ sudo python setup.py build install Add the following in the odbc.ini: $ sudo nano /etc/odbc.ini Add the following and save it….
Creating a DataMatrix GS1 barcode and saving to postscript, PDF, or image for free in C#.
I’ve been working on an interesting project where I had to learn Pitney Bowes Streamweaver in order to sort/merge and barcode postscript. I have very little knowledge of postscript and no training or knowledge of Streamweaver whatsoever. I rolled my own in C# in order to understand how the product…