Category Archives: Misc

Phreak Philes: Modem scanning in the late 1980s…

phreak /frēk/ INFORMAL

verb: phreak; 3rd person present: phreaks; past tense: phreaked; past participle: phreaked; gerund or present participle: phreaking; noun: phreaking
hack into telecommunications systems, especially to obtain free calls.
“a few old-time hackers still phreak casually just to keep their hand in”

noun: phreak; plural noun: phreaks
a person who hacks into telecommunications systems, especially to obtain free calls.
“the nation’s most clever cellular phone phreaks”

– Oxford Languages via BING search for “define phreak”

I expect most of us have some life changing event we could cite that forever changed the direction of our existence. For example, looking through a telescope for the first mite might have led to a career in astronomy. To me, it was when I was in 7th grade English class and I quoted a line from a PBS TV show I had just watched (“The Hitchhikers Guide to the Galaxy“). A nearby student recognized the quote (“you watched that too?”), and introduce me to the books of Douglas Adams.

Jimmy also introduced me to computers, and helped me learn BASIC programming via books he had. We’d go down to the local Radio Shack to type in the programs we’d written down on paper. This led me to wanting a computer instead of an Intellivison (its baseball program could talk!) or ColecoVision (it came with Donkey Kong!), which started my career as a programmer.

In addition to Douglas Adams and computers, Jimmy also exposed me to the world of phone phreaking — though not at any “WarGames” level. It was just a bunch of junior high kids that learned how to make free phone calls from the school’s payphone, or talk with random kids via “loop lines”. (This made me search for “loop line” to see just what those phone numbers were for. I found a Wikipedia entry about “loop around” which does appear to be what I am referring to. #TheMoreYouKnow).

I remember kids all over Houston, Texas were making use of codes that allowed “free” long distance phone calls. This let them dial in to bulletin board systems out of state without the parents throwing a fit when they received a phone bill.

There was a higher level of phreaking that involved devices that would generate special tons that the old phone system would respond to. They were known as “boxes” and identified by a color. The “red box” simulated a tone that told the phone company a coin was inserted in to a payphone. This allowed making free calls from payphones. I see today’s Wikipedia has an entire category on these boxes with colors I never heard of back then. I think I’d only heard of red, blue (2600 Hz tone generator used for free long distance), and silver (four extra buttons on a standard touch tone keypad labeled A, B, C and D). I recall the “D tone” would knock an operator off the line, for some reason.

I actually had a silver box — something my dad found at a store. I remember him telling me (over the phone) that he found a phone that extra buttons on it that were going to be used for future phone services. He said they were labeled A, B, C and D. Somewhere, I still have that phone. I have no idea why this phone existed in stores, and I never knew how to use it for anything, but somewhere I still have it.

Popular computers like the Apple 2s had tons of phreaking software. The Tandy Color Computer had some, as well, including during the CoCo 3 days. Here’s one called “Super Phreak” by “Mr. Bill”:

It seems to be a software implementation of the phreak boxes, though it doesn’t make any sounds for me (at least not in an emulator).

There was one for the earlier Color Computers, called “BOX.BAS”, but based on the menu screen it may have been called “Phreak Operator.”

I wonder who “S Y N T A X” was, and how the licensing worked.

This one does produce tones, so it must have some assembly language audio routine embedded in it as the CoCo BASIC could only do one tone voice at a time.

But I digress…

In addition to loop lines, hardware boxes, and using codes for free long distance, there were other things lumped together with phreaking, such as having a computer dial numbers looking for other computers. This went by many names (we called it simply “modem scanning”) at the time, but today I see the Wikipedia refers to it as wardialing.

A famous example of this comes from the 1983 movie WarGames where David Lightman (played by a young Matthew Broderick) has his computer scanning for modems, and ends up finding the W.O.P.R. (War Operation Plan Response) supercomputer at NORAD.

WarGames wardialing clip

Unlike the infamous payphone scene, the movie was quite accurate on this. I expect folks wrote replica programs to recreate the user interface:

It does make me wonder how much the wardialing cost his parents. It sure sounded like his computer was just dialing a bunch of long distance numbers in area code 311 ;-)

