Powershell fiddling around Web scraping, Twitter – User Profiles, Images and much more

INTRODUCTION :  I’m Big Fan of REST API’s , they are efficient, reliable and fun. Recently I have been playing with Twitter REST  API’s and was thinking is it possible to get the required information from Twitter without using the API? without setting up the authentication model (OAuth tokens)  or connecting to right endpoint ? Point of… Read More Powershell fiddling around Web scraping, Twitter – User Profiles, Images and much more

Powershell Tip : Parsing HTML from a local File or a String

INTRODUCTION : If you are familiar with Invoke-WebRequest cmdlet then you must be aware that you get a parsed HTML from the requested Web URL. DOM structure of this Parsed HTML could be utilized to get access to HTML elements of the web page, like in the below animation – PROBLEM : What if we have HTML files are locally… Read More Powershell Tip : Parsing HTML from a local File or a String

[ Powershell ] Data Harvesting all dictionary words for each alphabet from Web

PROBLEM :  I am working on a personal project where in I require common/popular dictionary words for lookups and performance is a concern. INITIAL THOUGHTS : Figure out a way in which I can use In-built dictionary on Microsoft Word, but couldn’t find much on google search ( May be I didn’t tried enough :P)… Read More [ Powershell ] Data Harvesting all dictionary words for each alphabet from Web

Powershell : Get example Sentence’s for a Word using Web scraping on online dictionary

INTRODUCTION :  Everybody comes across a word that you don’t understand how to use it in a sentence, I face this often as I do ton of readings. normally I would have done a simple google search, let’s suppose for the word “Elixir”, which will give me few websites with sentence examples. I would have… Read More Powershell : Get example Sentence’s for a Word using Web scraping on online dictionary