Tutorial by Topics: n

Properties are key-value-pairs where Apache Ant tries to expand ${key} to value at runtime. Ant properties are very helpful if you have to do a lot to processing to create installables or do custom deployments etc. For example, you can mark ${src.dir} as source code directory,${lib.dir} as library...
This module provides the ConfigParser class which implements a basic configuration language in INI files. You can use this to write Python programs which can be customized by end users easily. Each new line contains a new key value pair separated by the = sign Keys can be separated in section...
Yii2 has some built-in validators which can be used while solving programming related or general puprose validations. When you need to create a new business logic validation you need to create your own validators.
Jumbotron is a standard component of Bootstrap to display some important contents on your website. It is usually used right under the navbar, before the content. Inside the jumbotron, all grid system, container class and row class also works.
This function is to add an item in the admin panel's nav bar. add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position) ParameterDetails$page_title(string) The text to be displayed in the title tags of the page when the menu is selected.$menu_titl...
This function is to add a sub-item to an existing item in the admin panels nav bar. add_submenu_page( $parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function ) ParameterDetails$parent_slug(string) The slug name for the parent menu (or the file name of a standard WordPr...
Retrieves an option value based on an option name. get_option( $option, $default ) ParameterDetails$option(string) Name of option to retrieve. Expected to not be SQL-escaped.$default(mixed) (Optional) Default value to return if the option does not exist. List of arguments for $option ...
tidyr has two tools for reshaping data: gather (wide to long) and spread (long to wide). See Reshaping data for other options.
Whenever you work with video feeds you may eventually want to save your image processing result in a form of a new video file. For simple video outputs you can use the OpenCV built-in VideoWriter class, designed for this. It is useful to look at some concepts before using them. These concepts are co...
Composite lets clients treat individual objects and compositions of objects uniformly. For example consider a program that manipulates a file system. Files are simple objects and folders are composition of files and folders. However, for example, they both have size, name etc. functions. It would be...
Sections are a feature that allow store owners to add, edit, remove and easily reorder content on a page. There are 2 types of sections: dynamic and fixed. Dynamic sections are able to be reordered in their entirety with other sections on the page (homepage). Fixed sections cannot be reordered, but ...
The Open Close Principle states that the design and writing of the code should be done in a way that new functionality should be added with minimum changes in the existing code. The design should be done in a way to allow the adding of new functionality as new classes, keeping as much as possible ex...
This thread is focused on how to create a spring boot application with hibernate and thymyleaf template engine. Also check the Thymeleaf documentation
In this post I will demonstrate how to pass external data to Angular app before the app bootstraps. This external data could be configuration data, legacy data, server rendered etc.

Page 273 of 329