The Radio Shack Color Computer also had programs that did this. I have two versions of “Modem Scanner” that used a Hayes-compatible modem hooked up to the Serial I/O port of the CoCo. In BASIC, the program would send dial commands to the modem using PRINT #-2 (as if they were going to a serial printer), and then it would use PEEK to look for the carrier detect pin to go high on the port. If a CD was not detected after some time, it would send the hangup command and move on to the next number.

It looked like this:

Above, you can see it would list the status of every number dialed, similarly to the WarGames program.

Using the “print to file” feature of the XRoar emulator, here is what was being sent to the modem:

+++ATZ
ATT C0 E0 M1 Q1
ATDT 555-0000
ATH
ATDT 555-0001
ATH
ATDT 555-0002
ATH
ATDT 555-0003
ATH
ATDT 555-0004
ATH
ATDT 555-0005
ATH
ATDT 555-0006
ATH
ATDT 555-0007
ATH
ATDT 555-0008
ATH
ATDT 555-0009
ATH
ATDT 555-0010
ATH
ATDT 555-0011

At the top, the “+++ATZ ATT C0 E0 M1 Q1” sequence was the initializing modem part. Looking at the list of Hayes modem commands on wikipedia, I can see that…

  • “+++” followed by a pause was the escape code that made a Hayes smart modem go from communications mode to command mode. In command mode you could change settings, dial numbers or hang up.
  • “ATH” was the hang up command. (Hayes commands start with “AT” for attention.)
  • “ATT C0 E0 M1 Q1” – This was “T” for tone dialing, “C” was not listed as a standard command (not sure what it did), “E” turned off auto-echo so commands did not echo back when typing them, “M” turned ON the modem speaker (geesh, that should have been a settable option), and “Q” turned on quit mode so the modem did not echo back “OK” after each command.

Looking at the BASIC source code shows this notice at the top:

And these version notes at the bottom:

The full source code is here:

0 ' +------------------------+
1 ' !   MODEM SCANNER V1.1   !
2 ' ! BY ZIGLWALD X. MALUSHI !
3 ' !    HAYES COMPATABLE    !
4 ' !     MODEM REQUIRED     !
5 ' +------------------------+
6 ' MODEM MUST BE ON AND READY
7 ' WHEN PROGRAM IS RAN
8 '
9 '
10 PCLEAR1:CLEAR10000:DIM MD$(1000)
15 CLS:PRINT@7,"MODEM SCANNER V1.1":PRINTSTRING$(32,131)
20 PRINT@64," THIS PROGRAM WILL DIAL A RANGE  OF  NUMBERS  YOU  SPECIFY  AND  REPORT  ANY MODEM CARRIERS  IT  FINDS.":PRINT
25 PRINT" warning:  CALLS PLACED BY THIS  PROGRAM ARE  CONSIDERED  PRANK  CALLS  AND ARE PUNISHABLE BY A  FINE OF UP TO $1000  AND/OR  A  JAIL TERM OF UP TO 180 DAYS."
30 PRINT:PRINT" ****USE AT YOUR OWN RISK!!****":PRINTSTRING$(32,140)TAB(9)"PRESS ANY KEY:";
35 IFINKEY$=""THEN35
40 CLS:PRINT@7,"MODEM SCANNER V1.1":PRINTSTRING$(32,131)
45 PRINT@68,"***INITIALIZING MODEM***"
50 POKE65315,48:POKE65314,249:POKE65315,52:POKE65314,0:POKE150,180:MD=0
55 FORA=1TO2000:NEXTA:PRINT#-2,"+++";:FORA=1TO2000:NEXTA:PRINT#-2,"ATZ":FORA=1TO1000:NEXTA:PRINT#-2,"ATT C0 E0 M1 Q1"
59 PRINT@128,"SCAN 800'S?  (Y/N) :";:LINEINPUTA$:IFA$="Y"THENAC$="1-800-"ELSEAC$=""
60 PRINT@160,"ENTER PREFIX (###) :";:LINEINPUTPF$:IFLEN(PF$)<>3THEN60
65 PRINT@192,"START RANGE (####) :";:LINEINPUTST$:IFLEN(ST$)<>4THEN65
70 PRINT@226,"END RANGE (####) :";:LINEINPUTEN$:IFLEN(EN$)<>4ORVAL(EN$)<VAL(ST$)THEN70
75 PRINT@288,"SCAN FROM "AC$PF$"-"ST$:PRINT@327,"TO "AC$PF$"-"EN$:PRINT@392,"IS THIS CORRECT? ";:LINEINPUTA$:IFLEFT$(A$,1)<>"Y"THEN59
80 CLS:FORNM=VAL(ST$)TOVAL(EN$):'FORA=1TO10000:NEXTA
82 PRINT@511:PRINT@0,TAB(7)"MODEM SCANNER V1.1":PRINTSTRING$(32,131):PRINT@69,;:IFAC$=""THENPRINT"LOCAL";ELSEPRINT"1-800";
83 PRINT" SCAN IN PROGRESS":PRINT@96,"SCANNED:"NM-VAL(ST$),"CARRIERS:"MD:PRINTSTRING$(32,131):PRINT@448,;
85 NM$=AC$+PF$+"-0000":NN$=RIGHT$(STR$(NM),LEN(STR$(NM))-1):MID$(NM$,1+LEN(NM$)-LEN(NN$),LEN(NN$))=NN$
90 PRINTNM$" - ";:PRINT#-2,"ATDT "NM$
95 CD=PEEK(&HFF20):FORTM=1TO1000:CD=PEEK(&HFF21):IF(CD AND 128)=128 THEN105 ELSENEXTTM
100 PRINT"NOTHING":PRINT#-2,"ATH":FORA=1TO3000:NEXTA:NEXTNM:GOTO120
105 PRINT"*CARRIER*":MD$(MD)=NM$:MD=MD+1
110 FORA=1TO2000:NEXTA:PRINT#-2,"+++";:FORA=1TO2000:NEXTA:PRINT#-2,"ATH":FORA=1TO2000:NEXTA
115 NEXTNM
120 CLS:PRINT@4,"TOTAL CARRIERS FOUND:"MD:PRINTSTRING$(32,131)
125 FORA=0TOMD:PRINTMD$(A),:IF(A/18)=INT(A/18)THEN135
130 NEXTA:PRINT@424,"END OF NUMBERS":END
135 PRINT@425,"PRESS ANY KEY:";
140 IFINKEY$=""THEN140ELSEFORZ=1TO12:PRINT@32+Z*32:NEXTZ:PRINT@96,;:GOTO130
150 '
151 'PROGRAM UPDATES
152 '
155 'OCTOBER 1987 (V1.0)
156 'FEBRUARY 1988 (FOR 800'S)
160 '

