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
# .----|-----|----. | |
# |37 |38 |39 | | |
# | | | | | |
# |----|-----|----| | |
# |40 |41 |42 | <= Back | |
# Left | | | | | |
# || |----|-----|----| | |
# \/ |43 |44 |45 | | |
# | | | | | |
# /\----|-----|----/\ |
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
Checking for header port.h : not found | |
Checking for header sys/event.h : not found | |
Checking for function kqueue : 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
var sys = require("sys"); | |
var assert = require('assert'); | |
var text = "üßüsd asff asgä äösa sagd asdg dgad sdga sßßü üasg dags öddf fgge wäßüß„«"; | |
function validMessage(msg) { | |
var i; | |
var validMsg = ""; | |
for(i=0;i<msg.length;i++){ |
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
-rwxr-xr-x 1 root root 306K Mar 26 2010 ./lib64/libssl.so.0.9.8e | |
-rwxr-xr-x 1 root root 216K Mar 28 2010 ./usr/lib64/libssl3.so | |
-rw-r--r-- 1 root root 65 Mar 26 2010 ./lib64/.libssl.so.0.9.8e.hmac | |
lrwxrwxrwx 1 root root 22 Apr 18 19:21 ./lib64/.libssl.so.6.hmac -> .libssl.so.0.9.8e.hmac | |
lrwxrwxrwx 1 root root 16 Apr 18 19:21 ./lib64/libssl.so.6 -> libssl.so.0.9.8e |
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
<VirtualHost *:80> | |
ServerName ssfcgi | |
DocumentRoot "/var/www/ssssssssssss/ss/public" | |
<Directory "/var/www/ssssssssssss/ss/public"> | |
AllowOverride None | |
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch | |
Order allow,deny | |
Allow from all | |
AddHandler fastcgi-script .fcgi |
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
qx.Class.define("AutoComboBox", { | |
extend: qx.ui.form.ComboBox, | |
members: { | |
allItems: null, | |
highlightMatch: function(fullText,toHighlight) { | |
//TO implement | |
return new qx.ui.form.ListItem(fullText); | |
}, | |
keyHandler: function(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
node.js:63 | |
throw e; | |
^ | |
Error: ETIMEDOUT, Connection timed out | |
at IOWatcher.callback (net:870:22) | |
at node.js:773:9 |
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 client = http.createClient(80, host); | |
var r = client.request('GET',path,{ 'host': host});//r is request object | |
r.connection.setTimeout(3000); | |
r.on("timeout",onTimeout); |
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 http = require("http") | |
http.createServer(function (req, res) { | |
// let it time out | |
// just hold the connection open forever | |
}).listen(8080) | |
var r = http.createClient(8080, "localhost").request("GET", "/", {}) | |
r.on("response", function (res) { | |
console.log("got response") |
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
Error: ECONNRESET, Connection reset by peer | |
at net:304:14 | |
at Stream._readImpl (net:358:27) | |
at IOWatcher.callback (net:454:24) | |
at node.js:757:9 |
OlderNewer