Skip to content
View uzairali19's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro
Block or Report

Block or report uzairali19

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

const user = {
  name: "Uzair Ali",
  age: 25,
  pronouns: [ "he", "him" ],
  theme: [ "dark", "monokai" ],
  
  semicolons: false,
  line_endings: "crlf",
  codeStyle: "Prettier",
  variables: "camelCase",
  trailing_comma: true,
  
  hero: "Steve Jobs",
  
  hobbies: [ "Programming", "Gaming", "Guitaring", "Reading", "Gaining Knowledge", ],
  knowledge: [ "Black-Holes", "Algorithms", "Ecmascript", "Numbers", "Economics", ],
  projects: [ "newsweek", "perma-tnw-responsive", "new-york-clone", "ruby-exercises", ],  
  languages: [ "Ecmascript", "Ruby", "HTML", "CSS", ],
  editors: [ "Sublime Text", "VS Code", ],
  
  newLanguage: function () {
    console.log("Hello, World!")
  },
  
  hereIsYourFood: function (food) {
    const good = [ "Burgers", "Chicken", "Mixed Noodles", "Beef", 
    "Prawns" ]
    const acceptable = JSON.parse(fs.readFileSync("acceptableFoods.json"))
    
    if (good.includes(food)) {
      console.log("Chomp Chomp Gulp... Yum!")
    } else if (acceptable.includes(food)) {
      console.log("Chew Chew Gulp.")
    } else {
      console.log("No, thanks.")
    }
  },
}

📊 Stats:


⏯️ Spotify

🔥 Contributions:


Skills & Tools:



Pinned

  1. three-js-boilerplate three-js-boilerplate Public template

    Three Js boilerplate code that works as a template with linters set up so that the developer can focus on the development process.

    JavaScript 3

  2. awesome-books awesome-books Public

    A single-page application that uses javascript and local storage to create and use forms and list items.

    JavaScript 1

  3. bubble-sort bubble-sort Public

    This is a bubble sort, example exercise. The demo is to see the use cases of bubble sort and how effective it can be with a medium amount of data.

    Ruby

  4. math-magicians math-magicians Public

    This project contains a calculator. Just like a usual calculator the user can input a value, choose an operator and perform the operation. The project also includes the use of React Router Dom, thi…

    JavaScript 2

  5. mongoose-node mongoose-node Public

    The project is a simple node module project just to see some node concepts and the setup behind it. Mainly focuses on Node and MongoDB. Tests show you can manipulate data with node on a live mongo …

    JavaScript 1

  6. private-events private-events Public

    The user can create an account, post events on the app and other users can follow that event or attend it. The event remains to the original creator.

    Ruby