Skip to content

Instantly share code, notes, and snippets.

View rpragana's full-sized avatar

Rildo Pragana rpragana

View GitHub Profile
@rpragana
rpragana / RegExpr3.html
Created June 12, 2018 15:36
Expressoes Regulares 3 - replace()
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Uma página HTML</title>
</head>
<body>
<h1>Regexp replace()</h1>
<script>
@rpragana
rpragana / Leiame.md
Created June 8, 2018 23:08
ThumbImgs

** ThumbImgs Um seletor de imagens para fazer upload (mostra só as imagens selecionadas, miniaturas). O upload propriamente não é realizado por esse programa. Eum um vídeo futuro podemos mostrar como fazer essa parte.

@rpragana
rpragana / dialog-elem.html
Created June 3, 2018 15:55
O elemento <dialog>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Uma página HTML</title>
<link href="bulma.css" rel="stylesheet">
<style>
dialog.sombreado {
border: 1px solid #008;
border-radius: 6px;
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>General update pattern</title>
</head>
<style>
body {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 14px;

Veja como capturar uma stream de video de uma webcam, tirar snapshots (congelar um quadro do vídeo) e salvar em arquivos de imagem, usando a API do WebRTC

@rpragana
rpragana / Mousetrap.md
Created December 13, 2017 16:41
Mousetrap

Uma biblioteca para associar comandos de teclas, (simples ou combinadas, sequências, dependentes do elemento) a uma função para cada "binding".

@rpragana
rpragana / VideoStream.md
Created November 30, 2017 18:47
Node video streaming

Cria uma stream de vídeo no nodejs plano (sem express ou outros módulos)

@rpragana
rpragana / WebScrape.md
Created September 28, 2017 16:42
Web Scrape usando o NodeJS e o módulo Cheerio

Web Scraping com o NodeJS

webscrape.js

@rpragana
rpragana / Data-store.md
Created September 15, 2017 00:52
Data-store nodejs module

data-store nodejs module

  • dataStore.js
  • livrosdb.json
@rpragana
rpragana / animcss.css
Created September 2, 2017 12:23
animate.css
#testElement {
margin: auto;
width: 50%;
animation-duration: 2.8s;
animation-delay: 1.2s;
animation-iteration-count: infinite;
}
.click-animations {
margin-top: 35px;