This file contains 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
root@yesmav:~/pmgr# wget http://ftp.us.debian.org/debian/ | |
--2012-04-08 13:36:03-- http://ftp.us.debian.org/debian/ | |
Resolving ftp.us.debian.org... 2610:148:1f10:3::89, 2001:500:61:28::70 | |
Connecting to ftp.us.debian.org|2610:148:1f10:3::89|:80... failed: Network is unreachable. | |
Connecting to ftp.us.debian.org|2001:500:61:28::70|:80... failed: Network is unreachable. |
This file contains 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
root@yesmav:~/pmgr# dig A ftp.us.debian.org | |
; <<>> DiG 9.7.3 <<>> A ftp.us.debian.org | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 14715 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 | |
;; QUESTION SECTION: | |
;ftp.us.debian.org. IN A |
This file contains 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
root@yesmav:~/pmgr# host ftp.us.debian.org | |
ftp.us.debian.org.com has address 23.21.224.150 | |
root@chatmavis:~/packagemgr# dig A ftp.us.debian.org | |
; <<>> DiG 9.7.3 <<>> A ftp.us.debian.org | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 14715 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 |
This file contains 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
root@yesmav:~/pmgr# host ftp.us.debian.org | |
ftp.us.debian.org.com has address 23.21.224.150 | |
root@yesmav:~/pmgr# dig A ftp.us.debian.org | |
; <<>> DiG 9.7.3 <<>> A ftp.us.debian.org | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 14715 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 |
This file contains 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 | |
{ | |
server_name *.theamericanpolitician.com; | |
listen 80; | |
location ^~ /socket.io | |
{ | |
proxy_pass http://unix:/tmp/$SERVER_NAME.socket:; | |
proxy_set_header X-Real-IP $remote_addr; | |
} |
This file contains 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
if ($(_parent).hasClass('item')) | |
{ | |
$(_parent)[selected && $(this).closest('table').find('.item:not(.selected)').length == 0 ? 'addClass' : 'removeClass']('selected'); | |
var _grandparent = $(_parent).parent().parent().parent().parent().parent().siblings(); | |
if ($(_grandparent).hasClass('item')) $(_grandparent)[selected && $(_parent).closest('table').find('.item:not(.selected)').length == 0 ? 'addClass' : 'removeClass']('selected'); | |
} |
This file contains 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 __objectInheritanceCalculated = []; | |
while((function() | |
{ | |
/* There is a object class that has not been processed */ | |
var __t = 0; | |
for (var m in objectclasses) { __t++; } | |
if (__t <= __objectInheritanceCalculated.length) return false; | |
return true; | |
})()) | |
{ |
This file contains 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
(function () { | |
var __vm = new __vmExecutionContextCtor(); | |
function madonna() { | |
var __vm = new __vmExecutionContextCtor(); | |
__vm.yield(JSON.stringify('YES YES THIS IS WORKING!!!!'), function (__val13) { | |
var lookAtMe = __val13; | |
__vm.returnValue({ | |
idol: 'Madonna Mommy. ' + lookAtMe | |
}); |
This file contains 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
def writeConfigString(endpointsTuple): | |
for endpoint in endpointsTuple: | |
generatedLines.append( (if ENDPOINT_TYPE['STATIC'] == endpoint['type'] generateStaticEndpoint else if ENDPOINT_TYPE['SERVICE'] == endpoint['type'] else None)(endpoint['uri'], endpoint['destination']) ) |
This file contains 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
presidentuncletom=# SELECT name, ARRAY(SELECT (title, id) FROM groups_map RIGHT OUTER JOIN | |
groups ON (groups_map.group_id = groups.id) WHERE groups_map.item_id=person.id) | |
AS groups FROM person; | |
name | groups | |
-----------------+---------------------------------------------------- | |
Harley Earl | {} | |
Henry Ford | {"(\"industry mogul\",1)","(\"capital mogul\",2)"} | |
Rick Wagoner | {} | |
Alfred P. Sloan | {"(\"industry mogul\",1)","(\"capital mogul\",2)"} | |
Bob Eaton | {} |
OlderNewer