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
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac | |
# Path to the bash it configuration | |
export BASH_IT="/c/Users/fabio/.bash_it" |
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
@ECHO OFF | |
CD /D "C:\gitrepos\sd-unity-4-0" | |
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" | |
call "msbuild" | |
start firefox -devTools http://localhost:49797/index.aspx | |
CD /D "C:\Program Files (x86)\IIS Express" | |
iisexpress /path:C:\gitrepos\sd-unity-4-0\ /port:49797 /clr:v4.0 | |
CMD |
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
#!/usr/bin/env bash | |
SCM_THEME_PROMPT_PREFIX="" | |
SCM_THEME_PROMPT_SUFFIX="" | |
SCM_THEME_PROMPT_DIRTY=" ${bold_red}✗${normal}" | |
SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓${normal}" | |
SCM_GIT_CHAR="${bold_green}±${normal}" | |
SCM_SVN_CHAR="${bold_cyan}⑆${normal}" | |
SCM_HG_CHAR="${bold_red}☿${normal}" | |
# THEME_CLOCK_FORMAT=${THEME_CLOCK_FORMAT:-"%I:%M:%S"} |
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
@ECHO OFF | |
openvpn --config C:/Users/fabio/OpenVPN/config/fabio-awsorig/fabio-awsorig.ovpn | |
CMD |
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
{ | |
"css": ["C:/gitrepos/sd-unity-4-0/css"], | |
"assets": ["C:/gitrepos/sd-unity-4-0/assets"] | |
} |
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
#!/usr/bin/env bash | |
# Sass build only skin colors | |
# Use: type "colors" in bash console, or npm run colors, | |
# make sure eithe .bashrc or npm scripts are set up for this to work | |
# No Color | |
white='\e[1;37m' |
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
#!/usr/bin/env bash | |
# Sass build only skin colors | |
# Use: type "colors" in bash console, or npm run colors, | |
# make sure eithe .bashrc or npm scripts are set up for this to work | |
# No Color | |
white='\e[1;37m' |
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
#!/bin/bash | |
# Copy and paste sdcore.min.js from dist folder to sd-unity-4-0/sdcore folder | |
function copyjs() | |
{ | |
cd C:/gitrepos/sdcore/dist | |
for f in *.js | |
do | |
cp -v "$f" C:/gitrepos/sd-unity-4-0/sdcore/${f%.js}.js | |
done |
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 file was initially generated by Windows Terminal 1.0.1401.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", |
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
@ECHO OFF | |
CD /D "C:\gitrepos\sd-unity-4-0" | |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\Tools\VsDevCmd.bat" | |
msbuild | |
start firefox -devTools http://localhost:49797/index.aspx | |
CD /D "C:\Program Files (x86)\IIS Express" | |
iisexpress /path:C:\gitrepos\sd-unity-4-0\ /port:49797 /clr:v4.0 | |
CMD |
OlderNewer