Skip to content
View jeziellopes's full-sized avatar
:octocat:
:octocat:
Block or Report

Block or report jeziellopes

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
jeziellopes/README.md
  • πŸ‘‹ Hi, I’m @jeziellopes
  • πŸ‘€ I’m interested in Software Engineering, Clean Architecture, DDD, BDD, TDD
  • 🌱 I’m currently focusing on Fullstack Engineering with Node, TypeScript, React & AWS
  • πŸ’žοΈ I’m looking to collaborate with Product, UX, Front-End, Back-End and DevOps
  • πŸ“« How to reach me https://www.linkedin.com/in/jezielcarvalho/

Pinned

  1. MITx-6.00x-Introduction-to-Computer-Science-and-Programming MITx-6.00x-Introduction-to-Computer-Science-and-Programming Public

    This repository contains my solutions and notes for the course MITx - 6.00x Introduction to Computer Science and Programming offered by MITx on edX.

    Python

  2. This is how we should set permission... This is how we should set permissions on private keys in .ssh folder on Linux. Thanks to this guys on source link.
    1
     - `.ssh` directory: `700 (drwx------)`
    2
     - public key (`.pub` file): `644 (-rw-r--r--)`
    3
     - private key (`id_rsa`): `600 (-rw-------)`
    4
     - lastly your home directory should not be writeable by the group or others (at most `755 (drwxr-xr-x)`).
    5
    
                  
  3. 2006-programming-projects 2006-programming-projects Public

    This directory served as a workspace where I documented a range of experiments conducted during my initial days into programming between 2006 and 2007. During this period, I was facing the challeng…

    Visual Basic 6.0

  4. git-rebase git-rebase Public

    Just a tip for better commit management on git repositories :octocat:

  5. nginx.conf nginx.conf
    1
    map $sent_http_content_type $expires
    2
    {
    3
      default off;
    4
      text/html 15m;
    5
      text/css 15m;
  6. nginx.conf nginx.conf
    1
    worker_processes 1;
    2
    user nobody nobody;
    3
    error_log /dev/stdout;
    4
    pid /tmp/nginx.pid;
    5