<?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>{ Berbagi, Menulis, Dan Mengajar } Ilmu... &#187; 5. Frame Works</title>
	<atom:link href="http://dimas.ubhara.id/category/webframework/feed/" rel="self" type="application/rss+xml" />
	<link>http://dimas.ubhara.id</link>
	<description>sampaikanlah ilmu walau satu ayat</description>
	<lastBuildDate>Sun, 19 Apr 2026 23:30:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.1</generator>
	<item>
		<title>Ini Lho REST API CODE IGNITER</title>
		<link>http://dimas.ubhara.id/2017/09/ini-lho-rest-api-code-igniter/</link>
		<comments>http://dimas.ubhara.id/2017/09/ini-lho-rest-api-code-igniter/#comments</comments>
		<pubDate>Tue, 26 Sep 2017 02:48:47 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[5. Frame Works]]></category>
		<category><![CDATA[Code Igniter (CI)]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=5391</guid>
		<description><![CDATA[https://belajarphp.net/membuat-rest-api-codeigniter/
https://bayultimate.wordpress.com/2012/05/18/implementasi-web-service-pada-facebook-api/
 
  Pengenalan SOA serta implementasinya pada aplikasi SS (Support System)  from Dimas Prawira 
]]></description>
				<content:encoded><![CDATA[<p><strong>https://belajarphp.net/membuat-rest-api-codeigniter/</strong></p>
<p>https://bayultimate.wordpress.com/2012/05/18/implementasi-web-service-pada-facebook-api/</p>
<p><iframe src="https://www.slideshare.net/slideshow/embed_code/key/bSBZYuF32oGhAt" width="427" height="356" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
<div style="margin-bottom:5px"> <strong> <a href="https://www.slideshare.net/DimasYudhaP/pengenalan-soa-serta-implementasinya-pada-aplikasi-ss-support-system" title="Pengenalan SOA serta implementasinya pada aplikasi SS (Support System)" target="_blank">Pengenalan SOA serta implementasinya pada aplikasi SS (Support System)</a> </strong> from <strong><a href="https://www.slideshare.net/DimasYudhaP" target="_blank">Dimas Prawira</a></strong> </div>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2017/09/ini-lho-rest-api-code-igniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial Laravel</title>
		<link>http://dimas.ubhara.id/2015/09/tutorial-laravel/</link>
		<comments>http://dimas.ubhara.id/2015/09/tutorial-laravel/#comments</comments>
		<pubDate>Fri, 11 Sep 2015 10:20:52 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[laravel]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=3721</guid>
		<description><![CDATA[http://digitalmapia.com/membuat-crud-sederhana-pada-laravel-part-1/
]]></description>
				<content:encoded><![CDATA[<p>http://digitalmapia.com/membuat-crud-sederhana-pada-laravel-part-1/</p>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2015/09/tutorial-laravel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ini Installasi Laravel 5</title>
		<link>http://dimas.ubhara.id/2015/09/ini-installasi-laravel/</link>
		<comments>http://dimas.ubhara.id/2015/09/ini-installasi-laravel/#comments</comments>
		<pubDate>Thu, 03 Sep 2015 15:33:34 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[laravel]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=3699</guid>
		<description><![CDATA[1. Installasi Paket di Linux 
apt-get update &#38; apt-get upgrade
apt-get install nginx php5-fpm php5-cli php5-mcrypt php5-mysql git
php5enmod mcrypt

2. Install Composer
curl -sS https://getcomposer.org/installer &#124; php
mv composer.phar /usr/local/bin/composer
3. Buat Project Laravel


cd /var/www/laravel
composer create-project laravel/laravel project_name --prefer-dist

4. Chmod dan Chown

chgrp -R www-data /var/www/laravel
chmod -R 775 /var/www/laravel/storage
 
]]></description>
				<content:encoded><![CDATA[<pre>1. Installasi Paket di Linux 
apt-get update &amp; apt-get upgrade
apt-get install nginx php5-fpm php5-cli php5-mcrypt php5-mysql git
php5enmod mcrypt

2. Install Composer</pre>
<pre>curl -sS https://getcomposer.org/installer | php</pre>
<pre>mv composer.phar /usr/local/bin/composer</pre>
<pre>3. Buat Project Laravel

</pre>
<pre>cd /var/www/laravel
<code class="plain">composer create</code><code class="keyword">-</code><code class="plain">project laravel</code><code class="keyword">/</code><code class="plain">laravel project_name </code><code class="keyword">-</code><code class="keyword">-</code><code class="plain">prefer</code><code class="keyword">-</code><code class="plain">dist

4. Chmod dan Chown
</code></pre>
<pre>chgrp -R www-data /var/www/laravel
chmod -R 775 /var/www/laravel/storage</pre>
<pre><code class="plain"> </code></pre>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2015/09/ini-installasi-laravel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camera Calibration</title>
		<link>http://dimas.ubhara.id/2011/11/camera-calibration/</link>
		<comments>http://dimas.ubhara.id/2011/11/camera-calibration/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 07:41:43 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[OpenCV]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=1501</guid>
		<description><![CDATA[http://opencv.willowgarage.com/documentation/camera_calibration_and_3d_reconstruction.html
]]></description>
				<content:encoded><![CDATA[<p><a href="http://opencv.willowgarage.com/documentation/camera_calibration_and_3d_reconstruction.html">http://opencv.willowgarage.com/documentation/camera_calibration_and_3d_reconstruction.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2011/11/camera-calibration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Library Wajib OpenCV</title>
		<link>http://dimas.ubhara.id/2011/11/library-wajib-opencv/</link>
		<comments>http://dimas.ubhara.id/2011/11/library-wajib-opencv/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 13:44:51 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[OpenCV]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=1496</guid>
		<description><![CDATA[cv210.lib
cxcore210.lib
highgui210.lib
&#160;
]]></description>
				<content:encoded><![CDATA[<p>cv210.lib</p>
<p>cxcore210.lib</p>
<p>highgui210.lib</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2011/11/library-wajib-opencv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>openCV Toturial</title>
		<link>http://dimas.ubhara.id/2011/11/opencv-toturial/</link>
		<comments>http://dimas.ubhara.id/2011/11/opencv-toturial/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 08:32:39 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[OpenCV]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=1490</guid>
		<description><![CDATA[http://www.pages.drexel.edu/~nk752/tutorials.html
]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.pages.drexel.edu/~nk752/tutorials.html">http://www.pages.drexel.edu/~nk752/tutorials.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2011/11/opencv-toturial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenCV Camera Calibration</title>
		<link>http://dimas.ubhara.id/2011/11/opencv-camera-calibration/</link>
		<comments>http://dimas.ubhara.id/2011/11/opencv-camera-calibration/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 14:32:52 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[OpenCV]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=1488</guid>
		<description><![CDATA[http://dasl.mem.drexel.edu/~noahKuntz/openCVTut10.html
]]></description>
				<content:encoded><![CDATA[<p><a href="http://dasl.mem.drexel.edu/~noahKuntz/openCVTut10.html">http://dasl.mem.drexel.edu/~noahKuntz/openCVTut10.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2011/11/opencv-camera-calibration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenCV 1</title>
		<link>http://dimas.ubhara.id/2011/11/opencv-1/</link>
		<comments>http://dimas.ubhara.id/2011/11/opencv-1/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 14:28:55 +0000</pubDate>
		<dc:creator><![CDATA[dms]]></dc:creator>
				<category><![CDATA[OpenCV]]></category>

		<guid isPermaLink="false">http://dimas.ubhara.id/?p=1486</guid>
		<description><![CDATA[// halo.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "cv.h"
#include "cxcore.h"
#include "highgui.h"

int _tmain(int argc, _TCHAR* argv[])
{
	IplImage *img = cvLoadImage ("Image.bmp");
		cvNamedWindow("Image:",1);
		cvShowImage("Image:",img);

		cvWaitKey();
		cvDestroyWindow("Image:");
		cvReleaseImage(&#38;img);


	return 0;


}
]]></description>
				<content:encoded><![CDATA[<pre>// halo.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "cv.h"
#include "cxcore.h"
#include "highgui.h"

int _tmain(int argc, _TCHAR* argv[])
{
	IplImage *img = cvLoadImage ("Image.bmp");
		cvNamedWindow("Image:",1);
		cvShowImage("Image:",img);

		cvWaitKey();
		cvDestroyWindow("Image:");
		cvReleaseImage(&amp;img);


	return 0;


}</pre>
]]></content:encoded>
			<wfw:commentRss>http://dimas.ubhara.id/2011/11/opencv-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
