Add db mc dblegacy solr01
to etc hosts pointing to 127.0.0.1
for drush to function.
underscores in file names indicates directories. e.g.
docker_proxy_acl.vcl
-> docker/proxy/acl.vcl
function asyncFunction (item, cb) { | |
setTimeout(() => { | |
console.log('done with', item); | |
cb(); | |
}, 100); | |
} | |
let requests = [1, 2, 3].reduce((promiseChain, item) => { | |
return promiseChain.then(() => new Promise((resolve) => { | |
asyncFunction(item, resolve); |
Add db mc dblegacy solr01
to etc hosts pointing to 127.0.0.1
for drush to function.
underscores in file names indicates directories. e.g.
docker_proxy_acl.vcl
-> docker/proxy/acl.vcl
# Sample gitconfig | |
# | |
# If you have hub install (github helper scripts) | |
[hub] | |
protocol = https | |
[user] | |
name = <your name as you want it in git commits> | |
email = <your email> | |
[branch] |
function swap() | |
{ | |
local TMPFILE=tmp.$$ | |
mv "$1" $TMPFILE | |
mv "$2" "$1" | |
mv $TMPFILE "$2" | |
} |
#This file contains custom messages for death events. | |
#You can specify as many messages as you want (within reason) for each death type. | |
#Just be sure each message is on a new line under the appropriate label. | |
#When a player dies, a random message from the appropriate label is chosen. | |
#Accepted variables: | |
# - %d holds the name of the dead player. | |
# - %a holds the name of the attacking entity (player or monster) for PVP and Monster deaths. | |
# - %i holds the name of the attacking player's current item for PVP deaths. | |
#Custom item names may be defined in the 'heroicdeath.items' file. | |
:Drown |
<?php | |
// $Id$ | |
?> | |
<?php if($content->module == "nodequeue") : ?> | |
<?php foreach ($content->content as $article) : ?> | |
<div class="article article-with-teaser-large <?php print $content->css_class; ?>"> | |
<?php | |
$options = array( | |
// array('type' => 'image', 'preset' => mjm_get_preset($content->css_class)), | |
array('type' => 'title', 'element' => 'h2', 'link' => TRUE), |
# Example MySQL config file for medium systems. | |
# | |
# This is for a system with little memory (32M - 64M) where MySQL plays | |
# an important part, or systems up to 128M where MySQL is used together with | |
# other programs (such as a web server) | |
# | |
# You can copy this file to | |
# /etc/my.cnf to set global options, | |
# mysql-data-dir/my.cnf to set server-specific options (in this | |
# installation this directory is C:\mysql\data) or |
.pic-pos-dropdown { | |
background-color:#FFE499; | |
border-style:none solid solid; | |
border-width:medium 1px 1px; | |
float:left; | |
margin-left:-1px; | |
position:absolute; | |
width:188px; | |
} |
function customcode() { | |
Drupal.editor.editor.on('toolbarLoaded',function() { | |
var customcodeButton = {type: 'push',label: 'Insert Custom code', value: 'insertcustomcode'}; | |
this.toolbar.addButtonToGroup(customcodeButton,'specialbuttons'); | |
var Dom = YAHOO.util.Dom, | |
Event = YAHOO.util.Event, | |
Lang = YAHOO.lang; | |
var _handleWindowClose = function() { |