Skip to content

Instantly share code, notes, and snippets.

View Bhupesh-V's full-sized avatar

Bhupesh Varshney Bhupesh-V

View GitHub Profile
@Bhupesh-V
Bhupesh-V / scd.sh
Created August 13, 2020 09:32
smart cd - Change directories smartly [v2]
scd() {
# [s]mart cd : find absolute paths & automatically switch to them
if [[ $1 != "" ]]; then
case $1 in
[".."]* ) cd .. || exit;;
["-"]* ) cd - || exit;;
["/"]* ) cd / || exit;;
* ) while read -r value; do
files+=($value)
@Bhupesh-V
Bhupesh-V / extract.md
Last active September 29, 2021 04:18
Extract The Unique Image ID from Google Drive URL

Extract The Unique Image ID from Google Drive URL

Usage

python3 extract.py <drive_image_url>

Demo

The ID as a string, Example :

python3 extract.py https://drive.google.com/file/d/0BwZFRt1DatLLZUt4eF94dFh1ZXJubUthenY3MVZERU5yeV9z/view\?usp\=sharing

@Bhupesh-V
Bhupesh-V / _highlights.scss
Last active May 17, 2021 05:54
jekyll-now Code Monokai Theme. Just copy paste the following code under _sass directory in _highlights.scss file
pre.highlight {
background-color: #282923;
padding: 7px 7px 7px 10px;
border: 20px solid yellowgreen;
-moz-box-shadow: 3px 3px rgba(0,0,0,0.1);
-webkit-box-shadow: 3px 3px rgba(0,0,0,0.1);
box-shadow: 3px 3px rgba(0,0,0,0.1);
margin: 20px 0 20px 0;
overflow: auto;

Follow below steps to use a Google Form as a Feedback Form ;)

  1. Make a Google form having exactly the same fields as on your website.
  2. Once you do this , generate a link of the prefilled form , you will get the option by clicking onn the 3 dots
  3. The Generated URL may look somewhat like this
<!--
https://docs.google.com/forms/d/e/1FAIpQLSfim3RiM1NLrTszkwOv2uJ8mFMfZR6WZU-qKK6oRUlgA9vjuw/viewform?usp=pp_url&entry.389706550=Karma&entry.1867581834=Bitch&entry.973008035=Hellllllllooooo
-->