Skip to content

Instantly share code, notes, and snippets.

View pks9862728888's full-sized avatar
🎯
Focusing

Pran Kumar Sarkar pks9862728888

🎯
Focusing
View GitHub Profile
@pks9862728888
pks9862728888 / add-to-remote-git
Created July 21, 2024 06:34
Commands to add local repo to remote
echo "# spring-data-mongodbdemo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin [email protected]:pks9862728888/spring-data-mongodbdemo.git
git push -u origin main
@pks9862728888
pks9862728888 / html5shiv
Created February 22, 2020 07:16 — forked from duyet/html5shiv
HTML5shiv and Response.js for IE
<!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->