    <?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Balbu Web Solutions &#187; php</title>
	<atom:link href="http://bws.balbu.eu/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://bws.balbu.eu</link>
	<description>Our values are what the clients feel value. We have a creative team, but we always keep in mind what our clients want. We always try to improve our skills and we can use the latest techniques, but we won’t drop the long standing way to be successfull. Our main goal is to build sites where the needs and the working solutions can meet for the satisfaction of the client.</description>
	<lastBuildDate>Fri, 10 Jan 2014 06:09:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Precision &#8211; depending on available resource in PHP</title>
		<link>http://bws.balbu.eu/precision-depending-on-available-resource-in-php/</link>
		<comments>http://bws.balbu.eu/precision-depending-on-available-resource-in-php/#comments</comments>
		<pubDate>Wed, 25 Dec 2013 07:42:26 +0000</pubDate>
		<dc:creator>oliver nadj</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[memory_limit]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=428</guid>
		<description><![CDATA[Done is better then perfect &#8211; sometimes even true in the PHP environment, e.g.: dealing with statistics when a raw calculation can be enough or just not as painful as eating all of the memory. In a recent past I facing a problem, I had to create a function which print the sellers (shop in [...]]]></description>
				<content:encoded><![CDATA[<p>Done is better then perfect &#8211; sometimes even true in the PHP environment, e.g.: dealing with statistics when a raw calculation can be enough or just not as painful as eating all of the memory.</p>
<p><span id="more-428"></span><br />
In a recent past I facing a problem, I had to create a function which print the sellers (shop in shop) based on theirs belonging categories. The way of the calculation was quite heavy and we have to respect our memory and generation time restrictions.<br />
I wrote a method which check the available time and memory frame. Now the calculation process can be as precise as possible &#8211; depends on resources.</p>
<pre class="brush: php; title: ; notranslate">
    /**
     * determines whether the code overused the given resources
     * @param float $timeLimit time limit in seconds or microtime
     * @param int $memoryLimit memory limit in bytes
     * @return bool returns true if the system has more resources and false if not
     */
    function doWeHaveMoreResource($timeLimit, $memoryLimit) {
        static $startTime = 0;
        static $startMemory = 0;
        static $phpMemoryLimit = 0;
        if ($startTime === 0) {
            $startTime = microtime(true);
            $startMemory = memory_get_usage();
            $phpMemoryLimit = ini_get('memory_limit');
            if (preg_match('/^(\d+)(.)$/', $phpMemoryLimit, $matches)) {
                if ($matches[2] == 'M') {
                    $phpMemoryLimit = $matches[1] * 1024 * 1024; // nnnM -&gt; nnn MB
                } else if ($matches[2] == 'K') {
                    $phpMemoryLimit = $matches[1] * 1024; // nnnK -&gt; nnn KB
                }
            }
        }
        if (($startTime + $timeLimit) &lt; microtime(true)) {
            mylog(&quot;no, we have no more time&quot;);
            return false;
        }
        if (($startMemory + $memoryLimit) &lt; memory_get_usage()) {
            mylog(&quot;no, we have no more memory&quot;);
            return false;
        }
        if ($phpMemoryLimit &lt; (memory_get_usage() / 0.9)) {
            mylog(&quot;no, we are close to php memory limit&quot;);
            return false;
        }
        return true;
    }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/precision-depending-on-available-resource-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Balbu Mobile</title>
		<link>http://bws.balbu.eu/balbu-mobile/</link>
		<comments>http://bws.balbu.eu/balbu-mobile/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 07:38:36 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shop]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=198</guid>
		<description><![CDATA[Like in the desktop version, the mobile version also have almost every feature like the other one. Balbu Mobile is our newest mobile project, it uses Symfony framework with jQuery Mobile. We have built the whole site from scratch, and of course the main goal was to be available everywhere. The site is available at: [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-200" alt="balbumobile_00" src="http://bws.balbu.eu/wp-content/uploads/2013/04/balbumobile_00.jpg" width="800" height="350" /></p>
<p><a title="Balbu" href="http://bws.balbu.eu/balbu/">Like in the desktop version</a>, the mobile version also have almost every feature like the other one. Balbu Mobile is our newest mobile project, it uses Symfony framework with jQuery Mobile. We have built the whole site from scratch, and of course the main goal was to be available everywhere.</p>
<h3>The site is available at: <a href="http://m.balbu.hu/" target="_blank">m.balbu.hu</a></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-6-198">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/balbu_mobile01.jpg" title=" " class="myfancybox" rel="set_6" >
								<img title="balbu_mobile01" alt="balbu_mobile01" src="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/thumbs/thumbs_balbu_mobile01.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/balbu_mobile02.jpg" title=" " class="myfancybox" rel="set_6" >
								<img title="balbu_mobile02" alt="balbu_mobile02" src="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/thumbs/thumbs_balbu_mobile02.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/balbu_mobile03.jpg" title=" " class="myfancybox" rel="set_6" >
								<img title="balbu_mobile03" alt="balbu_mobile03" src="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/thumbs/thumbs_balbu_mobile03.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/balbu_mobile04.jpg" title=" " class="myfancybox" rel="set_6" >
								<img title="balbu_mobile04" alt="balbu_mobile04" src="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/thumbs/thumbs_balbu_mobile04.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/balbu_mobile05.png" title=" " class="myfancybox" rel="set_6" >
								<img title="balbu_mobile05" alt="balbu_mobile05" src="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/thumbs/thumbs_balbu_mobile05.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/balbu_mobile06.png" title=" " class="myfancybox" rel="set_6" >
								<img title="balbu_mobile06" alt="balbu_mobile06" src="http://bws.balbu.eu/wp-content/gallery/balbu-mobile/thumbs/thumbs_balbu_mobile06.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/balbu-mobile/feed/</wfw:commentRss>
		<slash:comments>254</slash:comments>
		</item>
		<item>
		<title>Balbu</title>
		<link>http://bws.balbu.eu/balbu/</link>
		<comments>http://bws.balbu.eu/balbu/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 07:04:39 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shop]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=185</guid>
		<description><![CDATA[Balbu is an international online bookstore, wich operates in most of the european countries. The company sells mainly hungarian books for the European and American countries. The main goal was to create th best possible user experience with the easiest interface in mind. We wanted to create a store where the user doesn’t have too [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-186" alt="balbu0" src="http://bws.balbu.eu/wp-content/uploads/2013/04/balbu0.jpg" width="800" height="350" /></p>
<p>Balbu is an international online bookstore, wich operates in most of the european countries. The company sells mainly hungarian books for the European and American countries.</p>
<p>The main goal was to create th best possible user experience with the easiest interface in mind. We wanted to create a store where the user doesn’t have too many unuseful informations, but enough to choose what books are in his/her main interests.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-5-185">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu002.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu002" alt="balbu002" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu002.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu01.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu01" alt="balbu01" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu01.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu03.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu03" alt="balbu03" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu03.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>The cart and the checkout process is also easy to use, so not just the “internet generation” knows how to use it, what and where to type. The site also have a news section, where the editors can write about the latest articles about the world of books and happenings. Besides the easy to use interface we wanted to have the fastest site possible, so the users with bad connections can use the site too.</p>
<h3>The site is available at: <a href="http://balbu.hu/" target="_blank">balbu.hu</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/balbu/feed/</wfw:commentRss>
		<slash:comments>253</slash:comments>
		</item>
		<item>
		<title>Tantargyhalo</title>
		<link>http://bws.balbu.eu/tantargyhalo/</link>
		<comments>http://bws.balbu.eu/tantargyhalo/#comments</comments>
		<pubDate>Tue, 16 Apr 2013 09:41:30 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=24</guid>
		<description><![CDATA[The client wanted to achieve a site where elementary and high school students can be informed about the Tantargyhalo competition. The students can compete with each other in literary, crativitie and technique.    We started to build to site from scratch, and tried to achieve a fully responsive solution with happy colors and many pictures. [...]]]></description>
				<content:encoded><![CDATA[<p><img class="size-full wp-image-59 aligncenter" alt="tant1" src="http://bws.balbu.eu/wp-content/uploads/2013/04/tant1.jpg" width="800" height="350" /></p>
<p style="text-align: left;">The client wanted to achieve a site where elementary and high school students can be informed about the Tantargyhalo competition. The students can compete with each other in literary, crativitie and technique.</p>
<div style="display: block; width: 800px; padding-left: 30px;">
<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tantargyhalo2.jpg" title="" class="myfancybox" rel="singlepic24" >
	<img class="ngg-singlepic" src="http://bws.balbu.eu/wp-content/gallery/cache/24__245x0_tantargyhalo2.jpg" alt="tantargyhalo2" title="tantargyhalo2" />
</a>
 
<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/bws_mob.jpg" title="" class="myfancybox" rel="singlepic23" >
	<img class="ngg-singlepic" src="http://bws.balbu.eu/wp-content/gallery/cache/23__245x0_bws_mob.jpg" alt="bws_mob" title="bws_mob" />
</a>
 
<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/03.png" title="" class="myfancybox" rel="singlepic22" >
	<img class="ngg-singlepic" src="http://bws.balbu.eu/wp-content/gallery/cache/22__245x0_03.png" alt="03" title="03" />
</a>
</div>
<p style="text-align: left;">We started to build to site from scratch, and tried to achieve a fully responsive solution with happy colors and many pictures. The site have a gallery where can the users can see the pictures from the previous years as well as the present year competition. The site have a download menu, where the previous works can be downloaded. The framework we used is WordPress with a custom theme and custom functions. We made the whole concept, design and sitebuild.</p>
<p>At the home page, the Tantargyhalo site have a featured image slider, where the picture appears from the selected post. That means the client have a very simple and user-friendly admin page, so they doesn’t need any knowledge about HTML editing.</p>
<p>We also built a mobile interface with the responsive technique, what means the users can browse the site at tablets and smartphones. Of course, the site can detect the resolution of the device, and if it’s a mobile than the small version automatically appears.</p>
<h3>The site is available at: <a href="http://tantargyhalo.net/" target="_blank">tantargyhalo.net</a></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-1-24">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tant2.png" title=" " class="myfancybox" rel="set_1" >
								<img title="tant2" alt="tant2" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tant2.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tant3.png" title=" " class="myfancybox" rel="set_1" >
								<img title="tant3" alt="tant3" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tant3.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tant4.png" title=" " class="myfancybox" rel="set_1" >
								<img title="tant4" alt="tant4" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tant4.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/03.png" title=" " class="myfancybox" rel="set_1" >
								<img title="03" alt="03" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_03.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/bws_mob.jpg" title=" " class="myfancybox" rel="set_1" >
								<img title="bws_mob" alt="bws_mob" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_bws_mob.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tantargyhalo2.jpg" title=" " class="myfancybox" rel="set_1" >
								<img title="tantargyhalo2" alt="tantargyhalo2" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tantargyhalo2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/tantargyhalo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Special Providence</title>
		<link>http://bws.balbu.eu/special-providence/</link>
		<comments>http://bws.balbu.eu/special-providence/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 11:45:34 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=31</guid>
		<description><![CDATA[Special Providence is a hungarian music band who plays progress-jazz-rock. Thez gave us an almost full concept for the site, so our job was the sitebuild and program the functions. We have used Symfony framework to build it, with some jQuery for the dynamical contant at the homepage. Also, we have built a complete Merchandise [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-153" alt="specialprovidence0" src="http://bws.balbu.eu/wp-content/uploads/2013/04/specialprovidence0.jpg" width="800" height="350" /></p>
<p>Special Providence is a hungarian music band who plays progress-jazz-rock. Thez gave us an almost full concept for the site, so our job was the sitebuild and program the functions.</p>
<p style="text-align: center;"><a href="http://bws.balbu.eu/wp-content/uploads/2013/04/specialprovidence2.jpg">
<div class="ngg-galleryoverview" id="ngg-gallery-2-31">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-4" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/specialprovidence/specialprovidence1.jpg" title=" " class="myfancybox" rel="set_2" >
								<img title="specialprovidence1" alt="specialprovidence1" src="http://bws.balbu.eu/wp-content/gallery/specialprovidence/thumbs/thumbs_specialprovidence1.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-5" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/specialprovidence/specialprovidence2.jpg" title=" " class="myfancybox" rel="set_2" >
								<img title="specialprovidence2" alt="specialprovidence2" src="http://bws.balbu.eu/wp-content/gallery/specialprovidence/thumbs/thumbs_specialprovidence2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</a></p>
<p>We have used Symfony framework to build it, with some jQuery for the dynamical contant at the homepage. Also, we have built a complete Merchandise menu, where the user can order one of their album sor t-shirts. The system is sending message for the band and the user.</p>
<h3>The site is available at: <a href="http://specialprovidence.hu/" target="_blank">specialprovidence.hu</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/special-providence/feed/</wfw:commentRss>
		<slash:comments>237</slash:comments>
		</item>
		<item>
		<title>Builder.Shop Mobile</title>
		<link>http://bws.balbu.eu/builder-shop-mobile/</link>
		<comments>http://bws.balbu.eu/builder-shop-mobile/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 07:05:20 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=170</guid>
		<description><![CDATA[Builder.Shop Mobile is the mobile version of the well-known body builder and fitness shop. As the owner of one of the finest fitness shops in Hungary, the client wanted to give the best possible experience for their users, and of course a very easy to use interface to buy the products. Builder.Shop Mobile was one [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-172" alt="buildermobile" src="http://bws.balbu.eu/wp-content/uploads/2013/04/buildermobile.jpg" width="800" height="350" /></p>
<p>Builder.Shop Mobile is the mobile version of the well-known body builder and fitness shop. As the owner of one of the finest fitness shops in Hungary, the client wanted to give the best possible experience for their users, and of course a very easy to use interface to buy the products.</p>
<p><img class="aligncenter size-full wp-image-173" alt="buildermob4" src="http://bws.balbu.eu/wp-content/uploads/2013/04/buildermob4.jpg" width="800" height="427" /></p>
<p>Builder.Shop Mobile was one of our first mobile project, so we had to make a very large research to get to know the mobile trends, the devices, the resolution and of course the users too. We started to build the site from paper scratch, and we started to use the well known jQuery Mobile.</p>
<p>We had to program a fully working shop first, then start to work with the portable device, where the users have a very small area to use as interactions. The finished project is easy to use, user-friendly and of course both the client and the users like it.</p>
<h3>The site is available at: <a href="http://m.builder.hu/" target="_blank">m.builder.hu</a></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-4-170">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/builder-mobile/buildermob2.jpg" title=" " class="myfancybox" rel="set_4" >
								<img title="buildermob2" alt="buildermob2" src="http://bws.balbu.eu/wp-content/gallery/builder-mobile/thumbs/thumbs_buildermob2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/builder-mobile/buildermob1.jpg" title=" " class="myfancybox" rel="set_4" >
								<img title="buildermob1" alt="buildermob1" src="http://bws.balbu.eu/wp-content/gallery/builder-mobile/thumbs/thumbs_buildermob1.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/builder-mobile/buildermob3.jpg" title=" " class="myfancybox" rel="set_4" >
								<img title="buildermob3" alt="buildermob3" src="http://bws.balbu.eu/wp-content/gallery/builder-mobile/thumbs/thumbs_buildermob3.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/builder-shop-mobile/feed/</wfw:commentRss>
		<slash:comments>230</slash:comments>
		</item>
		<item>
		<title>Banja Kanjiza</title>
		<link>http://bws.balbu.eu/banja-kanjiza/</link>
		<comments>http://bws.balbu.eu/banja-kanjiza/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 06:52:28 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=162</guid>
		<description><![CDATA[Banja Kanjiža is a special hospital for medical rehabilitation located in Serbia. It gives hospitality for those who need rest, preventive recovery and medical rehabilitation, as well as the comforts of the curing water and mud. Our work was the full design planning and the sitebuild, for wich we used Symfony framework. The site have [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-165" alt="banja0" src="http://bws.balbu.eu/wp-content/uploads/2010/04/banja0.jpg" width="800" height="350" /></p>
<p>Banja Kanjiža is a special hospital for medical rehabilitation located in Serbia. It gives hospitality for those who need rest, preventive recovery and medical rehabilitation, as well as the comforts of the curing water and mud.</p>
<p>Our work was the full design planning and the sitebuild, for wich we used Symfony framework. The site have a complex mainmenu and gallery, what can reflect the complexity and first class work at the special hospital. Our job was also to make the pictures for the gallery, where we have used our photograph skills to achieve the best possible results.</p>
<h3>The site is available at: <a href="http://banja-kanjiza.com/" target="_blank">banja-kanjiza.com</a></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-3-162">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/banja1.jpg" title=" " class="myfancybox" rel="set_3" >
								<img title="banja1" alt="banja1" src="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/thumbs/thumbs_banja1.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-7" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/banja2.jpg" title=" " class="myfancybox" rel="set_3" >
								<img title="banja2" alt="banja2" src="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/thumbs/thumbs_banja2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/banja3.jpg" title=" " class="myfancybox" rel="set_3" >
								<img title="banja3" alt="banja3" src="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/thumbs/thumbs_banja3.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/banja-kanjiza/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
