« first day (709 days earlier)      last day (243 days later) » 

12:00 PM
actually it's a case where I'm sure the associative array has one element
 
Well just reset($array); $el = current($array); then
 
thx
 
Actually it's enough to write $el = reset($array); - If you need the last value from an array it is $last = end($array);. See php.net/reset and php.net/end
 
@hakra Neat, never realised reset() returned an element, I though it just reset the pointer. To be honest I probably won't adjust the way I use it, I think it looks confusing, my instinct says that if it returned anything it should be a bool success indicator.
 
@hakra thx saves me one line of code ;/
 
12:12 PM
Debug other websites? By the "quality" of the question, I would assume firsthand that the OP has a crawler with flaws. And therefore this question - in the way it's written - is just too localized. We won't debug your crawler unless you ask about it. — hakra 23 secs ago
@DaveRandom Oh, it is as well, for the case the array is empty :)
 
@hakra PHP really needs an undefined type, I think. At the very least some of these functions need to return NULL when what they mean is "I have no value to return", returning FALSE is just silly.
 
But not that I'm immune to these faults, even starting with PHP 3 already, it took some years until I became aware of end: hakre.wordpress.com/2010/01/15/end
@DaveRandom The undefined type in PHP is NULL.
 
@hakra I know, but the problem with it is that it is possible to instantiate a variable with NULL as a "value". And particularly with things like array_shift() and friends, when you get a NULL back it might mean that there are no items left on the stack/heap, or it might mean that there was an item with no value. And you are forced to use count() to find out which.
 
Morning all
 
@DaveRandom I know what you are worrying about, however, this is not how it's done in PHP and you need to know the language: if (!$array) { echo 'Array is empty'; }
Always validate pre- and postconditions and you're fine. That is language independent btw.
 
12:30 PM
@hakra I know but it's still an extra check I don't want to have to do. I'd much rather write while (($el = array_shift($stack)) !== NULL) { /* ... */ } than while ($stack) { $el = array_shift($stack); /* ... */ } - I know the difference is insignificant, it just irritates the perfectionist in me
It's also marginally less efficient because of the implied (bool) cast, whereas the first version does a strict comparison. And I know this makes zero difference, but again it just bugs me.
 
