Monday 30 March 2015

Anagram Solver v1.06.00

The latest version of Anagram Solver for Android has been released with many new features and updates.

The user interface has been given an overhaul. The tips are now shown in the main screen where the results are also shown. The help screen, accessed by a side swipe has been removed, you now vertically scroll through the tips.



The keyboard now displays over the user interface, ads are less obtrusive and are hidden behind the keyboard. The keyboard is more compact and uses the email configuration that has an @ key which is now used as the wildcard symbol.



The app now supports rotation, even when searching. So it is now possible to type in landscape using a bigger keyboard and then view the results in portrait



Google Analytics has been scaled back, the app now only tracks (anonymously) when the app is first started. This shows me a daily estimate of new and active users . Previously I used to track button presses and search types (again anonymously) but all the data told me was that most folk only performed anagram searches. Based on this usage data, I have removed the Supergram search features as nobody used them, however they are still available in the Pro version.

The about screen has been improved by detailing the benefits of the Pro version and an extra button for users to send feedback to me via email. Also the final tip shows options for you to help out, by sending me feedback, telling a friend about the app or going to Google Play to rate the app.


Under the bonnet the code also has had a major overhaul, the anagram search function is now much faster and will try to drill down to find 4 letters words, so long as the 500 word limit isn't met.

The app is available now for Android and the iPhone, click the link to go to the Anagram Solver web page with links for iOS and Android.


Happy Anagramming
PDB


Wednesday 18 March 2015

Anagram Solver iOS

Anagram Solver is now available for iPhone, iPad and iPod Touch, its is free to download on the App Store.



Solve Anagrams

   MOON STARERS
   THE CLASSROOM
   STAMP STORE
   IS NO MEAL


Countdown Conundrum
   LARGEBAPS
   ITCHYSEMI


Funny Names
   Manchester United = MECHANISED NUTTER
   Try your own name!


Crosswords
   A shady solar event(7)
   Enter dots for the missing letters:  .C..P..
 

Wildcards
Enter SUPER@ to find supercalifragilisticexpialidocius


The app is also useful for creating you own anagrams, deciphering bad handwriting and quickly looking up word definitions.





Monday 9 March 2015

Anagram Solver iOS

Today is the big unveiling of the latest cool must have Apple product, Anagram Solver iOS! That's right, oh and there might also be some watch thingy-me-jig.


 The familiar tip box has been designed to use the iPhone's page controller which allows you to easily swipe through the tips



 The results appear on a different view, a navigation bar is used to handle the apps screen navigation. I've followed the latest Apple user interface guidelines and kept the UI to a minimum.




To look up a word's meaning you press the detail icon on the right of the word.




The app uses the iOS webview control to display Google search for the word definition,


On the iPhone you use @ instead of # for a wildcard, the iPhone keyboard has the @ button on the main QWERTY layout which is handy.


The app is currently in the review stage and will be released ASAP.


Regards,
iPig iDog iBay

Friday 13 February 2015

Anagram Solver Pro v1.01

A new version of Anagram Solver Pro has just been released on Google Play with fantastic new features and improvements:


     ★ Bigger double sized word list, search over 280,000 words
     ★ New faster search algorithm, finding sub-anagrams is lightning fast
     ★ Sub-anagram depth increased to find all words greater than 3 letters
     ★ Clear button now stops searches
     ★ Rotate between portrait and landscape


The app is more than worth the money, 1.99 in most countries, click on the badge to take a look on Google Play:




The anagram search algorithm is unbelievably fast, so fast that it finds all the sub-anagrams of a word, the smaller words made from the bigger word's letters. This is great for Word Wheel puzzles and TV shows like countdown, but if you do a pub quiz it will help on the anagram round. Even better if you design your own quiz questions, this app will come in handy for making your own fun anagrams.


WACKO ANGLO ROCKER

Can you find this classic film? Below are a few tips:

(Enter the letters WACKOANGLOROCKER into the app, the second word in the results list should help you!!)


Then with the remaining letters, enter aangoer





A Clockwork Orange (www.worth100.com)



Other films to try:

DRESS GROOVIER
NEAREST TO A URINAL
NO SOAP SEEN

Tip! Download the app!! Please leave a comment if you find the answers.

Happy hunting
PDB

Thursday 5 February 2015

Programmer Jokes

Jokes from Microsoft's TechDays Online chat. Enjoy!

Why did the computer get home tired?
Because he had a hard drive!


A SQL query goes into a bar, walks up to two tables and asks, "Can I join you?"


Ram used to be deer,now its sheep


I can hear music coming out of my printer, the paper must be jammin'


Two programmers walk into a foo.


Why was the computer cold?
Because it lefts the windows open


Why do programmers always mix up Halloween and Christmas?
Because Oct 31 == Dec 25


Why are assembly programmers always wet?
Because they are always below C level


:-)
PDB


Sunday 1 February 2015

Top Apps

CleverDic Crossword Solver Pro and Anagram Solver Pro have made it to the top 5 new selling apps in the books and reference category on the Google Play Store.

Top of the Pops!


Click the badge to see all of my apps on the Google Play Store



Pig Dog Bay

Thursday 29 January 2015

Programming Books Rant

Why is it that programming books always do a lousy job of teaching you Object Orientated Programming?

The latest offender of OOP abuse!

Before I begin, just answer these questions:

  • Do you create your own classes and subclasses?
  • Do these subclasses go 3 or more levels deep?
  • You refactor common code into a parent class?
  • Do you downcast objects from a base type to a sub-type?
  • Have you ever experienced the horror that is parallel class hierarchies?

If you answered yes to any of these, its not your fault, its how programming books teach you and how most frameworks are built.


Shape, Rectangle, Square

Every book explaining OOP, uses the shape example. It is intuitive and allows the tech author to show you all the syntax and guff. It works too, all shapes implement an area() function and you can use the shape classes interchangeably, let area = myLovelyShape.area()

The example breaks down when you add properties, a circle will have a radius, a rectangle width and height, a square a length and a scalene triangle has both angles and sides. The objects may all be shapes, but now they are also unique from one another, in the sense of their API's, as they each have different properties.

You've written a graphical editor and you have a dialog box that pops up that allows you to edit the shapes properties. Wait though, the properties are different for each shape, you will need a custom dialog for each shape! So your options are:
  1. Create a custom dialog for each shape
  2. Use reflection to grab the properties
  3. Implement a getPropertiesDialog() function in the shape classes
  4. A design pattern?

Option 1

How do you know which dialog to create? I've seen this too many times:

if (myShape is typeof(Circle)) return new CircleDialog()

The problem here is you're downcasting, this if statement will have to keep growing as you add more shapes to the code. Its more code to maintain and attract bugs:

Bug #00042
Open:
  when I have a pentagon and click properties I get a message saying no such shape.

Fixed:
Added check for pentagon shape in the create dialog function

Option 2 

This is better and quite common, however reflection may grab properties you don't want the user to see or edit, so you need to pepper your shape class with annotations / attributes.

[IsEditable(true)]
public double radius {get;set;}

Also your model classes now have pseudo GUI code in them which goes against keeping the good practice of keeping data, logic and UI separate.

What if the properties are more complex such as angles in a triangle, your reflection code may check that a property is greater than 0, but it won't know that an angle in a triangle has to be less than 180°.


Option 3

This is good from an OOP perspective as the details about the custom dialog are encapsulated in the shape class, so no need for a big if statement. However you're mixing data, logic and view code which makes the code harder to test, maintain and each shape class may be be growing into 1000's of lines of code.


Option 4

No worries a design pattern or two can easily fix this, Abstract Factory and Factory method.

public static class ShapeFactory{

     public IShapeFactory createCircle() {return new CircleFactory;}
     public IShapeFactory createRectangle() {return new RectangleFactory;}
}

