Tutorial by Topics: k

This section provides an overview of what facebook is, and why a developer might want to use it. It should also mention any large subjects within facebook, and link out to the related topics. Since the Documentation for facebook is new, you may need to create initial versions of those related to...
For registering a background task that runs in a seperate process, you have to go to the "Declarations" Tab in the Package.appxmanifest and add a new "Background Task" and set the entry point. Registering a single-process background task can be done by means of BackgroundTas...
What is RethinkDB? Open-source database for building realtime web applications NoSQL database that stores schemaless JSON documents Distributed database that is easy to scale High availability database with automatic failover and robust fault tolerance RethinkDB is the first open-source...
always @ (posedge clk) begin /* statements */ end always @ (negedge clk) begin /* statements */ end always @ (posedge clk or posedge reset) // may synthesize less efficiently than synchronous reset
.htaccess redirection is a common vector for malicious hackers to exploit and infect websites. We have seen what .htaccess files are, how they are used by malicious hackers, and how to protect your website.
Kruskal's Algorithm is a greedy algorithm used to find Minimum Spanning Tree (MST) of a graph. A minimum spanning tree is a tree which connects all the vertices of the graph and has the minimum total edge weight. Kruskal's algorithm does so by repeatedly picking out edges with minimum weight (whi...
This is an implementation of the Core Data Stack which is initially placed in the AppDelegate file if the project is created with Core Data when project is created. These functions can also implemented in separate class for CoreDataStack.swift. One of the major functions is to get the NSManagedObj...
pickle.dump(object,file,protocol) #To serialize an object pickle.load(file) #To de-serialize an object pickle.dumps(object, protocol) # To serialize an object to bytes pickle.loads(buffer) # To de-serialzie an object from bytes ParameterDetailsobjectThe object which is to ...
Jekyll is a simple, blog-aware, static site generator. It takes a template directory containing raw text files in various formats, runs it through a converter (like Markdown) and its Liquid renderer, and spits out a complete, ready-to-publish static website suitable for serving with your favorite ...
Most examples are from MSDN. To create a .NET managed client application that uses the client object model, you must set references to two client library DLLs: Microsoft.SharePoint.Client.dll and Microsoft.SharePoint.Client.Runtime.dll. You can find it in %ProgramFiles%\Common Files\Microsoft S...
map = %{} // creates an empty map map = %{:a => 1, :b => 2} // creates a non-empty map list = [] // creates an empty list list = [{:a, 1}, {:b, 2}] // creates a non-empty keyword list Elixir provides two associative data structures: maps and keyword lists. Maps are the Elixir key-...
In Kotlin, loops are compiled down to optimized loops wherever possible. For example, if you iterate over a number range, the bytecode will be compiled down to a corresponding loop based on plain int values to avoid the overhead of object creation.
This section provides an overview of what loopbackjs is, and why a developer might want to use it. It should also mention any large subjects within loopbackjs, and link out to the related topics. Since the Documentation for loopbackjs is new, you may need to create initial versions of those rela...

Page 9 of 49