Sem
My Opera browser is using 411 mb memory for this chatroom. :(
 
i kinda doubt that
it's using 600MB for two chat room and ~40 other tabs
you might be running it for extensive period
 
Sem
Only 1 tab open here..
 
@Sem How long have you had it open? This Chrome tab has been open for over a week and is only using 184MB (which is still ridiculous, but not that bad)
 
in my experience , opera has some issues with cleaning up memory used by flash
unfortunately you cannot see memory use for each tab , only thing available is opera:cpu
 
12:36 PM
@DaveRandom You would also need to check for undefined then I assume. I dunno if the change of language wouldn't be less practical than actually knowing how to deal with it.
 
@hakra No you'd just replace NULL with undefined in the loop condition, since NULL is apparently still a value.
I've been doing a bunch of Node.js over the weekend, I think it's starting to bleed through into my PHP...
 
An application design issue. I have an OO php 5.4 project and there is a function that simply build a insert with multiple values. Should i put it on a file and call as a normal function, put it on a trait and use in the class that i want?
 
@FabioCosta You should have a database object which handles all those things
For all other objects.
It's called a Data Mapper.
 
what's your take on minimal password length, guys?
 
hai everyone i am convert html into xml using php but my xml shows like &lt;div class="space10"&gt;&lt;/div&gt;&#13; how to show the original html value like <div class="space10"></div>
 
12:44 PM
@MadaraUchiha i am using yii and it already has a "DAO" implementation, but for this issue it doesn't handle, so you are suggesting extending the standart database object and adding the impementation
 
@FabioCosta thanks a lot buddy
 
@srini you are welcome
 
@markus-tharkun Complexity is far more important than length
(that's what she said)
 
@DaveRandom complexity as in?
 
@FabioCosta my condolences
 
12:56 PM
the only complexity that matters is the number of possible chars per digit
 
also , i have reasonable suspicions that Yii is not implementing DAO
and, FYI , data mappers are not a form of DAO
 
@markus-tharkun This is a good read
 
@DaveRandom which, like me, contradicts what you said about complexity
it's all about length and size of char-pool
 
@tereško why?
 
1:01 PM
so my questions remains, what's a good minimal length to enforce
 
@tereško they call activeRecord i guess there maybe some difference
 
@FabioCosta , as someone who used Yii extensively , i consider to be a horrible piece of code
 
@markus-tharkun Read the whole thing. I guess complexity is not the right word, the point is that the length is not the only consideration, and increasing the number of distinct characters does not necessarily increase the entropy
 
@FabioCosta , active record , data mapper , repository , dao , unit-of-work are all different patterns for storage abstraction
 
I know all these things, my question wasn't theoretical but practical, what do you enforce
 
1:03 PM
@tereško i am finding nice so far. What you found so hideous ? You are using another thing know or build your own?
 
lets see : global state everywhere , configuration over conventions , rails-like perversion of MVC pattern , derelict code in core classes , tight coupling , poor code documentation
i think that covers the most of issues that i had with it
 
@tereško and you are using some framework that you like know?
 
no , i am not using any framework
 
ok, thanks for the opnions
 
I'm trying to know where with Facebook Oauth developers.facebook.com/docs/authentication/server-side I can make the returned email field obligatory
 
1:14 PM
You know, we really need to do an OOP Design Roundtable with @Gordon, @tereško, myself, and a few others from the community (Like Fabian and a few others)
7
 
it would solve nothing =/
 
No, but it would be interesting as hell
 
@Leigh there are some definitions of junk that you seem unaware of
 
@tereško which ones?
I'm aware of all the definitions there.. I actually edited my message to say that to make it less offensive to the idiot who was asking why his code was producing junk, someone may have starred the original ;)
 
@Leigh I know, I was really disappointed
 
1:24 PM
@ircmaxell i might be entertaining , but ultimately pointless. If you got only people who more or less agree on the basic ideas of OOP, it would be something like "comparing notes" , but if you got major developers from popular framework , it would turn into rage-inducing discussion about "what is oop and wht cake/ci/yii/zend/fuel does not use it"
( and, i think , this didn't come out in english )
 
Which is why it would be interesting
get 3 people from one side, 3 from the other
and shoot it out
off to work, later
 
@Sem It appears the discussions in the JS room are even more fatuous than I suspected it would be. They all seem to be swapping FB friendships.
 
Sooo... Framework Oriented Programming would be FOP... synonymous with fop
 
we need to get L in that acronym
 
but then it would lose the meaning of the word fop...
 
1:29 PM
Framework (Lazy) Oriented Programming?
 
yeah , and you would gain a less obscure word
it might be just my limited vocabulary , but i had no idea what "fop" meant
 
It's kind of archaic English, I wouldn't expect most native English speakers to know it.
 
well .. i'm not native , and i am ready to hind behind that excuse
 
Did you ever watch Blackadder?
 
@Leigh I was just about to say that lol
I am anaspeptic, frasmotic, compunctious even, to have caused you such pericombobulations.
 
1:35 PM
I was thinking of Lord Percy actually
but yes the dictionary episode is one of the good ones :)
 
I know, but that is one of my favourite quotes in general. Tim McInnerny is very good but I can't help feeling Hugh Lawrie would have been better for Lord Percy, he does camp/stupid a little better. Captain Darling is much more Tim McInnerny's sort of character.
Also make a note of the word "gobbledegook". I like it, I want to use it more often in conversation
 
hope to be there
 
Hi can anybody please tell me what is the command to get the total size of /home/user/public_html folder size in Linux ?? Please help
 
morning everyone
 
1:50 PM
@PeeHaa morning
 
@rajesh man du
 
I just typed du -ch | grep total
but its not printing anything for your suggestion i need to go to perticular(public_html) directory right?
 
@rajesh Just type du -sh /path/to/folder
 
its taking too much time
 
@ircmaxell i'd likely be annoyed by it quickly ;)
 
2:04 PM
sometime I am afraid whether its not deleting any file on the server?
 
Boo hoo, rm -rf /path/to/folder then, it'll make it run quicker
 
Hey. I want to flip the cases on a string. Not sure how to word it. So "ApplE" would become "aPPLe". Is there a builtin function for this?
 
@Leigh r u kidding me
 
@rajesh No
 
ur command will remove that directory
 
2:11 PM
@Keverw Probably not.
 
@rajesh You want your du command to run faster or not? :)
 
@Keverw you can probably xor it but I dont know how reliable that is
 
yes
now i am on that directory and now i run du -sh * this command to display sive of each folder
 
@Gordon for a-z and A-Z xor by 32 will work
@rajesh thats because you're using *
 
@Leigh but only for the range of printable chars, right?
 
2:25 PM
@Gordon ASCII alpha only
 
it is displayed upto 16K public_ftp but now it is stopped i think its calculating the size of public_html folder
 
@Gordon Yeah...
 
@Keverw it's a good question. check whether there is a dupe for it on SO or ask it if not
 
@Gordon All the more reason for me to come
 
this one would work too codepad.viper-7.com/aejmKv
 
2:36 PM
@Gordon could go nuts with preg_replace_callback maybe? :)
 
@Leigh oh, obviously. of course. nice
 
@ircmaxell was it you who requested the ability to xor strings? or was that even in already....
 
huh?
You can xor strings today...
I requested the ability to do shift operations on strings
 
2:43 PM
I just remembered reading about it somewhere... ahhh
In that case...
 
woah, awesome
 
Save your sarcasm til you're in the UK.
 
No, I wasn't kidding
I love bit fliddling things like that
 
Actually, knowing that the space character flips case is really useful in cryptoanalysis
when you have a re-used key, you can use it to find word boundries
 
2:48 PM
It was one of the exercises on class.coursera.org/crypto/class/index - 10 strings xor'd with the same key, and using knowledge of where the spaces were to recover the originals
 
2:59 PM
morning
 
@NikiC morning
 
oh hai there @PeeHaa
Haven't seen you in here recently
 
@Leigh interesting
 
@NikiC I've been AFK'ing in here. Recently started a new job and have to setup... well... basically everything :P Busy times :)
Good thing is I can do everything my way :D
 
5
Q: Switch character case, php

tarnfeldHow can i swap around the case of the characters in a string, for example: $str = "Hello, My Name is Tom"; After i run the code i get a result like this: $newstr = "hELLO, mY nAME Is tOM"; Is this even possible?

@Leigh can put your answer there
 
is there anyway to know if the connection is from a home ip or a VPS or dedicated?
 
@EugeneYousif No
 
3:31 PM
@DaveRandom what would be the best way to think about this?
 
@EugeneYousif The best way to think about it, is not at all.
 
@EugeneYousif In what sense? It is simply not possible to determine anything more specific than the country from which the traffic originated from an IP address (and even then it's relatively easy to spoof - ever heard of TOR?)
 
@tereško How did that get 3 upvotes?
 
@Gordon Interestingly, your referenced duplicate doesn't mention zero mq
 
@Leigh it doesnt claim to be complete. feel free to add ;)
 
I didn't even see it was your answer heh :)
 
@DaveRandom i have to think of a way, i need to implement a way to do it. no what is TOR?
 
5:01 PM
hello
 
Oh, I see lots of cv in here :D
 
:-X
 
hey there @ircmaxell
 
what's the good word?
 
I never understood that greeting :D
 
5:07 PM
how's it going?
 
5:25 PM
is anyone here good with maths?
 
@Olli everyone but @ircmaxell ;P
j/k
 
5:52 PM
any good reason twitter doesn't allow OAuth email field ('The Twitter API does not provide the user's email address as part of the OAuth token negotiation process nor does it offer other means to obtain it. ' dev.twitter.com/docs/faq) why are they differentiating from fb, g+ etc...?
seems like twitter doesn't want their client to be spammed by third-party apps
 
good evening!
 
@cyril you just answered your own question
 
I am a bit late for the cv-fest, you started early today
 
@Gordon What about me? :-P
 
Hey all! How are you doing?
 
6:29 PM
@Lusitanian yes, but that's a pain in the x, I'm trying to merge OAuth details with my app user account where email is the id
 
So, I was wondering...
I want to keep this objective.
Considering where the industry is going
 
Hi @Christian
 
Why should I keep using PHP when the industry seems to move to node?
 
Well depends on whom you talk about that, you should better pick those devs that actually have a year+ experience with node.js development in production.
 
Well, I've been using node for a while.
The major issue I have with it is that you need to keep spawning servers.
 
6:32 PM
Well, that's by design I'd say :)
Whereas some say: Design for Failure.
 
Sure sure
 
But compared with PHP, PHP is much easier for web dev.
 
@Lusitanian O.o
But my main concern is support.
It seems that support for node user-code is gaining up much more
 
6:35 PM
You mean you don't mind untestable ugly code? In that case, I don't know.
 
@Lusitanian Untestable? Google and Mozilla are actively maintaining some node packages.
^ that's what is worrying me tbh.
Google/Moz/Ms/etc never did as much with PHP.
 
Javascript is an accessible language that doesn't require much setup, PHP does. Javascript is trying to move toward a more friendlier language that anyone can pick up and use. PHP has and always will take a learning curve, that is far greater then Javascript.
 
@DyllenJamesOwens You mean two clicks to install WAMP is too much setup?
 
@Christian, I would hope your not using wamp for an actual production environment or you have an issue.
 
6:39 PM
@DyllenJamesOwens What the heck has that got to do with anything?
But the "easy install fact" doesn't hold.
Node's installer on windows is just as easy as wamp's. And on *nix it's pretty much the same with package managers
But back to your quote...you sound like you're trying to sell a product to someone... "accessible language"...huh?
 
Why use is a development environment if you have no use to publish it as a production environment? I think that has a "heck" of validity into that statement. The only true reason Chrome is pushing for large support of Node is that it's built on Chrome's JavaScript runtime...
 
Oh, and if you look at the new ecmascript spec...it's outright ugly and fearsome I would say.
 
@DyllenJamesOwens I'm not sure if that's the case really. jscript's integrated with windows and all, yet I didn't see MS doing the same thing Google is doing with Chrome/node.
@hakra O.o :D
 
@Christian what do you mean by that?
 
6:48 PM
@DyllenJamesOwens They're called emotes.
What I find amusing...and somewhat impressive... is the fact they're re-inventing thw wheel, that is PHP.
 
@Christian ruby/rails is gaining support also
 
@cyril It's been like that for ages. I don't see Big Companies TM embracing them as of yet.
Anyway. There are two reason I ended in this argument:
1. I've seen projects some big companies are developing/contributing to (in node)
2. I was considering rewriting and opensourcing an old project of mine; a PHP WebSocket Server library
I'm not sure it's worth to do (2), since it's been done in Node and no one seems to care about it in PHP.
 
why bring sand to the beach?
 
@DyllenJamesOwens Excuse me?
 
@Christian you must be somewhat kidding, but nevertheless. I'd say you could compare Ruby more with PHP than to compare PHP with node.js.
If you at all want to compare that. And I'd say the industry support for Ruby is pretty well.
 
6:55 PM
@hakra agreed.
 
@hakra Not as much as Node does. Maybe I'm just envious Mozilla released all those libs for node, instead of PHP.
 
Maybe, it sounds a bit like so :)
 
Well, I'd love to go back writing websites in PHP.
 
@hakra and also ^user[0-9]+$
 
It just takes too much node code to get it working. (of course, there's those shiny MVCrap node frameworks out there...)
So basically, I'm kind of stuck.
I can't move to node because it lacks certain features by design.
 
6:58 PM
never tried node.js, is it verbose?
 
And I can't keep on using PHP because The Big Guys think it's getting old.
@cyril Been using it for a couple of months now.
It requires more stuff to do basic things because of the way it works.
 
the bad thing is those nested callbacks
 
Quick example (PHP):

<?php echo 'Hello world'; ?>

And in node:

require("http").createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/html"});
response.write("Hello World");
response.end();
}).listen(80);
 
I guess it's hard to do a clean mvc or ... structure with them
 
Can someone suggest a nice WAMP package for windows 7 that is easy to install?
 
7:03 PM
I kind of hate all those closures, but I could live with 'em.
 
try easyphp but have no idea
 
thx 4 feedback, I suggested that wampserver.
 
@hakra Go with wampserver, it couldn't be easier.
 
or install a VM with linux
 
@vascowhite why ??? i think its easiest ...
isnt it?
 
7:17 PM
@RegisteredUser uh, yes, that's what I'm saying.
 
anyone uses Eclipse Juno, I'm having pain to make new tabs open next to the current tab and not at the end of list, this was like that in previous versions
o well this deserves a SO question, there's always a geek with the answer
 
haha, did I just read something about the industry moving to node?
 
8:12 PM
posted on September 24, 2012 by Henri Bergius

We're now making good progress at releasing the big 1.0 of Create.js soon. The various CMS integrations - from Symfony CMF to TYPO3, and possibly Drupal and many others - have brought us a lot of new features and bug fixes, and will ensure a wide international audience for this inline editing toolkit. To make things nice for the users, it is also important that Create.js speaks their language

 
stackoverflow.com/questions/12572249/… Has anyone encountered something like this before?
 
A question on StackOverflow? Yes, we see them here quite a lot.
 
orly
 
I REALLY don't understand why my question is getting voted to close.
 
Oh well, I think I got about as good of an answer as I'll get from the comments...
 
Hamster: voted to close as "too localized"
 
8:38 PM
@Hamster the question is pretty generic and, you haven't provided any idea's or code samples you have tried and failed at. S.O. is a great resources for when you're stuck you should probably try brainstorming in a chat room rather then asking a question.
 
"Planet PHP: Making Create.js more international" in php room...
 
@tereško you are "closing by user"?
 
@cyril Right... lol
 
@Jocelyn one user with many foolish question
so need to be closed
 
@Jocelyn sometimes. This case seemed appropriate .. critical state of
 
8:42 PM
ok
 
a new user with multiple low quality questions get automatically muted by system ( iirc, for a week , or till question have been fixed ) and gets notice from administration
 
a kind of temporary ban?
 
yes
 
there are too many one-time users posting very very bad questions :-/
 
8:43 PM
(it's now closed)
 
one-time users get vetted by separate system
 
o well looking closely Create.js uses GObject Introspection,it allow bindings, node.js does it also I think
 
i think you were looking for a different chat room , @cyril
 
@tereško no talking about :5489405
 
8:46 PM
@cyril maybe you would like a PHP+Javascript chatroom ;-)
 
The "Late Answers" review section is great at picking up low quality posts. I was flicking through it earlier, only about 1 in 20 was a worthwhile post.
 
@DaveRandom that's right. But everytime I go to this page, I stop quickly, this kind of reading is too depressing for me...
 
@cyril Yeh, pinging bots will get you a long way.
@Jocelyn I don't know, I enjoy issuing a well deserved downvote.
 
are bots message the same for everyone
 
has @Feeds been spamming again ?
 
@Jocelyn With screws? I generally just push them together a throw a big tablecloth over it, you can't tell it's not one table.
 
@DaveRandom I can lend you a screwdriver if you need.
 
@Jocelyn Any carpenter worth his salt will tell you that you put screws into wood with a hammer. You only need a screwdriver to take them out. So I'm told, although I think that's nonsense.
 
i think i will drink some tea and do some repwhoring
i need to work on that 20k goal
 
 
i would disagree
 
about the php routing, not being an expert but you can do without multiple htaccess
 
is that a statement , or are you from india ?
 
"not an expert"
 
gods below .. another individual which cannot comprehend that thing that one has in his mind tend to stay in said mind
why isn't he in my ignore-list , i wonder ... now .. that's much better
 
Dear history.js, thanks for wasting 4 hours of my time with a dumb design decision ( https://github.com/balupton/history.js/issues/210 ). I guess select was broken...
 
gonna have to write an answer =/
it's scary to see 4 people with relatively high rep providing such stupidity and ignorance
 
just give a status/permission level to User / Admin
 
9:33 PM
0
Q: Change close link color when user has already cast a vote

JocelynWhen I come across a question that in my opinion needs be closed, I click on the close link below the question, choose a reason and confirm. But sometimes, I already have cast a vote to close the question, and I realize that only when the choices' window displays: You have already voted to close ...

 
Hiho
 
Abends
Wie gehts?
 
All well so far, thanks :)
 
Winner.
 
10:15 PM
How are you doing?
(Are you going to be at phpnw?)
 
@edorian Unknown variable. Actually the unknown variable is bank balance. Hopefully, I like being made to feel stupid by you people on here, might as well do it in person.
 
heh
@PeeHaa , if you delete all his post , he wont end up banned
 
@PeeHaa Is cv-pls helper for Chrome under active development at the moment? I can see a few improvements that I feel could be made with not too much effort (mostly some intelligent xpath)
 
10:22 PM
Hi guys
 
@tereško Not? I thought that would get him banned for sure :(
 
i am not sure
 
@DaveRandom Active development == when I have time for it I'm more than happy to make improvements to it :)
Just make a ticket so I won't forget :)
Anybody knows what happens when somebody gets lots of deleted questions? If it prevents a ban please neglect my delv requests :)
 
you will have to ping thiefmaster in javascript room
 
Good one brbr
@DaveRandom wtf I didn't get any notifications about the PR's on cv-pls repo?
 
10:26 PM
@PeeHaa I guessed, since that doc one has been open for a month with no activity.
 
:| Looks like I got a backlog to go through :P
 
@PeeHaa Actually I am not sure I'm happy with that PR, it feels like half (or less) of a job now I look over it again.
 
@DaveRandom I can put it on hold if you want to improve it :)
 
@PeeHaa It's that break I don't like. I feel sure you could just exclude the pending messages in the XPath, I need make sure it won't have any adverse effects on anything else if we do that. I also want to add a loop to normalise the notifications if poss, I left my computer on at work over the weekend and when I came back it said 250+. Plus it would be nice to adjust it when questions get closed/deleted.
Also post should be declared at the head of the function, but that's just a minor tidiness oversight
 
10:38 PM
@DaveRandom I was also thinking about the option to "remove" notifications when they aren't on the screen anymore for the next version. I think I am going to go through the list and start doing some work on it when I am bored this weekend. I have a nice list of features and bugs waiting
 
@PeeHaa I definitely think a lot of those nasty nasty jQ selectors and the associated bloat can be replaced with some XPath queries. I was also wondering if there is something a little more intelligent that can be done instead of the 1 second DOM poll, maybe somehow hook into the SE ajax code by redefining a callback or something so you only look for changes when something on the DOM changes
 
@DaveRandom There is some API now I think that can watch for DOM changes in new versions of Chrome. Not sure though
@ircmaxell I like that idea. Don't forget to bring your gun
 

« first day (709 days earlier)      last day (243 days later) »