I believe the POKEs in line 50 are what made BASIC not wait for the printer to be ready (since that would never happen when using a modem) and setting the printer baud rate to 300 baud.

Line 95 is related to the carrier detect, though I don’t know what it’s doing specifically.

At 120 it appears to display all of the modem numbers found, with a pause at the end of the screen. I see no provision for writing this list out to tape or disk, so I guess the user would have just had to write them down. And, most likely, when scanning 10,000 numbers (0000-9999), how many of them would have actually been modems anyway?

I had a friend who did modem scanning back in the late 1980s, though I don’t know if he used this program. I do know that his parent’s got a phone call from the phone company, reporting that something was wrong on their other phone number and it was making too many calls. His dad went up to the room where the computer was and knew enough about it to hit the read BREAK key and stop the program.

I do not know if I ever used this program, but I do have a story to tell about getting in trouble for dialing in to a number that was found through modem scanning. But that’s a story for another time…

Until then…

For further research…

A disk image containing these programs may be found on the Color Computer archive site:

https://colorcomputerarchive.com/search?q=phreak

Huffman K1 Librarian, my first commercial product

Although I was “this close” to having my *ALLRAM* BBS sold by a well-known CoCo company back in 1983 it wasn’t until 1989 that something I wrote appeared for sale in the pages of Rainbow Magazine.

Rainbow Magazine, November 1989, Page 111.

I had gotten my first musical keyboard (a Suzuki Keyman PK-61) during high school, and then acquired a Casio CZ-101 synthesizer. After graduation in 1987, I purchased the CoCo MIDI interface from Rulaford Research. This started my love for MIDI and creating keyboard music which I still enjoy today (just without MIDI, as it’s been replaced by virtual instruments on a computer and USB piano keyboards).

There were two main types of MIDI programs. A sequencer allowed recording the keys pressed on a MIDI keyboard and playing them back. This was a high-tech player piano, but instead of a roll of paper with holes punch in it triggering hammers hitting strings, it was serial byte codes going to a synthesizer or sound module playing notes. Lester Hands’ sequencer was quite an achievement for a 64K CoCo.

