為了能讓大家能夠順利的建立起 Angular 4 開發環境,以下是需要安裝的相關軟體與安裝步驟與說明。
- Windows 7 以上版本 (更新到最新 Service Pack 版本)
- Mac OS X 10.6 以上版本
| var ws = package.Workbook.Worksheets["XXX"]; | |
| ws.Dimension.End.Row; |
| public static MvcHtmlString MenuLink(this HtmlHelper htmlHelper, string text, string action, string controller, object routevalues, object htmlAttributes) | |
| { | |
| var urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext); | |
| var routeData = htmlHelper.ViewContext.RouteData.Values; | |
| var currentController = routeData["controller"]; | |
| var currentAction = routeData["action"]; | |
| var tagBuilder = new TagBuilder("a"); | |
| tagBuilder.MergeAttribute("href", urlHelper.Action(action, controller, routevalues)); | |
| tagBuilder.SetInnerText(text); |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Net.Http; | |
| using System.Net.Http.Headers; | |
| using System.Web; | |
| using System.Web.Http; |
You should not use the Open SSH client that comes with Git for Windows. Instead, Windows 10 has its own implementation of Open SSH that is integrated with the system. To achieve this:
ssh-agent from Windows Services:Services in the Start Menu or Win+R and then type services.msc to launch the Services window;OpenSSH Authentication Agent in the list and double click on it;OpenSSH Authentication Agent Properties window that appears, choose Automatic from the Startup type: dropdown and click Start from Service status:. Make sure it now says Service status: Running.git config --global core.sshCommand C:/Windows/System32/OpenSSH/ssh.exe
| Plug 'vim-scripts/argtextobj.vim' | |
| Plug 'preservim/nerdtree' | |
| let mapleader = ' ' | |
| " This is the ideavimrc setting comes from https://github.com/saaguero/ideavimrc/blob/master/.ideavimrc | |
| set history=1000 | |
| set showmode | |
| set hlsearch | |
| set scrolloff=3 |
| #!/bin/bash | |
| # Sometimes you need to move your existing git repository | |
| # to a new remote repository (/new remote origin). | |
| # Here are a simple and quick steps that does exactly this. | |
| # | |
| # Let's assume we call "old repo" the repository you wish | |
| # to move, and "new repo" the one you wish to move to. | |
| # | |
| ### Step 1. Make sure you have a local copy of all "old repo" | |
| ### branches and tags. |
| --- Actions --- | |
| $Copy <M-C> | |
| $Cut <M-X> <S-Del> | |
| $Delete <Del> <BS> <M-BS> | |
| $LRU | |
| $Paste <M-V> | |
| $Redo <M-S-Z> <A-S-BS> | |
| $SearchWeb <A-S-G> | |
| $SelectAll <M-A> | |
| $Undo <M-Z> |