Tutorial by Topics: se

In contrast to the Syntax API the exposes all kinds of syntax level information, the semantic model gives our code more "meaning" and allows us to answer questions like "What names are in scope at this location?", "What members are accessible from this method?", "W...
This topic would cover how angular-cli project is ready for production build, what all necessary steps taken before deploying, how to create war file for project deployment and finally how to configure the apache tomcat for angular-cli project deployment.
Semaphores are not available in C++ as of now, but can easily be implemented with a mutex and a condition variable. This example was taken from: C++0x has no semaphores? How to synchronize threads?
Devise is authentication solution for Rails. Before going any further i would like to add quick note on API. So API does not handle sessions (is stateless) which means one that provide response after you request, and then requires no further attention, which means no previous or future state is requ...
The RAM can be divided into two parts. The kernel space and user space. The kernel runs in the kernel space, which no other programs can access. User programs have to run in user space. User space is a form of sand-boxing, where user programs can only access to memory that allocated to them so that ...
These where some of the hardest things (and least talked about) to do with the PHP API advanced search (where you specify what fields). Im in the process of migrating to rest_suite github library that uses RESTLET, and get around the PHP API user concurrency limit of 1. But before i delete my old ...
Sometimes client just require to open a web app in mobile app, for this we can use InAppBrowser in such a way that it looks like an app instead we are opening a website/webApp in mobile, as soon as the user will tap the app icon than instead of opening the first app view we can open InAppBrowser dir...
Am new to Mule and wanted to share how to connect to Database and retrieve Values.
Handling users within socket.io is as simple or as complex as you decided, though there are some more 'obvious' approaches for doing this, this documentation is going to outline an approach using map().
The guide helps in understanding how to import data from the SQL server table to a CSV/txt file. Right click on the Data Flow Task and select property. DefaultBufferMaxRows and DefaultBufferSize properties can be changed to improve data load performance. Multiple Data Flow Task can be execu...
Promises and Futures are used to ferry a single object from one thread to another. A std::promise object is set by the thread which generates the result. A std::future object can be used to retrieve a value, to test to see if a value is available, or to halt execution until the value is available....
Adding an image file (preferable a png) to your game as an "Image" object in Phaser. game.load.image( name:string, file:string,); game.add.image( x:number, y:number, name:string); An Image object is a good choice for things in your game that don't use frame animations and...
Remember CodeIgniter is a development Framework. It doesn't strive to make you're application secure. It merely gives you the tools to do it yourself. If you look at CI's Security page, it pretty clear they are expecting the developer to understand Application Security and build it into their applic...
OptionParser can be used for parsing command line options from ARGV.
Taken from IdentityServer4 Official Docs IdentityServer4 is an OpenID Connect and OAuth 2.0 framework for ASP.NET Core. It enables the following features in your applications: Authentication as a Service Centralized login logic and workflow for all of your applications (web, native, mobil...
One of the features introduced in Java 9 is the multi-release Jar (MRJAR) which allows bundling code targeting multiple Java releases within the same Jar file. The feature is specified in JEP 238.
We can secure the data in Hadoop using different methods. Each method has its own advantages. We can also combine more than one method for better result. This topic covers the advantages & limitations of each method 1. Kerberos is a network authentication protocol: a. Advantage: Authentic...
Many people like working with promises and/or async/await syntax, but when writing a module it would be useful to some programmers to support classic callback style methods as well. Rather than creating two modules, or two sets of functions, or having the programmer promisify your module, your modul...

Page 48 of 54