Skip to content

Instantly share code, notes, and snippets.

View vinicius5581's full-sized avatar
:octocat:
Chilling

Vinicius Santana vinicius5581

:octocat:
Chilling
View GitHub Profile
@vinicius5581
vinicius5581 / GitHub-Forking.md
Created November 20, 2018 08:11 — forked from Chaser324/GitHub-Forking.md
GitHub Standard Fork & Pull Request Workflow

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.

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.

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or j

@vinicius5581
vinicius5581 / comoSerChatoNowhatsapp.js
Created October 19, 2017 05:52 — forked from callmeloureiro/comoSerChatoNoWhatsapp.js
Como fazer alguém te responder no whatsapp
/*
Hoje iremos MUDAR a vida da pessoa que não te responde no whatsappp...
Que tal enviar mensagens pra ela até obter uma resposta?!
Sensacional não acha?! Mas, somos devs, correto?! Então vamos automatizar esse paranauê!
Para utilizar:
- Abra o web.whatsapp.com;
- Selecione a conversa que você quer;
- Abra o console e cole o código que está no gist;

#HTML presentation tools

There are many HTML presentation tools and they are all created for slightly different reasons. Here's an overview. Please let me know if I forgot any.

##CSSS

CSS-based SlideShow System

#HTML presentation tools

There are many HTML presentation tools and they are all created for slightly different reasons. Here's an overview. Please let me know if I forgot any.

##CSSS

CSS-based SlideShow System

@vinicius5581
vinicius5581 / vanilla-js-cheatsheet.md
Created October 10, 2017 01:31 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@vinicius5581
vinicius5581 / The Technical Interview Cheat Sheet.md
Created September 28, 2017 17:02 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
# update your local master branch
git checkout master
git pull --rebase
# never do any work on master branch
# create & switch to new branch instead
git checkout -b my_branch
# rebase 'my_branch' onto master
git checkout my_branch
@vinicius5581
vinicius5581 / bash-cheatsheet.sh
Created November 11, 2016 18:23 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04
@vinicius5581
vinicius5581 / JavaScriptArraMethods.html
Last active April 12, 2016 08:44 — forked from anonymous/index.html
JavaScript - Array Methods - JS Bin// source https://jsbin.com/holovu
<!DOCTYPE html>
<html>
<head>
<meta name="Array Methods" content="JavaScript - Array Methods">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JavaScript - Array Methods - JS Bin</title>
<script src="jsbin.holovu.js"/>
</head>
@vinicius5581
vinicius5581 / index.html
Created April 12, 2016 08:41 — forked from anonymous/index.html
Sring Methods - JS Bin // source https://jsbin.com/coruros
<!DOCTYPE html>
<html>
<head>
<meta name="String Methods" content="JavaScript - String Methods">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Sring Methods - JS Bin</title>
</head>
<body>