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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public V get(Object key) { | |
final int hashCodeForKey = hash(key); | |
final Node<K,V> nodeByKey = getNode(hashCodeForKey, key); | |
return nodeByKey == null ? null : nodeByKey.value; | |
} | |
private Node<K,V> getNode(int hashCodeKey, Object keySearch) { | |
Node<K,V> current; | |
Node<K,V> next; | |
K keyForNode; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public V put(K key, V value) { | |
int hashCodeKey = hash(key); | |
return putVal(hashCodeKey, key, value); | |
} | |
private V putVal(int hashCodeKey, K key, V value) { | |
int newHashTableSize; | |
int indexForNode; | |
Node<K,V> nodeByHashCodeKey; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static ListNode deleteDuplicates(ListNode head) { | |
if(head == null) return null; | |
ListNode fake = new ListNode(-1); | |
fake.next = head; | |
ListNode pre = fake; | |
ListNode cur = head; | |
while(cur != null){ | |
while(cur.next != null && cur.val == cur.next.val){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profiles> | |
<profile> | |
<id>my-tests</id> | |
<build> | |
<plugins> | |
<plugin> | |
<artifactId>maven-failsafe-plugin</artifactId> | |
<configuration> | |
<excludes> | |
<exclude>**/stories/folder1/**</exclude> |
PluralSight John Papa Course:
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Login to pluralsight in chrome and Open a course you want to download | |
//Example - https://app.pluralsight.com/library/courses/aws-automating-cloudformation/table-of-contents | |
//Click on "Start" or "Resume Course" Button | |
//chapter listing | |
var list = document.getElementsByTagName("section"); | |
var counter=0; | |
for (var i=0; i<list.length; i++) { | |
if ( list[i].className.match(/\bmodule\b/) ) { | |
var header_text = list[i].getElementsByTagName("h2")[0].innerText; | |
var ul = list[i].getElementsByClassName('clips'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn clean install '-P!CommercialDBJars,!MediumTests' |
NewerOlder