I see a lot of automated posts of articles, weather and others (Not BBS Ads) and was wondering how they are being generated? Is there a program that does this?
This is the way, I generate ansi files with Python, and post with Mutil.I see a lot of automated posts of articles, weather and others (Not B Ads) and was wondering how they are being generated? Is there a progr that does this?
mutil can post automated messages:
Warpslide wrote to Vorlonze <=-
On 25 Apr 2025, Jeff Earle said the following...
I see a lot of automated posts of articles, weather and others (Not BBS Ads) and was wondering how they are being generated? Is there a program that does this?
mutil can post automated messages:
[mutil.ini]
; Current abilities (enabled/disabled in the General header below):
;
; - Post text files to message bases
Thanks but it was more of a question of the content of the posts are gathered is automated (or manually gathered), not the how they are
posted. Appreciate the info though.
Warpslide wrote to Vorlonze <=-
On 26 Apr 2025, Jeff Earle said the following...
Thanks but it was more of a question of the content of the posts are gathered is automated (or manually gathered), not the how they are
posted. Appreciate the info though.
Ah, gotcha.
I download and post the weather (among other things), which is
automated with a script. I grab the weather info for Southern Ontario using curl from here:
https://weather.gc.ca/forecast/public_bulletins_e.html?Bulletin=fpcn11.c wto
And then use various linux tools to strip out the HTML, etc to make it presentable to post.
I also use the same source to post weather for my local city to
Mastodon.
Thank you. I don't use Linux but I assume these scripts are for Linux only. I run win10x64 and would like to do exactly the same thing but different content. I can't find any apps or programs for windows that will do this.
I'll keep searching but I don't think I'll find anything.
You can get curl, iconv, grep, sed & awk for Windows:
curl:
https://curl.se/windows/
iconv:
https://gnuwin32.sourceforge.net/packages/libiconv.htm
grep:
https://gnuwin32.sourceforge.net/packages/grep.htm
sed:
https://gnuwin32.sourceforge.net/packages/sed.htm
awk:
https://gnuwin32.sourceforge.net/packages/gawk.htm
I just tried this on my Windows 10 32bit install with the above programs
& it seemed to work:
curl -o weather.tmp https://weather.gc.ca/forecast/public_bulletins_e.html?Bulletin=fpcn11.cwt sed -i -n "/<pre>/,/<\/pre>/{ /pre>/d; p }" weather.tmp
iconv -f utf-8 -t cp437//translit weather.tmp > weather.txt
awk -v RS="" "/City of Hamilton/" weather.txt > hamilton.txt
After this, you will have three files the directory you ran the commands from.
weather.tmp = The weather forecast downloaded in UTF-8
weather.txt = The weather forecast in CP437
hamilton.txt = Just the forecast for the City of Hamilton
From there you can use mutil to post these to whatever message base you like.
Thank you. I don't use Linux but I assume these scripts are for Linux only. I run win10x64 and would like to do exactly the same thing but different content. I can't find any apps or programs for windows that
will do this.
I'll keep searching but I don't think I'll find anything.
busyboxBusyBox v1.37.0-FRP-5398-g89ae34445 (2024-06-25 08:38:11 BST)
Ogg wrote to Vorlonze <=-
Hello Jeff Earle!
Thank you. I don't use Linux but I assume these scripts are for Linux only. I run win10x64 and would like to do exactly the same thing but different content. I can't find any apps or programs for windows that
will do this.
I'll keep searching but I don't think I'll find anything.
Look for busybox. There's a windows port.
busybox
BusyBox v1.37.0-FRP-5398-g89ae34445 (2024-06-25 08:38:11 BST)
(mingw32-gcc 14.1.1-3.fc40; mingw32-crt 11.0.1-3.fc40; glob)
BusyBox is copyrighted by many authors between 1998-2024.
Licensed under GPLv2. See source distribution for detailed
copyright notices.
Usage: busybox [function [arguments]...]
or: busybox --list[-full]
or: busybox --install [-s] [-u|DIR]
or: busybox --uninstall [-n] file
or: function [arguments]...
BusyBox is a multi-call binary that combines many common Unix
utilities into a single executable. The shell in this build
is configured to run built-in utilities without $PATH search.
You don't need to install a link to busybox for each utility.
To run external program, use full path (/sbin/ip instead of
ip).
dozo wrote to Vorlonze <=-
Hello Jeff,
I see responses to your question with linux scripts/commands. Windows
10 comes with something called WSL (Windows Subsystem for Linux). Basically it allows you to run say Ubuntu 24.04LTS alongside windows.
You can also access the windows filesystem/drives from it. This might
help you use linux scripts on your windows install. I use linux only myself, but have used WSL for work. Just wanted to let you know it
exists :)
I see responses to your question with linux scripts/commands. Windows 10 comes with something called WSL (Windows Subsystem for Linux). Basically it allows you to run say Ubuntu 24.04LTS alongside windows. You can also
I don't think that's pre-installed by default though; it's still something
have to tell Windows to install separately.
I used to work for a company that disabled installing WSL on their company laptos. I don't remember why; there must have been something in it they considered a security risk.
I used to work for a company that disabled installing WSL on their
company laptos. I don't remember why; there must have been something in
it they considered a security risk.
I had to switch to Windows after 8 years of macOS usage when switching employers. Being allowed to use WSL was a godsend for my sanity I must say. But I can see how people who don't understand (or know about) WSL are eager to disable it with policies...
dozo wrote to Nightfox <=-
I had to switch to Windows after 8 years of macOS usage when switching employers. Being allowed to use WSL was a godsend for my sanity I must say. But I can see how people who don't understand (or know about) WSL
are eager to disable it with policies...
I've never really used Mac computers much, but I've gotten used to some of
command-line utilities from similar systems such as Linux. Most of the GNU
command-line tools are available for Windows, and typically I install at le
grep for Windows, as I tend to use that a lot. Even though Windows has oth
ways of searching files, I've gotten used to grep from using Linux.
Infosec at big companies is all about minimizing risk and obfuscating approval paths. I've been trying to add a program to our list of
available programs and tire of them saying no, just because it's more
work for them. They should vet programs needed, allow or disallow based
on security, and get out of the way.
Sysop: | Tetrazocine |
---|---|
Location: | Melbourne, VIC, Australia |
Users: | 6 |
Nodes: | 8 (0 / 8) |
Uptime: | 121:21:54 |
Calls: | 154 |
Files: | 21,500 |
Messages: | 78,994 |