Blog

Blog Post Image
Elasticsearch: Scale Vertically up/down

One of the major advantages with Elasticsearch is, its out of the box support for scaling up or down - both horizontally and vertically. This is about Vertical scaling. As you should know already, Vertical scaling means you are not going to add more hardware, but just increase the computing power of the existing hardware, may it be CPU, RAM or Storage.

Read More
Blog Post Image
Handling ever-loading pages via Selenium Webdriver

One of the features (or lack of) in Selenium webdriver is that the navigate method only returns when all the content in the page has completed loading. There are times where this could not be very useful. For example, everything that you expected in the page has already loaded, however there was this one Javascript which you do not need which takes at least 50 seconds to load.

Read More
Blog Post Image
Notes: Exporting data through pgcli

We at Francium love to use lean database clients to connect to databases. We enjoy using pgcli. It is a python based, open source postgres client for those willing to use lean and simple but powerful tool.

Read More
Blog Post Image
Object Pool Design Pattern - When and How to Use one?

Object Pooling is one of the widely used design patterns by software developers. One of the easiest examples I could cite is the Database Connection Pooling. I would like to quickly demonstrate a real use case where we made use of it. Object Pool Pattern is extremely useful when cost of object creation is very high.

Read More
Blog Post Image
Serverless Architecture and Web Scraping: A Cost study

One of the most common things that is done these days is to collect information about anything and everything present in the public domain, kind of unstructured data and decipher/decode patterns to get some valuable information. There are many sources to get such information, but websites for this purpose are the most popular. One can write a simple scraper that could iteratively go through the pages within a predefined depth and get back all the content displayed which could then be used for doing various sort of analytics.

Read More
Blog Post Image
7 Reasons for Why we ditched wordpress?

A website is a very crucial factor for any company and we recently went live with ours. It is like your public face or a house address. The Landing or Home page is equivalent to visiting your office and seeing how aesthetic the reception area is to give that first impression. It is super vital to keep it clean, informative, and to top it all to be extremely secure from the plethora of web attacks seen in the recent times.

Read More
Blog Post Image
Installing Rmagick on OSX High Sierra

A quick note. When you face the following error while installing rmagick gem in high sierra

Read More
Blog Post Image
Intro to Blockchain’s Lightning Network

We are already into third generation of cryptocurrencies that offers solutions to problems from previous generations that includes scalability, transaction cost and interoperability.

Read More
Blog Post Image
Going Serverless with Serverless

Serverless architecture is gaining a lot of popularity in the recent days and we at Francium Tech have done a detailed study on where it excels and where they don’t. I would like to share the knowledge in the serverless series of articles.

Read More
Blog Post Image
Decommissioning Elasticsearch node

There are times you will need to bring down one or more elasticsearch nodes in order to reduce the costs or make elasticsearch cluster smaller to ease the management of the servers.

Read More
Blog Post Image
Getting started with AWS Lambda

At Francium tech, Scalability is not an option, but something thats mandatory. We deal with huge volumes of data and have to run millions of atomic jobs every day to keep our systems up to date and extremely competitive. And our requirements to scale is not going to go down any time soon, in fact, it is going to only increase exponentially in future. This leaves us with adopting to bleeding edge infrastructures, and adapt them very fast!

Read More
Blog Post Image
Getting started with Ethereum smart contracts and Solidity

The outset of Bitcoin proved that we can exchange money without any third party intervention through distribution among multiple nodes via blockchain. However, Bitcoin stores only the transactional information. In order to develop truly decentralised apps, we need to store the states.

Read More