My pesonal blog

Dhaka, Bangladesh @hasanuzzaman sumon
  1. 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.

    2018/01/16

  2. Getting start with vim

    Install In linux terminal sudo apt-get install vim

    2017/07/23

  3. 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.

    2016/06/07

  4. Make gif format screen cast using byzanz

    byzanz It is the software for making screen cast in gif format for linux system

    2016/05/28

  5. CSS Animation

    Quick note about CSS animation.

    2016/04/22

  6. 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.===

    2016/01/20

  7. Modular Css Architecture

    --- layout: post title: "Moduler CSS" date: 2016-01-07 categories: CSS ---

    2016/01/07

  8. 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);

    2015/12/14

  9. 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

    2015/11/24

  10. Basic git command

    Display git log Display git log information nicely git log --oneline --decorate --graph

    2015/11/07

ptm

Personal Task Manager(ptm) command line application using thor that help to manage my personal tasks list

4 0

Programming problem solve

2 0

2 0

1 2

This is just android native application for web application for pamcity(Sweden)

1 0