Grails Javascript Example

In this article we will show how to include JavaScript library as an asset in grails GSP file to dynamically filter results in a HTML table.

Problems with WordPress JWT Authentication

While I’m been doing some research for WordPress publishing, I eventually came across JWT authentication. It’s a form of WP REST API authentication, using JSON Web Tokens.

Visual Studio 2017 with C++17 and Boost

Visual Studio 2017 was just recently updated to version 15.5. It brings many goodies for us C++ programmers, among them a C++17 compiler switch /std:c++17, and a conformance mode switch /permissive-.

React Native Navigation example

There are many navigation options for React Native. In this example we will show how to implement a basic hybrid app navigation with the React Navigation library and native TabNavigator and StackNavigator components.

WordPress vs WooCommerce categories with Rest API in C#

Categories are an important part of WordPress and WooCommerce solutions. They give an opportunity to group similar items together. If you are using WordPress as a CMS for your online shop, chances are you will need the WooCommerce plugin to manage your products.

JSP partials – how to include files

A partial is a page with a piece of HTML or other code that can be included into other pages. Best examples are header and footer files that are being included into all pages of the website. You may also have complicated logic that you would like to separate or some repetitive code.