I hereby claim:
- I am arlago on github.
- I am lakedevgrid (https://keybase.io/lakedevgrid) on keybase.
- I have a public key ASBLdpZ_VJzbyI09fzRvoU5hiM1m-o40ddAAKDvGBW1Ymwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| URL="http://localhost:15672/cli/rabbitmqadmin" | |
| VHOST="<>" | |
| USER="<>" | |
| PWD="<>" | |
| QUEUE="<>" | |
| FAILED_QUEUE="<>" |
https://docs.python.org/3/library/pdb.html
python -m pdb <script_name>
b <line_bumber>
| #!/usr/bin/env python | |
| import json | |
| import sys | |
| import argparse | |
| from collections import OrderedDict | |
| parser = argparse.ArgumentParser(description='JSON pretty print') | |
| parser.add_argument('-i', type=int, default=2, help='Number of spaces of identation.') |
| http://jsfiddle.net/ym5w0gk5/6/ | |
| width = 200 ; | |
| height = 200 ; | |
| //svg | |
| var svg = d3.select("body").append("svg").attr("id","vis") | |
| .attr("width", width ) | |
| .attr("height", height ); |
| <!DOCTYPE html> | |
| <html ng-app="asdf"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script> | |
| <script type="text/javascript"> | |
| angular.module('asdf', []).controller('fdsa', function($scope) { | |
| }).filter('beginningWith', function() { | |
| return function(array, query) { |
| -> Install Vorlon to start the server. | |
| npm i -g vorlon | |
| -> Add vorlon on Ionic App index page. | |
| With sessionid if exists several apps in the same server | |
| <script src="http://vorlon_server_host:1337/vorlon.js?SESSIONID"></script> | |
| Uses default sessionid when one app per server. | |
| <script src="http://vorlon_server_host:1337/vorlon.js"></script> |
| 1. Global installation of node-inspector. | |
| sudo npm install -g node-inspector | |
| 2. Start node application. | |
| node --debug ./bin/www | |
| 3. Start node-inspector. | |
| node-inspector |
| #!/bin/sh | |
| if [ 1 != $# ]; then | |
| echo "Usage:" | |
| echo `basename $0` "<apk-full-file-name>" | |
| exit 1 | |
| fi | |
| APK_FULL_PATH=`readlink -nf $1` | |
| DEXTOJAR_DIR="/home/rodrigo/Desenvolvimento/Android/dex2jar/dex2jar-2.0/" |