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
| youtube-dl --prefer-ffmpeg --extract-audio --audio-format mp3 --proxy http://username:%2@proxy:80 %1 |
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
| var results = [ | |
| ]; | |
| var rows = jQuery('.badge_title_row'); | |
| jQuery.each(rows, function (index, r) { | |
| jQuery('.badge_view_details', r) .empty(); | |
| var title = jQuery.trim(jQuery('.badge_title', r) .text()); | |
| var cards = jQuery.trim(jQuery('.progress_info_bold', r) .text()); | |
| if (cards != '' && cards.substring(0, 2) != 'No') | |
| { | |
| var cardNbr = cards.substring(0, cards.indexOf(' ')); |
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 interface IMessageHandler<T> { | |
| void ProcessMessage(T message); | |
| } | |
| public class DefaultHandler<T> : IMessageHandler<T> { | |
| public void ProcessMessage(T message) { | |
| // default behavior | |
| } | |
| } | |