
*Classics by ActRazer https://actrazer.bandcamp.com/
*Memory Bank

*Classics by ActRazer https://actrazer.bandcamp.com/
*Memory Bank
Figuring out the root cause of a bug is often the hardest part of fixing it. Eric Lathrop will show how to use your browser's built-in developer tools to track down bugs so you can fix them.
git clone https://github.com/TwoScoopGames/Cluster-Junk.gitcd Cluster-Junk| "use strict"; | |
| var http = require("http"); | |
| function HttpError(statusCode) { | |
| this.name = "HttpError"; | |
| this.statusCode = statusCode; | |
| this.message = "Recieved status code " + statusCode; | |
| } | |
| HttpError.prototype = Error.prototype; |
| function asyncMap(list, iterator, callback) { | |
| var finished = 0; | |
| var results = []; | |
| var firstErr; | |
| var makeIteratorFinishCallback = function(i) { | |
| return function(err, item) { | |
| finished++; | |
| if (err) { | |
| if (!firstErr) { |
| # Port of the DynamoDB Tutorial to Ruby | |
| # http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LoadData_PHP.html | |
| require 'aws-sdk' | |
| def upload_sample_products(dynamo_db) | |
| products = dynamo_db.tables['ProductCatalog'] | |
| products.hash_key = { :Id => :string } | |
| product = { | |
| 'Id' => 101, |
I hereby claim:
To claim this, I am signing this object:
Say there's a Go app at github.com/supermighty/app, which has a package a that references b.
If I fork that repository to github.com/ericlathrop/app, now the local file $GOPATH/github.com/ericlathrop/app/a/something.go still has the line
import ("github.com/supermighty/app/b")so when I edit $GOPATH/github.com/ericlathrop/app/b/something.go, my changes are never seen in a because it's still using the original copy of b!
The workaround is to symlink the original repository path to the fork's path:
| #!/bin/bash | |
| # | |
| # mh2mbox.sh | |
| # By Eric Lathrop <[email protected]> | |
| # | |
| # Convert MH mail folders to MBOX files | |
| # Useful for switching to Mozilla Thunderbird | |
| # | |
| # Copy this script to ~/Mail/ and execute. | |
| # |