This file contains 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
[user] | |
name = [name] | |
email = [email] | |
[core] | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore_global | |
# windows; if on a windows machine, uncomment line below | |
#autocrfl = true | |
This file contains 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
# Git shortcuts | |
alias gb='git branch' | |
alias gs='git status' | |
alias gsu='git status -su' | |
alias ga='git add' | |
alias gaa='git add -A' | |
alias gun='git reset HEAD' | |
alias gc='git commit' | |
alias gcm='git commit -m' | |
alias gco='git checkout' |
This file contains 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 | |
setLocal EnableDelayedExpansion | |
for /F "tokens=*" %%I in ('dir /L /B /s') do ( | |
set f=%%I | |
set f=!f:%%~dpI=! | |
ren "%%I" "!f!" | |
echo "%%I" "!f!" | |
) |
This file contains 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 | |
set folder="C:\" | |
for /f "delims=" %%A in ( ' dir /b %folder% ^| findstr /R "[ABCDEFGHIJKLMNOPQRSTUVWXYZ]" ' ) do ( | |
echo path: %%~dpnxA | |
echo name: %%~nxA | |
echo. | |
) |
This file contains 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
######################### | |
# .gitignore file for Xcode4 and Xcode5 Source projects | |
# | |
# Apple bugs, waiting for Apple to fix/respond: | |
# | |
# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation? | |
# | |
# Version 2.1 | |
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
# |
This file contains 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
-- ============================================= | |
-- | |
-- Modification of https://www.codeproject.com/articles/21068/audit-trail-generator-for-microsoft-sql | |
-- | |
-- Author: Rolando Liriano | |
-- Create date: 2017/02/03 | |
-- Description: Creates an audit trail table along with triggers and views for a specified table | |
-- @TableName required - Name of the table to audit | |
-- @PrimaryKey required - Name of the primary key in table | |
-- @TableSchema optional - Current schema of the table |
This file contains 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
/* | |
CASE | |
- Order Selection, required | |
** Only 1 option can be chosen | |
- Patient, required | |
** I am going to make this into a separate class so user does not have to enter same patient info for multiple cases |
This file contains 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 System; | |
using System.Web.Mvc; | |
using Newtonsoft.Json; | |
public class JsonNetResult : JsonResult { | |
public JsonSerializerSettings SerializerSettings { get; set; } | |
public Formatting Formatting { get; set; } | |
public JsonNetResult(object data) { | |
this.JsonRequestBehavior = JsonRequestBehavior.DenyGet; |
This file contains 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
/* | |
* bootstrap-session-timeout | |
* www.orangehilldev.com | |
* | |
* Copyright (c) 2014 Vedran Opacic | |
* Licensed under the MIT license. | |
*/ | |
(function($) { | |
/*jshint multistr: true */ |
OlderNewer