Skip to content

Instantly share code, notes, and snippets.

@gyanesh198
gyanesh198 / youtube-dl-download-pluralsight-videos.md
Created September 3, 2018 07:03 — 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

@gyanesh198
gyanesh198 / TextView.java
Created March 16, 2018 13:03 — forked from udacityandroid/TextView.java
Android for Beginners : Simplified TextView class
/**
* Displays text to the user.
*/
public class TextView extends View {
// String value
private String mText;
// Text color of the text
private int mTextColor;