Skip to main content

Home/ PHP Programming/ Group items tagged engine

Rss Feed Group items tagged

Syntacticsinc SEO

Effective Search Engine Optimization - 1 views

I own an online bakery business that specializes in delicious customised cakes. I have this very well made website for my business and anyone visiting the online bakery will truly, well, salivate. ...

search engine optimization

started by Syntacticsinc SEO on 24 Sep 11 no follow-up yet
jdr santos

Home - Dwoo - a PHP Template Engine - 1 views

  •  
    "Dwoo is a PHP5 template engine which is (almost) fully compatible with Smarty templates and plugins, but is written from scratch for PHP5, and adds many features. "
qualitypoint Tech

Job opening for freshers (Engineering/MCA) |QualityPoint Technologies - 0 views

  •  
    Currently we are looking for Software Engineers. Desired Candidate profile: * Having Good Technical Knowledge and willing to work hard for learning new technologies. * Team work. * Sincere * Good communication skills. * Knowledge in PHP/mySql, C# is preferred. * Willing to work in any technology. * Job location :Chennai and Ottapidaram (Tuticorin District) * Experience 0-1 year
clariene Austria

Don't Just Get A Website… Get Discovered! - 3 views

If you're not being found on the search engines, then it's likely you didn't have an SEO web site design. A lot of web designers out there know how to make great looking websites that Google can't ...

started by clariene Austria on 30 May 12 no follow-up yet
clariene Austria

Don't Just Get A Website… Get Discovered! - 2 views

If you're not being found on the search engines, then it's likely you didn't have an seo website design. A lot of web designers out there know how to make great looking websites that Google can't s...

started by clariene Austria on 04 Jun 12 no follow-up yet
BluEnt Global

The Truth About Your SEO Contract That Could Save You Big Dollars - 0 views

  •  
    BluEnt reveals the top three factors impacting search engine optimization contract. Achieve the highest possible ROI with the best SEO pricing plan.
Raúl - [^BgTA^]

Dmytro Shteflyuk's Home » Blog Archive » Zend Framework: Using Smarty as temp... - 0 views

    • Raúl - [^BgTA^]
       
      Esta me parece una de las mejores soluciones, es decir, integrarlo en las Views de Zend. Una vez definida esta nueva View 'Smarty', solo hay que: $reg = Zend_Registry::getInstance(); $reg->set('Smarty', new My_Smarty_View()); ... para registrarlo, y podremos llamar desde cualquier .php a smarty de la siguiente manera: $reg = Zend_Registry::getInstance(); $reg->get('Smarty')->assign('foo','bar'); $reg->get('Smarty')->render('foo'); o bien: $smart = $reg->get('Smarty');
  •  
    Integrando Smarty en Zend Framework
  •  
    Integrando Smarty en Zend Framework
Mickle jori

Website Design Company India | Indian Web Designers | Flyers Design India | Brochure De... - 0 views

  •  
    Karmick Solutions is a leading Website Design Company, offering services towards web designs, web application development, E-commerce Solutions, Offshore staffing, Offshore Outsourcing, ERP Softwares, Multimedia and Search Engine Optimization.
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.
  • once you’re into maintenance mode, there are really no excuses. Because you really know what all your X’s and Y’s are
  • I freely admit that this is not really truly TDD
  • 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

Job Openings for Web Development(PHP/MySQL) - 0 views

  •  
    Currently we are looking for Software Engineers to work in our Web Development Projects.
shinele lee

Search engine optimization services provider - 2 views

Our SEO services helps small to large scale business find more clients and customers! Use our proven internet marketing strategies without risk. Guaranteed. To know more about SEO services visit us...

started by shinele lee on 17 Oct 12 no follow-up yet
paradiso solutions

PHP | Open Source Development - 0 views

  •  
    Highly powerful open source development is a specialty of Paradiso Solutions for different industry verticals such as real estate, finance, engineering, social networking, hospitality, ecommerce, leisure and many more. Our PHP development team has vast expertise in PHP/MySQL based programming.
clariene Austria

Develop seo website - 3 views

We know how expensive websites can cost. And we know how expensive SEO can be. We don't want you to get into overdraft to get a website, but we don't want to design a low quality website as well. S...

lead generation seo web design

started by clariene Austria on 08 May 12 no follow-up yet
clariene Austria

Seo web designer - 1 views

If your website is not being listed on search engines, then you're missing out on a lot of business. Google has already overtaken yellow pages when it comes for searching for local business provide...

started by clariene Austria on 09 May 12 no follow-up yet
clariene Austria

Seo web designer - 0 views

If your website is not being listed on search engines, then you're missing out on a lot of business. Google has already overtaken yellow pages when it comes for searching for local business provide...

started by clariene Austria on 09 May 12 no follow-up yet
clariene Austria

Link Building Services Can Boost Your Website's Traffic and Increase Sales - 1 views

Link building services can help your website get a lot of traffic, which is one of the most important goals for any website owner. As most people know, building back links is critical to the succe...

started by clariene Austria on 27 Jul 12 no follow-up yet
sdiwc conferences

TAEECE2013 International Conference in Turkey | SDIWC Conferences - 0 views

  •  
    You are invited to participate in The International Conference on Technological Advances in Electrical, Electronics and Computer Engineering (TAEECE2013) that will be held in Konya, Turkey on May 9-11, 2013. The event will be held over three days, with presentations delivered by researchers from the international community, including presentations from keynote speakers and state-of-the-art lectures.
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.
Raúl - [^BgTA^]

Developer's open search engine - 0 views

  •  
    Buscador para desarrolladores
Ace Dee

SEO Services that Exceeds Expectations - 1 views

Oracle Digital impressed me greatly with their content, knowledge and passion for the industry. After following Oracle Digital for three months and liking what I saw, I approached them for an initi...

SEO Perth Brisbane

started by Ace Dee on 21 Feb 11 no follow-up yet
1 - 20 of 24 Next ›
Showing 20 items per page