Sorry, only for my loving chrome.
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
| // Embed Views | |
| <?php print views_embed_view('pcns', 'block_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
| # prompt style and colors based on Steve Losh's Prose theme: | |
| # http://github.com/sjl/oh-my-zsh/blob/master/themes/prose.zsh-theme | |
| # | |
| # vcs_info modifications from Bart Trojanowski's zsh prompt: | |
| # http://www.jukie.net/bart/blog/pimping-out-zsh-prompt | |
| # | |
| # git untracked files modification from Brian Carper: | |
| # http://briancarper.net/blog/570/git-info-in-your-zsh-prompt | |
| export VIRTUAL_ENV_DISABLE_PROMPT=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
| #################################### | |
| # BACKUP MAMP DATABASE | |
| #################################### | |
| function backupDATA(){ | |
| TIMESTAMP=$(date +"%F-%H-%M-%S") | |
| BACKUP_DIR="/Users/arvind/Dropbox/HybridForge/DB" | |
| MYSQL_USER="root" | |
| MYSQL=/Applications/MAMP/Library/bin/mysql | |
| MYSQL_PASSWORD="root" | |
| MYSQLDUMP=/Applications/MAMP/Library/bin/mysqldump |
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
| git update-index --no-assume-unchanged <file> |
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
| var txt; | |
| txt = $(".teaser-txt").text().split(" ", 9).toString(); | |
| txt = txt.replace (/,/g, " "); |
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
| import React, { | |
| AppRegistry, | |
| Component, | |
| StyleSheet, | |
| ListView, | |
| Text, | |
| View | |
| } from 'react-native'; | |
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
| # Ignore configuration files that may contain sensitive information. | |
| # Allow settings.php to enable Domain Access module | |
| sites/*/settings.local.php | |
| # Ignore paths that contain user-generated content. | |
| /sites/*/files | |
| /sites/*/private | |
| /files/* | |
| /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
| var center = new google.maps.LatLng(53.5557957,-113.6340293); | |
| var options = { | |
| 'zoom': 9, | |
| 'center': center, | |
| 'mapTypeId': google.maps.MapTypeId.ROADMAP, | |
| 'disableDoubleClickZoom': false, | |
| }; | |
| var map = new google.maps.Map(document.getElementById("map"), options); | |
| var markers = []; | |
| } |
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
| $custom_theme = variable_get('theme_default'); | |
| dpm($custom_theme); | |
OlderNewer