Most definitions of the Open Closed Principle talk in terms of extension. This makes it hard to check for because you need to imagine all possible extensions. There is a simpler equivalent test: How much would I need to change to remove this feature? Theoretically it could be as little as deleting one class that self registers (plus the tests). The advantage is that it’s easier to reason about removal.
Starting A Java Project
I have been working on some Java coding kata’s lately.
One of the pain points was the getting the environment set up.
This is one thing that other environments get right:
C# – visual studio has templates for everything.
Elixir – “mix new projectname” does the trick
I have had a look at the Java equivalents:
If you have gradle installed:
gradle init –type java-library
or if you prefer groovy and spock:
gradle init –type groovy-application
If you have maven installed:
mvn archetype:generate –DgroupId=com.mycompany.app –DartifactId=my–app –DarchetypeArtifactId=maven–archetype–quickstart –DinteractiveMode=false
Personally I like the brevity of gradle, both of these should be run inside the directory that you have created.
Working through “Property Based Testing in PropEr with Erlang and Elixir” in Elixir – Part 1
Property testing looks to be an interesting subject.
This is a journal of my working through the book “Property Based Testing in PropEr with Erlang and Elixir”. Note that the book is on it’s third beta at the time I am writing this.
The book is mostly written in Erlang with the Elixir details following (and in an Appendix).
I have upgraded my version of proper to 1.1 rather than the suggested 1.0. This seems to fix the issue I was having experimenting with :proper_types.term()
The PropEr tests will warn you to run mix.propcheck.clean, however if proper is only installed in test mode you will need to use:
MIX_ENV=”test” mix propcheck.clean
The source for this can be found here:
https://github.com/chriseyre2000/pbt
This is at the end of chapter 2.
Property Testing is the practice of testing code with a range of test data that is generated. Typically a property can have 100 test runs with increasingly complex test data. Only the simplest failure will be reported. Properties are a set of invariants that are asserted about the subject under test with respect to the input data.
For example a sorting function can assert that the data set is the same size as before, all elements of each collection (before and after) reside in the other and that each of the sorted elements is <= the next element. Care must be taken not to repeat the implementation. It is possible to use an older system as a golden master.
Understanding Powershell
Powershell is a very powerful language yet a lot of developers get frustrated by some of it’s little quibbles.
Learning a few little details make working with powershell much easier.
Items to consider are:
- Continue On Error
- Strict Options
- Comparison Operators
- Type System
- The Pipeline
Powershell commands are always formed Verb-Noun although they can have a more familiar alias.
The beauty of Powershell is how configurable and reflective it is.
If you don’t like the default behaviour then it can easily be adjusted.
For example to find the automatic variables you can use the simple command:
dir variable::*
This lists the variables defined in global scope, including the automatic variables.
Details of these can be found using:
get-help about_auto | more
For example you can change the continue on error by setting $ErrorActionPreference
If you don’t think that PowerShell is strict enough on checking the parameters and types you can use:
Set-StrictMode -Version Latest
This is the Implicit None from Fortran (or VB’s OPTION STRICT).
It means that you get warned if you try to use an uninitialised variable.
PowerShell uses the prefix [Type] to define a type.
So:
$a = [int]16
is valid.
Virgin Airlines as a case study into development failure
While on holiday I found myself interacting with some of Virgin’s software and infrastructure.
To start with I tried registering for their app while waiting in the departure lounge.
It’s not normal to have a password with a 12 character max length that will one accept letters or numbers. That is a security fail.
On the night before our departure my wife received a text message telling us to check in.
Checking the website from a mobile phone told us to try again 2 hours later. This is inconsistent messaging.
Two hours later the website would let us start but insisted on us using an app. We downloaded the app, but found that it wanted us to enter our passport and address details – something we had clearly done before as we had already flown to the Caribbean. The app had an interesting user interface. It would tell you that something was wrong but give no clue as to how to fix it. This is a UX fail.
We attempted to use the hotel supplied tablet but was frustrated by it’s 1 min auto refresh – the website was unable to complete a simple transaction between the console refreshing.
Finally we managed to use my wife’s tablet to check in. This time it was fine.
Virgin really need to look at their systems. Forcing mobile users to use a broken app is not helpful. Prompting users to check in when the system is not ready is also not a good idea. Asking for information that has already been given with a UI that can alter the info without sane error handling is a bad idea.
Categories of Bugs
This assumes a mature XP process is underway (this is almost 20 years old, so should not be a surprise to anyone).
If you are actively developing software there are only a limited category of bugs:
- The critical – stop development and fix
- The important – to be picked up as the next highest priority item
- Prioritised alongside other upcoming work items.
- Do not fix – record as unimportant
These days there should be no reason to keep an extensive bug backlog.
A bug is effectively a missing test (unit, integration or end-to-end).
With a sufficient test suit the QA should be getting bored. Hopefully they are spending the time working on acceptance criteria and acceptance tests for upcoming work.
Code Triage
This is a site that tries to spread the load on open source projects.
The idea is that you volunteer to help out triage the issues on projects allowing the maintainers to focus on adding new cool features.
Bash Script shortcuts
Here is a useful reference for bash shortcuts:
https://www.skorks.com/2009/09/bash-shortcuts-for-maximum-productivity/
Sample Elixir/Phoenix Website
Here is a multipart series on building a Phoenix website
https://rob.conery.io/2016/02/09/let-s-build-something-with-elixir/
https://rob.conery.io/2016/02/10/red-4-store-part-2/
https://rob.conery.io/2016/02/16/red4-store-part-3/
https://rob.conery.io/2016/02/19/red4-store-part-4/
https://rob.conery.io/2016/03/15/more-adventures-with-otp/
Business Process Workflows in Erlang
This looks like an interesting project.