Skip to main content

Home/ PHP Programming/ Group items tagged Experts

Rss Feed Group items tagged

experttalk

Build High Quality Applications Quicker With PHP Experts - 0 views

  •  
    There are PHP experts who possess all technical skills and extensive experience to build robust and high-performing applications according to the specific needs of clients. These experts can also assist you throughout PHP development and execution process.
seth kutcher

The Resident Computer Repair Tech Expert - 1 views

The museum I run has been a family heritage for years. The computer system we have here has been running perfectly for our staff and visitor use. Our resident computer repair tech expert has left u...

computer repair tech

started by seth kutcher on 17 Aug 11 no follow-up yet
experttalk

Drupal Experts - 0 views

  •  
    Hire Drupal developers or Drupal consultants for Drupal software development and design services. When you hire Drupal Experts at OSSCube you will get all the benefits under one roof like customization, migration and consulting.
experttalk

PHP Experts - 0 views

  •  
    OSSCube is a leading PHP software development company specializes in offering custom product development and enterprise PHP solutions for businesses globally.
samantha armstrong

FixComputerpProblemsSite Surely Knows How to Fix Computer Problems! - 1 views

I was having problems with my laptop before. Good thing FixComputerpProblemsSite helped me fix it. And they are really the experts when it comes to solving any computer related issues. They can eas...

fix computer problems PHP programming framework open source web development MVC webdesign design mysql

started by samantha armstrong on 07 Jun 11 no follow-up yet
seth kutcher

My Husband Is Happy With Their PC Repair Services - 1 views

My husband was so frustrated the other night because his laptop was not working properly. I told him to calm down and we will call Remote PC Repair Now. I told them they are the expert when it come...

remote PC repair

started by seth kutcher on 08 Aug 11 no follow-up yet
Soniya Patel

The PHP web application has many advantages - 0 views

  •  
    We offer web application with PHP for the development of dynamic database driven website. We have a team of experts, who are ever ready to build an innovative web application development with PHP.
shai edrote

They Are the Best Computer Tech Specialists - 1 views

I called Fix Slow Computer Today because I wanted them to fix slow computer fast. I need their expert computer tech specialist to help me with my slow PC problem. I heard they are the best and trus...

Fix Slow Computer

started by shai edrote on 13 Jul 11 no follow-up yet
James Stewart

Fast and Accurate Computer Help to the Rescue - 1 views

I was about to start my presentation when my computer to hung up on me. It was really a big inconvenience for me, not to mention very embarrassing. Good thing I was able to renew my subscription to...

computer technical help

started by James Stewart on 13 Oct 11 no follow-up yet
fastidioustec

Top php web development - 0 views

  •  
    Fastidious Technologies gives expert PHP Development, picking up mastery from years of involvement in PHP web development and PHP application development.
jimmy brion

TOP 10 PHP Frameworks 2012 - 0 views

  •  
    We have team of PHP Framework experts, capable to deliver projects on time with high coding standards. If you need our developers assistance for your PHP projects, Inquiry for free quotes now. We will help you Here is list of TOP 10 PHP Frameworks 2012 Top 10 Hot PHP Framework You can hire any above framework developers from vEmployee.
Sarah HL