public CircleFactory extends IShapeFactory
{
    public IDialog createPropertiesDialog(){return new CicrleDialog();}
    public Shape createShape() { return new Circle();}
}

When a user requests the shapes dialog, you just call
shapeFactory.createPropertiesDialog()

Factory classes also allow you to easily return mock classes, so for your unit tests you could return a mock dialog that has no GUI. When you need to add a new shape, you add a new member to the ShapeFactory class

     public IShapeFactory createHexagon() {return new HexagonFactory;}

And create the HexagonFactory, Hexagon and HexagonDialog classes. Your new shape button on your toolbar can now be easily wired to call ShapeFactory.createHexagon()

Take care with design patterns tho, you can over use them (I admit I do). They make the code more verbose and harder to read sometimes.


Don't Subclass!

Subclassing is just a bad idea especially when it goes beyond 2 levels deep. The problem is that you start to add new functions and properties to the subclass. There is rule of thumb called, the Liskov substition principle which basically states that subclasses should have the same public methods and properties, this way there is no need to ever downcast or worry about special cases.

Instead of subclassing you should use the 'has a' relationship instead of 'is a'. Which means instead of extending a class, you should instead use an instance of the class as a property.

//square 'is a' rectangle
class Square : Rectangle {
}

//square 'has a' rectangle
class Square
{
    private Rectangle {get;set;}
}

The 'has a' Square re-uses code in the rectangle class without the restriction of being a rectangle type, leaving you more room to maneuver in the future. You will also save a yourself a lot of hassle, as if you make a change to a super class, inevitably you have to propagate the changes to all its child classes. 'Is a' makes your classes more tightly coupled than 'Has a', tighter the coupling the more easier it is to break your code when you make changes.

If you require a class to conform to an API, use an interface:

class Square implements IShape{
    override double getArea()
}

I know it might be tempting to subclass, especially if it you can re-use a few lines of code in the base class, but don't, there's nothing worse when trawling thru code and you go up a class hierarchy with parent classes that just have a few piddling lines of code in them serving no other purpose but to reuse a few lines of code. Use standalone utility classes if you need to reuse some common code.

When to Subclass

Martin Fowler, an OOP fanatic,  recommends to use subclasses instead of enums.

enum Color {Red, Green, Blue}

He argues that enums are sub types of a common super type, and instead of using ints to differentiate between enum members we should use the OOP tools at our disposal. 

Procedural code would look like: 

