Install Package Control for easy package management.
- Open the console with
Ctrl+` - Paste in the following:
Install Package Control for easy package management.
Ctrl+`
| var Feedback = Backbone.Model.extend({ | |
| url: '/feedback', | |
| defaults: { | |
| 'email': '', | |
| 'website': '', | |
| 'feedback': '' | |
| }, |
| wget http://download.mono-project.com/repo/xamarin.gpg | |
| sudo apt-key add xamarin.gpg | |
| echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee --append /etc/apt/sources.list.d/mono-xamarin.list | |
| sudo apt-get update | |
| sudo apt-get install mono-complete | |
| sudo certmgr -ssl -m https://go.microsoft.com | |
| sudo certmgr -ssl -m https://nugetgallery.blob.core.windows.net | |
| sudo certmgr -ssl -m https://nuget.org | |
| mozroots --import --sync |
Basic form with validation using AngularJS and Form Material Design Lite ( MDL )
A Pen by Álister Lopes Ferreira on CodePen.
| function Update-AssemblyInfoVersionFiles | |
| { | |
| Param | |
| ( | |
| [Parameter(Mandatory=$true)] | |
| [string]$productVersion | |
| ) | |
| $buildNumber = $env:BUILD_BUILDNUMBER | |
| if ($buildNumber -eq $null) |
| /// <summary> | |
| /// Owin Request extensions. | |
| /// </summary> | |
| public static class OwinRequestExtensions | |
| { | |
| /// <summary> | |
| /// Gets the combined request parameters from the form body, query string, and request headers. | |
| /// </summary> | |
| /// <param name="request">Owin request.</param> | |
| /// <returns>Dictionary of combined form body, query string, and request headers.</returns> |
| Download the following ZIPs: | |
| ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
| Download the correct GApps for your Android version: | |
| Google Apps for Android 6.0 (https://www.androidfilehost.com/?fid=24052804347835438 - benzo-gapps-M-20151011-signed-chroma-r3.zip) | |
| Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161891406 - gapps-L-4-21-15.zip) | |
| Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) | |
| Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip) | |
| Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip) |
| import React from 'react'; | |
| import { | |
| View, | |
| Text, | |
| } from 'react-native'; | |
| import { TextInputMask } from 'react-native-masked-text' | |
| export default function maskedInputTemplate(locals) { | |
| if (locals.hidden) { | |
| return null; |
I recently had to make myself comfortable on a Windows box, which meant installing VIM and python. And being at compiling VIM I compiled it with support for other interpreters as well.
I made a gvim74.exe installation file, like the one you get from http://www.vim.org/download.php, but with the newest batches and the interpreter versions of my choice.
Preparations