My pesonal blog
-
API testing using Postman
All most every web developer or web tester are familiar with Postman. Postman is a Chrome add-on and Mac application which is used to fire requests to an API. It is very lightweight, fast and easy to use. Using this tool we can make different kinds of HTTP requests – GET, POST, PUT, PATCH and DELETE.
-
Getting start with vim
Install In linux terminal sudo apt-get install vim
-
Ruy interview preparetion
Class what is class? how differ from object? what is class access control? Public methods enforce no access control – they can be called in any scope. Protected methods are only accessible to other objects of the same class. Private methods are only accessible within the context of the current object.
-
Make gif format screen cast using byzanz
byzanz It is the software for making screen cast in gif format for linux system
-
CSS Animation
Quick note about CSS animation.
-
Ruby tricks
Different ways to call a lambda 1 2 3 4 5 my_lambda = -> { puts 'Hello' } my_lambda.call my_lambda[] my_lambda.() my_lambda.===
-
Modular Css Architecture
--- layout: post title: "Moduler CSS" date: 2016-01-07 categories: CSS ---
-
Add custom handlebar helper
add custom helper to handlebar template and use them Add helper: Handlebars.registerHelper ('truncate', function (str, len) { if (str && str.length > len && str.length > 0) { var new_str = str + " "; new_str = str.substr (0, len); new_str = str.substr (0, new_str.lastIndexOf(" ")); new_str = (new_str.length > 0) ? new_str : str.substr (0, len);
-
My Sass Learning
Summry of my sass learing path. Use sematic variale name instead specific name like primary-color insdeat red Adopt useful conventions. you can postfix color names with -color: $base-color: #333; $brand-color: red; $brand-80-color: rgba($color-brand, 0.8); $accent-color: yellow; add a prefix like header- or footer- for specific sections: // Header $header-height: 100px; $header-background-color: $color-brand; // Footer $footer-height: 200px; $footer-background-color: #aaa; Keep a centralized config I like to keep all my variables in a single file, called _config.scss, that I include in my primary stylesheet using the @import directive. This way, every other file that gets included after my config file will have access to those variables. @import base/config; @import base/typography; @import base/utilities; @import modules/button; Use sematic variale name instead specific name like primary-color insdeat red Use sematic variale name instead specific name like primary-color insdeat red
-
Basic git command
Display git log Display git log information nicely git log --oneline --decorate --graph
My Popular Repositories
Personal Task Manager(ptm) command line application using thor that help to manage my personal tasks list
Programming problem solve
This is just android native application for web application for pamcity(Sweden)