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.

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
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 KukuPro

  • 🌱 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 [email protected]

  • ⚑ 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. An example of an Angular service con... An example of an Angular service consuming and sending data to an API endpoint,
    1
    import { Injectable } from '@angular/core'
    2
    import { Http } from "@angular/http"
    3
    import 'rxjs/add/operator/map'
    4
    
                  
    5
    @Injectable()
  3. javascript.js javascript.js
    1
    // an absctract representation
    2
    class Person {
    3
      constructor(name,email) {
    4
        this.name = name
    5
        this.email = email
  4. 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