- 08:40, 9 November 2020 diff hist +662 N Yocto Introduction Created page with "=== Remarks === This section provides an overview of what yocto is, and why a developer might want to use it. It should also mention any large subjects within yocto, and lin..."
- 08:40, 9 November 2020 diff hist +692 N Annotations Introduction Created page with "=== Remarks === This section provides an overview of what annotations is, and why a developer might want to use it. It should also mention any large subjects within annotati..."
- 08:40, 9 November 2020 diff hist +667 N Button Introduction Created page with "=== Remarks === This section provides an overview of what button is, and why a developer might want to use it. It should also mention any large subjects within button, and l..."
- 08:40, 9 November 2020 diff hist +667 N Stylus Introduction Created page with "=== Remarks === This section provides an overview of what stylus is, and why a developer might want to use it. It should also mention any large subjects within stylus, and l..."
- 08:40, 9 November 2020 diff hist +712 N In App Purchase Introduction Created page with "=== Remarks === This section provides an overview of what in-app-purchase is, and why a developer might want to use it. It should also mention any large subjects within in-a..."
- 08:40, 9 November 2020 diff hist +697 N Game Physics Introduction Created page with "=== Remarks === This section provides an overview of what game-physics is, and why a developer might want to use it. It should also mention any large subjects within game-ph..."
- 08:40, 9 November 2020 diff hist +687 N Dictionary Introduction Created page with "=== Remarks === This section provides an overview of what dictionary is, and why a developer might want to use it. It should also mention any large subjects within dictionar..."
- 08:40, 9 November 2020 diff hist +682 N SSRS 2012 Introduction Created page with "=== Remarks === This section provides an overview of what ssrs-2012 is, and why a developer might want to use it. It should also mention any large subjects within ssrs-2012,..."
- 08:40, 9 November 2020 diff hist +996 N PowerShell ISE module Created page with "Windows PowerShell Integrated Scripting Environment (ISE) is a host application that enables you to write, run, and test scripts and modules in a graphical and intuitive envir..."
- 08:40, 9 November 2020 diff hist +3,381 N IOS UITableViewController Created page with "UITableViewController controller object that manages a table view. For some certain scenario it will be recommended to use UITableViewController, for example if you have lot o..."
- 08:40, 9 November 2020 diff hist +702 N OpenStreetMap Introduction Created page with "=== Remarks === This section provides an overview of what openstreetmap is, and why a developer might want to use it. It should also mention any large subjects within openst..."
- 08:40, 9 November 2020 diff hist +872 N Cron Introduction Created page with "=== Remarks === This section provides an overview of what cron is, and why a developer might want to use it. It should also mention any large subjects within cron, and link..."
- 08:40, 9 November 2020 diff hist +2,352 N TensorFlow Minimalist example code for distributed Tensorflow. Created page with "This document shows how to create a cluster of TensorFlow servers, and how to distribute a computation graph across that cluster. === Distributed training example === <synta..."
- 08:40, 9 November 2020 diff hist +2,049 N Installing CUDA Created page with "=== Remarks === To install CUDA toolkit on Windows, fist you need to install a proper version of Visual Studio. Visual studio 2013 should be installed if you're going to inst..."
- 08:40, 9 November 2020 diff hist +869 N Dart List Filters Created page with "Dart filters lists through the <code>List.where</code> and <code>List.retainWhere</code> methods. The <code>where</code> function takes one argument: a boolean function that i..."
- 08:40, 9 November 2020 diff hist +5,563 N Python Pandas Transform: Preform operations on groups and concatenate the results Created page with "=== Simple transform === ==== First, Lets create a dummy dataframe ==== We assume that a customer can have n orders, an order can have m items, and items can be ordered mor..."
- 08:40, 9 November 2020 diff hist +2,035 N Convert vietnamese string to english string Android Created page with "=== example: === <syntaxhighlight lang="xml"> String myStr = convert("Lê Minh Thoại là ngưá»i Viá»t Nam"); </syntaxhighlight> converted: <syntaxhighli..."
- 08:40, 9 November 2020 diff hist +4,447 N Android Smartcard Created page with "=== Smart card send and receive === For connection, here is a snippet to help you understand: <syntaxhighlight lang="xml"> //Allows you to enumerate and communicate with con..."
- 08:40, 9 November 2020 diff hist +657 N ADFS Introduction Created page with "=== Remarks === This section provides an overview of what adfs is, and why a developer might want to use it. It should also mention any large subjects within adfs, and link..."
- 08:40, 9 November 2020 diff hist +662 N SDL 2 Introduction Created page with "=== Remarks === This section provides an overview of what sdl-2 is, and why a developer might want to use it. It should also mention any large subjects within sdl-2, and lin..."
- 08:40, 9 November 2020 diff hist +912 N Microsoft SQL Server bcp (bulk copy program) Utility Created page with "The bulk copy program utility (bcp) bulk copies data between an instance of Microsoft SQL Server and a data file in a user-specified format. The bcp utility can be used to imp..."
- 08:40, 9 November 2020 diff hist +5,004 N Hello Dojo Created page with "A simple Hello Dojo like Hello World in other programming languages. Dojo is simple to install/configure and use. You can download the latest version of Dojo from http://dojot..."
- 08:40, 9 November 2020 diff hist +1,314 N PowerShell Scheduled tasks module Created page with "Examples of how to use the Scheduled Tasks module available in Windows 8/Server 2012 and on. === Run PowerShell Script in Scheduled Task === Creates a scheduled task that ex..."
- 08:40, 9 November 2020 diff hist +640 N .NET Framework Acronym Glossary Created page with "=== .Net Related Acronyms === Please note that some terms like JIT and GC are generic enough to apply to many programming language environments and runtimes. CLR: Common Lan..."
- 08:40, 9 November 2020 diff hist +1,873 N Django REST Framework Routers Created page with "Routing is the process of mapping the logic (view methods etc.) to a set of URLs. REST framework adds support for automatic URL routing to Django. === Syntax === * router = r..."
- 08:40, 9 November 2020 diff hist +1,980 N Git diff-tree Created page with "Compares the content and mode of blobs found via two tree objects. === See the files changed in a specific commit === <syntaxhighlight lang="xml"> git diff-tree --no-commit-..."
- 08:40, 9 November 2020 diff hist +1,026 N Kotlin coroutines Created page with "Examples of Kotlin's experimental(yet) implementation of coroutines === Simple coroutine which delay's 1 second but not blocks === (from official [https://github.com/Kotlin/..."
- 08:40, 9 November 2020 diff hist +4,376 N Java CompletableFuture Created page with "CompletableFuture is a class added to Java SE 8 which implements the Future interface from Java SE 5. In addition to supporting the Future interface it adds many methods that..."
- 08:40, 9 November 2020 diff hist +1,059 N Git Tidying up your local and remote repository Created page with "=== Delete local branches that have been deleted on the remote === To remote tracking between local and deleted remote branches use <syntaxhighlight lang="xml"> git fetch -p..."
- 08:40, 9 November 2020 diff hist +3,069 N Rails on docker Created page with "This tutorial will start with Docker installed and with a Rails app === Docker and docker-compose === First of all, we will need to create our <code>Dockerfile</code>. A goo..."
- 08:40, 9 November 2020 diff hist +5,342 N Excel VBA CustomDocumentProperties in practice Created page with "Using CustomDocumentProperties (CDPs) is a good method to store user defined values in a relatively safe way within the same work book, but avoiding to show related cell value..."
- 08:40, 9 November 2020 diff hist +692 N Magento 1.9 Introduction Created page with "=== Remarks === This section provides an overview of what magento-1.9 is, and why a developer might want to use it. It should also mention any large subjects within magento-..."
- 08:40, 9 November 2020 diff hist +1,263 N Android Getting system font names and using the fonts Created page with "The following examples show how to retrieve the default names of the system fonts that are store in the ''/system/fonts/'' directory and how to use a system font to set the ty..."
- 08:40, 9 November 2020 diff hist +3,002 N Payment feature in rails Created page with "This document pretend to introduce you, with a complete example, how you can implement different payment methods with Ruby on Rails. In the example, we will cover Stripe and..."
- 08:40, 9 November 2020 diff hist +16,264 N Spring Boot + Spring Data Elasticsearch Created page with "[https://github.com/spring*projects/spring*data*elasticsearch Spring Data Elasticsearch] is a [http://projects.spring.io/spring-data/ Spring Data] implementation for [https://..."
- 08:40, 9 November 2020 diff hist +2,628 N IOS attributedText in UILabel Created page with "The current styled text that is displayed by the label. You can add <code>HTML</code> text in <code>UILabel</code> using attributedText property or customized single <code>UI..."
- 08:40, 9 November 2020 diff hist +2,481 N OSX File association Created page with "=== Set my app as default app for a file type === <syntaxhighlight lang="xml"> * (NSString *) UTIforFileExtension:(NSString *) extension { NSString * UTIString = (NSStrin..."
- 08:40, 9 November 2020 diff hist +1,352 N HTML Event Attributes Created page with "=== HTML Form Events === Events triggered by actions inside a HTML form (applies to almost all HTML elements, but is most used in form elements): {| ! '''Attribute''' ! '''D..."
- 08:40, 9 November 2020 diff hist +662 N Boto3 Introduction Created page with "=== Remarks === This section provides an overview of what boto3 is, and why a developer might want to use it. It should also mention any large subjects within boto3, and lin..."
- 08:40, 9 November 2020 diff hist +2,087 N Adding an Amazon RDS to your rails application Created page with "Steps to create an AWS RDS instance and configure your database.yml file by installing the required connectors. === Consider we are connecting MYSQL RDS with your rails appli..."
- 08:40, 9 November 2020 diff hist +6,364 N Ruby Operating System or Shell commands Created page with "There are many ways to interact with the operating system. From within Ruby you can run shell/system commands or sub-processes. === Remarks === '''Exec:''' Exec is very lim..."
- 08:40, 9 November 2020 diff hist +2,267 N Ansible install MySQL Created page with "How use ansible to install mysql binary file === How use ansible to install mysql binary file === ----- * hosts: mysql tasks: ** name: Add mysql user user: name: mysql shell..."
- 08:39, 9 November 2020 diff hist +1,939 N Angularfire2 with Ionic2 Created page with "Here ill show you how to integrate AngularFire2 and use this real time database in our Ionic App. === AngularFire initialization === First of all you need to initialize the..."
- 08:39, 9 November 2020 diff hist +709 N IoT Protocols Created page with "Protocols which can be used in the IoT projects which would help to communicate between the IoT devices/IoT Clients. === MQTT === MQTT is an publish/subscribe "lightwei..."
- 08:39, 9 November 2020 diff hist +657 N NgRx Introduction Created page with "=== Remarks === This section provides an overview of what ngrx is, and why a developer might want to use it. It should also mention any large subjects within ngrx, and link..."
- 08:39, 9 November 2020 diff hist +1,503 N Swift Generate UIImage of Initials from String Created page with "This is a class that will generate a UIImage of a person's initials. Harry Potter would generate an image of HP. === InitialsImageFactory === <syntaxhighlight lang="xml"> cl..."
- 08:39, 9 November 2020 diff hist +687 N Spring Aop Introduction Created page with "=== Remarks === This section provides an overview of what spring-aop is, and why a developer might want to use it. It should also mention any large subjects within spring-ao..."
- 08:39, 9 November 2020 diff hist +2,031 N Controlling Subplot coloring in MatLab Created page with "As I was struggling with this more than once, and the web isn't really clear on what to do, I decided to take what's out there, adding some of my own in order to explain how t..."
- 08:39, 9 November 2020 diff hist +4,368 N Angular Material2 md-table Created page with "This topic includes examples related to md-table === Remarks === For more details on <code>md-table</code> please check the [https://material.angular.io/components/table/ove..."
- 08:39, 9 November 2020 diff hist +7,179 N ActiveX Introduction Created page with "=== Remarks === This section provides an overview of what activex is, and why a developer might want to use it. It should also mention any large subjects within activex, and..."