Giter Site home page Giter Site logo

Hello folks 👋 I'm Kenneth Ham!

const kennetham = {
  pronouns: "he" | "him",
  company: "Eksklushift" | "treatsure",
  code: ["C#", "C++", "Java", "Javascript", "Python", "Ruby", "Rust", "Scala", "Typescript"],
  technologies: {
    cloud: ["AWS", "Azure", "Google", "OpenStack"],
    devops: ["Docker", "Kubernetes"]
  },
  architecture: ["Microservices", "Serverless", "Event-driven", "Distributed Systems", "Design Patterns"],
  techCommunities: {
    speaker: "Microsoft MVP",
    mentor: "GenerationSG", "Others"
  },
  challenge: "I am doing the #100DaysOfRust to build a client-server application on rust."  
};
struct Profile {
  pronouns: String,
  code: [String; 8],
  name: String,
  role: String,
  language: [String; 4]
}

impl Profile {
  fn new() -> Profile {
    Profile {
      pronouns: "he | him".to_string(),
      code: ["C#".to_string(), "C++".to_string(), "Java".to_string(), "Javascript".to_string(), "Python".to_string(), "Ruby".to_string(), "Rust".to_string(), "Scala".to_string(), "Typescript".to_string()],
      name: "Kenneth Ham".to_string(),
      role: "CTO".to_string(),
      language: ["en_SG".to_string(), "zh_CN".to_string(), "ja_JP".to_string(), "ru_RU".to_string()]
    }
  }
  
  fn say_hi(&self) {
    println!("hello world!");
    println!("{}", self.pronouns);
    println!("My name is {}, and I am a {}", self.name, self.role);
    println!("I can speak these languages: {}, {}, {}, {}", self.language[0], self.language[1], self.language[2], self.language[3]);
    
    println!("I can code in the following programming languages:");
    for c in &self.code {
      println!("{}", c)
    }
  }
}

fn main() {
  let profile = Profile::new();
  profile.say_hi();
}

👨‍💻 Programming languages

C# C++ Go GraphQL Java JavaScript LaTeX Markdown Python R Ruby Rust Scala Shell Script Solidity TypeScript

🗄️ Databases and cloud hosting

AWS Azure Google Cloud Heroku OpenStack MicrosoftSQLServer MongoDB MySQL Neo4J Postgres Redis

💎 Tools

Confluence Docker ElasticSearch Jira Kubernetes Nginx Postman Swagger Terraform Vagrant

🏫 Learning

Duolingo

🔰 Connect

LinkedIn Twitter GitHub BuyMeACoffee

Kenneth Ham's Projects

aerosolve icon aerosolve

A machine learning package built for humans.

algorithms icon algorithms

Collection of Java algorithms to solve puzzles, and problems commonly asked in technical interviews.

alphago icon alphago

A replication of DeepMind's 2016 Nature publication, "Mastering the game of Go with deep neural networks and tree search," details of which can be found on their website.

api-throttling icon api-throttling

Rack Middleware to impose a rate limit on a web service (aka API Throttling)

awesome-java icon awesome-java

A curated list of awesome Java frameworks, libraries and software.

bot-connector-1 icon bot-connector-1

Bot Connector allows you to connect your bot to multiple messaging channels.

cntk icon cntk

Microsoft Cognitive Toolkit (CNTK)

dasein-cloud icon dasein-cloud

Dasein Cloud is an Open Source cloud abstraction library for Java under the Apache Software License v2.0. REGULAR CODE COMMITS DO NOT HAPPEN AGAINST THIS REPOSITORY. This project is simply a shell with references to submodules. Visit the linked submodules for active work against a specific cloud.

deco icon deco

Project Deco - Azure Storage Explorer for OS X, Windows, and Linux

dokku icon dokku

Docker powered mini-Heroku in around 100 lines of Bash

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.