image viewer tools
2018/10/01
These are some of the image viewers that I know, pick your choice 🙂
rats – source code analysis
2018/09/17
I stublemed across this recently so thought of sharing this for you 🙂 sudo yum install rats And some details about rats […] RATS(Rough Auditing Tool for Security) scans through code, finding …
systemctl enable and start service
2018/09/10
Most of the times when I want to enable the service, I find myself enabling it immediately or it is vice versa. So, the commands I used to use were: systemctl enable sshd.service systemctl start …
ssh – host hopping (with Jump host)
2018/08/20
Most of the times I need to jump hosts with ssh. What do I mean by that. Let me try to explain : Host Hopping If I need to got to host h3 then I need to first login to h1 and from there to host h2 and …
recoll – Desktop search tool
2018/07/02
Styled-Components: CSS-in-JS Library for the Modern Web
2018/06/25
This post was written by Jeremy Davis, JavaScript Developer for Toptal. CSS was designed for documents, what the “old web” was expected to contain. The emergence of preprocessors like Sass or Less …
sigil – ebook editor
2018/06/18
sigil is WYSIWYG ebook editor, here are more details. […] Name : sigil Version : 0.9.9 Release : 2.fc28 Arch : x86_64 Size : 3.6 M Source : sigil-0.9.9-2.fc28.src.rpm Repo : fedora Summary : …
ranger – try terminal file manager
2018/06/11
ranger is a terminal file manager, just install and run and have some fun. Tip: You might want to try it on uxrvt terminal and in Photos folder once.
glances – new way to look at contention
2018/06/04
glances is like top/htop but little different. It shows you sort based on contention (smartly and automatically) unless you change that and hence if you just want to check what is biggest bottleneck …
Python Class Attributes: An Overly Thorough Guide
2018/05/21
This article is originally published at Toptal. I had a programming interview recently, a phone-screen in which we used a collaborative text editor. I was asked to implement a certain API, and chose …
Rails Service Objects: A Comprehensive Guide
2018/05/07
This post was written by Amin Shah Gilani, Ruby Developer for Toptal. Ruby on Rails ships with everything you need to prototype your application quickly, but when your codebase starts growing, you’ll …
Display IP address in console login screen
2018/04/30
Here is one liner that will add the current IP address in the console login screen (if you are not running X as is case for servers): (ip -o -4 a| awk '$2 !="lo" {print "\nIP Address ::"$4}' |tr '\n' …