Tagged: Web 🌐

1

Indie ReadLater using Mercury Web Scraper, CouchdDB and JSONFeed

I have my own pipeline for managing my ReadLater article river. It’s a simple setup using Mecury Feed Parser, CouchDB, and JSONFeed. Of course, it’s all brought together using serverless hot glue.

0

Moving away from Feedburner

There was a small but dedicated set of users subscribed to this blog using FeedBurner feed. FeedBurner was working, but it’s virtually dead. So this week, I decided to move my feeds away from FeedBurner.

0

Linked List : Three FOSS Apps for Reading RSS Feeds

An RSS feed is a standardized format to get an update from a website or web service. There are a few feed formats (RSS, Atom, JSONFeed) of which RSS is the most popular one. I use RSS feed on daily basis to read blogs and as well to get updates from my own services. Here are the three FOSS Apps that I use.

2

Converting JSON to CSV on the fly

I wanted a script that would convert the JSON to CSV in real-time, so I could use it at DataWrapper.

2

Tools for Effective Documentation

Over the years I have gathered a set of tools for effective documentation and communication. I use these tools to communicate on this blog, with my coworkers or anyone else that I want to share things with. Now that all of us are working remotely, they have become very important. I am listing my favorite ones here.

4

Testing Async systems with Karate Testing Framework

I have love and hate relationship with asynchronous systems. I love them because the flow is natural and doesn’t waste time and resources. I hate them because it’s difficult to test and debug. The most common asynchronous system that you would have used is Webhook type. Where you get a callback from an...