Skip to content

Instantly share code, notes, and snippets.

Source: Institute for Professional Excellence in Coaching

Powerful questions are open-ended, clarity seeking, probing, challenging, thought-provoking, future directed, solution oriented questions that cause a person to search for answers and new possibilities.

  • What can you do about this?
  • What about that makes it work?
  • What other choices can you make?
  • What’s another way to look at that?
  • How can you reframe that to help you move on?
  • What’s your next step?
@robertocarroll
robertocarroll / WP-HTML-Compression
Created April 30, 2017 02:22 — forked from sethbergman/WP-HTML-Compression
Minify HTML for WordPress without a Plugin - Add to function.php
<?php
class WP_HTML_Compression
{
// Settings
protected $compress_css = true;
protected $compress_js = true;
protected $info_comment = true;
protected $remove_comments = true;
// Variables
@robertocarroll
robertocarroll / README.md
Created March 29, 2017 11:12 — forked from KoGor/README.md
Earth globe

Интерактивный глобус с возможностью вращения мышкой и центрированием на выбранную страну. Подробнее о создании можно почитать на Хабрахабре.

This projected is licensed under the terms of the MIT license.

@robertocarroll
robertocarroll / 1hello.md
Last active November 19, 2016 07:58 — forked from mpj/1hello.md
Arrow functions
@robertocarroll
robertocarroll / carry.md
Created September 20, 2016 14:49 — forked from jemgold/carry.md

Backpack criteria.todo

  • All black, no tacky logos
  • Laptop sleeve
  • Not too officey for hiking or cycling; not too outdoorsy for commuting
  • Waterproofish
  • External water bottle pocket (negates GoRucks etc)
  • ~20-25L
    • small enough to be a personal item on a plane
    • big enough for day-to-day use
  • Doesn't make you look like an accountant
@robertocarroll
robertocarroll / package.json
Created July 20, 2016 20:32 — forked from addyosmani/package.json
npm run-scripts boilerplate
{
"name": "my-app",
"version": "1.0.0",
"description": "My test app",
"main": "src/js/index.js",
"scripts": {
"jshint:dist": "jshint src/js/*.js'",
"jshint": "npm run jshint:dist",
"jscs": "jscs src/*.js",
"browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js",
@robertocarroll
robertocarroll / gist:b24bc1f1d6c1c1271583a4107e74e9a1
Created April 29, 2016 19:48 — forked from tonymtz/gist:d75101d9bdf764c890ef
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*
@robertocarroll
robertocarroll / 1_Intro.md
Created April 27, 2016 11:08 — forked from timhops/1_Intro.md
Social Media Strategy

#Social Media Strategy

##About the Project

This was inspired by the Tiny Content Framework that focuses on “goals, messages, and branding.”

The Social Media Strategy collection is aimed at helping companies get started in planning their approach to social media. This is a bit of a template, and sprinkled with examples in each category. It should be a good starting point before a business dives head-first into whatever fancy social media outlet may be hot at the moment. (Tip: Find out what medium/outlet is best suited for your audiences before blindly signing up for accounts for whatever is the most popular at the moment. We used to think MySpace was going to rule the Earth for a while, until it faded into the background and gave way to Twitter, Facebook and the rest of the photo-sharing ones.)

##Contribute

@robertocarroll
robertocarroll / gitworkflow.md
Created April 14, 2016 11:48 — forked from esfand/gitworkflow.md
Git Workflow

Git Workflow for Feature Branches

The following is an example workflow for developing on a temporary branch and merging back to the main branch squashing all commits into a single commit. This assumes you already have a branch named branch-xyz and have finished the work on that branch.

Step 1: Checkout the feature branch

git checkout branch-xyz
@robertocarroll
robertocarroll / README.md
Created January 14, 2016 19:45 — forked from nitaku/README.md
Custom hex projection

An example of some random hexagons from an integer-coordinates hexagonal tiling, rendered with a custom projection that makes hexagons appear regular.

The technique is taken from this Mike Bostock's example, and it makes use of 3x2 hexagons like this one:

   -1 0 1   X
 2    *
 1  *   *
 0  * O *
-1 *