<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | |
| <script>window.jQuery || document.write('<script src="assets/js/jquery.min.js"><\/script>')</script> |
| /** | |
| * disable fancy box for the gallery page | |
| */ | |
| function disable_fancybox() { | |
| if ( is_page( 'gallery' ) ) { | |
| remove_action('wp_enqueue_scripts', array('easyFancyBox', 'enqueue_styles'), 999); | |
| remove_action('wp_head', array('easyFancyBox', 'main_script'), 999); | |
| remove_action('wp_print_scripts', array('easyFancyBox', 'register_scripts'), 999); | |
| remove_action('wp_footer', array('easyFancyBox', 'enqueue_footer_scripts')); | |
| remove_action('wp_footer', array('easyFancyBox', 'on_ready'), 999); |
| <ion-view view-title="{{ticker}}"> | |
| <div class="bar bar-subheader bar-light"> | |
| <div class="button-bar"> | |
| <div class="button button-clear"> | |
| <h6>Company Name Inc.</h6> | |
| </div> | |
| <h5 class="tittle button-left button-right">1000.5000</h5> | |
| <div class="button button-clear"> |
| <?php | |
| class Sizeable_Person | |
| { | |
| const POST_TYPE_SLUG = 'szbl-person'; | |
| public static $instance; | |
| public static function init() | |
| { | |
| if ( is_null( self::$instance ) ) |
| DECLARE @name VARCHAR(50) -- database name | |
| DECLARE @path VARCHAR(256) -- path for backup files | |
| DECLARE @fileName VARCHAR(256) -- filename for backup | |
| DECLARE @fileDate VARCHAR(20) -- used for file name | |
| -- please change the set @path = 'change to your backup location'. for example, | |
| -- SET @path = 'C:\backup\' | |
| -- or SET @path = 'O:\sqlbackup\' if you using remote drives | |
| -- note that remotedrive setup is extra step you have to perform in sql server in order to backup your dbs to remote drive | |
| -- you have to chnage you sql server accont to a network account and add that user to have full access to the network drive you are backing up to |
| /** | |
| * is_edit_page | |
| * function to check if the current page is a post edit page | |
| * | |
| * @author Ohad Raz <admin@bainternet.info> | |
| * | |
| * @param string $new_edit what page to check for accepts new - new post page ,edit - edit post page, null for either | |
| * @return boolean | |
| */ | |
| function is_edit_page($new_edit = null){ |
Wes Winham winhamwr@gmail.com
There are many tutorials floating around the web that almost get you a dynamic VPN in EC2. The goal of this tutorial is to be a one-stop-shop for this specific setup.