by H.Thirukkumaran | Aug 8, 2017 | tip of the day
Use migrations feature in Django for creating database artifacts. Developers mostly tend to miss to check-in db scripts to Source Control system so if they use migrations and check-in the Django code then the db changes and dependencies are stored in source control....
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
For simple test methods in views.py to show sample text use render_to_response from django.shortcuts. This is a very helpful method.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
If you want to kill a process by name then use pkill command in Linux and this will search process by instance name and kill it. Be careful when using it.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
One of the non functional requirements is security and for this requirement you should have the following in your application. Multifactor Authentication Authorization Audit Trail Encryption Decryption
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can write a destructor function for your class to release resource using __destruct() method.
Recent Comments