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
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<ul id="site_menu" class="nav nav-list"></ul> | |
<script type="text/javascript" data-app-id="ABCDEFGHIJKlmnopqrstuv" src="https://assets.yammer.com/platform/yam.js"></script> | |
<script src="/tanzanite/js/jquery.min.js" type="text/javascript" charset="utf-8"></script> |
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
tell application "System Events" | |
-- get current clipboard contents as a string | |
set CurrentClipboard to the clipboard as string | |
-- set the clipboad to your password | |
set the clipboard to "Y0urVPNPa$$w0rd" | |
-- start playing with the VPN | |
tell current location of network preferences | |
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
-- Check status of website | |
-- Requires application "Play Sound" - freely available here: http://microcosmsoftware.com/playsound/ | |
try | |
set the_http to do shell script "curl -siv http://www.example.com" | |
set the_code to text from word 3 to word 3 of the_http | |
if the_code is "401" then | |
tell application "Play Sound" |
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
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |
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
$ csession start cache |
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
When executing 02_Database_Objects, we get the following error: | |
Msg 4902, Level 16, State 1, Line 11802 | |
Cannot find the object "dbo.MH_Infusion" because it does not exist or you do not have permissions. | |
Msg 4902, Level 16, State 1, Line 11805 | |
Cannot find the object "dbo.MH_Infusion" because it does not exist or you do not have permissions. | |
Msg 4902, Level 16, State 1, Line 11862 | |
Cannot find the object "dbo.SiteCommonInformation" because it does not exist or you do not have permissions. |
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
(1 row(s) affected) | |
(1 row(s) affected) | |
(1 row(s) affected) | |
(1 row(s) affected) | |
(1 row(s) affected) |
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
<?php | |
/** Configuration Variables **/ | |
define('DB_NAME', 'DB_NAME'); | |
define('DB_TYPE', 'sqlsrv'); | |
define('DB_HOST', "DB_SERVER"); | |
define('DB_USER', 'DB_USERNAME'); | |
define('DB_PASSWORD', 'SOME_PASSWORD_HERE'); | |
define('NV_BASE_URL', 'APPLICATION_URL'); |
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
# ----------------------------------------------------- | |
# Adge Denkers | |
# [email protected] | |
# file name: .bash_profile | |
# date: 2017-08-08 | |
# updated: 2018-02-02 | |
# ----------------------------------------------------- | |
# Adge's Personal Bash Profile for Mac | |
# ----------------------------------------------------- | |
# v. 1.1 |
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
:be | |
# Edit your .bash_profile | |
:br | |
# Reload your .bash_profile | |
:servers | |
# Open VS Code and modify server list | |
:list-servers |
OlderNewer