Tutorial by Topics: le

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
This topic is about how to limit access to your docker containers from outside world using iptables. For impatient people, you can check the examples. For the others, please read the remark section to understand how to build new rules. iptables -I DOCKER [RULE ...] [ACCEPT|DROP] // To add a r...
Force.com REST API Documentation. Full list of API's is here
This function returns the title of the current post. the_title( $before, $after, $echo ); ParameterDetails$before(string) (optional) Text to place before the title.$after(string) (optional) Text to place after the title.$echo(Boolean) (optional) Display the title or return it for use in ...
This function returns the title of the current post or the designated post. get_the_title( $post ) ParameterDetails$post(int) (optional) Post ID or post object. Default is the the current post's id. If you plan to get the title of a post or page using a post loop, it is suggested to us...
The function allows user to load stylesheets for the TinyMCE editor add_editor_style( $stylesheet ) ParameterDetails$ stylesheet(array or string) (Optional) Stylesheet name or array thereof, relative to theme root. Defaults to 'editor-style.css'
JIT compilation, or just-in-time compilation, is an alternative approach to interpretation of code or ahead-of-time compilation. JIT compilation is used in the .NET framework. The CLR code (C#, F#, Visual Basic, etc.) is first compiled into something called Interpreted Language, or IL. This is lower...
This describes how to directly obtain a SqlRowSet using SimpleJdbcCall with a stored procedure in your database that has a cursor output parameter, I am working with an Oracle database, I've attempted to create an example that should work for other databases, my Oracle example details issues with O...
Blender is a free, open-source, 3-dimensional modeling, game building, and rendering software. Blender is written in C and C++. In addition, Blender can be extended with Python scripting. All of the source code of every single previous version since 2003 can be found here: http://download.blende...
Pagination is a common issue with for a lot of mobile apps that need to deal with lists of data. Most of the mobile apps are now starting to take up the "endless page" model, where scrolling automatically loads in new content. CWAC Endless Adapter makes it really easy to use this pattern i...
In this topic you will learn how to create, edit, copy, move, and delete files in batch.
By default, every variable in bash is global to every function, script and even the outside shell if you are declaring your variables inside a script. If you want your variable to be local to a function, you can use local to have that variable a new variable that is independent to the global scope ...
Complete filters for product collection based on visibility,store,And OR, stock status, status, etc
Sql script to delete test data of products, customers, logs and sales.
An inline variable is allowed to be defined in multiple translation units without violating the One Definition Rule. If it is multiply defined, the linker will merge all definitions into a single object in the final program.
WebView is an UI component that could be used to embed web page within your app. Both iOS and Android provide WebView components as part of their SDK. WebView components mostly based on Chromium project and powered by Blink rendering engine (previously WebKit).

Page 55 of 68