Giter Club home page Giter Club logo

Linkedin Badge Twitter Badge Gmail Badge

🧑🏾‍💻 I'm a Software Developer with 5 years of overall experience.

🧰 Specialized in Data Engineering and Back-End Development.

🛠️ Stack: Java, Spring Boot, Maven, Python, Apache Spark, Pandas, PyMongo, SQL, NoSQL.

🎯 Currently working as an individual contributor at Luizalabs.

🎓 Soon to be grad with a Bachelor of Technology in Systems Analysis and Development from IFBA (2024.2).

💼 I used to work as an Assistant Manager then as an English Teacher, before transitioning to tech.

📚 I'm curious, and constantly trying to teach myself something about anything.

Vitor Emanuel's Projects

faker icon faker

Faker is a PHP library that generates fake data for you

freecodecamp-introduction-to-basic-algorithm-scripting icon freecodecamp-introduction-to-basic-algorithm-scripting

A computer algorithm is a sequence of steps that is followed to achieve a particular outcome. To write an algorithm, you must first understand a problem, and then solve it with coding. To make solving problems easier, it can be helpful to break them down into many chunks. Then, each chunk can be solved one by one. For example, if you are building a calculator, don't try to solve the problem as a whole. First, consider how to get inputs. Then, determine each arithmetic operation one by one. Finally, display the results. In this section we will learn to solve basic algorithm problems using JavaScript. This will help you improve your problem solving skills and prepare you to later solve more complex problems. Hint If you get stuck, try using console.log() to log variable values to the console. This will help to debug problems.

freecodecamp-introduction-to-the-basic-data-structure-challenges icon freecodecamp-introduction-to-the-basic-data-structure-challenges

Data can be stored and accessed in many different ways, both in Javascript and other languages. This section will teach you how to manipulate arrays, as well as access and copy the information within them. It will also teach you how to manipulate and access the data within Javascript objects, using both dot and bracket notation. When you're done with this section, you should understand the basic properties and differences between arrays and objects, as well as how to choose which to use for a given purpose.

freecodecamp-introduction-to-the-debugging-challenges icon freecodecamp-introduction-to-the-debugging-challenges

Debugging is a valuable and (unfortunately) necessary tool for programmers. It follows the testing phase of checking if your code works as intended, and discovering it does not. Debugging is the process of finding exactly what isn't working and fixing it. After spending time creating a brilliant block of code, it is tough realizing it may have errors. These issues generally come in three forms: 1) syntax errors that prevent a program from running, 2) runtime errors when code fails to execute or has unexpected behavior, and 3) semantic (or logical) errors when code doesn't do what it's meant to. Modern code editors (and experience) can help identify syntax errors. Semantic and runtime errors are harder to find. They may cause your program to crash, make it run forever, or give incorrect output. Think of debugging as trying to understand why your code is behaving the way it is. Example of a syntax error - often detected by the code editor: funtion willNotWork( { console.log("Yuck"); } // "function" keyword is misspelled and there's a missing parenthesis Here's an example of a runtime error - often detected while the program executes: function loopy() { while(true) { console.log("Hello, world!"); } } // Calling loopy starts an infinite loop, which may crash your browser Example of a semantic error - often detected after testing code output: function calcAreaOfRect(w, h) { return w + h; // This should be w * h } let myRectArea = calcAreaOfRect(2, 3); // Correct syntax and the program executes, but this gives the wrong answer Debugging is frustrating, but it helps to develop (and follow) a step-by-step approach to review your code. This means checking the intermediate values and types of variables to see if they are what they should be. You can start with a simple process of elimination. For example, if function A works and returns what it's supposed to, then function B may have the issue. Or start checking values in a block of code from the middle to try to cut the search space in half. A problem in one spot indicates a bug in the first half of the code. If not, it's likely in the second. This section will cover a couple helpful tools to find bugs, and some of the common forms they take. Fortunately, debugging is a learnable skill that just requires a little patience and practice to master.

freecodecamp-introduction-to-the-es6-challenges icon freecodecamp-introduction-to-the-es6-challenges

ECMAScript is a standardized version of JavaScript with the goal of unifying the language's specifications and features. As all major browsers and JavaScript-runtimes follow this specification, the term ECMAScript is interchangeable with the term JavaScript. Most of the challenges on freeCodeCamp use the ECMAScript 5 (ES5) specification of the language, finalized in 2009. But JavaScript is an evolving programming language. As features are added and revisions are made, new versions of the language are released for use by developers. The most recent standardized version is called ECMAScript 6 (ES6), released in 2015. This new version of the language adds some powerful features that will be covered in this section of challenges, including: Arrow functions Classes Modules Promises Generators let and const Note Not all browsers support ES6 features. If you use ES6 in your own projects, you may need to use a program (transpiler) to convert your ES6 code into ES5 until browsers support ES6.

freecodecamp-introduction-to-the-functional-programming-challenges icon freecodecamp-introduction-to-the-functional-programming-challenges

Functional programming is an approach to software development based around the evaluation of functions. Like mathematics, functions in programming map input to output to produce a result. You can combine basic functions in many ways to build more and more complex programs. Functional programming follows a few core principles: Functions are independent from the state of the program or global variables. They only depend on the arguments passed into them to make a calculation Functions try to limit any changes to the state of the program and avoid changes to the global objects holding data Functions have minimal side effects in the program The functional programming software development approach breaks a program into small, testable parts. This section covers basic functional programming principles in JavaScript.

freecodecamp-introduction-to-the-object-oriented-programming-challenges icon freecodecamp-introduction-to-the-object-oriented-programming-challenges

At its core, software development solves a problem or achieves a result with computation. The software development process first defines a problem, then presents a solution. Object oriented programming is one of several major approaches to the software development process. As its name implies, object oriented programming organizes code into object definitions. These are sometimes called classes, and they group together data with related behavior. The data is an object's attributes, and the behavior (or functions) are methods. The object structure makes it flexible within a program. Objects can transfer information by calling and passing data to another object's methods. Also, new classes can receive, or inherit, all the features from a base or parent class. This helps to reduce repeated code. Your choice of programming approach depends on a few factors. These include the type of problem, as well as how you want to structure your data and algorithms. This section covers object oriented programming principles in JavaScript.

freeway icon freeway

Practice Project (https://editor.p5js.org/)

guide icon guide

A collection of easy-to-understand guides to programming tools

inf006 icon inf006

Repositório dedicado às atividades da matéria INF006 - Estrutura de Dados

inf008 icon inf008

Matéria inf008 - Programação Orientada a Objetos

inf010 icon inf010

Trabalho sobre mineiração de dados realizado para a matéria INF010

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.