<?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>Web Development &#8211; YUMMY WAKAME Blog</title>
	<atom:link href="https://yummy-wakame.com/weblog/category/articles/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>https://yummy-wakame.com/weblog</link>
	<description>UX Designer + Full-Stack Dev</description>
	<lastBuildDate>Tue, 09 Jul 2019 04:06:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://yummy-wakame.com/weblog/wp-content/uploads/2018/07/cropped-square-icon-2-150x150.png</url>
	<title>Web Development &#8211; YUMMY WAKAME Blog</title>
	<link>https://yummy-wakame.com/weblog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to add custom Virtual Hosts to WAMP</title>
		<link>https://yummy-wakame.com/weblog/2017/10/how-to-add-custom-virtual-hosts-to-wamp/</link>
					<comments>https://yummy-wakame.com/weblog/2017/10/how-to-add-custom-virtual-hosts-to-wamp/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Wed, 18 Oct 2017 02:05:24 +0000</pubDate>
				<category><![CDATA[nifty hacks and tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Hosting]]></category>
		<guid isPermaLink="false">http://yummy-wakame.com/?p=20101</guid>

					<description><![CDATA[(Refers to WAMPSERVER 3.0.6 64-bit) If you&#8217;re developing a site in WordPress or similar on your local machine and want to run your site from //customsitename instead of //localhost&#160;in WAMP every time you test, or even have a bunch of virtual hosts like //sitename1 //sitename2 etc, here&#8217;s how to do set them all up: Open [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><em>(Refers to WAMPSERVER 3.0.6 64-bit)</em></p>
<p>If you&#8217;re developing a site in WordPress or similar on your local machine and want to run your site from <em><strong>//customsitename</strong></em> instead of <strong><em>//localhost</em></strong>&nbsp;in WAMP every time you test, or even have a bunch of virtual hosts like <strong>//sitename1</strong> <strong>//sitename2</strong> etc, here&#8217;s how to do set them all up:</p>
<p>Open <em><strong>wamp64/bin/apache/apachex.x.xx/conf/extra/http-vhosts.conf</strong></em> and make a duplicate of the Virtual host entry for your localhost, paste it <strong>below</strong> localhost&#8217;s and change the <em>ServerName</em>, <em>DocumentRoot</em> and <em>Directory</em>&nbsp;to your own names and locations. DO NOT replace localhost, copy and paste it below. Change the names like for example:</p>
<p><code>&lt;VirtualHost *:80&gt;<br />
ServerName yoursitename<br />
DocumentRoot C:/wamp64/www/yourfolder<br />
&lt;Directory&nbsp; "C:/wamp64/www/yourfolder/"&gt;<br />
Options +Indexes +Includes +FollowSymLinks +MultiViews<br />
AllowOverride All Require local<br />
&lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;<br />
</code></p>
<p>Save.</p>
<p>Then, open <strong><em>C:\Windows\System32\drivers\etc\hosts</em></strong> in administrator mode and below:</p>
<p><code>127.0.0.1       localhost<br />
::1             localhost</code></p>
<p>add</p>
<p><code>127.0.0.1       yoursitename<br />
::1             yoursitename</code></p>
<p>Save and restart WAMP. Go to your localhost page and you will see it show up as a clickable virtual host.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2017/10/how-to-add-custom-virtual-hosts-to-wamp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to fix WAMP&#8217;s missing localhost in URLs</title>
		<link>https://yummy-wakame.com/weblog/2017/09/how-to-fix-wamps-missing-localhost-in-urls/</link>
					<comments>https://yummy-wakame.com/weblog/2017/09/how-to-fix-wamps-missing-localhost-in-urls/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Thu, 14 Sep 2017 21:41:47 +0000</pubDate>
				<category><![CDATA[D&D Articles]]></category>
		<category><![CDATA[nifty hacks and tips]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Hosting]]></category>
		<guid isPermaLink="false">http://yummy-wakame.com/?p=20096</guid>

					<description><![CDATA[Applies to: WAMPSERVER 3.0.6 64-bit You&#8217;ve probably run into this problem a bunch, where you have a few projects located in the www folder, and when you go to http://localhost/ or http://127.0.0.1/ and click on your project name it just points to http://mysite/ instead of http://localhost/mysite/. Super annoying to be manually typing it in every [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><em>Applies to: WAMPSERVER 3.0.6 64-bit</em><br />
You&#8217;ve probably run into this problem a bunch, where you have a few projects located in the www folder, and when you go to http://localhost/ or http://127.0.0.1/ and click on your project name it just points to http://mysite/ instead of http://localhost/mysite/. Super annoying to be manually typing it in every time. But with the latest version of WAMP Server (3.0.6 at the time of writing this, there&#8217;s a setting you can turn on to easily change this:</p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-20097" src="https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings.png" alt="" width="580" height="440" srcset="https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings.png 580w, https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings-300x228.png 300w, https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings-540x410.png 540w" sizes="(max-width: 580px) 100vw, 580px" /></p>
<p><strong>It is now configurable from the Wamp Aestan Tray menu.</strong></p>
<ol>
<li>Right-click on wamp icon in your system tray on the right.</li>
<li>Go to &#8220;wamp settings&#8221;</li>
<li>Enable &#8220;Add localhost in URL&#8221;</li>
<li>If you see the green tick mark, it is enabled.</li>
</ol>
<p>Now refresh your localhost home page and check URLs. It should be working perfectly.</p>
<p><strong>In older versions of WAMP:</strong></p>
<p>Open wamp/www/index.php</p>
<p>Change this line:</p>
<pre><code>$suppress_localhost = true;
</code></pre>
<p>To :</p>
<pre><code>$suppress_localhost = false;</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2017/09/how-to-fix-wamps-missing-localhost-in-urls/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Best, Affordable Stock Photography Resources</title>
		<link>https://yummy-wakame.com/weblog/2015/03/best-affordable-stock-photography-resources/</link>
					<comments>https://yummy-wakame.com/weblog/2015/03/best-affordable-stock-photography-resources/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Sat, 21 Mar 2015 15:53:55 +0000</pubDate>
				<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[Geek out]]></category>
		<category><![CDATA[nifty hacks and tips]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[stock photos & videos]]></category>
		<guid isPermaLink="false">http://www.yummy-wakame.com/?p=14639</guid>

					<description><![CDATA[Just like typography, the quality of your stock images can make or break your designs. You can get a year of unlimited royalty free stock image downloads from GraphicStock for a flat $99 with my code: graphicstock.refr.cc/277VT7K, or buy them for a dollar an image at dollarphotoclub.com. I use both. If you need an invite code for dollarphotoclub, let [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Just like typography, the quality of your stock images can make or break your designs. You can get a year of unlimited royalty free stock image downloads from <strong>GraphicStock</strong> for a flat $99 with my code: <a href="http://graphicstock.refr.cc/277VT7K" target="_blank" rel="nofollow">graphicstock.refr.cc/277VT7K</a>, or buy them for a dollar an image at <a href="http://www.dollarphotoclub.com/" target="_blank" rel="nofollow"><strong>dollarphotoclub</strong>.com.</a> I use both. If you need an invite code for dollarphotoclub, let me know.</p>
<p><a href="http://graphicstock.refr.cc/277VT7K"><img decoding="async" class="alignnone size-full wp-image-14637" src="https://yummy-wakame.com/weblog/wp-content/uploads/2015/03/Dollarphotoclub_620201670-2.jpg" alt="Stock Photo Discount Code" width="800" height="800" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2015/03/best-affordable-stock-photography-resources/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>30 Gorgeous Free Web Fonts</title>
		<link>https://yummy-wakame.com/weblog/2015/02/30-gorgeous-free-web-fonts/</link>
					<comments>https://yummy-wakame.com/weblog/2015/02/30-gorgeous-free-web-fonts/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Thu, 19 Feb 2015 04:13:48 +0000</pubDate>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Geek out]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.yummy-wakame.com/?p=14615</guid>

					<description><![CDATA[It&#8217;s hard to wade through the thousands of amateur web fonts to find the ones you can use to sharpen up your designs. With this in mind, we&#8217;ve rounded up the greatest free web fonts from around the web to get you started. Here are 30 beautiful fonts to get you started&#8230;]]></description>
										<content:encoded><![CDATA[<p>It&#8217;s hard to wade through the thousands of amateur web fonts to find the ones you can use to sharpen up your designs. With this in mind, we&#8217;ve rounded up the greatest free web fonts from around the web to get you started.<br />
<a href="http://www.creativebloq.com/typography/free-web-fonts-1131610" target="_blank">Here are 30 beautiful fonts to get you started&#8230;</a></p>
<p><a href="http://www.creativebloq.com/typography/free-web-fonts-1131610" rel="external"><img decoding="async" src="https://yummy-wakame.com/weblog/wp-content/uploads/2015/02/jura.jpg" alt="Jura comes in four different weights, so it will work anywhere" width="535" height="190" class="alignnone size-full wp-image-14616" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2015/02/30-gorgeous-free-web-fonts/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>6 Ways to Make Getting Up Early Work for You</title>
		<link>https://yummy-wakame.com/weblog/2014/11/6-ways-to-make-getting-up-early-work-for-you/</link>
					<comments>https://yummy-wakame.com/weblog/2014/11/6-ways-to-make-getting-up-early-work-for-you/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Wed, 12 Nov 2014 19:36:39 +0000</pubDate>
				<category><![CDATA[Entrepeneurial spirit]]></category>
		<category><![CDATA[Food for thought]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Development]]></category>
		<guid isPermaLink="false">http://www.yummy-wakame.com/?p=14579</guid>

					<description><![CDATA[When you try to change your morning routine, several obstacles will stand in your way. It’s possible to overcome them, however; the key is to start the night before. Julie Morgenstern &#8212; time management expert and author of Never Check Email in the Morning &#8212; offers six strategies to make getting up early work for [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>When you try to change your morning routine, several obstacles will stand in your way. It’s possible to overcome them, however; the key is to start the night before.  Julie Morgenstern &#8212; time management expert and author of Never Check Email in the Morning &#8212; <a href="http://www.entrepreneur.com/article/231574" target="_blank">offers six strategies</a> to make getting up early work for you.</p>
<p><a href="http://www.entrepreneur.com/article/231574" target="_blank"><img loading="lazy" decoding="async" src="https://yummy-wakame.com/weblog/wp-content/uploads/2014/11/safe_image.jpg" alt="early start" width="484" height="252" class="alignnone size-full wp-image-14580" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2014/11/6-ways-to-make-getting-up-early-work-for-you/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
