Skip to content

Instantly share code, notes, and snippets.

View mamutalib's full-sized avatar

Md. Abdul Mutalib mamutalib

View GitHub Profile
@shparvez001
shparvez001 / rating.html
Created August 3, 2022 15:41
A simple demonstration for star based rating UI.
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name = "keywords" content = "HTML, Rating, Star, Star Rating" />
<meta name = "description" content = "A simple page showing how javascript can be used to dynamically change star rating statistics." />
<meta name = "author" content = "Shahadat Hussain Parvez (SHP)" />
<title> Example of Star Rating</title>
# remove all files from git cache
Just pase these command and fix the problem (.gitignore not working).
git rm -r --cached .
git add .
git commit -m "untracked fixed"
@milanboers
milanboers / clone.bash
Last active April 5, 2024 05:11
Clone all repositories of a Github user
curl -s https://api.github.com/users/milanboers/repos | grep \"clone_url\" | awk '{print $2}' | sed -e 's/"//g' -e 's/,//g' | xargs -n1 git clone