Blog

Feb
22

Airtasker goes live

avatar
Posted by Michael Cindric in client projects | No Comments »

Sentia’s latest client project Airtasker has gone into a live beta.

Airtasker is a community marketplace where people can outsource everyday tasks and errands to friendly and reliable people.

Whatever you need done, hundreds of Airtaskers are ready to help.

So be sure to head over to Airtasker now and check it out

Dec
14

Integrating CBA’s BPOINT gateway using ActiveMerchant

avatar

Recently a client of ours wanted to use the Commonwealth Bank of Australia (CBA)’s BPOINT gateway for their web application. The first thing we do is usually turn to ActiveMerchant to see if there is already a gateway class for the merchant. In this case we couldn’t find a gateway class or anything or any sort of implementation in ruby.

So today we’re releasing our open source BPOINT plugin for ActiveMerchant. Installation instructions and usage are available at the GitHub project page: https://github.com/Sentia/activemerchant-bpoint.

It’s very simple to setup and use, good luck and enjoy.

Nov
09

Smartsalary goes live on App Store

avatar
Posted by Michael Cindric in client projects, development, ipad, iPhone | No Comments »

Smartsalary’s iPhone/iPad application has hit the app store. The app allows you to manage your salary packaging on the go and is the first step in a great plan for smartsalary and mobile applications.

Be sure to check it out on the App Store via this link

Sep
12

OurDeal iPhone app listed as New and Noteworthy on Apple App Store

avatar
Posted by Michael Cindric in client projects, development, iPhone | No Comments »

The Sentia developed iPhone Application OurDeal has been listed as New and Noteworthy on the Apple App Store.

Sentia was responsible for the development of this iPhone application along with OurDeal and are extremely happy to see it already becoming a huge success.

For more info on the Sentia developed OurDeal iPhone Application click here

Sep
07

OurDeal iPhone app goes Live

avatar
Posted by Michael Cindric in client projects, development, iPhone | No Comments »

Once of Sentia’s recent iPhone projects has just gone live. We have been working closely with the people over at OurDeal.com.au to deliver a great experience for their users on the iPhone. So be sure to check it out and let us know what you think.

For more info click here

Aug
25

Reset Mysql Root password on Mac OSX

avatar
Posted by Michael Cindric in development, gems | No Comments »

Had a strange issue where mysql started asking for a password for my local mysql after updating my mysql2 gem. So to fix this had to update my root password and here is how l did it

1. Stop MySQL service. You can do that using the preference pane if you have that installed or you can stop it using Terminal sudo /Library/StartupItems/MySQLCOM/MySQLCOM stop

2. Skipping Access Tables. If you have installed MySQL5, fire up Terminal window and execute /usr/local/mysql/bin/mysqld_safe –skip-grant-tables For older versions of MySQL, execute the following command /usr/local/mysql/bin/safe_mysqld –skip-grant-tables

3. Reset MySQL root password. Now when safe_mysqld running in one Terminal window, open up another Terminal window and execute /usr/local/mysql/bin/mysql mysql. This opening up the MySQL console and opening the mysql table so we can update MySQL root user. Write the reset query into the console as follows UPDATE user SET Password=PASSWORD(‘YOUR_PASSWORD’) WHERE Host=’localhost’ AND User=’root’;. Replace “YOUR_PASSWORD” with your desired password.

4. Once you’ve done that just exit the console “exit;” close the safe_mysqld execution and restart your MySQL server. You can do this using sudo /Library/StartupItems/MySQLCOM/MySQLCOM start

Once you have done that you can access mysql again with no issues