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
javascript:(function(){var agentName=prompt("Enter Agent Name");for(var x in localStorage)if(localStorage[x]==agentName)alert("Agent: "+agentName+"\nID: "+x);})(); |
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
server { | |
listen 3000 default; | |
root /var/www/Development/RNFileSystem/Boot; | |
server_name localhost; | |
client_max_body_size 256m; | |
location / { | |
index index.php; | |
if (!-e $request_filename) { | |
rewrite ^(.+)$ /index.php$1 last; |
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
/** | |
* Constant | |
*/ | |
define('PREFIX_NAME', 0); | |
/** | |
* Class | |
*/ | |
class PrefixName { | |
// Private variable |