http://dev.mobiledev.nbcuots.com/
http://google.com and http://google.com/test
http://google.com/test1 and http://google.com/test234
http://stage.nbcaffiliatemarketing.com/user/login and http://dev.nbcaffiliatemarketing.com/user/login
[#255]: Exporting Drupal Entity Id: 68921... | |
Email: [email protected] | |
Export Successful! | |
[#256]: Exporting Drupal Entity Id: 68926... | |
Email: [email protected] | |
Export Successful! | |
[#257]: Exporting Drupal Entity Id: 68931... | |
Email: [email protected] |
$render = array( | |
'#tag' => 'iframe', | |
'#attributes' => array ( | |
'src' => url($url), | |
'width' => '100%', | |
'scrolling' => 'auto', | |
'height' => '500', | |
'frameborder' => '0', | |
), | |
'#prefix' => '<div class="nbcuoxy-rebelmouse">', |
Raͩnͤsͣoͭmͪ | |
A | |
aͣ bͣ cͣ dͣ eͣ fͣ gͣ hͣ iͣ jͣ kͣ lͣ mͣ nͣ oͣ pͣ qͣ rͣ sͣ tͣ uͣ vͣ wͣ xͣ yͣ zͣ | |
E | |
aͤ bͤ cͤ dͤ eͤ fͤ gͤ hͤ iͤ jͤ kͤ lͤ mͤ nͤ oͤ pͤ qͤ rͤ sͤ tͤ uͤ vͤ wͤ xͤ yͤ zͤ | |
I | |
aͥ bͥ cͥ dͥ eͥ fͥ gͥ hͥ iͥ jͥ kͥ lͥ mͥ nͥ oͥ pͥ qͥ rͥ sͥ tͥ uͥ vͥ wͥ xͥ yͥ zͥ |
javascript:(function () { | |
var anchors = document.getElementsByTagName('a'); | |
var body = document.getElementsByTagName('body')[0]; | |
body.style.margin='0px'; | |
for (i in anchors) { | |
if (anchors[i].href && anchors[i].href.toUpperCase().indexOf('.JPG') !== -1) { | |
var img = document.createElement('img'); | |
img.src = anchors[i].href; | |
img.onload = function () { | |
var height = this.height; |
javascript:(function(){ | |
var x = prompt('Enter the desired width, in pixesl. (default: 250)', 250); | |
document.getElementsByClassName('docs-chat-pane-container')[0].style.width = x + 'px'; | |
document.getElementsByClassName('docs-chat-edit-container')[0].style.width = x + 'px'; | |
document.getElementsByClassName('docs-chat-edit-box')[0].style.width = (x - 32) + 'px'; | |
document.getElementById('docs-chat-messages').children[document.getElementById('docs-chat-messages').children.length-1].scrollIntoView(); | |
}()); | |
'use strict'; | |
var app = angular.module('selfTrickleCalculator'); | |
app.factory('TrickleCalcAPI', function () { | |
return { | |
link: null, | |
moa: null, |
var colorToNumArray = function(color){ | |
var colorArray = [] | |
var cleanColor = '' | |
if(color.split('')[0]='#'){ | |
cleanColor = color.slice(1); | |
} else { | |
cleanColor = color; | |
} | |
var split = cleanColor.split(''); |
{ | |
"manifest_version": 2, | |
"name": "DuLeone Craps", | |
"description": "DuLeone Craps is an HTML5 implementation of the popular Craps casino game.", | |
"version": "1", | |
"app": { | |
"urls": [ | |
"*://m.duleone.com/craps", | |
"*://www.duleone.com/craps/" | |
], |
echo "Proccessing .bash_aliases" | |
## | |
## General & Utils | |
## | |
######################################## | |
alias hackchrome='subl -n ~/code/ChromeExtensions/' | |
alias hackbash='vim ~/.bash_profile && . ~/.bash_profile' | |
alias showbash='cat ~/.bash_profile' |