Data Structures in Python
Reading Time: 3 minutes This blog is all about the predefined data structures in python. This includes these data structures: Lists, Tuples, Sets, and Dictionary.
Reading Time: 3 minutes This blog is all about the predefined data structures in python. This includes these data structures: Lists, Tuples, Sets, and Dictionary.
Reading Time: 2 minutes A few days back, we got the requirement that we need to parse an HTML table through shell script and generate a report based on the contents of the table. I tried many things and after much brainstorming created a shell script that parses the HTML tables into a CSV file. I will try to explain each and every step of this script.
Reading Time: 4 minutes Ammonite is a Scala library that lets us use Scala language for Scripting. It allows us to write scripts in Scala. The advantage of using Ammonite is that we don’t have to switch over to Python or Bash for scripting requirements of the projects.This liberates the developer from the need of working in multiple languages. Ammonite can be used in the REPL as scripts or Continue Reading
Reading Time: 2 minutes SASS is a style sheet language that is interpreted into Cascading Style Sheets (CSS). SASS Script is the scripting language itself. SASS offers what its name defines, “Syntactically Awesome Stylesheets”. It was designed by Hampton Catlin and developed by Natalie Weizenbaum. SASS is compatible with all versions of CSS and can be used with any CSS library. SASS is used just as syntactic sugar to Continue Reading