ongoing · Test-Driven Heresy - 0 views

  • As a profession, we do a lot more software maintenance than we do greenfield development.
  • the deep-TDD rules: ¶ Never write code until you have a failing test. Never write any more code than is necessary to un-fail the test.
  • we do way more maintenance than initial development. And in my experience, the first-cut release of any nontrivial software is pretty well crap.
  • ...38 more annotations...
  • But to do that well, you absolutely must have enough test coverage that you just aren’t afraid to rip your code’s guts out
  • I always end up sketching in a few classes and then tearing them up and re-sketching, and after a few iterations I’m starting to have a feeling for X and Y.
  • I freely admit that this is not really truly TDD
  • once you’re into maintenance mode, there are really no excuses. Because you really know what all your X’s and Y’s are
  • Writing the tests points out all the mistakes you might make in signatures, prerequisites, etc. If the tests are too hard to make then you know that your API will be too hard to use, you're doing it completely wrong, and may as well pause for a rethink.
  • While the approach you advocate makes sense, it does require professionalism, not just from the developer but from management too.
  • the person left to maintain the code isn't the person who wrote it, leaving the maintainer with an unholy mess to untangle. Getting unit tests into such code is a monumental task.
  • he failure to address how unit tests can be introduced to an existing non unit-test codebase. (i.e. go from non-TDD to TDD)
  • I feel the TDD community only wants to focus on greenfield projects and has ignored maintenance/legacy issues. Which is strange when as you say code spends most of it's time in maintenance
  • The thing is that as long as the project is small you really don't see the benefits of TDD. I've done a couple of small projects and never had to go back to them ever again
  • Never use mocks unless you are mocking an interface that will almost never change
  • You are writing the client code (in the form of a test) so you are thinking how the worker code will be used. What is its public interface and what do you want it to do when it's called
  • From: Tathagata Chakraborty (Jun 24 2009, at 07:31)TDD is useful in another situation - in a commercial setting and when detailed specification documents have already been created by say a technical expert/architect. In this case you don't have to do a lot of designing while coding, so you can start off with the test cases.
  • writing the tests *first* is that it helps keep your code focused on exactly what it's meant to do, and no more
  • When work on production code begins, most of the code should fall into the categories of things that are not to be tested.
  • In theory, TDD is a great idea. The problem with TDD can be expressed in one word: money.
  • One approach to the unknown X and Y problem that I've been using recently has been to pretend that class X has been written already, and then write code that uses this pretend X object/API. I usually write this directly in the file that will become my unit test. Since X doesn't exist, I'm allowed to call whatever methods I want and pretend it all works. Once I'm satisfied with how it all looks, I cut and paste everything into a bunch of failing tests.
  • I get really bored adding tests to code that already runs
  • the seductive TDD trap
  • religious zealots
  • There is nothing wrong with building tests after you have built your product.
  • that goes a long way towards taking software development from a form of artisanal craftsmanship to a real engineering profession.
  • using tests to drive development cripples innovation, dramatically slows development
  • It always seem to me to be a codified form of reverse engineering, or at least a way to force the programmers into looking at their code from two separate angles at the same time.
  • If you're just adding tests at the end, then it's normal unit-testing, isn't it?
  • I do realize that this type of exercise might help younger coders in getting better structure, they do often rush in too quickly and focus more on the instructions than the abstractions.
  • TDD is test-driven *design*
  • He said he didn't write tests in cases where it would have taken him several hours to get a working test for a small piece of code.
  • In some applications, objects are self-contained, activities are sequential, and algorithms are tricky
  • I've seen cases where people have wrecked the architecture of systems in the name of making them testable... But have never written the tests.
  • Yes, it's possible to make peace with testability, and in the best situation, testability can improve the architecture of a program, but it can also lead people away from highly reliable and maintainable KISS approaches.
  • Like any infrastructure, it is always beneficial to provide unit testing. The most benefit is derived from installing it as early on in the project as possible.
  • The value of an untested feature, to a client, is ... zero. So, it doesn't matter how many of these you have rattled off in the past week, your net throughput is effectively... zero."
  • You can see in this thread the word "professionalism" (substitute "morality" with little gain/loss of substance) and even "sin" (used in jest, but not really!)
  • if I delay writing unit tests until after all the units are working together then because the system "already works" my subconscious enthusiasm for writing unit tests falls markedly, and so their quality and coverage fall
  • Experience teaches that if I generate that output by hand (1) it takes *much* longer (2) I almost always get it wrong. So I often write the code, get its output, carefully check it (really...) and then use it as the correct result.
  • My main objections to TDD are: 1) it promotes micro-design over macro-design and 2) it's hard to apply in practice (i.e. for any code that is not a bowling card calculator or a stack).
  • the tests are just a persistent artifact of the exploratory coding I've already done.
shayne mosley

Getting Used to Help and Support - 1 views

I have never been used to getting help and support with all my problems. But when it comes to computer problems, I am glad Computer Tech Help And Support is helping me out. Whenever my PC is in tr...

help and support

started by shayne mosley on 07 Jun 11 no follow-up yet
hansel molly

Great Remote Computer Support Services - 3 views

Computer Support Professional offers unrivaled online computer support services that gave me the assurance that my computer is in good hands. Every time I needed the help of their computer support ...

computer support

started by hansel molly on 06 Jun 11 no follow-up yet
anonymous

Getting Used to Help and Support - 0 views

I have never been used to getting help and support with all my problems. But when it comes to computer problems, I am glad Computer Tech Help And Support is helping me out. Whenever my PC is in tr...

help and support

started by anonymous on 12 May 11 no follow-up yet
James Stewart

Thank Doctor Cleanduct for the Cleaner Air We Breathe - 2 views

I have a sister who is suffering from asthma. So when she visited my house she was so happy because she said she can breathe easily. So I told her it was because I had my HVAC system cleaned regula...

ducted heating cleaning

started by James Stewart on 22 Sep 11 no follow-up yet
Rem PC

The Best Remote PC Support I Ever Had - 1 views

The Remote PC Support Now excellent remote PC support services are the best. They have skilled computer tech professionals who can fix your PC while you wait or just go back to work or just simply...

remote PC support

started by Rem PC on 29 Sep 11 no follow-up yet
seth kutcher

Remote Online PC Support I Can Rely On - 1 views

I availed of the remote computer support services of Remote Computer Support Site because their services are proven to be very fast and accurate. They have expert online computer tech professiona...

remote computer support

started by seth kutcher on 12 Sep 11 no follow-up yet
1 - 20 of 29 Next ›
Showing 20 items per page