The second type of program was called a librarian. These programs would use special messages the synthesizer supported to download sound data (the “patch” or “voice” as keyboards called them) and save it to tape or disk. You could later upload that information back. This allowed saving out all the sounds a keyboard made, and loading in new ones. Or, backing up custom sounds you created.

There was a third type know as an editor, but I never had any of those so I cannot really comment on them.

I recall buying a Casio CZ-101 Librarian from Rulaford Research.

I eventually saved up enough to buy a Kawai K1 full-size synthesizer. I learned enough about how the CoCo MIDI hardware pak worked (thanks to my Commodore friend Mark finding the data sheet) to create routines to read and write data through it. This, and some technical information on the SysEx (system exclusive) MIDI messages of the K1 led me to create a librarian for that synth. I had been in communication with Cecil Houk of Rulaford Research and he suggested putting my name in the title so it would be an instantly unique title (rather than something generic like “Kawai K1 Librarian”).

The end result was the Huffman K1 Librarian, shown here at version 1.2. I have no recollection of what changed between 1.0, 1.1 and this version.

At the time, while many of us had copies of software we did not purchase, I didn’t like having copies of anything that asked me to not copy it. I included the message “Support the future of music on the Color Computer. Please do not pirate this program.” on the title screen.

The main menu allows sending a single patch (voice) to and from the K1, or a block (which was a bank of many patches).

I do not recall much about how the K1 LCD screen looked, but I know it used an uppercase “I” or “E” (internal/external) as well as lowercase “i” or “e” for the singles voices.

The voices were divided up in to four banks (lettered A to D) with 8 patches in each. It was basically octal! This is the only time I’ve seen base-8 numbering used (though in this case, it would be like A1-A8 to D1-D8 rather than 00-38 in octal).

To dump (upload) a patch to the synthesizer, you had to type the name of the patch file. I built-in a Directory command similar to how the Casio Librarian did it.

This may have been the first time I ever made use of DSKI$ to manually parse the directory table of the CoCo’s disk format.

I also added a disk menu to give a fuller directory, kill files, rename files, and copy files.

Here was my copyright notice in REMarks at the top of the program. From looking at the CLEAR command, that reminds me that my assembly language MIDI routines loaded at &H7000.

Also note I set a variable DR (current drive) with a PEEK, rather than hard-coding a default of drive 0. This meant if the user had done a “DRIVE 1” and was running it from that drive, it would default to using drive 1. I had forgotten about this technique.

I guess I typed too soon. At the end of my programmer version notes, so now I know about 1.1 (add error checking) and 1.2 (more error checking). Nice.

Beyond looking at the menu screens, today I have no way to do anything with this program. I sold my Kawai K1 long ago, and upgraded to a K4 :) I eventually sold that and replaced it with a Yamaha W7.

Humble beginnings, and fun times. I hope you enjoyed this look back at my earliest commercial product.

Until next time…

What is a CoCo? ChatGPT has some thoughts…

Meanwhile, over at chat.openai.com… I told it:

The CoCo is the nickname for the Radio Shack TRS-80 Color Computer. Can you come up with something that “COCO” stands for, that would be related?

– Me, to ChatGPT

It responded with some interesting suggestions…

Interesting question! The CoCo is indeed a nickname for the Radio Shack TRS-80 Color Computer, a line of home computers developed and sold by Tandy Corporation from 1980 to 1991¹. It was based on the Motorola 6809E processor and used the MC6847 Video Display Generator (VDG) chip¹³. It was also compatible with Microsoft BASIC and OS-9 operating system¹.

Some possible things that COCO could stand for, related to this computer, are:

  • Color Operating Computer Organization: A name for a group of enthusiasts or hobbyists who use or collect CoCo computers.
  • Colorful Objects with Computational Outputs: A description of the graphical capabilities of the CoCo, which could display up to 16 colors on screen⁴.
  • Commonly Observed Computerized Oracle: A humorous way of referring to the CoCo as a source of information or entertainment for its users.
  • Cooperative Online Colorful Operations: A term for multiplayer games or applications that could run on the CoCo using its serial port or modem⁴.

