Skip to content
View thenishchalraj's full-sized avatar
⏳
Time Travelling Ambidextrous Researcher
⏳
Time Travelling Ambidextrous Researcher
Block or Report

Block or report thenishchalraj

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

$> Hello 🌏! I'm Nishchal Raj πŸ‘½.

Linkedin Badge Twitter Badge Facebook Badge Instagram Badge Medium Badge Gitlab Badge

A Software Engineer πŸ‘¨πŸ½β€πŸ’» who loves to work with any technology πŸš€ and write about them ✍️. An entrepreneur at heart. An Ex-DSC Lead and an open-source contributer. Also a public speaker, have spoken at ALCCalabar, Nigeria | hosted Google I/O '22 Divum, BLR | spoken at BLRKotlin #30 '23 along which are remarkable. Author of Snakes and Stairs Game Design using Automata Theory


GIF

Worked on:

Flutter Kotlin JavaScript React.js Node.js JSON HTML CSS DialogFlow RaspberryPi Docker AWS Blockchain Java React Native Golang GraphQL C++ Python MySQL MongoDB Firebase Linux Git Terminal is <3 Jetpack Compose



Recent Activity

β˜• Latest Medium Blogs

Latest medium article

Latest medium article

Latest medium article

Pinned

  1. Time-to-Go Time-to-Go Public

    Snippets begginers can start with to learn Go. Whether it's competitive programming or building executable files, Go is present there as a great help.

    Go 8 4

  2. gogeom gogeom Public

    Forked from MindorksOpenSource/gogeom

    This is a Geometrical library for Go Language. Which includes multiple Geometrical calculations like Circle, Lines etc in different forms

    Go 1

  3. USAWeatherForecast USAWeatherForecast Public

    USA Weather Forecast extracted/scraped from the National Weather Service just for learning purpose.

    Python 1

  4. Dynamically embedding Grafana Dashbo... Dynamically embedding Grafana Dashboards and panels. (code snippet)
    1
    import React from 'react'
    2
    
    
    3
    //configuration file that has the values stored for users
    4
    import config from './config'
    5
    
    
  5. Basic code snippet for implementing ... Basic code snippet for implementing HyperLogs using Kotlin in android
    1
    HyperLog.initialize(this)
    2
    HyperLog.setLogLevel(Log.VERBOSE)
    3
    
    
    4
    HyperLog.d("Test logs","Debug Log")
    5
    HyperLog.setURL("https://xxxxxxx0xxxxx.x.pipedream.net/")
  6. Code snippet for the sample of parsi... Code snippet for the sample of parsing long dynamic text into clickable links, if any available, using Spannable and Matcher with Kotlin in Android
    1
    private val urlPattern: Pattern = Pattern.compile(
    2
      "(?:^|[\\W])((ht|f)tp(s?):\\/\\/|www\\.)"
    3
      + "(([\\w\\-]+\\.){1,}?([\\w\\-.~]+\\/?)*"
    4
      + "[\\p{Alnum}.,%_=?&#\\-+()\\[\\]\\*$~@!:/{};']*)",
    5
      Pattern.CASE_INSENSITIVE or Pattern.MULTILINE or Pattern.DOTALL