Skip to content
View francislagadia's full-sized avatar

Block or report francislagadia

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

Pinned Loading

  1. GitHub Standard Fork & Pull Request ... GitHub Standard Fork & Pull Request Workflow
    1
    Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, it's quite easy to make mistakes or not know what you should do when you're initially learning the process. I know that I certainly had considerable initial trouble with it, and I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.
    2
    
                  
    3
    In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.
    4
    
                  
    5
    ## Creating a Fork
  2. dotfiles dotfiles Public

    settings for git, idea, tmux, vim/neovim and bash

    Shell

  3. francislagadia.github.io francislagadia.github.io Public

    Forked from sproogen/modern-resume-theme

    A modern static resume template and theme. Powered by Jekyll and GitHub pages.

    HTML

  4. Convert a AWS PEM into a ssh pub key Convert a AWS PEM into a ssh pub key
    1
    ssh-keygen -y -f private_key1.pem > public_key1.pub 
  5. Parse a .env (dotenv) file directly ... Parse a .env (dotenv) file directly using BASH
    1
    # Pass the env-vars to MYCOMMAND
    2
    eval $(egrep -v '^#' .env | xargs) MYCOMMAND
    3
    # … or ...
    4
    # Export the vars in .env into your shell:
    5
    export $(egrep -v '^#' .env | xargs)
  6. astronvim_config astronvim_config Public

    User configuration file for AstroNvim 3.0+

    Lua