Cyber Security Among the Top Podcasts Categories on PodGrabber.com

PodGrabber.com is a new Podcast Platform focusing on always having the latest episodes scraped from RSS feeds daily and in some cases for things like breaking news podcasts, hourly.

PodGrabber.com at the time of this writing has a total of 12 Podcast channels by genre / category and each page includes a Free Podcast Player to load up any of the listed episodes.

If you’re old enough to remember the TV Guide people used to use to find out what was playing on TV by channel and time and was a must have in almost every American home in the 1970’s.

PodGrabber is sorta like the old TV guide but for Podcasts.

In this case, you can load up the published list of podcast channel by genre for any day cached in the system.

By far the most popular content on PodGrabber.com is the Cyber security podcasts page. With great InfoSec and OSINT podcast content like daily cyber security news and interviews with shows like Darknet Diaries and The Hacker Factory.

Podcast Channels on PodGrabber.com

The latest feature on PodGrabber.com is “Podcast Time Machine” where each day’s Podcast Player is cached in HTML5 and can accessed by history links at the bottom of each Podcast category player page.

If you miss a podcast episode, you can scroll down to the bottom of the page and click on a date link that will take you to the version of the Podcast Page generated that day!

For example, if you scroll down to the bottom of the sports channel podcast player click on the podcast date link, 20220119, then you’ll load the cached copy of the Podcast Player from that date.

This allows you easily access older episodes you might have missed and allow you to share the podcast archive URLs with friends that d0 not change.

How to Setup Your Angular Development Environment on Windows 10 or 7

Trouble with the Video: Install Angular JS 8 on Windows 10

Before I show you the How to Set up your Angular JS 8 Development video, let me say first that I could not complete this video without some trouble shooting and configuration steps not covered in the video.

I liked the video but hated that I had issues with it so I’ve decide to show the video then include my troubleshooting steps so you can fix any issues you’re having.

I suspect these fixes might be required for most people on initial installation. The person in the video may have done these steps a few times in making the video or in preparation for it and forgot to include these prerequisite steps in his final tutorial.

Let’s start with this video on how to install Angular 8 on a Windows 10 PC.

I recommend watching the video and follow along. If you hit one of the issues I did, use the resources below to fix your installation.

This video will get you 90% of the way there. After following this video, use the troubleshooting references & resources below to fix your Angular development environment so you can get to coding quicker. 🙂

Video: Install Angular 8 – Setup Development Environment on Windows

Troubleshooting Resources & References

Troubleshooting Your Angular Installation

Delete the NPM Cache

The first issue I had installing Angular 8 on Windows 10, was that Windows Powershell was not running the Angular CLI commands. I found this article on StackOverflow.com that helped me in clearing the npm cache which seemed to be the root cause. This solution worked for me!

Remove ng.ps1 from the directory C:\Users\%username%\AppData\Roaming\npm\ 
then try 
clearing the npm cache at C:\Users\%username%\AppData\Roaming\npm-cache\

Powershell Command to Set Execution Policy

Next issue I faced was Powershell execution error since the Angular CLI uses Windows Powershell commands to get things done. This article on C# Corner about setting the Powershell Execution Policy to fix Angular CLI execution issues did the trick.

set-ExecutionPolicy RemoteSigned -Scope CurrentUser 

Once I got past the two CLI execution error fixes, I was able to run the following command to build a new project. That is as far as I’m getting tonight.

Setup Your Hello World Angular App

Run the following command the command line or terminal while inside your application folder. Then you can continue on to complete the Angular Installation tutorial video.

ng new hello-world

If you’re having Angular JS installation issues on Windows 10 or Windows 7 and this article helped you then it was all worth writing it. Hope this helps somebody!

~CyberAbyss