$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
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
| try { | |
| $proxyKey = (Get-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings" -Name ProxyServer -ErrorAction Stop).ProxyServer | |
| foreach($proxy in $proxyKey.Split(';')) { | |
| $parts = $proxy.Split('=') | |
| switch ($parts[0]) { | |
| 'http' { iex "npm config set proxy http://$parts[1]"; break } | |
| 'https' { iex "npm config set https-proxy http://$parts[1]"; break } | |
| } | |
| } | |
| } |
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
| +-- doc | |
| β +-- api | |
| β β +-- ProjectA | |
| β β β +-- index.md | |
| β β +-- ProjectB | |
| β β +-- index.md | |
| β +-- docfx.json | |
| β +-- toc.yml | |
| +-- src | |
| +-- ProjectA |
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 Microsoft.Owin.Hosting; | |
| // ... | |
| public class ServiceHost | |
| { | |
| private IDisposable server = null; | |
| const string baseAddress = "https://*:443"; | |
| public void Start() |
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
| /** | |
| * Primary application logic for our Functional Programming blog example | |
| * See related blog series at: http://www.datchley.name/tag/functional-programming/ | |
| * Version: 2.0 | |
| */ | |
| // A simple, resuable comparison for '>=' | |
| function greaterThanOrEqual(a, b) { | |
| return a >= b | |
| } |
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 OfficeOpenXml; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Text; | |
| namespace WebUI.Infrastructure | |
| { | |
| public static class StringUtils | |
| { | |
| private static string DuplicateTicksForSql(this string s) |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |