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
#!/bin/bash | |
STORAGE=/home/$USER/Downloads; | |
# Get Process ID | |
PROCID=$(pgrep -f flash); | |
# Change current directory to | |
cd /proc/$PROCID/fd; | |
# Get file names |
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
/** @constructor */ | |
window.alertbox = new (function($, window, undefined) { | |
var $alb = $('<div id="alertbox" class="alert">').hide().appendTo('body') | |
, timer = null | |
, next = []; | |
/** | |
* Enum for alert types and their respective class names | |
* | |
* @public |
NewerOlder