Tutorial by Topics: for

This section provides an overview of what webforms is, and why a developer might want to use it. It should also mention any large subjects within webforms, and link out to the related topics. Since the Documentation for webforms is new, you may need to create initial versions of those related t...
iOS 10 gave us UserNotifications.framework, the new API for local/remote notifications. It offers viewing media attachments or responding to messages right from the notification. Notification content consists of: title, subtitle, body and attachment. Attachment can contain images/gifs/videos up t...
We will use Google API Client Libraries for .NET for this sample. There are other libraries. Please see Google Client Libraries Explained for details. We will use the Cloud Resource Manager API for Creating and Managing Projects. Let's get started. Putting it all together... You should hav...
This is a polynomial algorithm for getting the minimum vertex cover of connected undirected graph. The time complexity of this algorithm is O(n2) VariableMeaningGInput connected un-directed graphXSet of verticesCFinal set of vertices The first thing you have to do in this algorithm to get al...
We will use Google API Client Libraries for Python for this sample. There are other libraries. Please see Google Client Libraries Explained for details. We will use the Cloud Resource Manager API for Creating and Managing Projects. Let's get started. Putting it all together... If you follo...
After MySQL 5.7, when we install MySQL sometimes we don't need to create a root account or give a root password. By default when we start the server, the default password is stored in the mysqld.log file. We need to login in to the system using that password and we need to change it. Recoverin...
Firebase launched its beta release of Cloud Functions for Firebase which is similar to using of Cloud Functions on Google Cloud Platform. Cloud Functions is a hosted, private, and scalable Node.js environment where you can run JavaScript code. Firebase SDK for Cloud Functions integrates the Firebas...
The Cloudfoundry command line interface is a wonderful thing that saves time and spares you needing to use UIs as much. Here is my cheatsheet. First you need to install it from https://docs.cloudfoundry.org/cf-cli/install-go-cli.html I have ordered the examples in order of Most Useful To Me. Your...
This provides an overview of the Manifest file for DNN. Manifest files are the files necessary to install and register a module with the DNN framework. The manifest file can be utilized for extensions in DNN besides just Modules. You can have manifest files for Providers, Skins (Themes) and Co...
Machine learning problems often require dealing with large quantities of training data with limited computing resources, particularly memory. It is not always possible to load an entire training set into memory. Fortunately, this can be dealt with through the use of Keras' fit_generator method, Pyth...
The standard Maven plugin used by a Release Process is the maven-release-plugin – the configuration for this plugin is minimal: SCM in the Maven pom:The Release process will interact with the Source Control of the project – this means we need to define the "scm" element in our pom.xml.The...
Pax Exam allows testing of bundles within an OSGi container (e.g. AEM, Apache Karaf). Pax Exam is usually used in conjunction with JUnit.
std::forward_list is a container that supports fast insertion and removal of elements from anywhere in the container. Fast random access is not supported. It is implemented as a singly-linked list and essentially does not have any overhead compared to its implementation in C. Compared to std::list t...
This is a list of commonly-used shortcuts in Sublime Text version 3. If you know of others, feel free to suggest an edit but I'll start it with [Windows] ones I know. There is a list of shortcuts in the sublime text docs (at http://docs.sublimetext.info/en/latest/reference/keyboard_shortcuts_win.ht...
Android requires that all APKs be signed for release.
Creating a simple, decorative block with Forge is one of the first tasks an aspiring modder will have to learn. How to do that has changed over the various versions of Minecraft and is probably at a "moderate" difficulty post 1.7.10 due to the sheer number of easy to make mistakes. ...
Web Forms For Marketeers is the popular Sitecore module that allows to create forms in Sitecore and customize and extend their behavior using save actions. More information about the module can be found in https://dev.sitecore.net/Downloads/Web_Forms_For_Marketers.aspx
In my path to studying programming there have been simple, but interesting problems to solve as exercises. One of those problems was to rotate an array(or another collection) by a certain value. Here I will share with you a simple formula to do it.

Page 17 of 20