Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

PowerShell – RSS Feed Reader

Posted on December 15, 2015February 12, 2016 By David Kittell
clear
$rssFeedURL = 'http://www.kittell.net/feed/'
$rssFeed = 1(New-Object System.Net.WebClient).DownloadString($rssFeedURL)
$rssFeed.rss.channel.item | Select-Object title, link -First 5 | Format-Table -AutoSize

GitHub: https://gist.github.com/dkittell/ca4025e4e78ccecbb5f0

Originally Posted on December 15, 2015
Last Updated on February 12, 2016
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code PowerShell

Post navigation

Previous post
Next post

Related Posts

Swift – iOS – Get Device Identity

Posted on December 13, 2017December 13, 2017

This code will help you determine what phone or device is using your app. In your ViewController put this under your imports public extension UIDevice { var modelName: String { var systemInfo = utsname() uname(&systemInfo) let machineMirror = Mirror(reflecting: systemInfo.machine) let identifier = machineMirror.children.reduce("") { identifier, element in guard let…

Read More

Ektron Show duplicate content

Posted on August 11, 2015October 26, 2015

If you have more than one person in the site administration you can sometimes get duplicates, this script will help you find them. SET NOCOUNT ON DECLARE @Domain VARCHAR(50) SET @Domain = ‘/’ SELECT c.[content_title], CASE content_type WHEN – 1 THEN CAST(content_type AS VARCHAR(5)) + ‘ – AllTypes’ WHEN 1…

Read More

Oracle – Table Structure

Posted on November 14, 2013October 26, 2015

SELECT atc.TABLE_NAME ,atc.COLUMN_NAME ,atc.DATA_TYPE ,CASE DATA_TYPE WHEN ‘VARCHAR2’ THEN ‘(‘ || DATA_LENGTH || ‘)’ WHEN ‘NUMBER’ THEN CASE WHEN DATA_PRECISION IS NOT NULL THEN ‘(‘ || DATA_PRECISION || CASE WHEN DATA_SCALE <> 0 THEN ‘,’ || DATA_SCALE END END || CASE WHEN DATA_PRECISION IS NOT NULL THEN ‘)’ END END…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes