Get popular cat names
$ npm install --save cat-names
| <div class=""> | |
| @Html.LabelFor(model => model.griv_idgrupoinv, htmlAttributes: new { @class = "" }) | |
| @Html.DropDownList("griv_idgrupoinv", new SelectList(ViewBag.GrupoInv, "Text", "Value"), new { @class = "form-control" }) | |
| </div> |
| var mysql = require('mysql'); | |
| var connection = mysql.createConnection({ | |
| host: 'localhost', | |
| user: 'root', | |
| password: 'root', | |
| database: 'personas', | |
| port: 3306 | |
| }); |
| #!/usr/bin/env node | |
| 'use strict'; | |
| var meow = require('meow'); | |
| var catNames = require('./'); | |
| var cli = meow([ | |
| 'Examples', | |
| ' $ cat-names', | |
| ' Max', |
| 'use strict'; | |
| var uniqueRandomArray = require('unique-random-array'); | |
| var catNames = require('./cat-names.json'); | |
| exports.all = catNames; | |
| exports.random = uniqueRandomArray(catNames); |
| { | |
| "name": "cat-names", | |
| "version": "1.0.0", | |
| "description": "Get popular cat names", | |
| "license": "MIT", | |
| "repository": "sindresorhus/cat-names", | |
| "author": { | |
| "name": "Sindre Sorhus", | |
| "email": "sindresorhus@gmail.com", | |
| "url": "sindresorhus.com" |
| [ | |
| "Abby", | |
| "Angel", | |
| "Annie", | |
| "Baby", | |
| "Bailey", | |
| "Bandit", | |
| "Bear", | |
| "Bella", | |
| "Bob", |
| function (a, b) { | |
| return a + b; | |
| } |
| using System.Web.Mvc; | |
| using Helpers; | |
| using System.Web.Security; | |
| namespace Project.Controllers { | |
| [AllowAnonymous] | |
| public class HomeController : Controller { | |
| [HttpGet] |
| # Stop | |
| net stop WAS | |
| # Start | |
| # net start W3SVC |