« first day (946 days earlier)   

12:06 AM
then the error must be somewhere else - but
$err[1] = "Please enter less $min or More than $max characters";
return $err.'<br/>'
is also wrong.
 
12:28 AM
hello
@phpNoOb
$err[1] = 'kjsfsfdsf';
return $err.'<br>';
Is like saying
return ARRAY+STRING (which doesn't make sense)
I suggest to add the <br> in $err[1] ...
if(!empty($err)) {
$err[1] = "Please enter less $min or More than $max characters<br/>";
return $err;
 
Wes
12:43 AM
ping
 
@Wes ping
 
Wes
@HamZaDzCyberDeV ping
one man table tennis
 
@HamZaDzCyberDeV got it fixed, just silly mistake. txs :)
 
@phpNoOb you're welcome
 
1:00 AM
Did I read somewhere that you were hungry for some reps @HamZaDzCyberDeV
 
lol, I want to get 10K...
But you know, if I reach it I will be more greedy and want to get 20K and so on :p
So I should not be in a hurry ...
 
I'm trying to only reach 3k, cause 10k is out of my reach :)
3k is the best cap ever
You can be a candidate for moderator just by that much
 
@phpNoOb I think you have also to have certain badges ....
 
yea, but they are easier to get than 10k, just regular flag/upvote stuff
 
xcx
1:10 AM
no that's not a trolling attempt
 
@Danack
> [tag:cv-pls]
 
ty
YEE-HEE
 
Hey guys
I am trying to chain commands
for SSH and BAsh
Wondering if anyone could help
 
@Ocramius you still awake?
 
@PeeHaa埽 yes?
 
1:16 AM
@Ocramius How do you setup a database on travis?
 
Basically if i run a bash script from SSH2, the bash has password prompts
 
That is how do you import the db structure?
 
How do i answer them?
 
@HarryBeasant "chain" commands o_o ?
 
1:17 AM
@PeeHaa埽 I don't - I work with ORMs :P
 
Yes, so $ssh->exec("wget url; bash name.sh; password; password")
 
@harry - give us a mo, I've got it here somewhere.
 
@PeeHaa埽 but usually, importing db migrations does the trick too...
 
@Ocramius So basically just have a sql file somewhere in the repo and run import?
 
kind-of
 
1:20 AM
@Danack sure np
 
that would work for simple DBs indeed
 
@Ocramius It will be really simple. I might as well run it through PDO :P
 
then just put the schema in an sql file and keep it in sync with your project :)
 
@Harry I seem to have deleted where I was using it - but basically it's a tool called 'expect':
http://www.unix.com/shell-programming-scripting/171455-expect-command-use-interactive-mode-scripting.html
 
tnx for rubber duckying
 
1:22 AM
@HarryBeasant It feeds in the answers - that's what you're after right?
 
In the bash script or in the command?
 
from a bash script into a command that is asking a question in an interactive session - if that's not what you want, maybe clarify what you do want?
 
Using Chrome's speech input, I said 'testing'... it replies, 'you stink' (bad internal microphone)
 
1:41 AM
0
Q: Base64 decode and SH1 decryption of Sec-WebSocket-Accept value example from Websocket RFC

TemporaryNickNameI am planning to implement the Websocket protocol and currently learning how handshake headers must be structured. According to this link http://datatracker.ietf.org/doc/rfc6455/?include_text=1 To prove that the handshake was received, the server has to take two pieces of information and ...

 
@TemporaryNickName Is that on topic there??
 
it's impressive how a single tutorial drags in 250 visits/day O_o
 
@Ocramius impressive that something obviously needs that many views ;)
 
@TemporaryNickName You don't "decrypt" anything, and you don't need the original value back. SHA1 is a hash, not encryption, it's not reversible, and that's not what you need to do anyway. The client sends a base-64 encoded string, the value of which is irrelevant. The server then does base64_encode(sha1($clientString . $guid)); and sends it back to the client, the client then just needs to do the same operation and verify the two strings match.
There's no need to decode anything at any point in the process, client or server
Oh and also, you need the raw hash (pass true to the second arg of sha1() in PHP), not the ascii-hex version
@TemporaryNickName github.com/PeeHaa/WebSocketDemo/blob/master/src/WebSocketServer/… <-- that's all there is to it on the server side
Right, I'm bailing. Nite @all
 
1:57 AM
nite @DaveRandom
 
@DaveRandom good night
 

« first day (946 days earlier)