Source: Conversation with Bing, 3/16/2023
(1) TRS-80 Color Computer – Wikipedia. https://en.wikipedia.org/wiki/TRS-80_Color_Computer Accessed 3/16/2023.
(2) TRS-80 Color Computer – CoCopedia – The Tandy/Radio Shack Color …. https://www.cocopedia.com/wiki/index.php/TRS-80_Color_Computer Accessed 3/16/2023.
(3) Radio Shack TRS-80 Color Computer. https://oldcomputers.net/coco.html Accessed 3/16/2023.
(4) trs 80 computer products for sale | eBay. https://www.ebay.com/b/trs-80-computer/bn_7024741177 Accessed 3/16/2023.

– chat.openai.com

And, there was more…

  • Colorful Output with Creative Options: A way of highlighting the CoCo’s versatility and potential for different types of programs and projects.
  • Computerized Optical Colorful Oscilloscope: A reference to the CoCo’s ability to display graphics and sound using its VDG chip and 6-bit DAC.
  • Compact Original Colorful Object: A simple description of the CoCo’s physical appearance and design.
– chat.openai.com

There are only some many words beginning with C or O that make sense for this topic, but it might be fun to keep asking it until we find the ultimate backronym.

Until then…

FreeRTOS: Virus?

The discussion about using FreeRTOS has come up at my day job in recent years, so a month or two ago I downloaded it from the official website with plans to take a look at it.

I never got around to it, but today our IT department contacted me about its removal from my system. The download was flagged to contain a virus. I am sharing this information here so it will show up in search engines:

Severe Gen:Variant.Tedy.307215 - Virus.Generic - Deleted

File - C:Users<username>DownloadsFreeRTOSv202212.00FreeRTOSv202212.00FreeRTOSDemoWIN32-MSVCDebugRTOSDemo.exe

md5: 2F1699A8E9DE9D946FD6DDCC4BCC2F45

It appears all I did was open the project and build it in Visual Studio. Nothing else on the system was flagged, and we use Visual Studio to build two of our in-house apps, so I am curious why this happened.

Anyone seen this? Please leave a comment.

Stay safe :)

Synology NAS, DSL Modem firewalls, and OpenVPN

Ages ago, I started my Appleause.com blog mostly with the goal of posting research items that I couldn’t figure out by web searches. I figure, maybe someone else will be searching for the same thing one day and run in to my efforts and together we can figure it out.

This post is for that reason, so feel free to skip it. I have the solution, but it will not be in this post since I do not have the details with me at the moment.

Synology DS1522 NAS

The Synology NAS devices can install software, and support three types of VPNs. Choosing which one to use is a rabbit hole, but OpenVPN seems pretty common and cross platform.

OpenVPN can be enabled on the NAS, but if it is inside a network, you cannot access it. Some routers are directly supported by the NAS and it can open up holes in the router’s firewall (UPnP) and, I suppose, it just magically works. (We should really all turn that feature off, because if something naughty gets inside your network, it could potentially do the same, opening up your private network to the outside world.)

If you NAS is behind a cable modem, DSL modem, etc. you may have to manually open up ports and forward them to the IP address of your NAS.

Once that is done, a profile can be installed on a PC, Mac, Linux, iPad, Android, etc. and then you can run a VPN app and connect to your NAS. It can selectively allow access to other things inside your home network.

I plan to document some simple steps to make this happen, and save hours of watching YouTube videos and reading knowledge base articles.

But for now, I wanted to post this to get something in the search engines. In my case, I’ll be mentioning a specific CenturyLink DSL modem.

To be continued…

Google and Apple and multiple accounts…

I am posting this for the search engines to find, in case others have found themselves in this situation.

Google and Apple created situations where you ended up with multiple accounts that could not be merged together.

Apple

2000 – iTools

Apple introduces iTools, which included a free e-mail address “for life.” This service was renamed to .Mac in 2002, and later MobileMe in 2008. It was replaced by iCloud in 2012.

I signed up for my free @mac.com e-mail address back then, and still have that original e-mail address. I never used that e-mail, since I had been using the same pobox.com service for that since 1995.

As iTools/.Mac/MobileMe/iCloud evolved, they remained linked with my original 2000 account. When I purchases extra iCloud Drive space, that had to be done through my iCloud (.mac) e-mail address, since that was the account all the services were on.

2003 – iTunes Store

Apple introduces the iTunes program in 2001, which was used to sync music to the brand new iPod MP3 player. In 2003, the iTunes Store launched, and I signed up for an account there and purchased my first music digital download.

