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

Block or report Noblepal

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

Welcome

  noblepal   noblepal

 noblepal


Languages and Tools:

Front End & Mobile Dev
typescript javascript react nextjs kotlin reactnative
Backend End & Data
mariadb mysql nodejs postgresql sqlite graphql heroku
OS
linux

Connect with me:

noblepal noblepal_joseph joseph-noblepal

Pinned Loading

  1. Simple java class to log in text file Simple java class to log in text file
    1
    public class Logger {
    2
        public static void logThis(String tag, String methodName, String message, Integer line) {
    3
            Log.d(tag, methodName + " " + message + "  " + line);
    4
            appendToLogFile(tag, methodName, message, line);
    5
        }
  2. .gitignore file for python project .gitignore file for python project
    1
    # Byte-compiled / optimized / DLL files
    2
    __pycache__/
    3
    *.py[cod]
    4
    *$py.class
    5