Skip to main content

Home/ PHP Programming/ Group items tagged programing

Rss Feed Group items tagged

qualitypoint Tech

You can start your own online Quiz program for getting more visitors - 0 views

  •  
    We are providing online Quiz program in various subjects (e.g php, mysql, html, english, aptitude, etc). It helps us to get more visitors to our web site. And,this Quiz program is used for evaluating knowledge of a candidate also. Today I have created a sales page for allowing the people to buy this Quiz program.
ptutorial

php tutorial - 0 views

  •  
    ptutorial, programming tutorial, php tutorial, php function, php example, c tutorial, c example, object oriented programming in php, error handling in php, array handling with sorting
qualitypoint Tech

Launching our Affiliate Program - Hurry to get 90% affiliate commission - 0 views

  •  
    Affiliate - This word gives some negative impression to most of us.But basically Affiliate program is an excellent marketing tool. Especially it will be very helpful for marketing digital products.\nhttp://qualitypointtech.net/affiliate/index.php\n
kunshtech

Benefits of Opting Laravel Application Development Framework - 0 views

  •  
    Laravel PHP framework is very popular for custom software development. Laravel Web Development provides some amazing features like fast extension ability, development speed, scalability, and quick institution along with this it provides better programming results as compared to other programming tools and so it is highly preferred by the developers. Checkout all amazing feature over here.
kolmasri kolmasri

Estoy Systems for Web Solutions - 0 views

  •  
    Estoy Systems for Programming all types of companies systems ,website design, e-marketing , web solution , and Programming your company system that would make your business is more easier with dealing to your employees and also your customer by a professional and invented ways as the international companies . regarding to the websites designing, e-marketing, web solution, with Estoy Systems www.eystm.com start booking your web site and then marketing this site and raise the degree of it at the global search engines SEO, and if you don't have a website you may wish also to enjoy our plans of e-marketing features , we announce your products and your services by a new e-marketing ideas, which would raise the value of your company's profitability by increasing the customers you have but even doubling their number.
jdr santos

PRADO PHP Framework - 0 views

  •  
    PRADO (TM) is a component-based and event-driven programming framework for developing Web applications in PHP 5.
  •  
    PRADO (TM) is a component-based and event-driven programming framework for developing Web applications in PHP 5.
ptutorial

Php Introduction | Programming Tutorial | pTutorial | PHP Tutorial - 0 views

  •  
    Free php tutorials,examples for web building,php programming,php coding, What is php,Features of php,characteristics of php,learn php step by step,php example,learn php,learn php online
Mr Ronny

PHP - Most Preferred Programming Language - 0 views

  •  
    PHP is a wonderful server side scripting language for developing dynamic web pages. PHP is open source and that is the reason why PHP is the widely using in the web application development. PHP is very easy to install. Today more than 40% of web applications have been written in PHP.
Raúl - [^BgTA^]

30+ Firefox Add-ons for Web Developers & Designers - 0 views

  •  
    Las 30 mejores extensiones para Firefox:


    Aardvark - A cool extension for web developers and designers, allows them to view CSS attributes, id, class by highlighting page element individually. chromEdit - Alter the appearance of any page by editing CSS and Javascript files with this extension. CSSMate - Firefox extension to edit CSS files.
    CSS validator - Check the validity of your webpage using this CSS validator extension. CSSViewer - See the CSS properties of page elements with this extension.
    EditCSS - Play around with loaded CSS, Web Developer extension also provides this functionality.
    IE Tab - Designers and developers can view their CSS projects on Internet Explorer using this extension.
    Style Sheet Chooser II - Users can pick and choose alternate style sheets for a website. FireBug - A console for debugging JavaScript, HTML, and Ajax code snippets. HTML Validator - Cool extension to validate web pages with HTML standards of W3C. JavaScript Debugger - JavaScript debugging extension enables a strong debugging environment.

Raúl - [^BgTA^]

Build a better Web site by understanding floated elements in CSS - Program - CSS - Buil... - 0 views

  •  
    Build a better Web site by understanding floated elements in CSS
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.
qualitypoint Tech

Added more questions in our online Quiz - 0 views

  •  
    We have added few more questions for our our free online quiz program.\n\nThe new questions are added under the below topics/subjects.\n\n1.Javascript\n2.Dot Net\n3.Aptitude
jdr santos

WinBinder: The native Windows binding for PHP - 4 views

  •  
    WinBinder is a new open source extension for PHP, the script programming language. It allows PHP programmers to easily build native Windows applications. Click here for more information.
fastidioustec

Custom Web Application Development Company - Fastidious Technologies - 0 views

  •  
    Fastidious Technologies We develop custom applications in all major programming languages, Our development and support teams are maintained all kinds of maintenance. We offering the best custom web application design and development services
paradiso solutions

Software Product Development - 0 views

  •  
    We can take on your projects at any stage in the development process, even if it means that critical measures need to be taken to increase capacity and meet every deadline.
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.
1 - 20 of 125 Next › Last »
Showing 20 items per page