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

Block or report onejohi

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
onejohi/README.md

Hi πŸ‘‹, I'm Onejohi Tony

Two things power the internet, to find and to be found.

onejohi

onejohi

  • πŸ”­ I’m currently working on Tokuku

  • 🌱 I’m currently learning Flutter

  • πŸ‘¨β€πŸ’» All of my projects are available at https://onejohi.com

  • πŸ“ I regularly write articles on https://medium.com/@onejohi

  • πŸ’¬ Ask me about Vue, JavaScript, Python and C#

  • πŸ“« How to reach me tonniewanjohi@gmail.com

  • ⚑ Fun fact I love motorcycles and kittens.

Connect with me:

onejohi @onejohi

Pinned Loading

  1. async-await.js async-await.js
    1
    var resolveAfter25Seconds = (func) => {
    2
        console.log(`starting a slow promise on: ${func}`)
    3
        return new Promise(resolve => {
    4
            setTimeout(function() {
    5
                resolve(25)
  2. javascript.js javascript.js
    1
    // an absctract representation
    2
    class Person {
    3
      constructor(name,email) {
    4
        this.name = name
    5
        this.email = email
  3. is_palindrome.js is_palindrome.js
    1
    //Given an integer x, return true if x is a palindrome, and false otherwise.
    2
    
                  
    3
    const isPalindrome = function(x) {
    4
        if (x !== 0 && x % 10 === 0) {
    5
        return false
  4. orders_dashboard orders_dashboard Public

    This is a fictional e-commerce company that is a single-page Angular application that let's staff list, filter, create, edit, and delete orders. The backend is mocked with json-server.

    HTML