- Business people meet the developers daily
- Motivated teams
- Self organizing teams, less micromanagement
- Face-to-face conversations
- Retrospective sessions to tune and adjust team behaviours
- Team as a whole takes ownership to deliver
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2018-12-19T02:29:36.253Z","extensionVersion":"v3.2.4"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cygwin and Windows git stopped playing nicely together after a recent Windows update. There’s a variety of recommendations for how to fix this this on StackOverflow and elsewhere, but this post actually makes the most sense. In a nutshell, msys-1.0.dll (installed into your Program Files\Git\bin directory) is not built to be position independent. Use the dll rebaser to get it to load at a new address, like so: | |
$ rebase.exe -b 0x50000000 msys-1.0.dll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# a useful sorting function to have, concatenates key and value of a tuple and sorts based on that, useful if keys are not unique | |
def sortFunction(tuple): | |
""" Construct the sort string (does not perform actual sorting) | |
Args: | |
tuple: (rating, MovieName) | |
Returns: | |
sortString: the value to sort with, 'rating MovieName' | |
""" | |
key = unicode('%.3f' % tuple[0]) | |
value = tuple[1] |
####Entity resolution is a common, yet difficult problem in data cleaning and integration. This lab will demonstrate how we can use Apache Spark to apply powerful and scalable text analysis techniques and perform entity resolution across two datasets of commercial products.