- Learn REST: A Tutorial
- How to GET a Cup of Coffee (REST)
- Teach a Dog to REST
- Git Tutorial
- http://www.vogella.com/articles/Git/article.html
> [email protected] install D:\code\MyProjects\POC\VueWebpackPOC\node_modules\phantomjs-prebuilt | |
> node install.js | |
PhantomJS not found on PATH | |
Download already available at C:\Users\tiptonsj\AppData\Local\Temp\phantomjs\phantomjs-2.1.1-windows.zip | |
Verified checksum of previously downloaded file | |
Extracting zip contents | |
Removing D:\code\MyProjects\POC\VueWebpackPOC\node_modules\phantomjs-prebuilt\lib\phantom | |
Copying extracted folder C:\Users\tiptonsj\AppData\Local\Temp\phantomjs\phantomjs-2.1.1-windows.zip-extract-1528397777270\phantomjs-2.1.1-windows -> D:\code\MyProjects\POC\VueWebpackPOC\node_modules\phantomjs-prebuilt\lib\phantom | |
Writing location.js file |
describe('MyCtrl', function () { | |
var ctrl, scope, mockToaster, mockLog, mockMySvc, invokeController; | |
// Initialize a bare-bones behavior function for each tested service function | |
var mockMySvcSomeFunctionBehavior = function () {}; | |
beforeEach(inject(function ($controller, $rootScope) { | |
mockMySvc = { | |
someFunction: function (success, error) { | |
mockMySvcSomeFunctionBehavior(success, error); |
/* Helper class */ | |
public sealed class ElementInteractionHelper | |
{ | |
private readonly IJavaScriptExecutor _executor; | |
private const string NgClick = "arguments[0].click();"; | |
public ElementInteractionHelper() { } | |
public ElementInteractionHelper(InternetExplorerDriver driver) |
DIM Wins; | |
DIM Losses; | |
DIM Ties; | |
=IF(((Wins + Losses + Ties) == 0), VALUE(0), ((Wins + (0.5 * Ties))/(Wins + Losses + Ties))) |
- Programming in Scala, Second Edition (http://0-proquest.safaribooksonline.com.library.regent.edu/book/programming/scala/9780981531649/programming-in-scala/3?uicode=regent)
Chris Ryan
-
http://thephp.cc/dates/2012/webexpoprague/phpunit-best-practices
-
Some of these practices could be good for TDD in general (e.g. in RSpec)
Continuing on the discussion from this week in regards to email security, I think it would be a good opportunity to discuss the objectives behind LinkedIn's new email service, Intro. The service has raised an eyebrow of many in the technological blogosphere in the past month. Richard Bejtlich, chief research officer at Mandiant, cannot come to a logical realization that "someone thought this was a good idea." (Perlroth, 2013) Describing his reaction as "flabbergasted," Perlroth reveals what security researchers are warning as "a dream come true for hackers or intelligence agencies" in regards to the professional network's new mobile app.
So what is Intro? Perlroth describes in the New York Times Technology article that this new mobile app is "an e-mail plug-in for iOS users that pulls LinkedIn profile information into e-mails so that the sender’s job title appears front-and-center in e-mails on a user’s iPhone or iPad." While some describe t
After installing Postgres, follow these build notes (they will show in your terminal post-installation of Postgres):
If builds of PostgreSQL 9 are failing and you have version 8.x installed, you may need to remove the previous version first. (See: https://github.com/mxcl/homebrew/issues/issue/2510)
To build plpython against a specific Python, set PYTHON prior to brewing (See: http://www.postgresql.org/docs/9.2/static/install-procedure.html):
PYTHON=/usr/local/bin/python