<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Job Search</title>
	<atom:link href="https://bzcareer.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://bzcareer.wordpress.com</link>
	<description>A topnotch WordPress.com site</description>
	<lastBuildDate>Thu, 23 Mar 2017 22:10:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bzcareer.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://secure.gravatar.com/blavatar/a64d5ccd269209879547930dce56aa57?s=96&#038;d=https%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Job Search</title>
		<link>https://bzcareer.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://bzcareer.wordpress.com/osd.xml" title="Job Search" />
	<atom:link rel='hub' href='https://bzcareer.wordpress.com/?pushpress=hub'/>
	<item>
		<title>MyOscar integration with HealthFirst, Health and Wellness Application</title>
		<link>https://bzcareer.wordpress.com/2014/03/19/myoscar-integration-with-healthfirst-health-and-wellness-application/</link>
		<comments>https://bzcareer.wordpress.com/2014/03/19/myoscar-integration-with-healthfirst-health-and-wellness-application/#respond</comments>
		<pubDate>Wed, 19 Mar 2014 22:11:33 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/2014/03/19/myoscar-integration-with-healthfirst-health-and-wellness-application/</guid>
		<description><![CDATA[  Since working on this project requires pulling data from a medical device and pushing that data to MyOscar. One barrier to overcome is the how many clients will be making concurrent request to MyOscar Personal Health Record System.   Could this pose a problem for the application developer that will maintain this system in [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=140&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<blockquote>
<div> </div>
<div>Since working on this project requires pulling data from a medical device and pushing that data to MyOscar. One barrier to overcome is the how many clients will be making concurrent request to MyOscar Personal Health Record System.</div>
</blockquote>
<div> </div>
<div><strong>Could this pose a problem for the application developer that will maintain this system in the future?</strong></div>
<div> </div>
<blockquote>
<div>As one of the research assistant in charge of designing this mobile integration software, I have to look far into the future. Some problems like size of data can cause a problem when storing heart beat data which comes in every second. I&#8217;ve implemented a solution to address that problem by persist the data in JSON format and storing it in sqlite. Here is an example:</div>
<div> </div>
<div>
<pre>{ 'Reading' : '[0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0]' ,
'theshold' : '[{'reading' : '0', 'over' : '20.0' },{'reading' : '1', 'over' : '20.0' },<br />{'reading' : '2', 'over' : '20.0' },{'reading' : '3', 'over' : '20.0' },<br />{'reading' : '4', 'over' : '20.0' },{'reading' : '5', 'over' : '20.0' },<br />{'reading' : '6', 'over' : '20.0' },{'reading' : '7', 'over' : '20.0' },<br />{'reading' : '8', 'over' : '20.0' },{'reading' : '9', 'over' : '20.0' }]' </pre>
<p><strong>Concurrent Request All Day on Client Phone</strong><br /><strong></strong></p>
</div>
<div> </div>
<div>The next problem was concurrent request being sent from multiple phones multiple times a day will cause problems for the application and the user may incur expenses when heavy network usage is done all day. In light of that I&#8217;ve designed a system to synchronize MyOscar data at a 24 hour interval like a cron job in Linux. After doing some research on either implementing it from scratch or working on top of an already existing open source solution. I came across <a title="CWAC-Wakeful Service" href="https://github.com/commonsguy/cwac-wakeful">CWAC-Wakeful Service library</a>. I&#8217;ve implemented an error message notification that will appear at the top when an error occurs on the clients phone when synchronization with MyOscar fails for the following reason:</div>
<div> </div>
<div>
<ul>
<li>No Network available</li>
<li>Web Service Error</li>
<li>Not Authenticated to MyOscar</li>
<li>Any Unknown error</li>
</ul>
</div>
</blockquote>
<div> </div>
<div> </div>
<div><a href="https://bzcareer.files.wordpress.com/2014/03/myoscarnotification.jpg"><img id="i-123" alt="Image" src="https://bzcareer.files.wordpress.com/2014/03/myoscarnotification.jpg?w=266&#038;h=352" width="266" height="352" /></a></div>
<div> </div>
<div>I am still in the process of implementing this solution but from what I gathered. When the phone is rebooted android will not remember unless I set a broadcast receiver to remember this service.Here is the XML required to make this happen.</div>
<div> </div>
<div> </div>
<div>
<div><code>&lt;action android:name="android.intent.action.BOOT_COMPLETED" /&gt;</code></div>
<div> </div>
<p>Here is a link if someone is trying to implement a similar solution:</p>
</div>
<div>
<div>
<div><a href="http://stackoverflow.com/questions/12034357/does-alarm-manager-persist-even-after-reboot/12034402#12034402" target="_blank">http://stackoverflow.com/questions/12034357/does-alarm-manager-persist-even-after-reboot/12034402#12034402</a></div>
<div> </div>
</div>
</div>
<div>In conclusion, data synchronized at a specific interval will be a solution for this project and the users using this software.</div>
<div> </div>
<div>Till next time,</div>
<div>Zak</div>
<div>Research Assistant @ CDOT Research Department,Seneca College</div>
<div><em>“Time is the coin of life. Only you can determine how it will be spent.”</em> – Carl Sandburg</div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/140/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=140&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2014/03/19/myoscar-integration-with-healthfirst-health-and-wellness-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2014/03/myoscarnotification.jpg?w=650" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>HealthFirst: Solving problems with velocity of data and volume of data</title>
		<link>https://bzcareer.wordpress.com/2014/03/19/healthfirst-solving-problems-with-velocity-of-data-and-volume-of-data/</link>
		<comments>https://bzcareer.wordpress.com/2014/03/19/healthfirst-solving-problems-with-velocity-of-data-and-volume-of-data/#respond</comments>
		<pubDate>Wed, 19 Mar 2014 22:09:27 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=92</guid>
		<description><![CDATA[  Since working on this project requires pulling data from a medical device and pushing that data to MyOscar. One barrier to overcome is the how many clients will be making concurrent request to MyOscar Personal Health Record System.   Could this pose a problem for the application developer that will maintain this system in [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=92&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<blockquote>
<div> </div>
<div>Since working on this project requires pulling data from a medical device and pushing that data to MyOscar. One barrier to overcome is the how many clients will be making concurrent request to MyOscar Personal Health Record System.</div>
</blockquote>
<div> </div>
<div><strong>Could this pose a problem for the application developer that will maintain this system in the future?</strong></div>
<div> </div>
<blockquote>
<div>As one of the research assistant in charge of designing this mobile integration software, I have to look far into the future. Some problems like size of data can cause a problem when storing heart beat data which comes in every second. I&#8217;ve implemented a solution to address that problem by persist the data in JSON format and storing it in sqlite. Here is an example:</div>
<div> </div>
<div>
<pre>{ 'Reading' : '[0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0]' ,
'theshold' : '[{'reading' : '0', 'over' : '20.0' },{'reading' : '1', 'over' : '20.0' },<br />{'reading' : '2', 'over' : '20.0' },{'reading' : '3', 'over' : '20.0' },<br />{'reading' : '4', 'over' : '20.0' },{'reading' : '5', 'over' : '20.0' },<br />{'reading' : '6', 'over' : '20.0' },{'reading' : '7', 'over' : '20.0' },<br />{'reading' : '8', 'over' : '20.0' },{'reading' : '9', 'over' : '20.0' }]' </pre>
<p><strong>Concurrent Request All Day on Client Phone</strong><br /><strong></strong></div>
<div> </div>
<div>The next problem was concurrent request being sent from multiple phones multiple times a day will cause problems for the application and the user may incur expenses when heavy network usage is done all day. In light of that I&#8217;ve designed a system to synchronize MyOscar data at a 24 hour interval like a cron job in Linux. After doing some research on either implementing it from scratch or working on top of an already existing open source solution. I came across <a title="CWAC-Wakeful Service" href="https://github.com/commonsguy/cwac-wakeful">CWAC-Wakeful Service library</a>. I&#8217;ve implemented an error message notification that will appear at the top when an error occurs on the clients phone when synchronization with MyOscar fails for the following reason:</div>
<div> </div>
<div>
<ul>
<li>No Network available</li>
<li>Web Service Error</li>
<li>Not Authenticated to MyOscar</li>
<li>Any Unknown error</li>
</ul>
</div>
</blockquote>
<div> </div>
<div> </div>
<div><a href="https://bzcareer.files.wordpress.com/2014/03/myoscarnotification.jpg"><img class=" wp-image" id="i-123" alt="Image" src="https://bzcareer.files.wordpress.com/2014/03/myoscarnotification.jpg?w=266&#038;h=352" width="266" height="352" /></a></div>
<div> </div>
<div>I am still in the process of implementing this solution but from what I gathered. When the phone is rebooted android will not remember unless I set a broadcast receiver to remember this service.Here is the XML required to make this happen.</div>
<div> </div>
<div> </div>
<div>
<div><code>&lt;action android:name="android.intent.action.BOOT_COMPLETED" /&gt;</code></div>
<div> </div>
<p>Here is a link if someone is trying to implement a similar solution:</p></div>
<div></p>
<div>
<div><a href="http://stackoverflow.com/questions/12034357/does-alarm-manager-persist-even-after-reboot/12034402#12034402" target="_blank">http://stackoverflow.com/questions/12034357/does-alarm-manager-persist-even-after-reboot/12034402#12034402</a></div>
<div> </div>
</div>
</div>
<div>In conclusion, data synchronized at a specific interval will be a solution for this project and the users using this software.</div>
<div> </div>
<div>Till next time,</div>
<div>Zak</div>
<div>Research Assistant @ CDOT Research Department,Seneca College</div>
<div><em>“Time is the coin of life. Only you can determine how it will be spent.”</em> – Carl Sandburg</div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/92/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=92&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2014/03/19/healthfirst-solving-problems-with-velocity-of-data-and-volume-of-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2014/03/myoscarnotification.jpg?w=650" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>Update On &#8220;HealthFirst&#8221;</title>
		<link>https://bzcareer.wordpress.com/2014/01/09/update-on-healthfirst/</link>
		<comments>https://bzcareer.wordpress.com/2014/01/09/update-on-healthfirst/#respond</comments>
		<pubDate>Thu, 09 Jan 2014 19:48:14 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[HealthCare]]></category>
		<category><![CDATA[Heart Rate Monitor]]></category>
		<category><![CDATA[Weight Loss]]></category>
		<category><![CDATA[Weight Management]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=87</guid>
		<description><![CDATA[Table Of Contents: Introduction Features Dependencies Conclusion Introduction Currently I&#8217;m working on HealthFirst which is a Heart Rate Monitoring and Weight Management Health care application in Android. I am using Robotium Unit Testing Framework which helps me build a solid application with the least amount of bugs. I am using GraphView to generate graphs for [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=87&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Table Of Contents:</p>
<ol>
<li>Introduction</li>
<li>Features</li>
<li>Dependencies</li>
<li>Conclusion</li>
</ol>
<p>Introduction</p>
<p>Currently I&#8217;m working on <strong>HealthFirst</strong> which is a Heart Rate Monitoring and Weight Management Health care application in Android. I am using <a href="http://code.google.com/p/robotium/wiki">Robotium Unit Testing Framework</a> which helps me build a solid application with the least amount of bugs. I am using GraphView to generate graphs for the UI. I am also using the Zypher Library to connect to the device.  I&#8217;m planning to use withings wireless weight scale but users will be required to register on withings website.</p>
<p>Features</p>
<ul>
<li>Heart Rate Monitoring</li>
<li>Weight Management</li>
<li>Goal Management</li>
<li>Wireless bluetooth reading of Heart Rate Monitor and weight scale</li>
<li>Graphs for seeing progress of goal</li>
<li>Storing information in database on the mobile device</li>
<li>Syncing data with MyOscar personal health record system</li>
</ul>
<p>Dependencies</p>
<ul>
<li>graphview &#8211; Generating Graph UI library</li>
<li>HxMBT &#8211; Zypher library</li>
<li>Robutium &#8211; Testing</li>
</ul>
<p>Problem:</p>
<p>Users may want to login to this system with a username and password. If that is the case then I would need to design a way to create user account. I am trying to find a plan that would make automation possible but due to time constraints I will research to find out how long it will take before going into test implementation.</p>
<p>Conclusion</p>
<p>I am currently implementing my design and testing my code I will post another plug post with updates.</p>
<p>&nbsp;</p>
<p>Zakeria Hassan</p>
<p>Software Developer | Research Assistant , CDOT &#8211; Seneca College, Toronto, ON</p>
<p>Twitter: <a title="@Prospect1010" href="https://twitter.com/prospect1010" target="_blank">@Prospect1010</a></p>
<p><strong>&#8220;Empowerment of individuals is a key part of what makes open source work, since in the end, innovations tend to come from small groups, not from large, structured efforts.&#8221;</strong><br />
<strong>&#8212; Tim O&#8217;Reilly</strong></p>
<p>&nbsp;</p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/87/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=87&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2014/01/09/update-on-healthfirst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>
	</item>
		<item>
		<title>HTML5 Support in Android and IOS?</title>
		<link>https://bzcareer.wordpress.com/2013/12/06/html5-support-in-android-and-ios/</link>
		<comments>https://bzcareer.wordpress.com/2013/12/06/html5-support-in-android-and-ios/#respond</comments>
		<pubDate>Fri, 06 Dec 2013 17:30:19 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[firefox android]]></category>
		<category><![CDATA[firefox ios]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=77</guid>
		<description><![CDATA[      Introduction Why Do We Care? Android KitKat (4.4) &#8211; Latest version of android Fennec (Firefox for android) Android NDK Conclusion          Introduction   Android is an open source mobile platform and has more then half of the market share for smart phones. Developing on android requires knowledge of Java [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=77&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p> </p>
<p><a href="https://bzcareer.files.wordpress.com/2013/12/d5b3f-1383708950_html5-02.png"><img alt="" src="https://bzcareer.files.wordpress.com/2013/12/d5b3f-1383708950_html5-02.png?w=620" border="0" /></a></p>
<p> </p>
<p> </p>
<ol>
<li>Introduction</li>
<li>Why Do We Care?</li>
<li>Android KitKat (4.4) &#8211; Latest version of android</li>
<li>Fennec (Firefox for android)</li>
<li>Android NDK</li>
<li>Conclusion</li>
</ol>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<h3> Introduction</h3>
<p> </p>
<p>Android is an open source mobile platform and has more then half of the market share for smart phones. Developing on android requires knowledge of Java but it is not a steep learning curve. Web developers may be interested in its new support for WebView based off of source code used in Chrome. There is a slight difference between android webviews and chrome browser and I will explain these details in the following blog post.</p>
<p> </p>
<h3>Android KitKat (4.4) &#8211; Latest version of android</h3>
<p><a href="https://bzcareer.files.wordpress.com/2013/12/5ee14-android-kitkat.png"><img alt="" src="https://bzcareer.files.wordpress.com/2013/12/5ee14-android-kitkat.png?w=640&#038;h=248" width="640" height="248" border="0" /></a></p>
<h3> </h3>
<p>Android KitKat is the latest version of the Android platform as of this writing (Dec. 5, 2013).  The main feature that will interest developers is the new chrome like WebView. Android Applications use webviews based on <a href="http://www.chromium.org/">Chromium Code</a> which includes common Javascript V8 and Blink rendering found in version 30 of Google Chrome on Android version 4.4.</p>
<p> </p>
<p><span style="text-decoration:underline;"><b>Pro&#8217;s vs. Con&#8217;s</b></span></p>
<p> </p>
<p>Cons:</p>
<p><a href="https://developers.google.com/chrome/mobile/docs/webview/overview#does_the_new_webview_have_feature_parity_with_chrome_for_android">Not the same as chrome because it doesn&#8217;t support:</a></p>
<p>        1) WebRTC</p>
<p>        2) WebGL 3D Canvas</p>
<p>        3) WebAudio</p>
<p>        4) Fullscreen API</p>
<p>        5) Form Validation</p>
<p>        6) Chrome Apps Platform</p>
<p> </p>
<p> </p>
<p>   </p>
<p>Pro:</p>
<p>Supports HTML5 better JavaScript run time, lets you do remote debugging using chrome developer tools.</p>
<h3>Why do we care?</h3>
<p>Support for HTML5 helps make using the web richer and will make developing apps easier. If WebRTC is fully supported then perhaps you could video chat with someone using our browser or android phone instead of downloading and installing third party files.</p>
<p> </p>
<h3>Fennec (Firefox on Android)</h3>
<table cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td>
<p><a href="https://bzcareer.files.wordpress.com/2013/12/b1c90-fennec-android.png"><img alt="" src="https://bzcareer.files.wordpress.com/2013/12/b1c90-fennec-android.png?w=640&#038;h=264" width="640" height="264" border="0" /></a></p>
</td>
</tr>
<tr>
<td>
<p>screenshot from <a href="https://play.google.com/store/apps/details?id=org.mozilla.firefox" rel="nofollow">https://play.google.com/store/apps/details?id=org.mozilla.firefox</a></p>
</td>
</tr>
</tbody>
</table>
<h3> </h3>
<p> </p>
<p>I&#8217;m investigating if it is possible to ship a browser in an android application. In my search I came across Fennec which is the Firefox implementation of Android. Firefox is written in C++ and Fennec uses the same source code but also adds another layer of native Android code. Fennec is designed for smart phones, touch screen devices and UI utilizes a different XUL then what is found in Firefox for PC. Since it&#8217;s used on smart phones then they are limited in CPU, memory, etc. <a href="https://wiki.mozilla.org/Mobile/Fennec/Debugging">Fennec uses parallel processing to run on android</a>.</p>
<p> </p>
<p> </p>
<p>Like most technology Fennec has dependencies and the dependencies are:</p>
<p> </p>
<ol>
<li>Must download NDK for Android     </li>
<li>Set the mozconfig environment variables for Fennec.</li>
<li>Must download mozilla-central git repository (<a href="https://github.com/mozilla/mozilla-central">https://github.com/mozilla/mozilla-central</a>)</li>
</ol>
<p>   </p>
<p><b>How does NDK for android work?</b></p>
<p> </p>
<p><b>Prerequisite: </b></p>
<p>Must understand JNI to work with the NDK source code.</p>
<p> </p>
<p>In a nutshell, NDK lets you create shared libraries that basically lets you embed a C/C++ application in your Android App. Works on Android 1.5 Platform or later however I think Fennec can only run on 1.6 and greater. Although its better practice to develop applications in native code, you can write an application in C++ and have a wrapper.</p>
<p> </p>
<p> </p>
<h3>Can Firefox Run on IOS?</h3>
<p><a href="https://wiki.mozilla.org/Mobile/Platforms">On Mozilla&#8217;s website it says that Fennec doesn&#8217;t run on IOS</a> but after speaking with a developer at Mozilla I found out that someone has created a way to build Firefox on IOS.</p>
<p> </p>
<p>Source code is located here:</p>
<p><a href="http://hg.mozilla.org/users/tanya.meshkova_gmail.com/ios-patches/">http://hg.mozilla.org/users/tanya.meshkova_gmail.com/ios-patches/</a></p>
<p> </p>
<p>Here is a screen shot of how it looks:</p>
<table cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td>
<p><a href="https://bzcareer.files.wordpress.com/2013/12/b2fd2-r8qti.jpg"><img alt="" src="https://bzcareer.files.wordpress.com/2013/12/b2fd2-r8qti.jpg?w=478&#038;h=640" width="478" height="640" border="0" /></a></p>
</td>
</tr>
<tr>
<td>
<p>link to original page: <a href="https://imgur.com/r8Qti" rel="nofollow">https://imgur.com/r8Qti</a></p>
</td>
</tr>
</tbody>
</table>
<p> </p>
<p> </p>
<p> </p>
<h3>Conclusion:</h3>
<p> </p>
<p>Perhaps by using Android NDK which is used by Firefox to embed C/C++ source files in your Android application, we could perhaps embed Firefox in an applications. Or even</p>
<p>better perhaps we could totally replace the need of using WebViews and use a XUL window to display the page you would like to view.</p>
<p> </p>
<p> </p>
<p> </p>
<p> By: Zakeria Hassan</p>
<p>Twitter: <a title="@Prospect1010" href="http://twitter.com/Prospect1010" target="_blank">@Prospect1010</a></p>
<p>Blog: <a title="http://bzcareermongodb.blogspot.ca/" href="http://bzcareermongodb.blogspot.ca/" target="_blank">http://bzcareermongodb.blogspot.ca/</a></p>
<p>Github: <a title="http://github.com/zmhassan" href="http://github.com/zmhassan" target="_blank">http://github.com/zmhassan</a></p>
<p> </p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/77/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=77&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2013/12/06/html5-support-in-android-and-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2013/12/d5b3f-1383708950_html5-02.png" medium="image" />

		<media:content url="http://bzcareer.files.wordpress.com/2013/12/5ee14-android-kitkat.png?w=300" medium="image" />

		<media:content url="http://bzcareer.files.wordpress.com/2013/12/b1c90-fennec-android.png?w=300" medium="image" />

		<media:content url="http://bzcareer.files.wordpress.com/2013/12/b2fd2-r8qti.jpg?w=224" medium="image" />
	</item>
		<item>
		<title>Find all IT jobs in the United States</title>
		<link>https://bzcareer.wordpress.com/2013/06/30/find-all-it-jobs-in-the-united-states/</link>
		<comments>https://bzcareer.wordpress.com/2013/06/30/find-all-it-jobs-in-the-united-states/#respond</comments>
		<pubDate>Sun, 30 Jun 2013 05:05:16 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[all it jobs]]></category>
		<category><![CDATA[job search]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=74</guid>
		<description><![CDATA[BZCareer has excellent opportunities for job seekers looking for an IT job in the united states or canada.    www.bzcareer.com/search?keyword=IT&#38;local=‎  <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=74&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>BZCareer has excellent opportunities for job seekers looking for an IT job in the united states or canada. </p>
<p> </p>
<p><a title="all it jobs" href="http://www.bzcareer.com/search?keyword=IT&amp;local=‎" target="_blank"><cite>www.bzcareer.com/search?keyword=IT&amp;local=</cite>‎</a></p>
<p> </p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/74/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=74&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2013/06/30/find-all-it-jobs-in-the-united-states/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>
	</item>
		<item>
		<title>NTT Data just added to BZCareer.com</title>
		<link>https://bzcareer.wordpress.com/2013/06/17/ntt-data-just-added-to-bzcareer-com/</link>
		<comments>https://bzcareer.wordpress.com/2013/06/17/ntt-data-just-added-to-bzcareer-com/#respond</comments>
		<pubDate>Mon, 17 Jun 2013 20:00:31 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux Administor Jobs]]></category>
		<category><![CDATA[Linux Jobs]]></category>
		<category><![CDATA[Network Jobs]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=69</guid>
		<description><![CDATA[BZCareer would like to announce that we have added NTT Data with many positions for Linux Administrators, Network Specialists, Application Software Specialists and many more. To find the position right for you visit us at: http://bzcareer.com/CA/search?keyword=company:NTT%20Data&#038;local=  <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=69&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>BZCareer would like to announce that we have added NTT Data with many positions for Linux Administrators, Network Specialists, Application Software Specialists and many more. To find the position right for you visit us at:</p>
<p><a href="http://bzcareer.com/CA/search?keyword=company:NTT%20Data&#038;local=" rel="nofollow">http://bzcareer.com/CA/search?keyword=company:NTT%20Data&#038;local=</a></p>
<p> </p>
<p><a href="https://bzcareer.files.wordpress.com/2013/06/ntt-data.png"><img class="size-full wp-image" id="i-72" alt="Image" src="https://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=650" srcset="https://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=650 650w, https://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=1300 1300w, https://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=150 150w, https://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=300 300w, https://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=768 768w, https://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=1024 1024w" sizes="(max-width: 650px) 100vw, 650px" /></a></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/69/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=69&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2013/06/17/ntt-data-just-added-to-bzcareer-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2013/06/ntt-data.png?w=650" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>BZCareer added Sunnybrook Hospital to our search engine</title>
		<link>https://bzcareer.wordpress.com/2013/06/09/bzcareer-added-sunnybrook-hospital-to-our-search-engine/</link>
		<comments>https://bzcareer.wordpress.com/2013/06/09/bzcareer-added-sunnybrook-hospital-to-our-search-engine/#respond</comments>
		<pubDate>Sun, 09 Jun 2013 23:06:47 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=62</guid>
		<description><![CDATA[BZCareer now features more healthcare jobs such as nursing careers. We want our users to get the best experience and best careers. We will be adding more healthcare careers soon. You can visit the following url for all sunnybrook hospital job openings: http://www.bzcareer.com/CA/search?keyword=company%3Asunnybrook&#38;local=Toronto    <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=62&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>BZCareer now features more healthcare jobs such as nursing careers. We want our users to get the best experience and best careers. We will be adding more healthcare careers soon.</p>
<p>You can visit the following url for all sunnybrook hospital job openings:</p>
<p><a title="http://www.bzcareer.com/CA/search?keyword=company%3Asunnybrook&amp;local=Toronto" href="http://www.bzcareer.com/CA/search?keyword=company%3Asunnybrook&amp;local=Toronto" target="_blank">http://www.bzcareer.com/CA/search?keyword=company%3Asunnybrook&amp;local=Toronto</a></p>
<p> </p>
<p><a href="https://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png"><img class="size-full wp-image" id="i-66" alt="Image" src="https://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png?w=650" srcset="https://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png?w=650 650w, https://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png?w=150 150w, https://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png?w=300 300w, https://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png?w=768 768w, https://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png 938w" sizes="(max-width: 650px) 100vw, 650px" /></a></p>
<p> </p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/62/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=62&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2013/06/09/bzcareer-added-sunnybrook-hospital-to-our-search-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2013/06/sunnybrook-screenshoot.png?w=650" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>BZCareer Console BETA Launched</title>
		<link>https://bzcareer.wordpress.com/2013/05/13/bzcareer-console-beta-launched/</link>
		<comments>https://bzcareer.wordpress.com/2013/05/13/bzcareer-console-beta-launched/#respond</comments>
		<pubDate>Mon, 13 May 2013 18:58:26 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=51</guid>
		<description><![CDATA[BZCareer console BETA has a tool to advertise job openings and is now available at http://www.bzcareer.com     Job Post Management Tool: Ability to create and view, edit, delete and even archive these job posts.   LinkedIn Integration: Your applicants can choose to apply with their LinkedIn profile making it easier for them to apply [&#8230;]<img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=51&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<div>
<div>BZCareer console BETA has a tool to advertise job openings and is now available at <a title="http://www.bzcareer.com" href="http://www.bzcareer.com">http://www.bzcareer.com</a></div>
<div> </div>
<div> </div>
<div><strong><span style="color:#000000;font-family:Helvetica, Arial, sans-serif;">Job Post Management Tool:</span></strong></div>
<div>Ability to create and view, edit, delete and even archive these job posts.</div>
<div> </div>
<div><strong>LinkedIn Integration:</strong></div>
<div>Your applicants can choose to apply with their LinkedIn profile making it easier for them to apply with one click.</div>
<div> </div>
<div><strong>Social Media e-Recruitment:</strong></div>
<div>We also provide you with the infrastructure to share jobs to social media networks such as LinkedIn, Facebook, and Twitter.</div>
<div><strong>Job Templates: </strong></div>
<div>Job templates can be filled with the type of information that does not change from job to job. Once you have the template created, you can create jobs from the template and only fill the sections that differs which makes the process of creating a job simple.</div>
<div><b> </b></div>
<div><strong>Archiving Jobs </strong></div>
<div>Archiving jobs is a feature that can be used to keep a job that was previously posted in the database for later use. If at some point you needed to re-post the same job or have a similar job that you wanted to post, you can use the archived and re-posted without the need of filling any information. </p>
<p>Thank you and we hope that you will find us very helpful in helping you find and hire the best candidates for your company. </p></div>
<div> </div>
<div>You can sign up for the console at: <a href="http://www.bzcareer.com/join" target="_blank">http://www.bzcareer.com/join</a> . </div>
<p> <a href="https://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png"><img class="size-full wp-image" id="i-55" alt="Image" src="https://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png?w=487" srcset="https://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png?w=487 487w, https://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png?w=974 974w, https://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png?w=150 150w, https://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png?w=300 300w, https://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png?w=768 768w" sizes="(max-width: 487px) 100vw, 487px" /></a></p>
</div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/51/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=51&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2013/05/13/bzcareer-console-beta-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2013/05/console-screen-shot-2.png?w=487" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>Stryker Corporation Careers Added To BZCareer</title>
		<link>https://bzcareer.wordpress.com/2013/05/13/stryker-corporation-careers-added-to-bzcareer/</link>
		<comments>https://bzcareer.wordpress.com/2013/05/13/stryker-corporation-careers-added-to-bzcareer/#respond</comments>
		<pubDate>Mon, 13 May 2013 18:49:02 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Find a job at Stryker]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=45</guid>
		<description><![CDATA[For those who don&#8217;t know about Stryker. Stryker is one of the largest medical tech companies and among the Fortune 500 companies. BZCareer would like to provide the best job openings in the fortune 500 to people seeking employment from the best. http://www.bzcareer.com/CA/search?keyword=Company%3Astryker&#38;local=  <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=45&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>For those who don&#8217;t know about Stryker. Stryker is one of the largest medical tech companies and among the Fortune 500 companies. BZCareer would like to provide the best job openings in the fortune 500 to people seeking employment from the best.</p>
<p><a title="http://www.bzcareer.com/CA/search?keyword=Company%3Astryker&amp;local=" href="http://www.bzcareer.com/CA/search?keyword=Company%3Astryker&amp;local=">http://www.bzcareer.com/CA/search?keyword=Company%3Astryker&amp;local=</a></p>
<p><a href="https://bzcareer.files.wordpress.com/2013/05/stryker-logo.png"><img class="size-full wp-image" id="i-49" alt="Image" src="https://bzcareer.files.wordpress.com/2013/05/stryker-logo.png?w=487" srcset="https://bzcareer.files.wordpress.com/2013/05/stryker-logo.png?w=487 487w, https://bzcareer.files.wordpress.com/2013/05/stryker-logo.png?w=147 147w, https://bzcareer.files.wordpress.com/2013/05/stryker-logo.png?w=293 293w, https://bzcareer.files.wordpress.com/2013/05/stryker-logo.png?w=768 768w, https://bzcareer.files.wordpress.com/2013/05/stryker-logo.png 946w" sizes="(max-width: 487px) 100vw, 487px" /></a></p>
<p> </p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/45/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=45&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2013/05/13/stryker-corporation-careers-added-to-bzcareer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2013/05/stryker-logo.png?w=487" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
		<item>
		<title>Find a Job at Shoppers Drug Mart</title>
		<link>https://bzcareer.wordpress.com/2013/05/13/find-a-job-at-shoppers-drug-mart/</link>
		<comments>https://bzcareer.wordpress.com/2013/05/13/find-a-job-at-shoppers-drug-mart/#respond</comments>
		<pubDate>Mon, 13 May 2013 18:44:30 +0000</pubDate>
		<dc:creator><![CDATA[zmhassan]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Find a job at Shoppers Drug Mart]]></category>

		<guid isPermaLink="false">http://bzcareer.wordpress.com/?p=39</guid>
		<description><![CDATA[BZCareer would like to announce that we have added Shoppers Drug Mart Careers to our search engine. We have even more jobs openings comings soon. Stay tuned to hear more companies being added to BZCareer.com   http://www.bzcareer.com/CA/search?keyword=company%3Ashoppers&#38;local=  <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=39&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>BZCareer would like to announce that we have added Shoppers Drug Mart Careers to our search engine. We have even more jobs openings comings soon. Stay tuned to hear more companies being added to BZCareer.com</p>
<p> </p>
<p><a title="http://www.bzcareer.com/CA/search?keyword=company%3Ashoppers&amp;local=" href="http://www.bzcareer.com/CA/search?keyword=company%3Ashoppers&amp;local=">http://www.bzcareer.com/CA/search?keyword=company%3Ashoppers&amp;local=</a></p>
<p><a href="https://bzcareer.files.wordpress.com/2013/05/shopper.png"><img class="size-full wp-image" id="i-43" alt="Image" src="https://bzcareer.files.wordpress.com/2013/05/shopper.png?w=650" srcset="https://bzcareer.files.wordpress.com/2013/05/shopper.png?w=650 650w, https://bzcareer.files.wordpress.com/2013/05/shopper.png?w=150 150w, https://bzcareer.files.wordpress.com/2013/05/shopper.png?w=300 300w, https://bzcareer.files.wordpress.com/2013/05/shopper.png?w=768 768w, https://bzcareer.files.wordpress.com/2013/05/shopper.png 964w" sizes="(max-width: 650px) 100vw, 650px" /></a></p>
<p> </p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bzcareer.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bzcareer.wordpress.com/39/" /></a> <img alt="" border="0" src="https://pixel.wp.com/b.gif?host=bzcareer.wordpress.com&#038;blog=48088716&#038;post=39&#038;subd=bzcareer&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>https://bzcareer.wordpress.com/2013/05/13/find-a-job-at-shoppers-drug-mart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/66e5e21053f70a3c30325b392337d54d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">zmhassan</media:title>
		</media:content>

		<media:content url="http://bzcareer.files.wordpress.com/2013/05/shopper.png?w=650" medium="image">
			<media:title type="html">Image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
