Skip to main content

Test Marketing as a developer. Is it worth it?


Test marketing as a developer. Is it worth it?

Previously: 

I finished developing an app for the Human Values Foundation called My Place HVF (android/ios). The idea about the app was to teach children about Values and throughout the game, they could earn badges like right action, love etc. They also can unlock levels to different worlds and can be a part of a silent study/their own time to explore...



I recently visited a school to test out the My Place HVF app. This was my first client app and the first time I got to see it tested on children. At first, I was a little nervous and how they would react. Would they like it ? Would they find faults? What happens next? All of these questions and more got answered on the day.

Did they like it?

We tested it on primary school children from year 6 all the way to reception and I am delighted to say they loved it. It was an awesome feeling to see people play and enjoy something you have made and spent many hours on, it all seems worth it. I love to code because of the rewarding factors of when you get a bit of code correct, however seeing others enjoy it is even more rewarding and if you ever get the chance to go testing you app, game or website then do it!

Did they find faults?

Yes, they did find faults, some found the controls too hard, some found glitches and some found the questions too hard. The best part about being there in person when these issues came up is that you can ask more questions about these things and see where the glitches happen. Instead of running around your game (that you have now played it for the 100th time) tirelessly looking for said bug. Their imagination sparks and suggests more things you can do to improve the game and what they would like in future levels. This not only helps you but I found thinking of more too after working on it for so long you start to lose interest and imagination and I think this is a great way to kick start it again.

Well, what happens now? 

After my visit, I was happy with the outcome and came back with new ideas and the bug fixes to do. For me, personally HVF want me to make more levels for the app and I will be doing so in the next few months. I really enjoy this project and it gives me great joy making something that people enjoy and I think that is one of the best things about being a developer. So if you are a starting developer or a long term one seeing people use and enjoy the things you make is one of the best feelings and if you ever get the option to do it you should.

What's your thoughts on Test Marketing as a developer? 

let me know in the comments below! 

Comments

Popular posts from this blog

Ionic RSS feed using Feednami

Tutorial of how to make a RSS feed using Feednami which is an alternative to google api which no longer works. This is a basic example and can be improved. First go ahead and make a new ionic project $ npm install -g cordova ionic $ ionic start exampleProject blank Now find index.html and insert... <script src="https://storage.googleapis.com/feednami-static /js/feednami-client-v1.0.1.js"></script> Into the header, then in <ion-content> below Ionic Blank Starter insert a new div <div id ="feed" ng-controller="feedCtrl"> </div> Open app.js, now we are going to make the controller from Feednami that will get our rss feed. .controller('feedCntl', function(){ var url = 'http://daringfireball.net/feeds/articles' feednami.load(url,function(result){ if(result.error){ console.log(result.error) } else{ var entries = result.feed.entries for(var i = 0; i < entri...

Sunday funday project - LightReact

Sunday fun day project - LightReact Update every week So I'm in my third year (finally!) and decided to do more things this year (2017)  1. To increase my skills and 2. To have fun! This year we are having our end of year show at The University of Winchester and I wanted to make a VR game for Google cardboard. The winner at the end of the day would get a £10 steam gift voucher. Below is my WIP for this mini project. Week 1 - inspiration and 3d modelling  I wanted to make a very simple game for VR, no not a horror game. LightReact is based on a game you would typically play at an arcade where you have a bunch of lights and you have to switch them off as fast as possible. However, instead of switching them off with your hands you use your eyes. The example in the video below. So you get the point you look at them they switch off. The person to do it in quickest time wins.  The wonderful world of blender  I am primarily a dev...

Signing apk from ionic

This post will show you how to sign your apk manually, from ionic framework for release. Recently I signed my first apk from ionic and ran into some issues that will be ironed out in this blog. 1. You will need to have the sdk and jdk / jdr tools installed. 2. Have a ionic project with the Android platform installed. LETS START You need to build your app using below in the cmd line then move that project-release.apk file into this directory   ionic build android --release exampleApp\platforms\android MAKING THE KEYSTORE You then need to make the key store in that file and write in all the info. Do not lose the key file and keep a record of the information. keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 SIGN THE APK Now we have to sign the apk jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore HelloWorld-release-unsigned.apk alias_name no...