Skip to content

Instantly share code, notes, and snippets.

View inkredabull's full-sized avatar

Anthony Bull inkredabull

View GitHub Profile
@inkredabull
inkredabull / batch_update_for_peoplegoal.md
Last active January 28, 2019 21:40
Batch update for PeopleGoal

TL;DR Script for updating PeopleGoal Feedback Questions per User

Details

Discovered PeopleGoal recently.

I like codifying peoples' job responsibilities via the Feedback Question but for 33 reports in my org, neither I nor my managers can be bothered to key-in each via the UI.

@inkredabull
inkredabull / 2018_06_07_sfelc_building_distributed_teams_notes.txt
Last active June 8, 2018 15:32
6/7/18 SFELCT Building Distributed Teams (notes)
Jason : https://www.linkedin.com/in/jcwarner/
Dave : https://www.linkedin.com/in/dave-camp-2184182/
Dana : https://www.linkedin.com/in/dglawson/
Wade : https://www.linkedin.com/in/wadefoster/
Tim : https://www.linkedin.com/in/timols/
* Jason
* “Remote is the future” => “Remote is the present”
* Key Factors
* Hiring
{"userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36","lighthouseVersion":"2.8.0","generatedTime":"2018-05-03T21:41:33.445Z","initialUrl":"https://app.pipefy.com/organizations/121423","url":"https://app.pipefy.com/organizations/121423","runWarnings":[],"audits":{"is-on-https":{"score":true,"displayValue":"","rawValue":true,"extendedInfo":{"value":[]},"scoringMode":"binary","name":"is-on-https","description":"Uses HTTPS","helpText":"All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https).","details":{"type":"list","header":{"type":"text","text":"Insecure URLs:"},"items":[]}},"first-meaningful-paint":{"score":69,"displayValue":"3,100 ms
{"userAgent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36","lighthouseVersion":"2.8.0","generatedTime":"2018-05-03T17:22:00.836Z","initialUrl":"https://app.pipefy.com/pipes/455736","url":"https://app.pipefy.com/pipes/455736","runWarnings":[],"audits":{"is-on-https":{"score":true,"displayValue":"","rawValue":true,"extendedInfo":{"value":[]},"scoringMode":"binary","name":"is-on-https","description":"Uses HTTPS","helpText":"All sites should be protected with HTTPS, even ones that don't handle sensitive data. HTTPS prevents intruders from tampering with or passively listening in on the communications between your app and your users, and is a prerequisite for HTTP/2 and many new web platform APIs. [Learn more](https://developers.google.com/web/tools/lighthouse/audits/https).","details":{"type":"list","header":{"type":"text","text":"Insecure URLs:"},"items":[]}},"first-meaningful-paint":{"score":0,"displayValue":"29,450 ms","rawValue":294
@inkredabull
inkredabull / google-io-event-extractor.js
Last active May 1, 2018 01:17
Extract from I/O Schedule for Google Calendar
// URL : https://events.google.com/io/schedule/
// provided as-is, no warranty
// copy-paste the following into console
var s = document.createElement("script");
s.type = "text/javascript";
s.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js";
$("head").append(s);
@inkredabull
inkredabull / python_watchman_10.13.3.md
Created April 18, 2018 23:36
Python & Watchman OSX 10.13.3

A little writeup about my wrangling...

  • when I attempted: brew install --HEAD watchman got the error: ImportError: No module named setuptools
  • reviewing Logs/Homebrew/watchman/05.python, realized that ~/.pyenv was nowhere to be found on PATH (indicating that the build was leveraging system Python, which happened to be 2.)
  • made sure pyenv init was being called in both .bashrc/.zshrc
  • build (local) was still failing
  • noticed the following subdir at the front of PATH: /usr/local/Homebrew/Library/Homebrew/shims/super
  • removed /usr/local/opt/python@2.
  • decided to kludge a fix just to get Watchman build/install to work so I could make progress :-P
@inkredabull
inkredabull / ejabberd_mnesia_user_lookup.md
Last active February 16, 2018 23:58
ejabberd : Mnesia user lookup

Worth capturing in a gist:

  • if you have user named 'USER' registered for 'localhost' then the way to find that user's password is with the following syntax:

$ ejabberdctl debug

> mnesia:dirty_read(passwd,{<<"USER">>,<<"localhost">>}).

@inkredabull
inkredabull / blockstack_verification.txt
Created February 2, 2018 22:27
Blockstack Verification
Verifying my Blockstack ID is secured with the address 1AwLKW5fhb2Yte8zZvKU7pPtin76KdfyqL https://explorer.blockstack.org/address/1AwLKW5fhb2Yte8zZvKU7pPtin76KdfyqL
@inkredabull
inkredabull / blockchain_resources.md
Last active January 26, 2018 23:03
Blockchain Resources

Tutorials

  1. cryptozombies : fun way to learn Dapps
  2. Dapps for Beginners : comprehensive

Overview

Infrastructure

  1. Mist : this video helped me understand the architectural revolution that's happening; Design is design but what if you weren’t limited to a browser-centric UX?

Classes