Comments for Systems Architect https://systemsarchitect.net Fri, 17 Mar 2017 08:09:29 +0000 hourly 1 http://wordpress.com/ Comment on Integrate PHP application with Solr search engine by Arshad https://systemsarchitect.net/2013/03/09/integrate-php-application-with-solr-search-engine/comment-page-1/#comment-1925 Fri, 17 Mar 2017 08:09:29 +0000 http://systemsarchitect.net/?p=278#comment-1925 Nice article, very use full, I have done for my Magento application, Thanks

Like

]]>
Comment on Automated backups to Google Drive with PHP API by annoyingmouse https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-1242 Sat, 23 Apr 2016 06:20:11 +0000 http://systemsarchitect.net/?p=612#comment-1242 Nice article but I was getting annoyed with the lack of images. Ran this as a snippet in Chromes Source pane of it’s inspector to recover them:

Array.prototype.forEach.call(document.querySelectorAll(“.no-line”), function(el, i){
var img = el.querySelector(“img”);
img.setAttribute(“src”, el.getAttribute(“href”));
img.setAttribute(“width”,”100%”);
});

Which might help someone else.

Like

]]>
Comment on Performance benchmark of popular PHP frameworks by Peter Masterson https://systemsarchitect.net/2013/04/23/performance-benchmark-of-popular-php-frameworks/comment-page-1/#comment-681 Wed, 02 Dec 2015 22:20:50 +0000 http://systemsarchitect.net/?p=642#comment-681 You should also report TTFB for the frameworks. In my experience, Phalcon’s TTFB has been as much as 95% lower than a framework like Laravel, and as another gentleman posted above, TTFB is pretty much the measurement of responsiveness in a website. If the page renders in 10ms, it doesn’t matter to the end user if it took 300ms to start rendering.

Like

]]>
Comment on Is Phalcon the promised land for PHP? by Jonny https://systemsarchitect.net/2013/05/09/is-phalcon-the-promised-land-for-php/comment-page-1/#comment-645 Sat, 28 Nov 2015 05:49:37 +0000 http://systemsarchitect.net/?p=758#comment-645 It is easy in fix bug in C code (e.g. Phalcon) than in Laravel 🙂

Like

]]>
Comment on A quick guide to writing good code by Lukasz Kujawa https://systemsarchitect.net/2015/02/03/a-quick-guide-to-writing-good-code/comment-page-1/#comment-144 Wed, 04 Feb 2015 09:28:59 +0000 http://systemsarchitect.net/?p=1088#comment-144 This is a very interesting point, thank you for bringing this up. I can only agree, one should be careful to not overdo this principle and apply it rather during re-factoring than the initial coding.

Like

]]>
Comment on A quick guide to writing good code by Hui Zhou https://systemsarchitect.net/2015/02/03/a-quick-guide-to-writing-good-code/comment-page-1/#comment-141 Tue, 03 Feb 2015 22:22:10 +0000 http://systemsarchitect.net/?p=1088#comment-141 ### Single responsibilities principle

It is fine in principle. However, in practice there are two problems. First, one do not have a narrow problem to begin with. The natural process is to have a general problem, and as we work, we factor into smaller and smaller problems. So this principle is rather the end results of re-factoring. Without this context, people often try to factor their problems over jealously and over maturely, resulting in wrong factors and obscuring the bigger problems. Refactoring is good process from top down, not bottom up. To re-organize the existing factors often is a difficult and costly process, especially after these factors being fully integrated into a web.

Second, it is not always better to have the code factored. Each factor does not come free, it comes with its wraps and connectors, scopes and interfaces. So the refactoring process is really a constant balance of cost/benefits, the criterion being the manageability on the comprehension and maintenance. I emphasize balance here, treating this rule as a golden rule is responsible for some of the nightmares.

Like

]]>
Comment on Automated backups to Google Drive with PHP API by Ionut Bilica https://systemsarchitect.net/2013/04/14/automated-backups-to-google-drive-with-php-api/comment-page-1/#comment-39 Sun, 28 Sep 2014 09:54:34 +0000 http://systemsarchitect.net/?p=612#comment-39 Hi,

First of all, thanks for this great script, I’ve been using it for a year now. But now I’ve hit the wall: “The user has exceeded their Drive storage quota”.
The script never quite worked as I expected: once every couple of days it would create the backup folder again, even though there already existed a folder with that name, and all new files were updated to that folder. After a couple of months there were many backup folders shared with me. I started to delete them (delete the folders, not each file). This might have been a bad idea.
Anyway, now the script is not working at all, because the drive storage quota has been exceeded. Is there any solution to this? Is there a way for me to log into that account and clean it to free up space?

Thanks

Like

]]>
Comment on Is Phalcon the promised land for PHP? by Zea https://systemsarchitect.net/2013/05/09/is-phalcon-the-promised-land-for-php/comment-page-1/#comment-125 Sun, 07 Sep 2014 09:17:43 +0000 http://systemsarchitect.net/?p=758#comment-125 Phalcon is the best PHP framework by far, IMO. I’ve tried Laravel, but it’s just like rails copy for PHP.

Like

]]>
Comment on How to improve PHP programming skills by Antonio Garcia https://systemsarchitect.net/2013/07/27/how-to-improve-php-programming-skills/comment-page-1/#comment-137 Wed, 03 Sep 2014 15:06:56 +0000 http://systemsarchitect.net/?p=846#comment-137 For HTML/CSS
Learn to Code HTML & CSS (learn.shayhowe.com/)

For Javascript
medium.com/javascript-scene/learn-javascript-b631a4af11f2

My 2 cents

Like

]]>
Comment on Performance benchmark of popular PHP frameworks by Zack https://systemsarchitect.net/2013/04/23/performance-benchmark-of-popular-php-frameworks/comment-page-1/#comment-109 Tue, 22 Jul 2014 15:55:04 +0000 http://systemsarchitect.net/?p=642#comment-109 Would love to see MODX tossed in the mix. Maybe you could run both Evolution and Revolution versions?
MODX is interesting in that all the content is stored only in database (though it doesn’t have to be), so using database performance tools (versus file system tools) can really speed it up.

Thanks

Like

]]>