Skip to content

Instantly share code, notes, and snippets.

View sb7896's full-sized avatar

Swapnil Bangare sb7896

  • Synechron Technologies Private Limited
  • Pune
  • 00:48 (UTC +05:30)
  • LinkedIn in/swapnilbangare
View GitHub Profile
// ==UserScript==
// @name EmuParadise Download Workaround - 1.1.1
// @version 1.1.2
// @description Replaces the download button link with a working one
// @author Eptun
// @match https://www.emuparadise.me/*/*/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @grant none
// ==/UserScript==
@sb7896
sb7896 / youtube-dl-pluralsight.md
Created April 15, 2021 10:53 — forked from quangnd-pgvn/youtube-dl-pluralsight.md
Download Pluralsight videos

Download Plural Sight videos

Software required:

youtube-dl

After installation and putting the youtube-dl in PATH

youtube-dl --username YOUR_USERNAME --password YOUR_PASSWORD --all-subs https://app.pluralsight.com/library/courses/javascript-development-environment -o "~/video/%(playlist)s/%(chapter_number)s. %(chapter)s/%(playlist_index)s. %(title)s.%(ext)s" --sleep-interval 10
@sb7896
sb7896 / youtube-dl-download-pluralsight-videos.md
Created April 15, 2021 10:53 — forked from ivanskodje/youtube-dl-download-pluralsight-videos.md
youtube-dl for downloading pluralsight videos

Downloading Videos from Pluralsight

Disclaimer

Pluralsight do not permit users to download their videos.
If you are an user of pluralsight you have agreed with their ToS,
and are thusly refrained from doing so.
Use this knowledge at your own risk.

youtube-dl for Windows

@sb7896
sb7896 / Activate Office 2019 for macOS VoL.md
Created November 2, 2020 18:01 — forked from zthxxx/Activate Office 2019 for macOS VoL.md
crack activate office on mac with license file

Activate MS Office 2019/2016 for macOS - Microsoft_Office_2019_VL_Serializer

Office 2019 above

2019-06-03

Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.

Ref

@sb7896
sb7896 / example.js
Created May 28, 2020 14:48 — forked from fson/example.js
Recursive GraphQL demo
import { inspect } from 'util';
import {
graphql,
GraphQLEnumType,
GraphQLID,
GraphQLInterfaceType,
GraphQLObjectType,
GraphQLList,
GraphQLNonNull,
GraphQLSchema,

React && Firebase Workshop

Contact Information

Prequisite Setup

  • A recent version of Node.js
  • npm install -g create-react-app

Participants should have a recent version of Node.js installed on their system (preferably the latest LTS version, which is 6.9.1 as of this writing—but anything from 0.10 on should work). Participants should clone the following repositories and run npm install in each of them prior to the start of the workshop.

Optional: It might be helpful to install Electron globally so that you can use it from the command line in case there are any issues with any of the dependencies in the project above. You can install this through npm install -g electron.

Finally, debugging the main process is easiest using Visual Studio Code, which is available for all platforms (Windows, Linux, and macOS). This is not a hard requirement, but helpful if you'd like to follow along for that small segment of the workshop.

@sb7896
sb7896 / installing_wittr_windows.md
Last active May 13, 2018 11:51
Installing Wittr App on Windows

Installing Wittr App on Windows

Follow the below steps to install wittr app on Windows:

1. Install Node.js.

2. Install Git.

3. Create a folder and open Command Prompt and type git clone https://github.com/jakearchibald/wittr

4. After the repository is cloned then go to wittr directory, open Command Prompt and type npm install. This will install all the dependencies which are required for the project. If there are no errors while installing dependencies then you can skip steps 5 and 6

@sb7896
sb7896 / MainActivity.java
Created May 28, 2017 14:08 — forked from anonymous/MainActivity.java
Activity Lifecycle exercise
package com.example.android.lifecycle;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {