Skip to content

Instantly share code, notes, and snippets.

View eduardotrandafilov's full-sized avatar
🚀

Eduardo Trandafilov eduardotrandafilov

🚀
View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@eduardotrandafilov
eduardotrandafilov / import-export
Created January 30, 2021 21:31
Criação de scripts com uso de import e exports
Uso de import e export em scripts.
@eduardotrandafilov
eduardotrandafilov / script.js
Last active January 24, 2021 22:35
template literals - js
//template literals
//ex.1
const livro = `Livro 'React'do Maujor`;
console.log(livro);
const marcacao =
`<div class='make-snippet'><h1>I'm going to become <span class='whatever'>a code snippet</span></h1>
</div>
@eduardotrandafilov
eduardotrandafilov / funcoes-js.markdown
Last active January 24, 2021 21:58
funções map,filter and find js
@eduardotrandafilov
eduardotrandafilov / gist:bdd182af110ec296e0202a4572c29986
Created January 2, 2020 20:34 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@eduardotrandafilov
eduardotrandafilov / README-Template.md
Created August 9, 2019 22:56 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@eduardotrandafilov
eduardotrandafilov / git.md
Created February 4, 2019 14:41 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

#GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda

Sobre o meu snippet

from pytube import YouTube #Precisa da biblioteca pytube
from time import sleep
try:
f = open('link do video.txt', 'r')
except FileNotFoundError:
open('link do video.txt', 'w')
f = open('link do video.txt', 'r')
local = f.read()