- Fitness
- Team work
- confidence
- adventure
- leadership
- mental toughness
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
cinst brave | |
cinst git | |
cinst conemu | |
cinst notepadplusplus.install | |
cinst poshgit | |
cinst nvm | |
cinst vscode | |
cinst 7zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AWSTemplateFormatVersion" : "2010-09-09", | |
"Description" : "AWS CloudFormation Sample Template EC2InstanceWithSecurityGroupSample: Create an Amazon EC2 instance running the Amazon Linux AMI. The AMI is chosen based on the region in which the stack is run. This example creates an EC2 security group for the instance to give you SSH access. **WARNING** This template creates an Amazon EC2 instance. You will be billed for the AWS resources used if you create a stack from this template.", | |
"Parameters" : { | |
"KeyName" : { | |
"Description" : "Name of an existing EC2 KeyPair to enable SSH access to the instance", | |
"Type" : "AWS::EC2::KeyPair::KeyName", | |
"ConstraintDescription" : "must be the name of an existing EC2 KeyPair." | |
}, |
I hereby claim:
- I am ryankelley on github.
- I am ryankelley (https://keybase.io/ryankelley) on keybase.
- I have a public key whose fingerprint is BCE9 6415 D34C 9FAE 823C E251 2138 2EEA 8271 2FF7
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NUnit.Framework; | |
namespace Inofile.Kno2 | |
{ | |
[TestFixture] | |
public abstract class ContextSpecification | |
{ | |
/// <summary> | |
/// Runs before every test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AWSTemplateFormatVersion" : "2010-09-09", | |
"Description" : "AWS CloudFormation Template VPC_with_PublicIPs_And_DNS: Sample template showing how to create a VPC with DNS and Public IPs enabled. You will be billed for the AWS resources used if you create a stack from this template.", | |
"Parameters" : { | |
"KeyName" : { | |
"Description" : "Name of an existing EC2 KeyPair to enable SSH access to the bastion host", | |
"Type" : "AWS::EC2::KeyPair::KeyName", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Enable-PSRemoting -Force | |
# | |
#$cred=Get-Credential NIH\volkova | |
#Install-BoxstarterPackage -ComputerName MyTargetMachine -PackageName MyPackage -Credential $cred | |
#START http://boxstarter.org/package/url? | |
Set-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions –showFileExtensions -EnableShowFullPathInTitleBar | |
Disable-InternetExplorerESC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Linq; | |
using AutoMapper; | |
using FieldBook.Core.Persistence; | |
using FieldBook.Core.UI; | |
using FieldBook.Interface.Conventions; | |
using FubuCore; | |
using FubuMVC.Core.Registration; | |
using FubuMVC.Core.Registration.Nodes; | |
using FubuMVC.Core.Resources.Conneg; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var GearController = { | |
'list': function (req, res) { | |
var filter = req.param('filter'); | |
var query = 'SELECT gear.*, categories.name as CategoryName from gear join categories on categories.id = gear.CategoryId'; | |
if (filter) { | |
var dbfilter = '%' + filter + '%'; | |
Gear.query(query + ' WHERE gear.name LIKE ?', [dbfilter], function (err, data) { | |
if (err) return res.send(err, 500); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// api/controllers/AuthController.js | |
var passport = require('passport'); | |
var AuthController = { | |
login: function (req,res) | |
{ | |
res.view(); | |
}, |
NewerOlder