This document seeks to summarize recent discussions about postmortem debugging, promises, and using them together. It starts by presenting what post-mortem debugging use cases are impacted negatively by the usage of promises. Then it describes some potential solutions that have been tried to fix these issues and their shortcomings.
Picking the right architecture = Picking the right battles + Managing trade-offs
- Clarify and agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?
This tutorial will turn your Raspberry PI into a simple Bluetooth audio receiver, which plays music through connected speakers. It's like a regular car audio system, but it can be used anywhere and it's a good value.
Audio source (i.e. smartphone)
|
v
((( Wireless Bluetooth Channel )))
|
Misc:
- CruciblePlaybook FAQ: https://www.reddit.com/r/CruciblePlaybook/wiki/faq
- General PvP advice (what noobs do / radar / how to win gunfights / subclass builds etc): https://www.reddit.com/r/CruciblePlaybook/comments/3gqp85/things_noobs_do_cover_radar_gunfights_howwhen_to/
- MTashed Crucible School (general PvP advice): https://www.youtube.com/playlist?list=PLVHacqixRV3Eo83gPpSesKjfkzlFRLwK1
- Making decisions in PvP (text + vid):
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"
Thx to crxviewer for the magic download URL.
/* bling.js */ | |
window.$ = document.querySelectorAll.bind(document) | |
Node.prototype.on = window.on = function (name, delegate, fn) { | |
var f | |
var target = this, match = false | |
var matches = this.matchesSelector || this.mozMatchesSelector || this.webkitMatchesSelector || this.oMatchesSelector || (function (name) { | |
$(name).forEach(function (elm) { | |
if (elm === target){ |
var request = require('request'); | |
var Promise = require('es6-promise').Promise; | |
var cjar = request.jar(); | |
var PSN_OAUTH_URI = "https://auth.api.sonyentertainmentnetwork.com/login.do"; | |
var BUNGIE_SIGNIN_URI = "https://www.bungie.net/en/User/SignIn/Psnid"; | |
// Returns a promise fullfilled with the response of the | |
// request, or rejected with the error |
/* bling.js */ | |
window.$ = document.querySelector.bind(document); | |
window.$$ = document.querySelectorAll.bind(document); | |
Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
NodeList.prototype.__proto__ = Array.prototype; | |
NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |
Hello, visitors! If you want an updated version of this styleguide in repo form with tons of real-life examples… check out Trellisheets! https://github.com/trello/trellisheets
“I perfectly understand our CSS. I never have any issues with cascading rules. I never have to use !important
or inline styles. Even though somebody else wrote this bit of CSS, I know exactly how it works and how to extend it. Fixes are easy! I have a hard time breaking our CSS. I know exactly where to put new CSS. We use all of our CSS and it’s pretty small overall. When I delete a template, I know the exact corresponding CSS file and I can delete it all at once. Nothing gets left behind.”
You often hear updog saying stuff like this. Who’s updog? Not much, who is up with you?