Skip to content
View t04st3r's full-sized avatar
🍬
Reproducible bugs are candies
🍬
Reproducible bugs are candies

Organizations

@HKBU-Comp7480
Block or Report

Block or report t04st3r

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. my-cloud my-cloud Public

    Simple Shamir's shared secret file encryption web app using django, DRF and DOT

    Python

  2. celm/BigData_Clustering celm/BigData_Clustering Public

    HTML

  3. collabRouteService collabRouteService Public

    REST WebService for collabRoute using node.js-express.js

    JavaScript

  4. financialProject financialProject Public

    e-Banking Web site written in Php + MySql Database COMP7370 Information Processing in Financial Services Final Project

    PHP 2 1

  5. 🤖 Seek for humanoid 🤖 🤖 Seek for humanoid 🤖
    1
    ## Goal
    2
    
    
    3
    The candidate is required to develop a web application needed for a company that supply humanoid robots to be used alongside humans for the purpose of companionship, work, adoption, soul mate, etc. etc.
    4
    The web application will show to the user a list of humanoids and the details of a single humanoid.
    5
    
    
  6. Create a unique token for REST Token... Create a unique token for REST Token based authentication Yii2
    1
    public static function generateUniqueToken() {
    2
        $token = \Yii::$app->getSecurity()->generateRandomString(self::TOKEN_LENGTH);
    3
        if (!User::findIdentityByAccessToken($token)) {
    4
          return $token;
    5
        }