Skip to content

Instantly share code, notes, and snippets.

View Yagasaki7K's full-sized avatar
💭
Looking for knowledge

葛城矢ヶ崎 × 鬼渋谷 Yagasaki7K

💭
Looking for knowledge
View GitHub Profile
@lancejpollard
lancejpollard / meta-tags.md
Created March 5, 2012 13:54
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="subject" content="your website's subject">
<meta name="copyright"content="company name">
<meta name="language" content="ES">
@PurpleBooth
PurpleBooth / README-Template.md
Last active June 30, 2024 16:33
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@josethz00
josethz00 / delete_node_modules.sh
Last active January 26, 2024 18:59
delete all node_modules in the system
#!/bin/bash
echo "Searching for node_modules directories..."
# Assuming NVM is installed in the default location, update this if you have a custom NVM directory
NVM_DIR="$HOME/.nvm"
# exclude nvm
find $HOME -path $NVM_DIR -prune -o -name "node_modules" -type d -print | while read dir; do
echo "Deleting $dir..."