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
No. Time Source Destination DstPort Protocol Length Info | |
87 7.931300000 192.168.1.21 255.255.255.255 28960 UDP 57 Source port: 28960 Destination port: 28960 | |
Frame 87: 57 bytes on wire (456 bits), 57 bytes captured (456 bits) on interface 0 | |
Ethernet II, Src: 192.168.1.21 (00:9c:02:8e:cd:70), Dst: Broadcast (ff:ff:ff:ff:ff:ff) | |
Internet Protocol Version 4, Src: 192.168.1.21 (192.168.1.21), Dst: 255.255.255.255 (255.255.255.255) | |
User Datagram Protocol, Src Port: 28960 (28960), Dst Port: 28960 (28960) | |
Data (15 bytes) | |
0000 ff ff ff ff ff ff 00 9c 02 8e cd 70 08 00 45 00 ...........p..E. |
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
<?php | |
$ttl = 60*60*2; // 2 hours | |
parse_str($_SERVER['QUERY_STRING'], $q); | |
$out = array(); | |
if (!empty($q['r']) && function_exists('apc_fetch')) { | |
if (!apc_exists('test-' . $q['r'])) { | |
header("Status: 404 Not Found"); |
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 80; ## listen for ipv4; this line is default and implied | |
#listen [::]:80 default ipv6only=on; ## listen for ipv6 | |
root /var/www/test; | |
index index.php index.html index.htm; | |
server_name test.localhost; | |
location / { |
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
uniform sampler2D projectorTexture; | |
uniform sampler2DShadow projectorDepthMap; | |
uniform bool renderAmbient; | |
uniform bool renderDiffuse; | |
uniform bool renderSpecular; | |
uniform bool renderShadow; | |
uniform bool renderGobo; | |
uniform bool renderNormal; |
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
/** | |
* jsdom + htmlparser + jQuery @ Node v0.4.0 | |
* use npm to install jsdom & htmlparser: | |
* $ npm install [email protected] | |
* $ npm install htmlparser | |
* | |
* Note: not sure what versions work or not | |
* | |
* https://github.com/tmpvar/jsdom | |
* https://github.com/tautologistics/node-htmlparser |
NewerOlder