These were two completely different services and accounts. I signed up to the iTunes Store using the e-mail address I’d been using since 1995.

Over the years, all my iTunes purchases were made under my iTunes account. This includes any iPhone apps purchased from the App Store, introduced in 2008.

Apple ID

At some point, the Apple ID was introduced. One of the features is:

Users can use different Apple IDs for their store purchases and for their iCloud storage and other uses. This includes many MobileMe users who have always had difficulties as they were forced to use more than one Apple ID, because on signing-up to the MobileMe service a new Apple ID was automatically created using the me.com email address being created at the time, meaning users could not change their previous Apple ID email address to be their me.com email address and has always remained so. Apple does not permit different accounts to be merged.[13]

Wikipedia page for Apple ID

Meanwhile…

Google

2004 – Gmail

Google launched a free web e-mail service on April 1, 2004. It claimed to give every user 1 gigabyte of e-mail storage, for free. That was such a huge amount of storage that many suspected this was an April Fool’s Day joke. Like many, I signed up for a gmail.com e-mail address.

I never used it, preferring to stick with my pobox.com alias I had been using since 1995.

2005 – YouTube

YouTube was not created by Google. It was purchased by Google in late 2006. I signed up for a YouTube account in those early days, before Google was involved. Thus, not a Google account. After Google acquired YouTube, they rolled the accounts over to Google accounts, but could not merge them.

Thus, I ended up with one Google account, which was for my gmail, and another Google account, which was my YouTube. As Google introduced more services, they were added to both my accounts.

Today

Today, I have two Apple IDs — one that I had always used for purchases, and the other was just a free e-mail account. As more and more Apple services were added, they were added to both accounts. Anything with an iCloud login, such as an iPhone, iPad, Apple Watch, Mac, etc., I would use my original iTools account. Anything associated with the Apple Stores would use my original iTunes account.

Fortunately, iOS devices have these areas separated — you can log in to your iCloud account, and log in to a separate account for purchases and subscriptions.

Meanwhile, as Google introduced new services, they rolled in to all accounts. I used them with my original YouTube account, and kept my Gmail account just as e-mail.

Which means today I have two Google Sheets, two Google Docs, two Google Voice, etc. I log in to one if using e-mail, and the other if using “everything else.”

Neither company has a way to merge these accounts. With Google, I had created a free Google Voice voice mail number in the mid-2000s to use with the podcasts I was making at the time, Then, several years later I had to give up my cell phone for awhile. I ported my old Sprint-then-AT&T number over to my other account’s Google Voice. If Google ever did allow merging accounts, I’d have to lose one of those numbers.

As to Apple, I initially liked having the thing connected to money (credit cards on file to make purchases or pay for subscriptions) separated from the thing that was just e-mail and free Apple services. But that created a problem, as I somehow have been in different accounts when I’ve activated different things, such as AppleCare on a device, or a subscription to some service. Now I have to log out and re-log to the other account just to see what all I am paying for.

It’s quite a mess.

YouTube Channels makes things even worse

To make things even worse, at some point Google introduced Channels to YouTube. This allowed you to have one main YouTube account (hooked to you Google login) but create sub-channels that could have their own videos and playlists. My channel has always been an odd mix of theme park home movies, Halloween haunted house interviews, Renaissance festival footage, retro computer videos, and dogs skateboarding. Channels should be a solution, but YouTube does not allow you to move a video from a legacy account to a new Channel. They advise you to download the video from YouTube, then re-upload to the new channel. That loses all play history, comments, etc.

Is there a solution?

I am posting this here in case anyone finds it via search, and discovers any type of solution to these issues.

I spent about an hour with various Apple Support folks last night — initially as a Chat, and then via phone as I was forwarded from department to department. Obviously, changing billing credit cards is a different division than the one that handles iCloud Disk subscriptions, so I don’t feel I was ever put in the wrong place. There were just a bunch of different places that are all part of this ecosystem. I expect, if I could reach a Google support person on the phone, I would have a similar experience there.

I offer no tips. No solutions. And no advice. But if you end up here with a similar story, please share it in the comments. I’d like to hear what you have discovered.

Until next time… Remember: Anything simple today may become a huge pain in the arse decades later ;-)

Drobo “saves the day”?

