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

Block or report toyoh3232

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

Hi, I'm Toyoharu👋

visitors Open Source Love

I am a tech enthusiast and a software developer, mainly focus on system development, with some kinds of web development.

I am also interested in the fundamental theoretical aspects in programming languages like:

  • Computation models (lambda calculus, term rewriting)
  • Polymorphism (ad-hoc, parametric, subtyping)
  • Type systems (soundness, Hindley–Milner systems)
  • Formal logic (Curry–Howard correspondence)

Last but not least, I am not such a fan of OOP, many people tend to misunderstand or overuse the OO since it often gets things more complicated. Something like 'Dependency Injection' is just another 25-dollar term for a 5-cent concept. Fortunately, many programming paradigms have been invented in these years.

🔧 Technologies & Tools

📈 GitHub Stats

Toyoharu's GitHub Stats Toyoharu's GitHub Stats

⚡ Let's do programming functionally

Having a trouble to understand something like quick sort? Try functional language like Haskell.

The implementation is so obvious just the description of the algorithm.

qsort :: Ord a => [a] -> [a]
qsort []       =  []
qsort (x:xs)   =  [x' | x'<- xs, x' <= x ] ++ [x] ++ 
                  [x' | x'<- xs, x' >  x ]

Ask me about anything when you run into a problem with functional programming.

Pinned Loading

  1. ccmdliner ccmdliner Public

    A Light-weight Commandline Parser implemented in Modern C++

    C++

  2. hmc hmc Public

    A Huffman Encoder and Decoder using new C++ 11 Features

    C++

  3. leetcode leetcode Public

    Solutions for Leetcode problems

    Go

  4. dhcpsv dhcpsv Public

    A DHCP Server Implementation in C#

    C#

  5. sudoku sudoku Public

    A Haskell Sudoku Solver using MiniSAT

    Haskell

  6. fileup fileup Public

    A Simple File upload/Delete Manager, Server-side and Client-side Solution

    JavaScript