Tutorial by Topics: as

Integrate Firebase with Google AppScript to Read and Write Data in the Firebase Database. Firebase is a NoSQL database system by Google that uses realtime database to help create and host applications on mobile, desktop and tablet devices. NoSQL databases use the JSON objects to store the data in s...
This section provides an overview of what liquibase is, and why a developer might want to use it. It should also mention any large subjects within liquibase, and link out to the related topics. Since the Documentation for liquibase is new, you may need to create initial versions of those relate...
With type aliases, we can give a alias to other type. It's ideal for giving a name to function types like (String) -> Boolean or generic type like Pair<Person, Person>. Type aliases support generics. An alias can replace a type with generics and an alias can be generics. typealias al...
If you edit a new file: vim these/directories/dont/exist/newfile, you won't be able to save the file as the directory vim is trying to save into does not exist.
For some time I've searched for the best way to log requests and response in an ASP.Net Core. I was developing services and one of the requirements was to record request with its response in one record the the database. So many topics out there but none worked for me. it's either for request only, r...
The QnA Maker is a free, easy-to-use, REST API- and web-based service that trains AI to respond to users’ questions in a more natural, conversational way. With optimized machine learning logic and the ability to integrate industry-leading language processing, QnA Maker distills semi-structured data ...
PowerShell features a documentation mechanism called comment-based help. It allows documenting scripts and functions with code comments. Comment-based help is most of the time written in comment blocks containing multiple help keywords. Help keywords start with dots and identify help sections that w...
How to configure a ReplicaSet to support TLS/SSL? We will deploy a 3 Nodes ReplicaSet in your local environment and we will use a self-signed certificate. Do not use a self-signed certificate in PRODUCTION. How to connect your Client to this ReplicaSet? We will connect a Mongo Shell. A descripti...
SCENARIO: ASP.NET Core background Angular 2 Front-End Angular 2 Components using Asp.net Core Controllers It way can implement Angular 2 over Asp.Net Core app. It let us call MVC Controllers from Angular 2 components too with the MVC result View supporting Angular 2.
PHP Exceptions are thrown when an unprecedented event or error occurs. As a rule of thumb, an exception should not be used to control the application logic such as if-statements and should be a subclass of the Exception class. One main advantage of having all exceptions caught by a single class is...
As the name suggests, this uses attributes to route. This gives the user more control over the URI's in the WebAPI. For example, you can describe hierarchies of the resource. However, the earlier 'Conventional Routing' is fully supported. Users can have a mixture of both too. [RoutePrefix(&quo...
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...
With an admin dashboard widget you are able to display any kind of information at the admin dashboard. You can make multiple widgets if you want. You can add the code to the functions.php of your theme or to your plugin. add_action($tag, $function_to_add, $priority, $accepted_args); wp_add_d...
Tutorials concerning asp.net Identity such as user management, role management, creating tokens and more.
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...
Transactions provide a mechanism to coordinate between multiple parties that might be accessing the same data at the same time. These "parties" might be different instances of the same code like different users running the same application or nodes in a server cluster, parts of the same pr...
This section provides an overview of what tastypie is, and why a developer might want to use it. It should also mention any large subjects within tastypie, and link out to the related topics. Since the Documentation for tastypie is new, you may need to create initial versions of those related t...
According to official documentation: JavaScriptServices is a set of technologies for ASP.NET Core developers. It provides infrastructure that you'll find useful if you use Angular 2 / React / Knockout / etc. on the client, or if you build your client-side resources using Webpack, or otherwise want ...
Accessing network share file using PInvoke.
By using asynchronous sockets a server can listening for incoming connections and do some other logic in the mean time in contrast to synchronous socket when they are listening they block the main thread and the application is becoming unresponsive an will freeze until a client connects. Socke...

Page 34 of 40