I hereby claim:
- I am fnlog0 on github.
- I am fnlog0 (https://keybase.io/fnlog0) on keybase.
- I have a public key ASCul9z1wfKr4jyNJBO3s2yMU1Jr8HI9Y6cz9k--u46MLwo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Function to check if yt-dlp is installed | |
| check_yt_dlp() { | |
| if ! command -v yt-dlp &>/dev/null; then | |
| echo "yt-dlp not found. Installing it now..." | |
| brew install yt-dlp | |
| brew install ffmpeg | |
| fi | |
| } |
| #!/bin/bash | |
| # Directories to search and delete | |
| TARGETS=("node_modules" ".next") | |
| echo "Searching for ${TARGETS[*]} directories..." | |
| # Find all target directories | |
| found_dirs=$(find . \( -name "node_modules" -o -name ".next" \) -type d -prune) |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| sudo apt-get install fonts-cantarell, ttf-ubuntu-font-family, git | |
| srcdir="/tmp/google-fonts" | |
| pkgdir="/usr/share/fonts/truetype/google-fonts" | |
| giturl="git://github.com/google/fonts.git" | |
| mkdir $srcdir | |
| cd $srcdir | |
| echo "Cloning Git repository..." | |
| git clone $giturl |
| import fetch from 'node-fetch'; | |
| import { map } from 'lodash'; | |
| const apiKey = 'API_Key'; | |
| const appID = 'App_Id'; | |
| const baseURL = 'http://developer.goibibo.com/api'; | |
| export default { |
| <head> | |
| <link href="http://vjs.zencdn.net/6.6.3/video-js.css" rel="stylesheet"> | |
| <!-- If you'd like to support IE8 --> | |
| <script src="http://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script> | |
| </head> | |
| <body> | |
| <video id="my-video" controls class="video-js" controls preload="auto" width="640" height="264" | |
| poster="https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg?auto=compress&cs=tinysrgb&h=350.jpg" data-setup="{}"> |
| git init <directory> | |
| (Create empty Git repo in specified directory. Run with no arguments | |
| to initialize the current directory as a git repository.) | |
| git clone <repo> | |
| (Clone repo located at <repo> onto local machine. Original repo can be | |
| located on the local filesystem or on a remote machine via HTTP or SSH .) | |
| git config user.name <name> |