Skip to content
View takint's full-sized avatar
👨‍💻
👨‍💻
Block or Report

Block or report takint

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

Hi there, I'm Jim 👋

I'm a software developer from Vancouver, Canada.

Languages and Tools:

🔭 I’m currently and mostly working on:


✨ I’m new to:

🌱 I’ve learned from college:

Top languages does not indicate my skill level or something like that, it is a github metric of which languages i have the most code on github:

Top Langs

My contribution Stats:

Jim's github stats

💻 My linkedin profile: https://www.linkedin.com/in/jimle15/

📫 How to reach me? Here is my email: taki.lnt@gmail.com

🌊 Quote of the day:
Quote

I'm kinda a machine that covert ☕ coffee => 💻 code

Pinned

  1. AspNetCore-Developer-Roadmap AspNetCore-Developer-Roadmap Public

    Forked from MoienTajik/AspNetCore-Developer-Roadmap

    Roadmap to becoming an ASP.NET Core developer in 2019

  2. CleanArchitecture CleanArchitecture Public template

    Forked from jasontaylordev/CleanArchitecture

    Clean Architecture Solution Template for Angular 8 and .NET Core 3.1

    C#

  3. CSharpInSimpleTerms CSharpInSimpleTerms Public

    Forked from exceptionnotfound/CSharpInSimpleTerms

    C#

  4. HelloWealth HelloWealth Public

    Educational application for investment

    JavaScript 1

  5. BinarySearch.cs BinarySearch.cs
    1
    // Iterative
    2
    static int BinarySearch(int[] arr, int value)
    3
    {
    4
        int left = 0;
    5
        int right = arr.Length - 1;
  6. Insertion an element within the arra... Insertion an element within the array for insertion sort
    1
    static void InsertionSort(int a[])
    2
    {
    3
        for(int i = 1; i < a.Length; i++)
    4
        {
    5
            Insertion(a, i-1, a[i]);