Run the PHP dev server on your given port
php -S 0.0.0.0:8080 -t public public/index.php
In httpie, pass ?XDEBUG_SESSION_START=foobar
on the query string with the request
# so you probably want to make this the last line of your .bash_profile, or something similar | |
export PROMPT_COMMAND="${PROMPT_COMMAND:+$PROMPT_COMMAND ; }"'history -a' |
/** | |
* Registers a Vue component. Can take a `templateUrl` in the componentDef that is loaded and resolved to `template` | |
* @param {string} name | |
* @param {Object} componentDef | |
*/ | |
function registerVueComponent(name, componentDef) { | |
if (componentDef.templateUrl) { | |
Vue.component(name, function (resolve, reject) { | |
// retrieve the template via axios async call | |
axios.get(componentDef.templateUrl) |
> curl https://HOSTNAME:7473/db/data/ | |
{ | |
"errors" : [ { | |
"code" : "Neo.ClientError.Security.Unauthorized", | |
"message" : "No authentication header supplied." | |
} ] | |
} |
# put this in the conf/gremlin-server/ directory | |
host: localhost | |
port: 8182 | |
threadPoolWorker: 1 | |
gremlinPool: 8 | |
scriptEvaluationTimeout: 30000 | |
serializedResponseTimeout: 30000 | |
channelizer: org.apache.tinkerpop.gremlin.server.channel.WebSocketChannelizer | |
graphs: { |
(* | |
* Finder Open iTerm Here - v1.0.2 - 4/14/2011 | |
* http://benalman.com/ | |
* | |
* Copyright (c) 2011 "Cowboy" Ben Alman | |
* Dual licensed under the MIT and GPL licenses. | |
* http://benalman.com/about/license/ | |
* | |
* Modified by Ed Finkler to work with iTerm 2.9x Beta - Tuesday; February 2, 2016 | |
*) |
<div id="invite-friends-component"> | |
<div class="row"> | |
<div class="col-md-8"><h3>Invite Friends</h3></div> | |
<div class="col-sm-4 col-xs-6"> | |
<button class="btn btn-social btn-facebook btn-block"><i class="fa fa-facebook"></i>Insert contact using Facebook</button> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="col-md-12"> | |
<form action="{{ inviteFriendsActionUrl }}" method="POST"> |
#!/bin/bash | |
usage() | |
{ | |
cat << EOF | |
usage: $0 options | |
This script set ownership for all table, sequence and views for a given database | |
Credit: Based on http://stackoverflow.com/a/2686185/305019 by Alex Soto |
# from http://www.tekkie.ro/computer-setup/how-to-install-kcachegrind-qcachegrind-on-mac-osx/ | |
sudo ln -s /usr/local/bin/dot /usr/bin/dot |