PAR2: Parchive / par2cmdline

par2cmdline

par2cmdline is a PAR 2.0 compatible file verification and repair tool.

To see the ongoing development see: https://github.com/parchive/par2cmdline

OpenMP multithreading was originally developed by Jussi Kansanen: https://github.com/jkansanen/par2cmdline-mt

The original development was done on Sourceforge but stalled.

For more information from the original authors see http://parchive.sourceforge.net

This is also the place for details on the PAR 2.0 specification and discussion of all things PAR.

Tags

selenium-server-standalone cli options

Usage: java -jar selenium-server.jar [-interactive] [option

  • -port <nnnn>: the port number the selenium server should use (default 4444)
  • -timeout <nnnn>: an integer number of seconds before we should give up
  • -interactive: puts you into interactive mode.
Tags

youtube-dl: download shell script ( DRAF )

YouTube-DL Wrapper Shell Script

 

# ALL # SINGLE
youtube-dl -no-playlist --verbose -f bestvideo \
--write-thumbnail --write-description --write-info-json --no-overwrites --restrict-filenames \
--output '/home/uc/Videos/ytu/%(uploader)s/%(title)s.%(ext)s' \
https://www.youtube.com/watch?v=jfM6cOtqBHE

 

# Playlist
youtube-dl --yes-playlist --verbose -f bestvideo \
--write-thumbnail --write-description --write-info-json --no-overwrites --restrict-filenames \
--output '/home/uc/Videos/ytu/%(uploader)s/%(playlist)s/%(playlist_index)s-%(title)s.%(ext)s' \
https://www.youtube.com/watch?v=jfM6cOtqBHE

 

Java & Eclipse IDE: Setting Proxy

Sources:

 


System.setProperty("http.proxyHost","x.x.x.x");
System.setProperty("http.proxyPort","8080");
System.setProperty("http.proxyUser","name");
System.setProperty("http.proxyPassword","pass");

 

 

-Djava.net.useSystemProxies=true


http://docs.oracle.com/javase/7/docs/api/java/net/doc-files/net-properties.html#Proxies

Subscribe to