Skip to content

Instantly share code, notes, and snippets.

//add video youtube channel
if ($('.video_slider_youtube').length) {
$.ajax({
type: 'GET',
url: 'https://www.googleapis.com/youtube/v3/search',
data: {
order: 'date',
part: 'snippet',
channelId: 'UCBvF9cRoyNHM7AH6gJx2ZYQ',
@tuliofaria
tuliofaria / db.json
Created September 8, 2017 23:17
Servidor REST simples em PHP (Como foi construído em: https://www.youtube.com/watch?v=7s5_TmBqZR8 e em https://www.devpleno.com )
{"series":[{"name":"how i met your mother","id":"1504912239"}],"genres":[]}
<!Doctype html>
<html lang="en" class=" js flexbox flexboxlegacy canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Ridiculously simple Youtube to MP3 converter and Youtube video downloader. Online. Free. Without registration. Also supports Vimeo, Soundcloud, Facebook, Youtube MP3 and others. Convert and download Youtube videos easily, with the world's best Free Youtube Downloader Online!">
<meta name="keywords" content="download, fre
@ivanseidel
ivanseidel / PID.ino
Last active February 3, 2026 00:42
Simple PID Class for Arduino Projects
// (Really Simple) PID Class by Ivan Seidel
// GitHub.com/ivanseidel
// Use as you want. Leave credits
class PID{
public:
double error;
double sample;
double lastSample;