Skip to content
View HisashiQ's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report HisashiQ

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

Pinned Loading

  1. BlockchainProtocolPaper BlockchainProtocolPaper Public

    A paper on cryptographic hashing functions and Proof-of-Work vs Proof-of-Stake usage in blockchain technology

  2. HaskellWebApp HaskellWebApp Public

    Mapping Earthquakes across the world in Haskell!

    Haskell 1

  3. ChatDiscoursePaper ChatDiscoursePaper Public

    My postgraduate paper on Detecting Polar and Nonpolar Questions in both Dyadic and Multi-party Online Chat Discourse using Machine Learning

  4. SentimentAnalysisSVMClassifier SentimentAnalysisSVMClassifier Public

    Machine Learning Twitter Sentiment Analysis Classifier (SVM)

    Python

  5. maxPairwiseProductAlgorithm maxPairwiseProductAlgorithm Public

    My implementation of a maximum pairwise product algorithm in C++11

    C++

  6. Haskell IO Haskell IO
    1
    -- Vowel IO Question --
    2
    
                  
    3
    numVowels :: String -> Int
    4
    numVowels [] = 0
    5
    numVowels (x:xs) = if elem x vowels then 1 + numVowels xs else numVowels xs