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

Block or report fanatikhamsi

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

Hi, I’m @fanatikhamsi, I’m not a rock star or ninja programmer 🐼. I’m just a c# and php developer.

10+ years of expreience facilitating cutting-edge engineering solutions with a wide range of web application and technology skills with ISO/CMMI standars desired 💉

Extensive expertise in large system architecture development and administration, as well as devops operations 🔆

Twitter Email visitors


https://tosba.co

Languages

Markup Languages

Frameworks

Databases

Services


⚡ GitHub Trophies


Pinned Loading

  1. param.com.tr-api-client param.com.tr-api-client Public

    param.com.tr PARAM API için yazılmış PHP API Client kütüphanesidir

    PHP 2

  2. Generate Binary Numbers from 1 to n ... Generate Binary Numbers from 1 to n Queue in JS
    1
    class Queue {
    2
    
                  
    3
        constructor() {
    4
            this.items = [];
    5
            this.front = null;
  3. Bellman ford algorithm with C# Bellman ford algorithm with C#
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Linq;
    4
    
                  
    5
    namespace BellmanFord
  4. Stack of characters in JS Stack of characters in JS
    1
    
                  
    2
    class Stack {
    3
        constructor() {
    4
            this.items = [];
    5
            this.top = null;