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; | |
| using LinenLifeCycle.Messages; | |
| using Magnum.StateMachine; | |
| using MassTransit; | |
| using MassTransit.Saga; | |
| namespace LinenLifeCycle | |
| { | |
| public class LinenCycleSaga: SagaStateMachine<LinenCycleSaga>, ISaga | |
| { |
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; | |
| using System.Collections.Generic; | |
| using Cimetrix.CimControlFramework.FactoryAutomation; | |
| using Cimetrix.CimControlFramework.Schedulers.Marathon2QuadScheduler; | |
| namespace TestProjectScheduler | |
| { | |
| public class JobUserDataBuilder | |
| { | |
| private ChamberSelect[][] processModuleChambers; |
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 nocompatible | |
| colorscheme slate | |
| syntax on | |
| set showmode | |
| set showcmd | |
| filetype on | |
| filetype plugin on | |
| filetype indent on | |
| #Tabstops |
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
| let mapleader="," | |
| nmap <Leader>d :NERDTreeToggle<CR> |
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; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| using Squire.Framework; | |
| namespace Squire | |
| { | |
| [TestClass] | |
| public class NumbersKihon : NumbersKihonStructure | |
| { | |
| protected override int Return_The_Maximum_Value_Of_Int32() |
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
| :s /\//\\/g |
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
| :s /\\/\//g |
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
| export PATH="$PATH:~/git-achievements" | |
| alias git="git-achievements" | |
| SSH_ENV="$HOME/.ssh/environment" | |
| # start the ssh-agent | |
| function start_agent { | |
| echo "Initializing new SSH agent..." | |
| # spawn ssh-agent | |
| ssh-agent | sed 's/^echo/#echo/' > "$SSH_ENV" |
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
| [core] | |
| autocrlf = false | |
| safecrlf = true | |
| [user] | |
| name = Barry Forrest | |
| email = [email protected] | |
| [alias] | |
| co = checkout | |
| ci = commit |
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
| We have a regular telephone keypad and we want to know the number of "valid" 7 digit phone numbers that start from any key on the keypad, | |
| and progress to the next key using the Knight's move from chess (two squares horizontally then one vertically, | |
| or two vertically then one horizontally, making an "L" shape). | |
| "Valid" numbers may not begin with 0 or 1. | |
| Keypad: | |
| 1 2 3 | |
| 4 5 6 |
OlderNewer