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
## OS Core ## | |
xcode-select --install | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
## Communication and Productivity Tools ## | |
brew install --cask notion | |
brew install --cask slack | |
brew install --cask microsoft-teams | |
brew install --cask obsidian |
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-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) | |
## OS Core ## | |
choco install 7zip googlechrome firefox adobereader vlc -y | |
## Communication and Productivity Tools ## | |
choco install slack microsoft-teams notion -y | |
choco install office365business -y | |
## Developer Tools |
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
Import-Module WebAdministration | |
$port = 80 | |
$ssl = $false | |
#App Start | |
SetupOptionalVariables | |
SetupAppPools | |
SetupWebSite | |
SetupWebApplication |
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
<log4net> | |
<logger name="DefaultCoreTeam"> | |
<level value="ALL" /> | |
<appender-ref ref="DebugForwardingAppender" /> | |
<appender-ref ref="InfoForwardingAppender" /> | |
<appender-ref ref="WarnForwardingAppender" /> | |
<appender-ref ref="ErrorForwardingAppender" /> | |
</logger> | |
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> |
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
$ cd /path/to/repository | |
$ git remote add REMOTE_NAME PATH_TO_REPO | |
$ git config remote.REMOTE_NAME.push refs/heads/master:refs/heads/master |
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
# .bashrc file, located in c:\Users\username\ | |
#cmd | |
alias cd..="cd .." | |
alias ..="cd .." | |
alias ...="cd ../.." | |
alias ....="cd ../../.." | |
alias dir="ls -al" | |
alias cls="clear" |
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
This workflow is meant for feature development in a branch. Branches should be very short lived in this workflow. Because they are so lightweight in Git, this shouldn't be a problem. | |
Only go past step 7 when you are done with that feature and ready to merge it back to the main trunk/master branch. | |
Based from Jimmy Bogard http://www.lostechies.com/blogs/jimmy_bogard/archive/2010/04/30/automapper-git-workflow-dealing-with-bugs-issues.aspx | |
1) git checkout –b “Feature1” | |
<work work> | |
2) git add . | |
3) git commit –m “Commit message” |
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
# Ignore file for Visual Studio 2010 | |
# use glob syntax | |
syntax: glob | |
# Ignore Visual Studio 2010 files | |
*.obj | |
*.exe | |
*.user | |
*.aps |