[ Launch: First d3 stuff ] 9db9806a79f8d89e8aee by jefferydutra
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
public interface IMappingService | |
{ | |
TDest Map<TSrc, TDest>(TSrc source) where TDest : class; | |
ICollection<TDest> Map<TSrc, TDest>(ICollection<TSrc> source) where TDest : class; | |
} | |
public class MappingService : IMappingService | |
{ | |
public TDest Map<TSrc, TDest>(TSrc source) where TDest : class | |
{ |
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-RemoteDesktop | |
cinst ccleaner | |
cinst console-devel | |
cinst expresso | |
cinst fiddler4 | |
cinst filezilla | |
cinst firefox | |
cinst git-credential-winstore | |
cinst irfanview |
[ Launch: First D3 visualizations ] 28d8c11b4921c7f28b9c by jefferydutra
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
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" | |
choco feature enable -n allowGlobalConfirmation | |
choco install 7zip.install /y | |
choco install autohotkey.portable /y | |
choco install gimp /y | |
choco install git /y | |
choco install git.install /y | |
choco install GoogleChrome /y | |
choco install nodejs /y |
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
const glob = require('glob'); | |
const entryArray = glob.sync('js/apps/**/index.js'); | |
const entry = entryArray.reduce((acc, item) => { | |
const name = item.replace('/index.js', ''); | |
acc[name.replace('js', '')] = `./${item}`; | |
return acc; | |
}, {}); | |
entry.vendor = [ |
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
Commit and Add | |
git commit -a -m "Updated flight scheduler to remove dead code" | |
Undo changes to unstaged files | |
git reset --hard | |
Undo file | |
git checkout -- Applications/WebClient/Web.config | |
Create Local Branch Targeted at a Remote Branch |