Post of the month: dec 2024

Finding RSS feeds...

Finding RSS feeds...

Posted on 25th Dec 2024

Here are some ways to find the link of RSS feeds, for well known platforms, cause many sites that use them, don't even mention that they have a RSS feed. RSS feeds, are a cool way to read and follow sites, that you really like and want to be aware of. Wordpress Add /feed after the site URL E...

DELTREE command in Python

DELTREE command in Python

Posted on 18th Dec 2024

One of the most useful commands when i used DOS, was deltree. Quickly and easy, deleting large areas of the hard disk, with no point of return... In Linux, there isn't such a command, or perhaps, it's a bit disguised, but never the less, it hasn't the features of the original deltree command or...

Making Invoices with HTML

Making Invoices with HTML

Posted on 11th Dec 2024

Many times, i need to calculate a budget for materials of a project. Other times, i need a quick way to make a simple invoice, for my clients, that can build on the go, from any device. No need for a database, to keep values, prices etc. Just a simple form, to write stuff, insert price and quantity...

"Respect" Text Mode...

"Respect" Text Mode...

Posted on 3rd Dec 2024

Textmode and the terminal in general, comes from a long way back in the past. It was invented in a time, that computers had many restrictions, compared with the present ones. So, the terminal also had its limitations, from which many of them, came because of the systems limitations. Now days, those...

Get Wireless Interface in BASH

Get Wireless Interface in BASH

Posted on 2nd Dec 2024

Just a quicky... :) To get the wireless interface of your computer, in a simple and "universal" (that works in every system) way, is the following. Just use this simple command: ls /sys/class/ieee80211/*/device/net/ -1 The command will list the names of the wireless interfaces. If it's only on...