Skip to content
View JO3-W3B-D3V's full-sized avatar
:atom:
I'm probably busy writing code or something.
:atom:
I'm probably busy writing code or something.

Highlights

  • Pro
Block or Report

Block or report JO3-W3B-D3V

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
JO3-W3B-D3V/README.md

About Me

For more information, please visit my website. 🙂

Some Stats

Profile views

Nerd Info

<!-- This section covers a bit about me. -->
<!-- AKA. The boring part 😴 ... -->
<p>
    I’m a young, ambitious & highly driven nerd, aiming <br/>
    to go far within the world of software engineering. I <br/>
    typically enjoy working with microservice or SOA architectures <br/>
    & I enjoy working across the entire stack. <br/>
    You could say that I'm a bilingual software engineer.
</p>

<b>I am always eager to learn more. 🎓</b>
// Return a list of tech that I'm passioante about. 
const myFavouriteTech = () => {
    return [
        "Java",
        "JavaScript",
        "Python",
        "PHP",
        "Kubernetes",
        "Docker",
        "SQL",
        "Cloud Technologies", //GCP, Azure, AWS, etc.
        "Progressive Web Applications" // HTML, CSS, etc.
    ];
};

console.log(myFavouriteTech());
public class Inspiration {

    // Return a list of nerds that really inspire me.
    public ArrayList<Nerd> getInspiration() {
        ArrayList<Nerd> nerds = new ArrayList<>();
        nerds.add(Nerd.builder().name("Martin Fowler").url("https://martinfowler.com/").build());
        nerds.add(Nerd.builder().name("Eric Elliott").url("https://ericelliottjs.com/").build());
        nerds.add(Nerd.builder().name("Krasimir Tsonev").url("https://krasimirtsonev.com/").build());
        nerds.add(Nerd.builder().name("Raymond Camden").url("https://www.raymondcamden.com/").build());
        nerds.add(Nerd.builder().name("Stefan Mischook").url("https://www.killersites.com/about/").build());
        nerds.add(Nerd.builder().name("Darcey Lloyd").url("https://aftc.io/").build());
        return nerds;
    }
}
class JO3W3BD3V:
    def __init__(self):
        self.shortTermGoals = []
        
        self.shortTermGoals.append("Learn more about machine learning.")
        self.shortTermGoals.append("Learn more about big data.")
        self.shortTermGoals.append("Try to master RDBMS.")

        # Touch wood 
        self.shortTermGoals.append("Get some freelance projects on the side.")
    
    def getShortTermGoals(self):
        return self.shortTermGoals
                
me = JO3W3BD3V()
print(me.getShortTermGoals())
DROP TABLE IF EXISTS Experiences;

CREATE TABLE Experiences(
    id INT AUTO_INCREMENT NOT NULL,
    title VARCHAR(50) NOT NULL,
    company VARCHAR(75) NOT NULL,
    startDate VARCHAR(7) NOT NULL,
    endDate VARCHAR(7),
    description VARCHAR(250) NOT NULL,
    PRIMARY KEY(id)
);

CREATE INDEX ExperiencesTitleIndx ON Experiences(title);
CREATE INDEX ExperiencesCompanyIndx ON Experiences(company);
CREATE INDEX ExperiencesStartDateIndx ON Experiences(startDate) USING BTREE;
CREATE INDEX ExperiencesEndDateIndx ON Experiences(endDate) USING BTREE;

INSERT INTO Experiences(title, company, startDate, endDate, description)
VALUES('Software Engineer', 'Lloyds Bank', '05/2020', NULL, 'I currently work in motor finance, where I currently use technologies including C#, Java, Angular, Jenkins, etc.'),
    ('Software Engineer', 'Admiral', '03/2019', '05/2020', 'I worked on the van insurance product(s), I used technologies like K8s, Azure, Azure DevOps, Docker, Angular & Java.'),
    ('Software Developer', 'Inngot', '05/2018', '03/2019', 'I worked mostly as a front end developer, using react, I would sometimes use Java for the back end.'),
    ('Web Developer', 'Cruise Nation', '12/2017', '05/2018', 'I worked as a front end developer, ensuring that the customer experience was my number one priroity.'),
    ('Juniour Web Developer', 'BVG', '02/2017', '12/2017', 'I worked as a full stack developer, though I mostly focused on implemengint pretty admin consoles, funky AJAX tools & increasing the performance of database queries.');
    
-- Get all of my past experiences.
SELECT * FROM Experiences;

Pinned

  1. SpringBoot-Starter-Demo SpringBoot-Starter-Demo Public

    This is a demo/starter application.

    Java 1

  2. Syml Syml Public archive

    This is a simple state manager for modern front end applications.

    TypeScript

  3. OQS OQS Public archive

    This is an in memory database, it's a work in progress.

    TypeScript

  4. MultiThread MultiThread Public archive

    The purpose of this project is simple, include a lightweight wrapper on top of web workers to allow for multi threading. Even if you're unsure about using this code in your own project(s), you can …

    JavaScript

  5. Ninja Ninja Public archive

    This is a very lightweight JavaScript template engine that works in IE8+.

    JavaScript 4 1

  6. ToolKit-JS ToolKit-JS Public archive

    This is a lightweight front end library that contains a lot of powerful utilities, while remaining small in size.

    JavaScript 6 1