Giter VIP home page Giter VIP logo

yet-another-silly-cs-tutorial's Introduction

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;

yet-another-silly-cs-tutorial's People

Contributors

jo3-w3b-d3v avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.