<?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>iLook</title>
	<atom:link href="http://www.ilook.co.il/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ilook.co.il</link>
	<description>ייזום ופיתוח מערכות</description>
	<lastBuildDate>Sun, 20 Jan 2013 18:45:31 +0000</lastBuildDate>
	<language>he-IL</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Marking events on Jquery DatePicker</title>
		<link>http://www.ilook.co.il/marking-events-on-jquery-datepicker/</link>
		<comments>http://www.ilook.co.il/marking-events-on-jquery-datepicker/#comments</comments>
		<pubDate>Wed, 09 Jan 2013 11:27:15 +0000</pubDate>
		<dc:creator>look</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.ilook.co.il/?p=362</guid>
		<description><![CDATA[Jquery Datepicker is part of jqueryUI. Usually we use it to select a date on a pop-up calendar which inject the date into it's coresponding &#60;input&#62; object. <p>But sometimes we will want to indicate a pre-define events on the pop-up &#8230; <a href="http://www.ilook.co.il/marking-events-on-jquery-datepicker/">להמשיך לקרוא <span class="meta-nav">&#8592;</span></a>]]></description>
				<content:encoded><![CDATA[<div dir="ltr"><img style="float: left;" src="http://www.ilook.co.il/wp/wp-content/uploads/2013/01/datepicker-events1.jpg" alt="" width="224" height="175" />Jquery Datepicker is part of jqueryUI.<br />
 Usually we use it to select a date on a pop-up calendar which inject the date into it's coresponding &lt;input&gt; object.
<p>But sometimes we will want to indicate a pre-define events on the pop-up calendar. like holidays or birthdays.</p>
<p> <span id="more-362"></span>You can find few &quot;improved&quot; plugin out there to do so, but basicly Datepicker is supporting that out-of-the-box, with it's verious initialization methods.</p>
<p>As i always preffer,&nbsp;best explain by example:</p>
<p>assume we have DOM object of &lt;input&gt; or &lt;div&gt;:</p>
<pre class="brush: plain; title: ; notranslate">
 &amp;lt;input type=&quot;text&quot; id=&quot;myCalendar&quot; /&amp;gt;&lt;span style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;//attaching Datepicker to it, will open the pop-up calendar on focus
 &amp;lt;div id=&quot;myCalendar&quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;span style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;//attaching Datepicker to it, will open a static calendar
 </pre>
<p>&nbsp;</p>
<p>so we will bind the Datepicker object like that:</p>
<pre class="brush: plain; title: ; notranslate">
 $('#myCalendar').Datepicker();&lt;span style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;//attaching with default settings
 </pre>
<p>But then, we can provide a function that will be called on each day of the calendar BEFORE it is rendered,<br />
 so all we need to do is to check if we want to &quot;mark&quot; this day:&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>$('#myCalendar').Datepicker({<br />
<span style="white-space: pre;"> </span>beforeShowDay: function(date){<br />
<span style="white-space: pre;"> </span>var i=0;<br />
<span style="white-space: pre;"> </span>for (i = 0; i &lt; view.ScheduledPostsView.calendarEventsArray.length; i++)<br />
<span style="white-space: pre;"> </span>{<br />
<span style="white-space: pre;"> </span>if (date.getFullYear() == myEvents[i].getFullYear()<br />
<span style="white-space: pre;"> </span>&amp;&amp; date.getMonth() ==&nbsp;myEvents[i].getMonth()<br />
<span style="white-space: pre;"> </span>&amp;&amp; date.getDate() ==&nbsp;myEvents[i].getDate()) {</p>
<p><span style="white-space: pre;"> </span> &nbsp; &nbsp;<span style="white-space: pre;"> </span> &nbsp; &nbsp; &nbsp; &nbsp;return [true, 'calendarEvent', 'This Day has Events']; // [isClickable?, className, title]</p>
<p><span style="white-space: pre;"> </span> &nbsp; &nbsp;<span style="white-space: pre;"> </span> &nbsp; &nbsp; }</p>
<p><span style="white-space: pre;"> </span> &nbsp; &nbsp;<span style="white-space: pre;"> </span> }</p>
<p><span style="white-space: pre;"> </span> &nbsp; &nbsp;<span style="white-space: pre;"> </span> return [false, ''];<span style="white-space: pre;"> </span>//not clickable!</p>
<p><span style="white-space: pre;"> </span> &nbsp; &nbsp;<span style="white-space: pre;"> </span>},</p>
<p>&nbsp;</p>
</div>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://www.ilook.co.il/marking-events-on-jquery-datepicker/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://www.ilook.co.il/marking-events-on-jquery-datepicker/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://www.ilook.co.il/marking-events-on-jquery-datepicker/" data-text="Marking events on Jquery DatePicker"></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.ilook.co.il%2Fmarking-events-on-jquery-datepicker%2F&amp;linkname=Marking%20events%20on%20Jquery%20DatePicker" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.ilook.co.il%2Fmarking-events-on-jquery-datepicker%2F&amp;title=Marking%20events%20on%20Jquery%20DatePicker" id="wpa2a_2"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ilook.co.il/marking-events-on-jquery-datepicker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Easiest way to start developing Android</title>
		<link>http://www.ilook.co.il/the-easiest-way-to-start-developing-android/</link>
		<comments>http://www.ilook.co.il/the-easiest-way-to-start-developing-android/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 22:07:45 +0000</pubDate>
		<dc:creator>look</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.ilook.co.il/?p=284</guid>
		<description><![CDATA[<p></p> <p style="text-align: left;">No point to write about it, just link to a great post with a great and easy way to set up eclipse and android SDK:</p> <p style="text-align: left;">http://www.codeofaninja.com/2012/01/install-android-development-environment.html</p> <p style="text-align: left;">have fun and start developing great new &#8230; <a href="http://www.ilook.co.il/the-easiest-way-to-start-developing-android/">להמשיך לקרוא <span class="meta-nav">&#8592;</span></a>]]></description>
				<content:encoded><![CDATA[<p><!--:en--></p>
<p style="text-align: left;">No point to write about it, just link to a great post with a great and easy way to set up eclipse and android SDK:</p>
<p style="text-align: left;"><a href="http://www.codeofaninja.com/2012/01/install-android-development-environment.html" target="_blank">http://www.codeofaninja.com/2012/01/install-android-development-environment.html</a></p>
<p style="text-align: left;">have fun and start developing great new ideas!</p>
<p><!--:--></p>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://www.ilook.co.il/the-easiest-way-to-start-developing-android/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://www.ilook.co.il/the-easiest-way-to-start-developing-android/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://www.ilook.co.il/the-easiest-way-to-start-developing-android/" data-text="The Easiest way to start developing Android"></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.ilook.co.il%2Fthe-easiest-way-to-start-developing-android%2F&amp;linkname=The%20Easiest%20way%20to%20start%20developing%20Android" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.ilook.co.il%2Fthe-easiest-way-to-start-developing-android%2F&amp;title=The%20Easiest%20way%20to%20start%20developing%20Android" id="wpa2a_4"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ilook.co.il/the-easiest-way-to-start-developing-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom new Font on local file system &#8211; FireFox</title>
		<link>http://www.ilook.co.il/custom-new-font-on-local-filesystem-firefox/</link>
		<comments>http://www.ilook.co.il/custom-new-font-on-local-filesystem-firefox/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 19:55:30 +0000</pubDate>
		<dc:creator>look</dc:creator>
				<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://www.ilook.co.il/?p=280</guid>
		<description><![CDATA[<p style="text-align: left;" dir="ltr">If you try to use the new feature of CSS3, which links to any custom font you want, you probably didn't get what you expected when running on your local file system.</p> <p style="text-align: left;" dir="ltr">to fix it in &#8230; <a href="http://www.ilook.co.il/custom-new-font-on-local-filesystem-firefox/">להמשיך לקרוא <span class="meta-nav">&#8592;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;" dir="ltr">If you try to use the new feature of CSS3, which links to any custom font you want, you probably didn't get what you expected when running on your local file system.</p>
<p style="text-align: left;" dir="ltr">to fix it in firefox, do the following:<br />
in the address URL type: <span style="color: #000000; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; font-size: 14px; font-style: normal; line-height: 18px; text-align: left; background-color: #eeeeee;">about:config<br />
</span>this will lead you to the inner firefox configuration.<br />
filter by: <span style="color: #000000; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; font-size: 14px; font-style: normal; line-height: 18px; text-align: left; background-color: #eeeeee;">fileuri</span><br />
find the line: <span style="background-color: #eeeeee; color: #000000; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; font-size: 14px; font-style: normal; line-height: 18px; text-align: left;">security.fileuri.strict_origin_policy<br />
</span>double click, change to FALSE.<br />
That's it, your firefox can read your local URI.<br />
Have fun.</p>
<p style="text-align: left;" dir="ltr">original: <a href="http://stackoverflow.com/questions/2856502/css-font-face-not-working-with-firefox-but-working-with-chrome-and-ie">http://stackoverflow.com/questions/2856502/css-font-face-not-working-with-firefox-but-working-with-chrome-and-ie</a></p>
<pre class="brush: css; title: ; notranslate">
@font-face { 
font-family:&quot;DroidSerif Regular&quot;; 
src: url(&quot;font/droidserif-regular-webfont.eot&quot;); 
src:
local(&quot;DroidSerif Regular&quot;), 
url(&quot;font/droidserif-regular-webfont.woff&quot;) format(&quot;woff&quot;), 
url(&quot;font/droidserif-regular-webfont.ttf&quot;) format(&quot;truetype&quot;), 
url(&quot;font/droidserif-regular-webfont.svg#webfontpB9xBi8Q&quot;) format(&quot;svg&quot;); 
font-weight: normal; 
font-style: normal;
}
</pre>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://www.ilook.co.il/custom-new-font-on-local-filesystem-firefox/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://www.ilook.co.il/custom-new-font-on-local-filesystem-firefox/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://www.ilook.co.il/custom-new-font-on-local-filesystem-firefox/" data-text="Custom new Font on local file system &#8211; FireFox"></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.ilook.co.il%2Fcustom-new-font-on-local-filesystem-firefox%2F&amp;linkname=Custom%20new%20Font%20on%20local%20file%20system%20%E2%80%93%20FireFox" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.ilook.co.il%2Fcustom-new-font-on-local-filesystem-firefox%2F&amp;title=Custom%20new%20Font%20on%20local%20file%20system%20%E2%80%93%20FireFox" id="wpa2a_6"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ilook.co.il/custom-new-font-on-local-filesystem-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DB transfer from Windows to Linux</title>
		<link>http://www.ilook.co.il/db-transfer-from-windows-to-linux/</link>
		<comments>http://www.ilook.co.il/db-transfer-from-windows-to-linux/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 00:09:05 +0000</pubDate>
		<dc:creator>look</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.ilook.co.il/wp/?p=187</guid>
		<description><![CDATA[<p dir="ltr">My personal PC at home is running Ubuntu. and i'm HAPPY as can be with it. no more drivers install, no more viruses etc. all my development needs are met. stable as a rock. but well, i'm not living &#8230; <a href="http://www.ilook.co.il/db-transfer-from-windows-to-linux/">להמשיך לקרוא <span class="meta-nav">&#8592;</span></a>]]></description>
				<content:encoded><![CDATA[<p dir="ltr">My personal PC at home is running Ubuntu. and i'm HAPPY as can be with it.<br />
no more drivers install, no more viruses etc. all my development needs are met. stable as a rock.<br />
but well, i'm not living alone in the world. some clients are still slaves of windows systems. what can i do.</p>
<p dir="ltr">my last client have a PHP system that for some reason was developed on Windows from the start. %#$%#&amp;^ the mess!!!<br />
well, while transferring the system to my loved Ubuntu, i noticed that most of the problems i have is that the TABLES NAMES in the php code are written in Uppercase&#8230;<br />
well, windows have no problem with that, but on a Unix system &#8211; NO no no &#8230;<br />
<span id="more-187"></span>so, here is the solution. a small bash file, which do the follows:</p>
<ol dir="ltr">
<li>prompt you for the DB name, user name and password.</li>
<li>create a text file with all the tables names in the DB (on local directory)</li>
<li>go over the names file, name by name, searching the Upper case name in all the files (recursively) in the directory tree under your running location and CHANGE each name to its lowercase version&#8230;</li>
</ol>
<p dir="ltr">and the wonder &#8211; all the code is fixed&#8230;<br />
no more upper case tables names.<br />
well, it worked for me. hope it will help you too! <img src='http://www.ilook.co.il/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/sh
read -p &quot;Enter DB name: &quot; db_name
read -p &quot;Enter user name: &quot; usr_name

echo `mysql -u $usr_name -p $db_name -e &quot;SHOW TABLES FROM $db_name&quot;` &gt; $db_name&quot;_tables.txt&quot;

tbl_count=-1
for tbl_name in `cat $db_name&quot;_tables.txt&quot;`;
do tbl_count=$(($tbl_count+1));
#pass the title of the file
if [ $tbl_count = 0 ]
then continue
fi

lower_tbl_name=`echo $tbl_name | tr &quot;{A-Z}&quot; &quot;{a-z}&quot;`
upper_tbl_name=`echo $tbl_name | tr &quot;{a-z}&quot; &quot;{A-Z}&quot;`
grep -rl $upper_tbl_name ./ | xargs sed -i &quot;s/$upper_tbl_name/$lower_tbl_name/g&quot;
echo &quot;$tbl_count: $upper_tbl_name : $lower_tbl_name&quot;;
done
</pre>
<p dir="ltr">And if you want to search the strings, ignoring CASE, just change line number 17 to:</p>
<pre class="brush: bash; title: ; notranslate">
grep -irl $upper_tbl_name ./ | xargs sed -i &quot;s/$upper_tbl_name/$lower_tbl_name/i&quot;
</pre>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://www.ilook.co.il/db-transfer-from-windows-to-linux/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://www.ilook.co.il/db-transfer-from-windows-to-linux/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://www.ilook.co.il/db-transfer-from-windows-to-linux/" data-text="DB transfer from Windows to Linux"></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.ilook.co.il%2Fdb-transfer-from-windows-to-linux%2F&amp;linkname=DB%20transfer%20from%20Windows%20to%20Linux" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.ilook.co.il%2Fdb-transfer-from-windows-to-linux%2F&amp;title=DB%20transfer%20from%20Windows%20to%20Linux" id="wpa2a_8"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ilook.co.il/db-transfer-from-windows-to-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BiblioteQ compile and run &#8211; Ubuntu</title>
		<link>http://www.ilook.co.il/biblioteq-compile-and-run-ubuntu/</link>
		<comments>http://www.ilook.co.il/biblioteq-compile-and-run-ubuntu/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 12:41:48 +0000</pubDate>
		<dc:creator>look</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.ilook.co.il/wp/?p=104</guid>
		<description><![CDATA[<p> <p dir="ltr">procedure: 1. download the source directory to your computer (biblioteq.d)</p> <p dir="ltr">2. open a terminal and navigate to the directory.</p> <p dir="ltr">3. You\'ll need: g++ make sqlite3 Qt 4.7.4 YAZ but most default installation do not have it. we &#8230; <a href="http://www.ilook.co.il/biblioteq-compile-and-run-ubuntu/">להמשיך לקרוא <span class="meta-nav">&#8592;</span></a>]]></description>
				<content:encoded><![CDATA[<p><!--:en-->
<p dir="ltr"><strong><span style="text-decoration: underline;">procedure:</span></strong><br />
1. download the source directory to your computer (<a href="http://sourceforge.net/projects/biblioteq/files/" target="_blank">biblioteq.d</a>)</p>
<p dir="ltr">2. open a terminal and navigate to the directory.</p>
<p dir="ltr">3. You\'ll need:<br />
g++<br />
make<br />
sqlite3<br />
Qt 4.7.4<br />
YAZ<br />
but most default installation do not have it. we will install each one when we need it.</p>
<p dir="ltr"><!--:--><!--:iw-->
<p dir="ltr"><strong><span style="text-decoration: underline;">procedure:</span></strong><br />
1. download the source directory to your computer (<a href="http://sourceforge.net/projects/biblioteq/files/" target="_blank">biblioteq.d</a>)</p>
<p dir="ltr">2. open a terminal and navigate to the directory.</p>
<p dir="ltr">3. You\'ll need:<br />
g++<br />
make<br />
sqlite3<br />
Qt 4.7.4<br />
YAZ<br />
but most default installation do not have it. we will install each one when we need it.</p>
<p dir="ltr"><!--:--><span id="more-104"></span><!--:en--></p>
<p dir="ltr">4. run: qmake -o Makefile biblioteq.pro<br />
this will create the needed Makefile</p>
<p dir="ltr">5. run: make<br />
and start monitoring what is missing in your system:</p>
<p dir="ltr">if missing QT file regarding the ui, just make sure to install QTdesigner, this will install all needed libreries.</p>
<p dir="ltr">missing sqlie3.h :<br />
apt-get install libsqlite3-dev</p>
<p dir="ltr">missing yaz/zoom.h:<br />
apt-get install libyaz4-dev</p>
<p dir="ltr">6. after successful make, a BiblioteQ executing file will be created. enjoy!</p>
<p dir="ltr"><span style="text-decoration: underline;"><strong>Create SQLite DB file</strong></span></p>
<p dir="ltr">1. sqlite3 &lt;filename&gt;.db</p>
<p dir="ltr">2. sqlite3 &lt;filename&gt;.db &lt; sqlite_create_schema.sql</p>
<p dir="ltr">Now run the application and load this new DB file.</p>
<p dir="ltr">in case of an error msg about the sqlite plugin, install libqt4-sql-sqlite.</p>
<p><!--:--><!--:iw--></p>
<p dir="ltr">4. run: qmake -o Makefile biblioteq.pro<br />
this will create the needed Makefile</p>
<p dir="ltr">5. run: make<br />
and start monitoring what is missing in your system:</p>
<p dir="ltr">if missing QT file regarding the ui, just make sure to install QTdesigner, this will install all needed libreries.</p>
<p dir="ltr">missing sqlie3.h :<br />
apt-get install libsqlite3-dev</p>
<p dir="ltr">missing yaz/zoom.h:<br />
apt-get install libyaz4-dev</p>
<p dir="ltr">6. after successful make, a BiblioteQ executing file will be created. enjoy!</p>
<p dir="ltr"><span style="text-decoration: underline;"><strong>Create SQLite DB file</strong></span></p>
<p dir="ltr">1. sqlite3 &lt;filename&gt;.db</p>
<p dir="ltr">2. sqlite3 &lt;filename&gt;.db &lt; sqlite_create_schema.sql</p>
<p dir="ltr">Now run the application and load this new DB file.</p>
<p dir="ltr">in case of an error msg about the sqlite plugin, install libqt4-sql-sqlite.</p>
<p><!--:--></p>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://www.ilook.co.il/biblioteq-compile-and-run-ubuntu/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://www.ilook.co.il/biblioteq-compile-and-run-ubuntu/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://www.ilook.co.il/biblioteq-compile-and-run-ubuntu/" data-text="BiblioteQ compile and run &#8211; Ubuntu"></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fwww.ilook.co.il%2Fbiblioteq-compile-and-run-ubuntu%2F&amp;linkname=BiblioteQ%20compile%20and%20run%20%E2%80%93%20Ubuntu" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.ilook.co.il%2Fbiblioteq-compile-and-run-ubuntu%2F&amp;title=BiblioteQ%20compile%20and%20run%20%E2%80%93%20Ubuntu" id="wpa2a_10"><img src="http://www.ilook.co.il/wp/wp-content/plugins/add-to-any/favicon.png" width="16" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.ilook.co.il/biblioteq-compile-and-run-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
