Skip to content

Instantly share code, notes, and snippets.

View filipeleonelbatista's full-sized avatar
🏠
Working from home

Filipe de Leonel Batista filipeleonelbatista

🏠
Working from home
View GitHub Profile
@filipeleonelbatista
filipeleonelbatista / gist:52c9104944b8a2600bf8d7f5a0aaae2a
Created February 19, 2024 15:30
Component Last Video Posted On My Channel Using RSS Feed From Yourube. Comments in PT-BR
import { useEffect, useState } from "react";
import axios from "axios";
import xml2js from 'xml-js';
export default function LastVideo() {
const channelID = "<seu_id_de_canal_aqui>";
const youtubeRSS = `https://www.youtube.com/feeds/videos.xml?channel_id=${channelID}`;
const [lastVideoId, setLastVideoId] = useState("<id_video_padrao_ou_aspas_simples>");
@filipeleonelbatista
filipeleonelbatista / README.md
Created November 27, 2021 22:05 — forked from lopspower/README.md
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@filipeleonelbatista
filipeleonelbatista / RemoveBranding.css
Created March 13, 2021 12:19 — forked from Richienb/RemoveBranding.css
Remove 000Webhost Branding For Wordpress CSS Code
img[src*="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {display: none;}