Skip to content

Instantly share code, notes, and snippets.

View joismar's full-sized avatar

Joismar Braga joismar

View GitHub Profile
@joismar
joismar / playlist_time.js
Last active November 30, 2017 01:58 — forked from cesarhilario/playlist_time.js
Calcula o tempo total de uma playlist no Youtube. É só colar no console na página da playlist. Update para a nova interface do Youtube
(function() {
if (document.getElementsByClassName('ytd-playlist-video-list-renderer') != "undefined") {
var playlist = document.querySelector("ytd-playlist-video-list-renderer");
}
else {
var playlist = document.querySelector("ytd-playlist-panel-renderer");
}
var timeSeconds = 0,
@joismar
joismar / index.html
Created March 9, 2021 13:42
Text Formatter
<html>
<body>
<div class="container">
<div class="form">
<div class="mini-header">
<h3>Mode: </h3>
<select id="mode" class="mode" onchange="val()">
<div class="options">
<option value="m0">Pick a mode...</option>
<option style="background-color" value="m1">all lowercase</option>
@joismar
joismar / index.html
Created November 13, 2021 17:58
Wish Editor
<h2>Lista de Presentes - Vodka de Casa Nova</h2>
<h6>OBS: Todas as imagens são exemplos.</h6>
<div id="app"></div>
<div class="author">Made with ♥ by <a href="https://github.com/joismar/" target="_blank">Joismar</a></div>
</div>
<div class="inspiration">
Inspired by:
<a href="https://codepen.io/_danko/pen/RRYVNQ" target="_blank">Danko Pen</a>
</div>