Skip to content
View nolifeasian24-7's full-sized avatar
๐ŸŒ
observe...
๐ŸŒ
observe...
Block or Report

Block or report nolifeasian24-7

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

Namaste. ๐Ÿ‘‹

I am a.... How can i say it?

!developer.

6/04/2020 was where my humble origins lie, on whastapp. "You wanna try too" from my friend, who I learn programming alongside.

As of yet I am proficent in:

Java. ๐Ÿต

python. ๐Ÿ

C#. ๐Ÿ‘จโ€๐Ÿ’ป

API's and js. ๐Ÿ†’

unity. ๐ŸŽฎ

and this list ain't stopping ๐Ÿšซ ๐Ÿงข

I honestly never thought I would make it here, and this isn't even my final form. So join me on my quest to become a hobbyist, big time game developer, and hopefully a programming youtuber!

I want to thank my brother @SpicyChair (Ethan) for even allowing me to learn Java alongside him.

Programming was not an area I was looking at, i was bad at Python as it was. And now, I just commited the latest version of my dsicord bot to Heroku for server hosting on the frontend, as a gift to my friends! And I thank my PC, for standing true to the test of time. Support the grind would ya :)?

Pinned

  1. STf-Lo9 STf-Lo9 Public

    A little bot for some entertainment, based of simple chatty bot by jetbrains.

    Java 1

  2. unity-Runner-3D unity-Runner-3D Public

    My first ever game made using Unity game engine! based of a brackeys youtube tutorial, i learned basic scripting in c# the Unity interface and game concepts! Enjoy!

    C# 1

  3. Cieser cipher in python Cieser cipher in python
    1
    def start():
    2
       
    3
       normaltext = input('enter your word/phrase:  ')#gahter the string
    4
       normaltext1 = normaltext.lower()#convert to lowercase
    5
       Alphabets = "abcdefghijklmnopqrstuvwxyz"
  4. an-warship an-warship Public

    The official archnemesis warship bot! :)

    JavaScript 1

  5. The bubble sort algorithm in python The bubble sort algorithm in python
    1
    def start():
    2
        arr = [64,34,25,12,22,11,90]#an array of numbers
    3
        lenght = len(arr)#this gets the amount of element (items) in this array
    4
        for i in range(lenght-1):#looping through this array
    5
            for j in range(0, lenght-i-1):#this then loops through each sought index