Skip to content

Instantly share code, notes, and snippets.

View rroman81's full-sized avatar

Roman Rozinov rroman81

View GitHub Profile
@rroman81
rroman81 / gist:2cd42ed8795daf2d75c8069a621f554f
Created December 17, 2019 23:47 — forked from rarous/gist:3529050
Generate MetaProj file from solution
$env:MSBuildEmitSolution=1
msbuild FooBar.sln /t:ValidateSolutionConfiguration
$env:MSBuildEmitSolution=0
@rroman81
rroman81 / build19-superhero.md
Created May 7, 2019 19:35 — forked from jldeen/build19-superhero.md
Build19 From Zero to DevOps Superhero

some tools for diagrams in software documentation

Diagrams For Documentation

Obvious Choices

ASCII

@rroman81
rroman81 / brew-install-mac-dev-environment.sh
Last active June 27, 2018 05:20 — forked from lopezm1/brew-install-mac-dev-environment.sh
Brew Install My Dev Environment for macOS High Sierra - Slack, Docker, iTerm, IntelliJ, Google, SourceTree, Spotify, etc.
#!/bin/bash
APP_FOLDER_LOCATION=/Applications
IFS=""
## Install applications via brew cask
brew_install() {
execute="$(brew cask install $1 2>&1)"
case $execute in
*Warning*|*Error*) echo "Warning while installing $1: $execute" ;;
*successfully*) echo "$execute \n Installed $1." ;;