Skip to content

Instantly share code, notes, and snippets.

@DaBigHomie
DaBigHomie / Flip Flop Sundays Awwwards-Caliber Website Implementation.md
Last active August 1, 2025 13:45
This plan addresses the critical gaps between my current implementation and the Awwwards-caliber requirements I want for Jay. The biggest challenges will be implementing the mandatory splash screen, creating the 8 unique 3D page headers, and ensuring the mobile performance doesn't suffer from the desktop 3D effects. We got it tho!

Comprehensive Flip Flop Sundays Awwwards-Caliber Website Implementation

Phase 1: Foundation & Technology Stack

  1. Install Critical Dependencies
    • gsap - For professional-grade animations and ScrollTrigger
    • three@latest - Core 3D library
    • @react-three/fiber@^8.18.0 - React Three.js integration
    • @react-three/drei@^9.122.0 - Three.js helpers and components
    • framer-motion - Additional animation support
  • react-intersection-observer - For performance-optimized scroll triggers
@DaBigHomie
DaBigHomie / atl-tequila-week-bold-hero.markdown
Created July 6, 2025 14:36
ATL Tequila Week - Bold Hero
@DaBigHomie
DaBigHomie / atl-tequila-week-carousel-events.markdown
Created July 6, 2025 14:32
ATL Tequila Week - carousel events
@DaBigHomie
DaBigHomie / bright-orange-atltequilaweek-com.markdown
Created July 6, 2025 14:19
bright orange atltequilaweek.com
@DaBigHomie
DaBigHomie / bright-orange-atltequilaweek-com.markdown
Created July 6, 2025 14:16
bright orange atltequilaweek.com
@DaBigHomie
DaBigHomie / linux-cheatsheet.sh
Created August 22, 2022 13:18
linux cheatsheet
# Linux 'find' cheatsheet.
# Taken from here http://alvinalexander.com/unix/edu/examples/find.shtml
# basic 'find file' commands
# --------------------------
find / -name foo.txt -type f -print # full command
find / -name foo.txt -type f # -print isn't necessary
find / -name foo.txt # don't have to specify "type==file"
find . -name foo.txt # search under the current dir
find . -name "foo.*" # wildcard
@DaBigHomie
DaBigHomie / .gitignore
Created December 9, 2021 08:26 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #

How to download your Udemy course videos using youtube-dl

$ youtube-dl --list-extractors | grep udemy

Steps

  1. Get link to the course to download. e.g. https://www.udemy.com/course-name/
  2. Login into udemy website, save the cookie from chrome using Chrome (Cookie.txt)[1] export extension. Save it to file udemy-cookies.txt
  3. Get the link of the video that you want to download. usually in format. Use the command provided below where you have to replace the {course_link} and {path_to_cookies_file} with respective paths.
$ youtube-dl {course_link} --cookies {path_to_cookies_file}
@DaBigHomie
DaBigHomie / hosts
Created July 2, 2021 02:20 — forked from consti/hosts
/etc/hosts to block shock sites etc.
# This hosts file is brought to you by Dan Pollock and can be found at
# http://someonewhocares.org/hosts/
# You are free to copy and distribute this file for non-commercial uses,
# as long the original URL and attribution is included.
#<localhost>
127.0.0.1 localhost
127.0.0.1 localhost.localdomain
255.255.255.255 broadcasthost
::1 localhost