Skip to content

Instantly share code, notes, and snippets.

View theRealGupta's full-sized avatar
:octocat:
Let's start something NEW today. :)

Anup Gupta theRealGupta

:octocat:
Let's start something NEW today. :)
View GitHub Profile
@theRealGupta
theRealGupta / export_vscode_extesions.md
Created August 18, 2023 18:51 — forked from joseluisq/export_vscode_extesions.md
How to export your VS Code extensions from terminal

How to export your VS Code extensions from terminal

Note: Unix-like systems only.

  1. Export your extensions to a shell file:
code --list-extensions | sed -e 's/^/code --install-extension /' > my_vscode_extensions.sh
@theRealGupta
theRealGupta / overlay.json
Created February 27, 2021 11:09 — forked from fmo91/overlay.json
Sample json created using Google Maps Styling Wizard
[
{
"elementType": "geometry",
"stylers": [
{
"color": "#ebe3cd"
}
]
},
{
@theRealGupta
theRealGupta / app_notarizer.sh
Created September 16, 2020 10:06 — forked from rdelrosario/app_notarizer.sh
macOS Application Notarization Script
#!/bin/bash
usage()
{
# Display Help
echo "*********************************************************************************************************************************************************"
echo " MacOS Application Notarization Script"
echo "*********************************************************************************************************************************************************"
echo
@theRealGupta
theRealGupta / ExtractYouTubeId.playground
Created January 21, 2019 07:32 — forked from pietrobasso/ExtractYouTubeId.playground
A Regex to extract YouTube video ids from the given list of youtube URLs in Swift 4
//: Playground - noun: a place where people can play
//
// Created by Pietro Basso on 29/06/2018.
// Copyright (c) 2018 Pietro Basso. All rights reserved.
//
let urls = ["http://youtu.be/NLqAF9hrVbY",
"http://www.youtube.com/watch?feature=player_embedded&v=DJjDrajmbIQ",
"http://www.youtube.com/watch?v=dQw4w9WgXcQ",
"http://www.youtube.com/embed/NLqAF9hrVbY",
@theRealGupta
theRealGupta / UIImageView+Network.h
Created September 20, 2016 07:41 — forked from khanlou/UIImageView+Network.h
Quick and dirty UIImageView with networking
//
// UIImage+Network.h
// Fireside
//
// Created by Soroush Khanlou on 8/25/12.
//
//
#import <UIKit/UIKit.h>