String getFloweryDescription() {
switch (color)
{
   case Red:
       print("Rose Red")
....

OOP code
class Red  extends Color
{
    override String getFloweryDescription(){return "Rose Red";}
}

The advantage here with OOP is that its easier to new add types, using enums tho we would have to remember to update any switch statements.

Personally I still prefer enums and switch statements, easier to read and quicker to type than a bunch of wee classes. 


Frameworks Use Subclassing

Hang on a minute you say, Android SDK has frameworks that use subclassing quite extensively. I mean you subclass Activity and override lots of various methods to add your own behavior. Why is subclassing OK here?

Quick answer its not OK, I think that most frameworks after a few years become to unwieldy and complex. 

Graphical API's naturally form sets and subsets which lead to API's that use deep layers of subclassing. The eggheads who first designed the Android graphical library, did a nice clean job. Overtime as new features got added, it became necessary to put some awful bodges into the code. The problem with deep hierarchies is that they are difficult to change. As a developer using the Android SDK, it seems big, difficult to adapt and small things seem to require complex work a rounds. 

As a developer it is rare to come across any need to create your own class hierarchies, they just don't exist in most of the day to day coding. The Shape example is so ubiquitous because its hard to come up with other good examples of hierarchies. Saying this, I've come across many unnecessary examples of useless class hierarchies. I know whats going through the devs mind, OOP is cool and I want to use it as much as possible. Myself I'm no different, currently I'm mad on functional programming, before that design patterns. You only learn by your mistakes I guess. 


To summarize, Keep It Simple!
PDB





Swift Cheat Sheet

There's a new app out for you budding iOS developers, Swift Cheat Sheets, a quick reference guide to Apple's new swanky programming language. There are 15 sections covering topics such as optionals, functions and classes. Each section gets down to brass tacks and shows you example code without pages of waffle.




The app is available from Google Play, click the badge below to take a look:

Android app on Google Play


The idea for this App came about because I have been learning how to write iOS apps, so I can port my most popular Android apps to the iPhone. Swift is a great language but I find that I keep forgetting the syntax, especially for functions. So I made lots of notes from example code snippets. 

Once I finished my Swift book and made my notes, I considered writing blog posts, however there were quite a lot of notes, so I made an app!

The app is aimed at seasoned developers who understand most programming concepts such as OOP and functional programming. There is little or no explanation for the concepts in the app, just source code! If you need an explanation, Apple provide a good guide.

No doubt as I start writing iOS apps, I'll be adding to the Swift Cheat Sheet app.


Happy Coding
PDB

Saturday 17 January 2015

Weight Tracker v1.16

There are two versions of Weight Tracker this time round, Weight Tracker 1.16 and Weight Tracker Pro 1.00.00. The pro version of the app is ad free so you can enjoy the app without intrusive ads for the very reasonable price of $1.99 (£1.99, AUD and NZD).

Enjoy full screen chart with no ads


The main change to the free version of Weight Tracker  is that there are new several links to the Pro version on the Google Play Store. There is a link on the menu, on the about form and a reminder every 100 screen changes.

Both apps are compiled against the latest Android SDK, API 21 (Lollipop). I've updated various copyright notices with the year 2015. Screens are now properly tracked, so I can see the screen flows which may help me improve the apps design in later releases.



Happy 2015 and Good Luck on Your Diet
PDB

Friday 16 January 2015

CleverDic v1.21 and Pro

There are two versions of CleverDic Crossword Solver this time round, CleverDic 1.21.01 and CleverDic Pro 1.00.00. The pro version of the app is ad free so you can enjoy the app without intrusive ads for the very reasonable price of £1.99! The price is even more reasonable if you live in the States $1.99 or Australia 1.99 AU


Look No Ads!


The main change to the free version of CleverDic is that there are several links to the Pro version on the Google Play Store. There is a link on the menu, on the about form and a reminder every 50 queries.

Both apps are compiled against the latest Android SDK, API 21 (Lollipop). I've updated various copyright notices with the year 2015.



Happy Crosswording for 2015
PDB

Thursday 15 January 2015

Anagram Solver 1.05.00

There are two versions of the Anagram Solver App this time round, Anagram Solver 1.05.00 and Anagram Solver Pro 1.00.00. The pro version of the app is ad free so you can enjoy the app without intrusive ads for the very low price of 99 pence or cents! (Buy now before the price rises)

Look No Ads!

The main change to the free version of Anagram Solver is that now there are several links to the Pro version on the Google Play Store. There is a link on the menu, on the about form and a reminder every 50 queries.

Both apps are compiled against the latest Android SDK, API 21 (Lollipop). I've updated various copyright notices with the year 2015.

There was a comment from one user saying they were initially confused, so I swapped tips 1 and 2 so that the anagram tip first appears on the tip box. Most folk who use the app use the anagram search feature. Click the Google Play Store badge to see the free app:



Happy 2015
PDB

Monday 12 January 2015

Weight Tracker Pro

Weight Tracker Pro is an ad free version of the Weight Tracker App. There are no ads, no In app Purchases, no analytics, no network permissions! You've bought and paid for the software.

Weight Tracker Pro

Full Screen Chart

New features will be added to the Pro version first and may be exclusive to the Pro Version. I've kept the cost to a minimum, £/$/Euro 1.99 

Enjoy ad free slimming!
PDB