Skip to content
View kbehailuzt's full-sized avatar
🇪🇹
🇪🇹

Block or report kbehailuzt

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

Pinned Loading

  1. teachableMachine teachableMachine Public

    Forked from googlecreativelab/teachablemachine-community

    Example code snippets and machine learning code for Teachable Machine

    TypeScript

  2. URL image to base 64 tool C# URL image to base 64 tool C#
    1
    using System;
    2
    using System.IO;
    3
    using System.Net;
    4
    using System.Text;
    5
    
                  
  3. Hash-Cracker Hash-Cracker Public

    Forked from pmdamora/fnv-cracker-app

    A Java FNV-1 128 bit brute-force hash cracker web application

    JavaScript

  4. Quadratic Equation Solver C++ Quadratic Equation Solver C++
    1
    #include <iostream>
    2
    #include <cmath>
    3
    using namespace std;
    4
    
                  
    5
    void answer (int a, int b, int c)
  5. C# program that can be used to find ... C# program that can be used to find and print the names of duplicate files in a given folder:
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.IO;
    4
    
                  
    5
    namespace DuplicateFinder
  6. Implementation of the Black-Scholes ... Implementation of the Black-Scholes model using JavaScript:
    1
    function blackScholes(optionType, S, X, T, r, v) {
    2
      if (optionType !== "call" && optionType !== "put") {
    3
        return null;
    4
      }
    5