Skip to content

Instantly share code, notes, and snippets.

View planetoftheweb's full-sized avatar
🚀
Hubbing

Ray Villalobos planetoftheweb

🚀
Hubbing
View GitHub Profile
@planetoftheweb
planetoftheweb / tfit-chaptertitles
Created October 18, 2023 16:45
Chapter Titles as given by HappyScribe
[00:01:02]: Technology Maturity
[00:02:32]: Career Path and Key People
[00:03:50]: Intersection of Cloud and AI
[00:05:16]: Cloud Computing and AI Workloads
[00:06:24]: Companies' Readiness for AI
@planetoftheweb
planetoftheweb / samplelinks.txt
Created October 18, 2023 16:13
A list of sample links from an episode of The Future In Tech
@planetoftheweb
planetoftheweb / nav_bootstrap5.html
Created August 28, 2023 02:19
This is one of my newest gists
<nav class="navbar navbar-expand-md bg-primary navbar-dark text-uppercase">
<div class="container">
<button
type="button"
class="navbar-toggler"
data-bs-toggle="collapse"
data-bs-target="#myTogglerNav"
aria-controls="myTogglerNav"
aria-label="Toggle Navigation"
>
@planetoftheweb
planetoftheweb / preventdefault.html
Created February 8, 2023 02:27
Example of the preventDefault method
<!DOCTYPE html>
<html lang="en" dir="ltr" data-theme="light">
<head>
<meta charset="utf-8">
<title>Prevent Defaults</title>
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@1.*/css/pico.min.css">
</head>
<body >
<main class="container">
<h1>JavaScript Events</h1>
@planetoftheweb
planetoftheweb / index.html
Created November 26, 2022 09:46
Movie Style Film Countdown
<svg id="projectionScreen" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 1200">
<defs>
<radialgradient id="filmGradient" cx="600" cy="450" r="340" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#e6e6e6"/>
<stop offset="0.1" stop-color="#d1d1d1"/>
<stop offset="1" stop-color="#1a1a1a"/>
</radialgradient>
<mask id="filmMask">
name: Favorite Google Fonts
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
name: Generate Lighthouse Report
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
# !/bin/bash
for BRANCH in `git branch --list|sed 's/\*//g'`;
do
git checkout $BRANCH
mkdir -p ~/Desktop/backup/$BRANCH
cp -R build/* ~/Desktop/backup/$BRANCH/
done
# !/bin/bash
arr=( "design" "feature" );
for ITEM in ${arr[@]}
do
git checkout $ITEM
git checkout main build/css/bootstrap.min.css
git checkout main build/css/bootstrap.min.css.map
git checkout main build/js/lib/bootstrap.bundle.min.js
@planetoftheweb
planetoftheweb / main.yml
Created June 13, 2021 22:12
Generate Lighthouse Report
name: Generate Lighthouse Report
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps: