Jump to content

nadeemshafi9

Members
  • Posts

    1,245
  • Joined

  • Last visited

Everything posted by nadeemshafi9

  1. Doing lots of things quickly with minimal effort gives you a greater return, just as with this interview that the topic is about, if you arrange many interviews for this type of job it will sort you out. Nothing is set in stone, things change, the driver behind that change is us. You do a little bit of lots of things and you get the bigger picture. In order for you to do lots of things you must look past small snags and glitches wich you can come back to one you are established, nothing means anything we are just floating on a ball falling throgh space and the ball itself is dying. Yeh there may be a heaven or hell if you look at teh bigger picture, still dosent mean that they mean anything to anyone apart from us. Just like having many interviews wont mean anytjing to the individual interviewers but they will mean somthing to us. doing more in a short space of tiem gives you a varied perspective, and to achive more you must make sacrifice. Sacrifices like knowing your first interview is going to be shit, knowing you cant be assed to attend an interview but you have arranged it, knowing the interviewer is talking crap but you stay and take it. These things let you know what the bigger picture or teh cloud of the thoght is that you need to engineer a scheme a plan that encompases a answer to most of these things and hey presto. I often feel sorry forpeople who have had to leach upon one employer for over half a decade, but these situations most of us will get to, i have a almost cirtain 5 year contract now, but teh people i work with have been there 5 years and they have missed out on a varied set of technologies wich i have experienced and now i have experienced teh tech in the current place and was able to map it out quickly and add many enhancments to the organisation eg tools and and also gained much more experience.
  2. theirs no need for that, i mean if you do use it, its built into JavaScript, but you will have to parse it into php using regext and all variables after it, they may conflict with the rest of php's get vars. i mean the only benefit i can see in this is to separate variables destined for java script fronted from php variables in the url, i mean for an ajax interface it may be usfull. but arnt the variables after a hash related to anchors ?
  3. what do you mean by hashing , hashing means when you hashify or encrypt url variables.
  4. There is no free version I am aware of. Single user licence is only $30 i downloaded this regexbuddy once with a owl as the logo and it was prety hard to use, and most features were blocked off, but i can definatly see the advantages, il probs buy it at some point put it on my laptop and then my regex will be better than the companies lol.
  5. now i know who to ask for links, is your mind set out like a web ???
  6. is the free version ok to use ?
  7. i think were a bit confused here, you either use the server on your laptop or you eitheruse the server on your usb drive, to us ethe laptop servers just start them up. to use the usb servers its more complex. just go to your laptops apache and find httpd.conf and go to root and another setting with the same as root setting and modify it using the path from explorer window to your usb drive.
  8. Now seriously man, how much time do you spend on looking for misspelled variable names? before i write it, if i have doubts i paste it into google and then presto, cant let my team mebers know i type crappy lol
  9. iv been looking for that kinda stuff from wikies, i mean i have loads of ideas that just go miss because i forget them and any developments on them general ideas for the wold, lol somone should have a blog for that hahaha
  10. are you going to be able to fit everything on there ? i mean a developer has alot to state bulleted etc. my site was a wiki lol, is that drupal your using ????
  11. its only 1 line after no brackets that gets executed am i right ?
  12. im gonna recommend that to my supervisor. oh and guys you should use Navicatlite for MySql postgres and oracle etc its free, the paid for version is pretty good, speeds up development, slightly off topic but still.
  13. maybe, but subversion i have not encountered a single problem with yet, its just plain old commit commit
  14. I've been using CVS for over a year now and can only really think of 1 -perhaps- bug. It's just pretty limited I think. bugs i found where if you commit a file without adding it the cvs gets corrupt, if you commit a folder without adding it then individual adding each file same prob. subversion is just awesome, just has no issues.
  15. Make sure to use Subversion NOT CVS, CVShas many bugs, install it on a Linux machine and then most Zend studio, Netbeans and eclipse will plug straight into the server.
  16. http://www.funatiq.com your link http://www.funatiq.com/images/100-history-personalities.jpg dint work for me man 500 server error
  17. u need to install and work out how to use PECL http://www.pecl.php.net/
  18. if(count(getChildCategories($categories,$catId))>0) echo "have values"; else echo "empty"; if you miss out the curly brackets you must use the same line
  19. Example 1. GET example <?php $r = new HttpRequest('http://example.com/feed.rss', HttpRequest::METH_GET); $r->setOptions(array('lastmodified' => filemtime('local.rss'))); $r->addQueryData(array('category' => 3)); try { $r->send(); if ($r->getResponseCode() == 200) { file_put_contents('local.rss', $r->getResponseBody()); } } catch (HttpException $ex) { echo $ex; } ?> Example 2. POST example <?php $r = new HttpRequest('http://example.com/form.php', HttpRequest::METH_POST); $r->setOptions(array('cookies' => array('lang' => 'de'))); $r->addPostFields(array('user' => 'mike', 'pass' => 's3c|r3t')); $r->addPostFile('image', 'profile.jpg', 'image/jpeg'); try { echo $r->send()->getBody(); } catch (HttpException $ex) { echo $ex; } ?>
  20. http://uk2.php.net/manual/en/function.http-request.php
  21. maybe, lets look around for another way i will get back to you brb
  22. i wonder what u do with the smallest camera lol hahahhaah
  23. type echo "hello" before everything, and see if you get a result what kind of system is this, an in house system, is this something you built or is this a third party software,framework ?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.