We have an application that is a good candidate for hand held devices and would fit just nicely on the iPhone. We had a prototype running on the iPhone but the code is verbose and we only have 1 Objective C developer and we already have a full code base in written Flex.
We became really excited with CS5 cross compiler. That was until Apple decided to scrape that idea.
In the past week we have come to the conclusion that we are moving forward with the Flash/Flex code base and will no be pursuing a native iPhone application and we are not the only ones. It seams that several larger companies are just not going to try reinvent the wheel to please Apple. Here is a article on Time Warner and NBC.
http://www.nypost.com/p/news/business/slap_for_apple_PZ065AMiQOkAEn3lVNOX9O
Given that the HTC Desire ( Andriod ) is now outselling the iPhone ( http://www.techradar.com/news/phone-and-communications/mobile-phones/android-mobiles-now-outselling-iphones-688486 ) I think we made the right choice. We have a pool of developers that can and are working with Flash/Flex and the code base stays the same. At the same time we also get a offline version ( AIR ).
We just got our first HTC desire late last week and its a really nice phone. Sure there are some aspects that are not ( yet ) as slick as the iPhone but if I had the choice right now I'd go for the HTC especially when I get Flash 10.1
I'd still love a MacBook as my main develpment PC but the cost is still prohibitive and while I love my iPhone the battery life is poor and it fails to sync to my Windows 7 laptop 4 out of 6 times ( probably the main reason I have to reboot my Windows machine ironically ).
May 26, 2010
Will Flex 4 apps run on Flash Player 10.1 on Andriod?
I have a question.
Will Flex 4 apps run on Flash Player 10.1 on Andriod?
We have an exisitng application that we would love to release to mobile devices but it's 100% written in Flex 4.
I have asked before at events and received mixed answers.
Will Flex 4 apps run on Flash Player 10.1 on Andriod?
We have an exisitng application that we would love to release to mobile devices but it's 100% written in Flex 4.
I have asked before at events and received mixed answers.
May 19, 2010
How to recover a suspect database on MS SQL 2005
We had a largeish DB server corrupt a disk and in the process cause one of the databases to become suspect.
This can be resolved by running the following:
EXEC sp_resetstatus 'DBName'
GO
ALTER DATABASE DBName SET EMERGENCY
DBCC checkdb('DBname')
ALTER DATABASE DBName SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB ('DBName', REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE DBName SET MULTI_USER
GO
From: http://blogs.microsoft.co.il/blogs/dbaces/archive/2008/12/28/how-to-repair-sql-server-2005-suspect-database.aspx
However we had a database with a hyphen in the name eg: data-base-name
To get around this use " " around the data-base-name eg:
EXEC sp_resetstatus 'data-base-name'
GO
ALTER DATABASE "data-base-name" SET EMERGENCY
DBCC checkdb('data-base-name')
ALTER DATABASE "data-base-name" SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB ('data-base-name', REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE "data-base-name" SET MULTI_USER
GO
This can be resolved by running the following:
EXEC sp_resetstatus 'DBName'
GO
ALTER DATABASE DBName SET EMERGENCY
DBCC checkdb('DBname')
ALTER DATABASE DBName SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB ('DBName', REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE DBName SET MULTI_USER
GO
From: http://blogs.microsoft.co.il/blogs/dbaces/archive/2008/12/28/how-to-repair-sql-server-2005-suspect-database.aspx
However we had a database with a hyphen in the name eg: data-base-name
To get around this use " " around the data-base-name eg:
EXEC sp_resetstatus 'data-base-name'
GO
ALTER DATABASE "data-base-name" SET EMERGENCY
DBCC checkdb('data-base-name')
ALTER DATABASE "data-base-name" SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB ('data-base-name', REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE "data-base-name" SET MULTI_USER
GO
Subscribe to:
Posts (Atom)
