how to intergate simplepie with codeigniter 2.1.

Posted January 26th, 2012 in Development, News by Gevork

Codeigniter 2.1.0? And you need to use simplepie? Have you downloaded already the usual 1.2.XX  version from simplepie website and have got an error?

There is better way…
First please download simplepie’s latest development build from here

http://dev.simplepie.org/SimplePie.compiled.php

Continue Reading »

Rhomobile Pinch Zoom on/off in Android

Posted January 15th, 2012 in News by Gevork

There is some cases , that you will need to enable/disable pinch zoom of your app on Android devices  . Especially we had problem with the HTC android devices, because of the customised android browser from HTC which don’t accept metaview  parameter which is disabling pinch zoom. So pity!  But what to do then , when your app is broken on such devices when zoomed?
Only answer is to disable pinch zoom support totally before to build. You should find rhodes folder in your Linux/Mac/Windows machine.

Continue Reading »

Best and simple portfolio theme for wordpress

Posted January 15th, 2012 in Development, News by Gevork

I have been struggling to find a very simple, nice and good theme for wordpress, which will give me possibility to adjust the categories of each project, add multiple photos to one project, order them in categories, add photos/videos and so on….

I am gonna build one! Will post any update here…

How to make a Progressbar in Rhomobile

Posted January 2nd, 2012 in News by Gevork


For our super duper map application we need a progressbar , which would indicate process of POI data update, downloaded from the server…First thing came to my mind is digg a bit in a direction of Jquery plugins for a progressbar…
But then I came to a brilliant idea. Why not to use a pure css????

After some digging in internet I found

http://css-tricks.com/examples/ProgressBars/.

Seems pretty nice, and the structure is also not complicates. Only pure css + a div inside span tag…

Continue Reading »

Openlayers: Using Vector layer to add a marker

Posted October 12th, 2011 in News, OpenLayers by Gevork

I was two days beating dead horse. I was in a need to setup a small marker of position of mobile phone. In Mobile version of OpenLayers you don’t have Marker Layers. Thus you have to use a vector layer to add any marker. So I have tried a bunch of variants , with many cups of cofee :) Endly I came to very simple solution…

Continue Reading »

Armenian Translit function in PHP

Posted September 25th, 2011 in News by Gevork

Today was makin’ some code to translit armenian names in openmap.
Maybe somebody will need it further, so use it.

function translitit($str)
{
$tr = array(
“Ա”=>”A”,”Բ”=>”B”,”Գ”=>”G”,”Դ”=>”D”,
“Ե”=>”E”,”Զ”=>”Z”,”է”=>”E”,”Ը”=>”@”,”Թ”=>”T”,”Ժ”=>”Zh”,
“Ի”=>”I”,”Լ”=>”L”,”Խ”=>”Kh”,”Ծ”=>”Ts”,”Կ”=>”K”,
“Հ”=>”H”,”Ձ”=>”Dz”,”Ղ”=>”Gh”,”Ճ”=>”Tch”,”Մ”=>”M”,
“Յ”=>”J”,”Ն”=>”N”,”Շ”=>”Sh”,”Ո”=>”Vo”,”Չ”=>”Ch”,
“Պ”=>”P”,”Ջ”=>”Dzh”,”Ռ”=>”R”,”Ս”=>”S”,”Վ”=>”V”,
“Տ”=>”T”,”Ր”=>”R”,”Ց”=>”Ts”,”ՈՒ”=>”U”,”Փ”=>”P”,
“Ք”=>”Q”,”և”=>”ev”,”Օ”=>”O”,”Ֆ”=>”F”,”ա”=>”a”,
“բ”=>”b”,”գ”=>”g”,”դ”=>”d”,”ե”=>”e”,”զ”=>”z”,
“է”=>”e”,”ը”=>”@”,”թ”=>”t”,”ժ”=>”zh”,”ի”=>”i”,
“լ”=>”l”,”խ”=>”kh”,”ծ”=>”ts”,”կ”=>”k”,”հ”=>”h”,
“ձ”=>”dz”,”ղ”=>”gh”,”ճ”=>”tch”,”մ”=>”m”,”յ”=>”j”,
“ն”=>”n”,”շ”=>”sh”,”ո”=>”vo”,”չ”=>”ch”,”պ”=>”p”,
“ջ”=>”dzh”,”ռ”=>”r”,”ս”=>”s”,”վ”=>”v”,”տ”=>”t”,
“ր”=>”r”,”ց”=>”ts”,”ու”=>”u”,”փ”=>”p”,”ք”=>”q”
,”օ”=>”o”,”ֆ”=>”f”
);
return strtr($str,$tr);
}

today at mchitaristen

Posted August 16th, 2011 in News by Gevork

test news

Setting up Ubuntu for Web and Mobile Development

Posted July 14th, 2011 in News by Gevork

I made again fresh install of Ubuntu, because I have crashed DPKG manager, by deleting it’s folder :(

So I will setup again all the stuff needed to develop on php/mysql

and  Rhodes Mobile Framework

 

1) First update your system

 

Continue Reading »

Logo Inspiration

Posted June 27th, 2011 in News by Gevork

Here you can find some logo inspiration

 

 

debconf: DbDriver “config”: /var/cache/debconf/config.dat is locked by another process

Posted May 18th, 2011 in News by Gevork

Hm… A day ago I was playing to make some enhasments on mysql, and suddenly nerved I have closed terminal without waiting debconfig to finish his job… Then after trying to make some

sudo apt-get install XXXXX

command I have got

Continue Reading »