Skip to content
View fwrhine's full-sized avatar

Block or report fwrhine

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. EcoAssist EcoAssist Public

    EcoAssist is a web application that aims to help students learn about the environment.

    Python

  2. Rainbow-Weather-App Rainbow-Weather-App Public

    A simple weather app.

    Dart

  3. Notes-Bot Notes-Bot Public

    A LINE bot that extracts handwritten notes into text.

    Java

  4. ImprovedUNet ImprovedUNet Public

    A script that segments the OASIS brain dataset with a modified UNet model.

    Python

  5. Group-Travel-Planner Group-Travel-Planner Public

    An Android application that allows users to organize a trip collaboratively.

    Java 1

  6. If Volley Request is made repeatedly... If Volley Request is made repeatedly throughout the app, it is more efficient to just use a single instance of RequestQueue. This class implements a singleton class that encapsulates RequestQueue and other Volley functionality.
    1
    public class VolleySingleton {
    2
        private static VolleySingleton mInstance;
    3
        private RequestQueue mRequestQueue;
    4
        private static Context mCtx;
    5