Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the mythemeshop domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/jshomoek/public_html/jshowers.com/wp-includes/functions.php on line 6131

Notice: Function register_sidebar was called incorrectly. No id was set in the arguments array for the "Header" sidebar. Defaulting to "sidebar-1". Manually set the id to "sidebar-1" to silence this notice and keep existing sidebar content. Please see Debugging in WordPress for more information. (This message was added in version 4.2.0.) in /home/jshomoek/public_html/jshowers.com/wp-includes/functions.php on line 6131

Notice: Function register_sidebar was called incorrectly. No id was set in the arguments array for the "Sidebar" sidebar. Defaulting to "sidebar-2". Manually set the id to "sidebar-2" to silence this notice and keep existing sidebar content. Please see Debugging in WordPress for more information. (This message was added in version 4.2.0.) in /home/jshomoek/public_html/jshowers.com/wp-includes/functions.php on line 6131

Deprecated: Function create_function() is deprecated in /home/jshomoek/public_html/jshowers.com/wp-content/themes/jshowers/functions.php on line 190

Deprecated: The called constructor method for WP_Widget class in mts_ad_widget is deprecated since version 4.3.0! Use __construct() instead. in /home/jshomoek/public_html/jshowers.com/wp-includes/functions.php on line 6131

Deprecated: The called constructor method for WP_Widget class in mts_ad_300_widget is deprecated since version 4.3.0! Use __construct() instead. in /home/jshomoek/public_html/jshowers.com/wp-includes/functions.php on line 6131

Deprecated: The called constructor method for WP_Widget class in Facebook_Like_Widget is deprecated since version 4.3.0! Use __construct() instead. in /home/jshomoek/public_html/jshowers.com/wp-includes/functions.php on line 6131

Deprecated: The called constructor method for WP_Widget class in mts_subscribe_widget is deprecated since version 4.3.0! Use __construct() instead. in /home/jshomoek/public_html/jshowers.com/wp-includes/functions.php on line 6131
Django | Jasper Showers - Custom Web Development

Django Archive

Making an abstract base class for a Django database model to overwrite the save() function

I was recently faced with the challenge of needing to add translations to a hierarchal database setup in Django/Python. We wanted these translations to be stored in the database for multiple languages (for access through a CMS), where not every field on the model needed to be translated. These translations should be auto generated from [&hellip

Read More…

Alphabetically Sort A List With Special Characters

Recently I was tasked with sorting a list of countries, that were translated to Portuguese, in alphabetical order. Because the list contained special characters, “normal” Python .sort() was not working, putting the accented characters at the end of the list since their mathematical UTF8 representation was technically after the English alphabet. “África do Sul” should [&hellip

Read More…