Skip to content
View VishalTaj's full-sized avatar
๐ŸŽฏ
Focusing
๐ŸŽฏ
Focusing
  • Kuala Lampur, Malaysia
Block or Report

Block or report VishalTaj

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
VishalTaj/README.md


Hi, I'm Vishal Taj PM, ๐Ÿ‘จโ€๐Ÿ’ป Fullstack Developer from ๐Ÿ‡ฎ๐Ÿ‡ณ Kerala, India, currently living in ๐Ÿ‡ฒ๐Ÿ‡พ Kuala Lumpur, Malaysia.

About Me


A passionate programmer who always loves to code. Keen to learn new things and believes coding is a supernatural power.

With More than 5 years in the software industry. I enjoy being challenged and engaging with projects that require me to work outside my comfort and knowledge set.

Hobbies/Interests
  • passionate to learn new things
  • a cinephile
  • likes to play Cricket , Football.

Tools & Languages

Ruby Python Javascript PHP Rails Node js Django Reactjs Bootstrap Graphql Jquery HTML Mysql Wordpress Mongodb Redis Elastic Search Docker GCP Aws Wordpress Shopify Heroku Visual Studio Code Docker Ansible


Open Source

๐ŸŽ Projects โญ Stars ๐Ÿ“š Forks ๐Ÿ›Ž Issues ๐Ÿ“ฌ Downloads
Mutiple Table Inheritance In Ruby On Rails Stars Forks Issues Downloads

๐Ÿ“• ย Latest Blog Posts

๐Ÿ“ˆ Statistics

profile for Vishal Taj PM on Stack Exchange, a network of free, community-driven Q&A sites

VishalTaj

Pinned

  1. mti mti Public

    Implementing Multiple Table Inheritance(MTI) in Rails

    Ruby 3 1

  2. env_config env_config Public

    handling environment specific configuration

    Ruby

  3. Convert Rails timezone based on brow... Convert Rails timezone based on browser.
    1
    
    
    2
    function setCookie(key, value) {
    3
      var expires = new Date();
    4
      expires.setTime(expires.getTime() + (1 * 24 * 60 * 60 * 1000));
    5
      document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
  4. Adding settings options to Rails app... Adding settings options to Rails application.
    1
    require 'ostruct'
    2
    module RailsConfig
    3
      class Options < OpenStruct
    4
        PathNotFound = Class.new(StandardError)
    5