I hate it when this happens… It looks like a 4TB drive in my 5-bay Drobo has gone out. Drobo cannot detect it. I have dual-drive redundancy enabled, so two drives can fail and I’d still have my data… Fortunately.

Drobo 5C showing a 4TB drive failure.

Hopefully, I won’t have two drives fail between now and the time my replacement drive arrives. :)

On the plus, drive prices have dropped since I bought these drives in 2019. I’ll begin the process of upgrading drives to 6TB models over coming months, money permitting.

Project Blue Book: The 1970s TV series called something else.

Updates:

  • 5-20-2022: IMDB, blogs and other sites with comments all seem to have folks reporting that this was called “Project Blue Book” when they saw it. I have also found one reference to it being called that for the United Kingdom release. If anyone can find proof it was ever called that in the U.K. or anywhere else, please leave a comment. Until then, I guess this is just a mass false memory/Mandela Effect…
  • Here is a 2012 blog post about the subject: http://space1970.blogspot.com/2012/10/the-project-ufo-1978-mystery.html

I have memories of watching a late-1970s TV series called Project Blue Book. This would have been how I first learned about the government’s actual investigation in to U.F.O.s. Here is the wikipedia entry about the real government project:

https://en.wikipedia.org/wiki/Project_Blue_Book

Not too long ago I saw something about a new TV series called Project Blue Book and I had wondered if it was a remake/reboot of the 1970s one. I have yet to see any of the episodes, but here is the wikipedia entry about this TV series:

https://en.wikipedia.org/wiki/Project_Blue_Book_(TV_series)

I have certainly heard much more about the real Project Blue Book over the years, thanks to seeing the occasional show about U.F.O.s. When it was brought up, I always through about that 1970s TV series.

As far as the series goes, I don’t remember much about the actual episodes, except it seemed they were always debunked by the end of the show. I remember one that shared the story of how a U.F.O. blasted the hood of a car. By the end of the series, it was declared a hoax, and they showed that the burn marks on the hood had been made with a road flare or something like that.

So why this post now?

The other day, I saw a reference on Mastadon to “project bluebeam” — whatever that was. I wanted to respond with a link to the TV series for Project Blue Book, and make a reference to “liking the original project better.”

There is indeed a wikipedia entry for the TV series I was remembering, except it was listed as Project U.F.O. — which I had never heard of. It did include a note:

Also known asProject Blue Book (in some countries)
-wikipedia entry for Project U.F.O.

…and the wikipedia page for “Project Blue Book (TV Series)” goes to a page about the new series.

Apparently Project U.F.O. must have been used outside of the U.S.A. Or not.

A quick YouTube search led me to a copy of the show, recorded over the air from a Chicago, Illinois TV station:

As soon as the video began, I remembered that opening sentence about Ezekial and the wheel. (You know, that passage in the bible about him seeing a U.F.O. We can discuss the passage in the bible that discusses the unicorn sometime, as well…)

This informed me that at least in Chicago, the show aired as Project U.F.O. (and I noticed the intro did not make any reference to Project Blue Book).

Asking around (online), I found folks who grew up on other parts of the U.S.A. that also saw it as Project Blue Book.

I am posting this here to see if any of my U.S.A. readers were old enough to have seen this show, and could tell me what it was called where you saw it (and please let me know where you saw it).

It’s interesting thinking about a show airing in different regions using different titles.

UPDATE: Looks like others saw it air at Project Blue Book. Look at he IMDB reviews…

https://www.imdb.com/title/tt0077065/reviews?ref_=tt_ov_rt

To be continued…

Web searching takes the fun out of History channel UFO shows.

I love a good conspiracy theory, but usually they fizzle out within a few minutes of web searching about them. Want to get the other side? Just search for whatever it is plus “debunk.”

The Secret of Skinwalker Ranch on History, for example, doesn’t hold up very well. In the season two finale, they fly a helicopter around to take sensor readings. The radar altimeter starts alerting them that the ground is less than 50 feet below, when they were 1500 or more above it.

The helicopter pilot was (pretending to be?) mystified. It was as if there was something just below the aircraft that no one could see.

A quick search reveals tons of documentation on things that mess up radar based altimeters and give them false low readings.

Pity.

I was really hoping for an invisible UFO flying around below them.

But, do your own research. Though, it may be a funner show if you don’t.