Skip to content
View AstmDesign's full-sized avatar
πŸ˜€
Converting coffee to code
πŸ˜€
Converting coffee to code
Block or Report

Block or report AstmDesign

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
AstmDesign/README.md

Hi, I'm Astm Ali

πŸ‘¨πŸ»β€πŸ’» FreeLancer Web Developer

GitHub astmdesign

A little more about me...

astm_bio = Hash.new
astm_bio[:experience] = 'More than 20 years in web development'
astm_bio[:languages] = ['Ruby', 'PHP', 'Shell script', 'Javascript']
astm_bio[:freamwork] = 'Ruby on rails'
astm_bio[:Databases] = ['Mysql', 'SQLite', 'PostgreSQL', 'Redis', 'Snowflake']
astm_bio[:Editors] = ['Vim', 'Atom', 'Sublime']
astm_bio[:UI_tools] = []
astm_bio[:Other_tools] = []

['jQuery', 'AngularJS', 'Ajax', 'Ionic', 'XML', 'Json', 'Yaml', 'Html5', 'Css3', 'Less css', 'Sass', 'BootStrap'].each do |tool|
  astm_bio[:UI_tools] << tool unless astm_bio[:UI_tools].include?(tool)
end

['Photoshop', 'Cpanel', 'Whm', 'PhpMyAdmin', 'Git', 'GitHub Action pipeline','Agile', 'MySQL Workbench', 'CI / CD', 'Linux OS', 'Nginx', 'Docker', 'Automation test', 'Rspec', 'APM'].each do |other|
  astm_bio[:Other_tools] << other unless astm_bio[:Other_tools].include?(other)
end

puts astm_bio
# The result for astm_bio hash will be =>
{
  :experience => "More than 17 years in web development",
  :languages => ["Ruby", "PHP", "Shell script", "Javascript"],
  :freamwork => "Ruby on rails",
  :Databases => ["Mysql", "SQLite", "PostgreSQL"],
  :Editors => ["Vim", "Atom", "Sublime"],
  :UI_tools => ["jQuery", "AngularJS", "Ajax", "Ionic", "XML", "Json", "Yaml", "Html5", "Css3", "Less css", "Sass", "BootStrap"],
  :Other_tools => ["Photoshop", "Cpanel", "Whm", "PhpMyAdmin", "Git", "GitHub Action pipeline", "Agile", "MySQL Workbench", "CI / CD", "Linux OS", "Nginx", "Docker", "Automation test", "Rspec", "APM"]
}

πŸ“« Contact Me

dev.to badge dev.to badge dev.to badge dev.to badge
dev.to badge dev.to badge dev.to badge dev.to badge

Pinned

  1. Created simple Rails Rspec testing Created simple Rails Rspec testing
    1
    require "rails_helper"
    2
    
                  
    3
    RSpec.describe User, :type => :model do
    4
    
                  
    5
      before(:each) do
  2. rspec-rails-examples rspec-rails-examples Public

    Forked from eliotsykes/rspec-rails-examples

    RSpec cheatsheet & Rails app: Learn how to expertly test Rails apps from a model codebase

    Ruby 1

  3. emails_validations emails_validations Public

    Just test checking emails validations api integration

    JavaScript

  4. backend_layout backend_layout Public

    Rails backend simple layout

    HTML

  5. Install Rails 4.2 & Ruby 2.3.3 on Ub... Install Rails 4.2 & Ruby 2.3.3 on Ubuntu 16.04 server
    1
    #!/bin/bash
    2
    #
    3
    # Install Rails 4.2 & Ruby 2.3.3 server environment
    4
    # Created by Astm Ali | https://github.com/astmdesign
    5
    #
  6. rails_docker rails_docker Public

    Testing docker with rails

    Ruby