<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.officience.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Quang+Hi%E1%BB%83n+Tr%E1%BA%A7n</id>
	<title>Officience - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.officience.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Quang+Hi%E1%BB%83n+Tr%E1%BA%A7n"/>
	<link rel="alternate" type="text/html" href="https://wiki.officience.com/Special:Contributions/Quang_Hi%E1%BB%83n_Tr%E1%BA%A7n"/>
	<updated>2026-05-02T21:51:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.officience.com/index.php?title=Magento&amp;diff=82</id>
		<title>Magento</title>
		<link rel="alternate" type="text/html" href="https://wiki.officience.com/index.php?title=Magento&amp;diff=82"/>
		<updated>2015-07-15T04:02:48Z</updated>

		<summary type="html">&lt;p&gt;Quang Hiển Trần: Created page with &amp;quot;Installation check list http://devdocs.magento.com/guides/m1x/install/installer-privileges_after.html&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Installation check list&lt;br /&gt;
http://devdocs.magento.com/guides/m1x/install/installer-privileges_after.html&lt;/div&gt;</summary>
		<author><name>Quang Hiển Trần</name></author>
	</entry>
	<entry>
		<id>https://wiki.officience.com/index.php?title=Main_Page&amp;diff=28</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.officience.com/index.php?title=Main_Page&amp;diff=28"/>
		<updated>2015-05-04T04:16:06Z</updated>

		<summary type="html">&lt;p&gt;Quang Hiển Trần: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;MediaWiki has been successfully installed.&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the m [//meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
* [//www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
== Formatting ==&lt;br /&gt;
https://www.mediawiki.org/wiki/Help:Formatting&lt;/div&gt;</summary>
		<author><name>Quang Hiển Trần</name></author>
	</entry>
	<entry>
		<id>https://wiki.officience.com/index.php?title=PHP&amp;diff=27</id>
		<title>PHP</title>
		<link rel="alternate" type="text/html" href="https://wiki.officience.com/index.php?title=PHP&amp;diff=27"/>
		<updated>2015-05-04T04:09:14Z</updated>

		<summary type="html">&lt;p&gt;Quang Hiển Trần: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Php Checklist =&lt;br /&gt;
* No syntax/runtime errors and warnings&lt;br /&gt;
* No deprecated functions&lt;br /&gt;
* No dead code&lt;br /&gt;
* Check comments for file/class/function, the comments should be clear&lt;br /&gt;
* Each function is doing only a single thing&lt;br /&gt;
* A method should not be larger than 40 lines of code&lt;br /&gt;
* Initialize the variable before using it in a function&lt;br /&gt;
* No public class attributes&lt;br /&gt;
* Use constants in the left hand side of the comparison&lt;br /&gt;
* No mix the php code and template (view).  A view should not contain any business logic code&lt;br /&gt;
* Use single quote ( ‘ ) for php string without double quote (&amp;quot;)&lt;br /&gt;
* Always customize a general exception with a custom message&lt;br /&gt;
* All the exceptions correctly shows correct / understandable error messages to the user&lt;br /&gt;
* Never ever put up the error information of system crash that expose the internal  behavior of the system.&lt;br /&gt;
* Uniform a coding standard through a project (ex PHP Code Sniffer)&lt;br /&gt;
* No magic numbers, should be define as a constant with clear comments&lt;br /&gt;
* Should have unit test with 100% coverage&lt;br /&gt;
* Always commit /Rollback database transaction at the earliest&lt;/div&gt;</summary>
		<author><name>Quang Hiển Trần</name></author>
	</entry>
	<entry>
		<id>https://wiki.officience.com/index.php?title=PHP&amp;diff=26</id>
		<title>PHP</title>
		<link rel="alternate" type="text/html" href="https://wiki.officience.com/index.php?title=PHP&amp;diff=26"/>
		<updated>2015-05-04T03:59:10Z</updated>

		<summary type="html">&lt;p&gt;Quang Hiển Trần: /* Php Checklist */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Php Checklist =&lt;br /&gt;
* No syntax/runtime errors and warnings&lt;br /&gt;
* No deprecated functions&lt;br /&gt;
* No dead code&lt;br /&gt;
* Check comments for file/class/function, the comments should be clear&lt;br /&gt;
* Each function is doing only a single thing&lt;br /&gt;
* A method should not be larger than 40 lines of code&lt;br /&gt;
* Initialize the variable before using it in a function&lt;br /&gt;
* No public class attributes&lt;br /&gt;
* Use constants in the left hand side of the comparison&lt;br /&gt;
* No mix the php code and template (view).  A view should not contain any business logic code&lt;br /&gt;
* Use single quote ( ‘ ) for php string without double quote (&amp;quot;)&lt;br /&gt;
* Always customize a general exception with a custom message&lt;br /&gt;
* All the exceptions correctly shows correct / understandable error messages to the user&lt;br /&gt;
* Never ever put up the error information of system crash that expose the internal  behavior of the system.&lt;br /&gt;
* Uniform a coding standard through a project (ex PHP Code Sniffer)&lt;br /&gt;
* No magic numbers, should be define as a constant with clear comments&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Quang Hiển Trần</name></author>
	</entry>
	<entry>
		<id>https://wiki.officience.com/index.php?title=PHP&amp;diff=25</id>
		<title>PHP</title>
		<link rel="alternate" type="text/html" href="https://wiki.officience.com/index.php?title=PHP&amp;diff=25"/>
		<updated>2015-05-04T03:31:29Z</updated>

		<summary type="html">&lt;p&gt;Quang Hiển Trần: /* Php Checklist */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Php Checklist =&lt;br /&gt;
* No syntax/runtime errors and warnings&lt;br /&gt;
* No deprecated functions&lt;br /&gt;
* No dead code&lt;/div&gt;</summary>
		<author><name>Quang Hiển Trần</name></author>
	</entry>
	<entry>
		<id>https://wiki.officience.com/index.php?title=PHP&amp;diff=24</id>
		<title>PHP</title>
		<link rel="alternate" type="text/html" href="https://wiki.officience.com/index.php?title=PHP&amp;diff=24"/>
		<updated>2015-05-04T03:28:42Z</updated>

		<summary type="html">&lt;p&gt;Quang Hiển Trần: /* Php Checklist */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Php Checklist =&lt;br /&gt;
&lt;br /&gt;
== Headline text ==&lt;/div&gt;</summary>
		<author><name>Quang Hiển Trần</name></author>
	</entry>
</feed>