Software required:
After installation and putting the youtube-dl
in PATH
youtube-dl \
Software required:
After installation and putting the youtube-dl
in PATH
youtube-dl \
Software required:
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
import javax.net.ssl.SSLSocket; | |
import javax.net.ssl.SSLSocketFactory; | |
import java.io.*; | |
/** Establish a SSL connection to a host and port, writes a byte and | |
* prints the response. See | |
* http://confluence.atlassian.com/display/JIRA/Connecting+to+SSL+services | |
*/ | |
public class SSLPoke { | |
public static void main(String[] args) { |
"""Create a connection to Gmail and do something with the results | |
References: | |
http://www.voidynullness.net/blog/2013/07/25/gmail-email-with-python-via-imap/ | |
and | |
https://yuji.wordpress.com/2011/06/22/python-imaplib-imap-example-with-gmail/ | |
""" | |
__author__ = 'abought' | |
import email |
#!/bin/bash | |
branch=$(git name-rev --name-only HEAD) | |
git rebase --onto HEAD~2 HEAD~1 HEAD | |
git cherry-pick ORIG_HEAD~1 | |
git update-ref refs/heads/$branch $(git rev-parse HEAD) | |
git checkout --quiet $branch | |
# Instead of creating an independant bash script with the code above, | |
# consider simply creating a git alias using the command below. |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
<!DOCTYPE html> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta charset="utf-8"> | |
<title>Mail Server Analytics</title> | |
<style> | |
@import url(style.css); | |
#circle circle { | |
fill: none; |