<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title>femgeek</title>
	<subtitle>A blog about my hobbies and interests</subtitle>
	
	<link href="https://femgeek.netlify.app/feed/feed.xml" rel="self"/>
	<link href="https://femgeek.netlify.app"/>
	<updated>2020-12-31T00:00:00Z</updated>
	<id>https://www.femgeek.co.uk/</id>
	<author>
		<name>Han</name>
		<email></email>
	</author>
	
	<entry>
		<title>Why I moved to a static site</title>
		<link href="https://femgeek.netlify.app/posts/2020-12-31-why-i-moved-to-a-static-site/"/>
		<updated>2020-12-31T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2020-12-31-why-i-moved-to-a-static-site/</id>
		<content type="html">&lt;p&gt;There are various reasons I spent a solid 24 hours forcing myself to port over my blog.&lt;/p&gt;
&lt;p&gt;The main one being, I&#39;m lazy af. Have you ever tried to upgrade a wordpress installation thats on wordpress v3.8! (its on v5.6 at the time of writing) The PHP version is woefully outdated and I&#39;m pretty sure there was a spider crawling about in my SQL database.&lt;/p&gt;
&lt;p&gt;I&#39;ve been quite fortunate in that when I setup my linode I locked it down so much. I used cloudflare and some intense caching but all that made it really hard to keep up to date with security updates. I followed (and still follow) this excellent guide &lt;a href=&quot;https://feross.org/how-to-setup-your-linode/&quot;&gt;how to setup your linode&lt;/a&gt; every time I setup a new machine but I just dont have the time any more to spend maintaining servers.&lt;/p&gt;
&lt;p&gt;I&#39;ve ported my site over to &lt;a href=&quot;https://www.11ty.dev/&quot;&gt;11ty&lt;/a&gt; I uhmned and ahhed between this and gatsby but for the sake of simplicity I chose eleventy. I&#39;m glad I did. &lt;a href=&quot;https://github.com/apricot13/femgeek-static&quot;&gt;The code is all public&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;What I&#39;ve lost in the move is the download counter for my freebies it wasn&#39;t a requirement but it was nice to see if people were using them!&lt;/p&gt;
&lt;p&gt;I also haven&#39;t setup comments yet. I&#39;m considering a little node app on heroku that will comb github issues and rebuild the blog with them included. I didn&#39;t want to use something hosted elsewhere though.&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>How to show posts on the homepage of eleventy-base-blog</title>
		<link href="https://femgeek.netlify.app/posts/2020-12-30-how-to-show-posts-on-the-homepage-of-eleventy-base-blog/"/>
		<updated>2020-01-30T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2020-12-30-how-to-show-posts-on-the-homepage-of-eleventy-base-blog/</id>
		<content type="html">&lt;p&gt;I&#39;ve just finished switching over my wordpress blog to a static site. I&#39;ve had to make a few compromises and theres a few reasons for the switchover but thats for another day!&lt;/p&gt;
&lt;p&gt;One of the requirements I had was that I wanted it show the full post on the homepage but I had an issue then where the images were coming back with relative urls and not displaying.&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-liquid&quot;&gt;{% set absolutePostUrl %}{{ post.url | url | absoluteUrl(metadata.url) }}{% endset %}
{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) | safe }}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Another long winded solution that may be of help to someone googling is this method. It lets you modify the image url with a custom renderer.&lt;/p&gt;
&lt;p&gt;My blog is based on the &lt;a href=&quot;https://github.com/11ty/eleventy-base-blog&quot;&gt;eleventy-base-blog&lt;/a&gt; so it uses markdownIt to parse the markdown. I added a renderer that looks to see if an image url starts with http or https and if it doesn&#39;t it adds the rest of the url to it.&lt;/p&gt;
&lt;p&gt;This is how I displayed the collection content within my template.&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-liquid&quot;&gt;{% for post in postslist | reverse %}
  {{ post.templateContent | safe }}
{% endfor %}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This is what I ended up with for adding in the metadata siteUrl for anything that does not already start with http/https. Messy but it works.&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-js&quot;&gt;  /* Markdown Overrides */
  let markdownLibrary = markdownIt({
    html: true,
    breaks: true,
    linkify: true
  }).use(markdownItAnchor, {
    permalink: true,
    permalinkClass: &amp;quot;direct-link&amp;quot;,
    permalinkSymbol: &amp;quot;#&amp;quot;
  });


  var defaultRender = markdownLibrary.renderer.rules.image;
  markdownLibrary.renderer.rules.image = function (tokens, idx, options, env, self) {

    const token = tokens[idx];
    const aIndex = token.attrIndex(&#39;src&#39;);
    const link = token.attrs[aIndex][1];
    

    if(/(http(s?)):\/\//i.test(link)) {
    
    } else {
      var abspath = &#39;&#39;;
      abspath += env.metadata.url;
      if(env.page.url.charAt(0) === &#39;/&#39;) {
        abspath += env.page.url.substring(1);
      }
      
      abspath += &amp;quot;/&amp;quot; + link;

      tokens[idx].attrs[aIndex][1] = abspath;

    }

    // pass token to default renderer.
    return defaultRender(tokens, idx, options, env, self);
  }


  eleventyConfig.setLibrary(&amp;quot;md&amp;quot;, markdownLibrary);
&lt;/code&gt;&lt;/pre&gt;
</content>
	</entry>
	
	<entry>
		<title>Black &amp; White Photoshop Actions</title>
		<link href="https://femgeek.netlify.app/posts/2013-05-30-black-and-white-photoshop-actions/"/>
		<updated>2013-05-30T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2013-05-30-black-and-white-photoshop-actions/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2013-05-30-black-and-white-photoshop-actions/8891305535_e1d65868f2_o.jpg&quot; alt=&quot;Femgeek B&amp;amp;W Photoshop Actions&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I’ve been using these actions for a while but I never released them as part of the &lt;a href=&quot;http://www.femgeek.co.uk/tag/12-days-of-femgeek-christmas/&quot;&gt;femgeek 12 days of christmas&lt;/a&gt;! (too many freebies!) Two black and white actions for your photos. One gives a high contrast black and white image, the other works best on low key photographs and produces a black and white image with a soft violet hue.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2013-05-30-black-and-white-photoshop-actions/8891305467_49c9491cd9_o.jpg&quot; alt=&quot;Femgeek B&amp;amp;W Photoshop Actions&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2013-05-30-black-and-white-photoshop-actions/8891926720_e60185a62a_o.jpg&quot; alt=&quot;Femgeek B&amp;amp;W Photoshop Actions&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2013-05-30-black-and-white-photoshop-actions/femgeek_bw_actions.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2013-05-30-black-and-white-photoshop-actions/downloadBtn-20201229114303192.jpg&quot; alt=&quot;Femgeek Black &amp;amp; White Photoshop Actions&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; You may get an error on the Violet one, dont worry it still works, just click ok.&lt;/p&gt;
&lt;p&gt;Also these have been created in Photoshop CS5.&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas - Festive Greens Curve</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-24-12-days-of-femgeek-christmas-festive-greens-curve/"/>
		<updated>2012-12-24T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-24-12-days-of-femgeek-christmas-festive-greens-curve/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-24-12-days-of-femgeek-christmas-festive-greens-curve/12daysofchristmas-20201229113949361.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 12 of the 12 days of Femgeek Christmas! When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.  It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded a festive greens curve from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/W0FBG1&quot;&gt;http://bit.ly/W0FBG1&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-24-12-days-of-femgeek-christmas-festive-greens-curve/8302044274_fcc7a97e5f_c.jpg&quot; alt=&quot;Festive Greens Curve&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-24-12-days-of-femgeek-christmas-festive-greens-curve/8300991693_2f0a65deb8_c.jpg&quot; alt=&quot;Festive Greens Curve&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Adds Christmassy dark green hue to your photos – not just for christmas photos though!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-24-12-days-of-femgeek-christmas-festive-greens-curve/femgeekFestiveGreensCurve.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-24-12-days-of-femgeek-christmas-festive-greens-curve/downloadBtn-20201229113949375.jpg&quot; alt=&quot;Femgeek Festive Greens Photoshop Curve&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas – Brightness Lightroom Preset</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/"/>
		<updated>2012-12-23T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/12daysofchristmas-20201229113717500.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 11 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded a free Lightroom Preset from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/121azE5&quot;&gt;http://bit.ly/121azE5&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/8259464636_037339ccc0_c.jpg&quot; alt=&quot;femgeekBrightnessLightroomPreset&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/8259464412_2c4dbecc8b_c.jpg&quot; alt=&quot;femgeekBrightnessLightroomPreset2&quot; /&gt;&lt;br /&gt;
An Adobe Lightroom preset to brighten up your photography.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/FemgeekBrightnessLightroomPreset.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/downloadBtn-20201229113717480.jpg&quot; alt=&quot;Femgeek Brightness Lightroom Preset &quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Don’t know how to install or use this download? Don’t worry, I created a little guide to help you. But if you run into any trouble &lt;a href=&quot;https://www.twitter.com/apricot_13&quot;&gt;tweet&lt;/a&gt; or &lt;a href=&quot;http://www.femgeek.co.uk/contact&quot;&gt;email me&lt;/a&gt; and I’ll try to help.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-23-12-days-of-femgeek-christmas-brightness-lightroom-preset/8258413134_74d9ddacd1_o-20201229113717580.jpg&quot; alt=&quot;Using Lightroom Presets&quot; /&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas - Delicate Textures</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-22-12-days-of-femgeek-christmas-delicate-textures/"/>
		<updated>2012-12-22T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-22-12-days-of-femgeek-christmas-delicate-textures/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-22-12-days-of-femgeek-christmas-delicate-textures/12daysofchristmas-20201229113413354.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 10 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded some delicate textures from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download them here: &lt;a href=&quot;http://bit.ly/VyURt7&quot;&gt;http://bit.ly/VyURt7&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-22-12-days-of-femgeek-christmas-delicate-textures/8261981042_3c708e9879_c.jpg&quot; alt=&quot;Femgeek Delicate Textures&quot; /&gt;&lt;/p&gt;
&lt;p&gt;8 delicate textures to apply to your photos.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-22-12-days-of-femgeek-christmas-delicate-textures/femgeekDelicateTextures.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-22-12-days-of-femgeek-christmas-delicate-textures/downloadBtn-20201229113413340.jpg&quot; alt=&quot;Femgeek Delicate Textures&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas – Vintage Christmas Lightroom Preset</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/"/>
		<updated>2012-12-21T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/12daysofchristmas.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 9 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded a free Lightroom Preset from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/QRoaKO&quot;&gt;http://bit.ly/QRoaKO&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/8257331919_f247e7858b_c.jpg&quot; alt=&quot;Femgeek Vintage Christmas Lightroom Preset&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/8258400410_c8ff2f1739_c.jpg&quot; alt=&quot;Femgeek Vintage Christmas Lightroom Preset&quot; /&gt;&lt;br /&gt;
An Adobe Lightroom preset to give your christmas tree photos that vintage feel. Works best on dark greens.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/FemgeekVintageChristmasLightroomPreset.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/downloadBtn.jpg&quot; alt=&quot;Femgeek Vintage Christmas Lightroom Preset&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Don’t know how to install or use this download? Don’t worry, I created a little guide to help you. But if you run into any trouble &lt;a href=&quot;https://www.twitter.com/apricot_13&quot;&gt;tweet&lt;/a&gt; or &lt;a href=&quot;http://www.femgeek.co.uk/contact&quot;&gt;email me&lt;/a&gt; and I’ll try to help.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-21-12-days-of-femgeek-christmas-vintage-christmas-lightroom-preset/8258413134_74d9ddacd1_o.jpg&quot; alt=&quot;Using Lightroom Presets&quot; /&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas - Mulled Oranges Curve</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/"/>
		<updated>2012-12-20T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/12daysofchristmas-20201229104139100.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 8 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded a free Photoshop Curve from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/SNuS4f&quot;&gt;http://bit.ly/SNuS4f&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/8254872886_43ee3cd7b7_c.jpg&quot; alt=&quot;Mulled Oranges Curve&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/8254872840_173733b2d3_c.jpg&quot; alt=&quot;Mulled Oranges Curve&quot; /&gt;&lt;br /&gt;
A photoshop curve that gives your images a warm orange effect. The blacks are warmed up and the highlights get an orange vintage tint.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/FemgeekMulledOrangesCurve.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/downloadBtn-20201229104139098.jpg&quot; alt=&quot;Femgeek Mulled Oranges Curve&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Don’t know how to install or use this download? Don’t worry, I created a little guide to help you. But if you run into any trouble &lt;a href=&quot;https://www.twitter.com/apricot_13&quot;&gt;tweet&lt;/a&gt; or &lt;a href=&quot;http://www.femgeek.co.uk/contact&quot;&gt;email me&lt;/a&gt; and I’ll try to help.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-20-12-days-of-femgeek-christmas-mulled-oranges-curve/8253938166_fd730d89f2_o.jpg&quot; alt=&quot;Using Curves&quot; /&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas - Bokeh Textures</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-19-12-days-of-femgeek-christmas-bokeh-textures/"/>
		<updated>2012-12-19T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-19-12-days-of-femgeek-christmas-bokeh-textures/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-19-12-days-of-femgeek-christmas-bokeh-textures/12daysofchristmas-20201229104924176.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 7 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded some bokeh textures from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download them here: &lt;a href=&quot;http://bit.ly/VXONg3&quot;&gt;http://bit.ly/VXONg3&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-19-12-days-of-femgeek-christmas-bokeh-textures/8259116370_26fc57aabd_c.jpg&quot; alt=&quot;Femgeek Bokeh Textures&quot; /&gt;&lt;/p&gt;
&lt;p&gt;5 bokeh textures to apply to your photos.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-19-12-days-of-femgeek-christmas-bokeh-textures/femgeekBokehTextures.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-19-12-days-of-femgeek-christmas-bokeh-textures/downloadBtn-20201229104924164.jpg&quot; alt=&quot;Femgeek Bokeh Textures&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas – Chocolate Blue Curve</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/"/>
		<updated>2012-12-18T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/12daysofchristmas-20201229111100282.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 6 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded a free Photoshop Curve from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/YXtgbA&quot;&gt;http://bit.ly/YXtgbA&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/8253739631_010a976e13_c.jpg&quot; alt=&quot;Chocolate Blue Curve&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/8253739561_476068bbb0_c.jpg&quot; alt=&quot;Chocolate Blue Curve&quot; /&gt;&lt;br /&gt;
A photoshop curve that gives your images a chocolatey blue effect. The blacks are warmed up and the highlights get a blue tint. Works best on images that have a high contrast with lots of black.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/FemgeekChocolateBlueCurve.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/downloadBtn-20201229111100259.jpg&quot; alt=&quot;Femgeek Chocolate Blue Curve&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Don’t know how to install or use this download? Don’t worry, I created a little guide to help you. But if you run into any trouble &lt;a href=&quot;https://www.twitter.com/apricot_13&quot;&gt;tweet&lt;/a&gt; or &lt;a href=&quot;http://www.femgeek.co.uk/contact&quot;&gt;email me&lt;/a&gt; and I’ll try to help.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-18-12-days-of-femgeek-christmas-chocolate-blue-curve/8253938166_fd730d89f2_o-20201229111100338.jpg&quot; alt=&quot;Using Curves&quot; /&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas – Christmas Wallpapers</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/"/>
		<updated>2012-12-17T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/12daysofchristmas-20201229110127030.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 5 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded my christmas wallpaper from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/VInBWq&quot;&gt;http://bit.ly/VInBWq&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/8257777259_3534ef2ce2_c.jpg&quot; alt=&quot;Femgeek Christmas Wallpapers&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Christmas Bokeh wallpaper with Red lettering.&lt;/p&gt;
&lt;p&gt;Included in the zip file are sizes:&lt;br /&gt;
2560 x 1440, 1680 x 1050, 1440 x 900, 1280 x 800, 1024 x 768, 800 x 600, iPad, iPhone&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/FemgeekRedChristmas.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/downloadBtn-20201229110127002.jpg&quot; alt=&quot;Femgeek Christmas Wallpaper - Red Lettering&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/8258845452_fe40ee8608_c.jpg&quot; alt=&quot;Femgeek Christmas Wallpapers&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Christmas Bokeh wallpaper with Green lettering.&lt;/p&gt;
&lt;p&gt;Included in the zip file are sizes:&lt;br /&gt;
2560 x 1440, 1680 x 1050, 1440 x 900, 1280 x 800, 1024 x 768, 800 x 600, iPad, iPhone&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/FemgeekGreenChristmas.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/downloadBtn-20201229110127002.jpg&quot; alt=&quot;Femgeek Christmas Wallpaper - Green Lettering&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/8258845306_ee0d4e2dd4_c.jpg&quot; alt=&quot;Femgeek Christmas Wallpapers&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Christmas Bokeh wallpaper with no lettering.&lt;/p&gt;
&lt;p&gt;Included in the zip file are sizes:&lt;br /&gt;
2560 x 1440, 1680 x 1050, 1440 x 900, 1280 x 800, 1024 x 768, 800 x 600, iPad, iPhone&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/FemgeekPlainChristmas.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-17-12-days-of-femgeek-christmas-christmas-wallpapers/downloadBtn-20201229110127002.jpg&quot; alt=&quot;Femgeek Christmas Wallpaper - Plain Lettering&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas – Handwritten Font</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-16-12-days-of-femgeek-christmas-handwritten-font/"/>
		<updated>2012-12-16T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-16-12-days-of-femgeek-christmas-handwritten-font/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-16-12-days-of-femgeek-christmas-handwritten-font/12daysofchristmas-20201229111821018.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 4 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded a free handwritten font from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/TLsxUI&quot;&gt;http://bit.ly/TLsxUI&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-16-12-days-of-femgeek-christmas-handwritten-font/8259763112_db50c43eb2_c.jpg&quot; alt=&quot;Femgeek Handwritten Font&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A handwritten font for you to use. Maybe write your christmas cards in it!&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-16-12-days-of-femgeek-christmas-handwritten-font/FemgeekHandwrittenFont.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-16-12-days-of-femgeek-christmas-handwritten-font/downloadBtn-20201229111821007.jpg&quot; alt=&quot;Femgeek Handwritten Font&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas – Bunting Photoshop Tutorial</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/"/>
		<updated>2012-12-15T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/</id>
		<content type="html">&lt;p&gt;&lt;strong&gt;Updated 28/12/2013:&lt;/strong&gt; I’ve added a gif to help explain the pen tool steps a bit better!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/12daysofchristmas-20201229112059311.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 3 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just created some digital bunting from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/WZ3jTK&quot;&gt;http://bit.ly/WZ3jTK&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/8260349535_38977ffb7a_c.jpg&quot; alt=&quot;Femgeek Digital Bunting Tutorial&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Today we’re going to learn how to make some digital bunting.&lt;br /&gt;
You can download the brushes used in this tutorial &lt;a href=&quot;http://www.femgeek.co.uk/12-days-of-femgeek-christmas-fairy-dust-brushes/&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
All the stock images used are from &lt;a href=&quot;http://www.sxc.hu/&quot;&gt;sxc.hu&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;First create a new document. 851 x 315 px.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep1.png&quot; alt=&quot;Bunting Step1&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then hit cmd + R (ctrl + R) to enable rules. Drag two rulers to divide the canvas into thirds&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep2.png&quot; alt=&quot;buntingStep2&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Select the pen tool. At the top of the screen select the ‘paths’ option and create a new layer.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/pathsOption.png&quot; alt=&quot;pathsOption&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Using the pen tool create a straight line from where you want your bunting to start and end. Click once on the left, then click once on the right. Then move your cursor to the middle of your line and a little + icon will popup next to your cursor. Click. Then with your mouse still near that point hold down cmd (ctrl) and drag down.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep3.png&quot; alt=&quot;buntingStep3&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Dragging the middle point down will create the curve you will base your bunting on.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep4.png&quot; alt=&quot;buntingStep4&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/pentool.gif&quot; alt=&quot;pentool&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Select a 1px black brush. Open the Paths panel and click the hollow circle to stroke the path you just created.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/strokePath.png&quot; alt=&quot;strokePath&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Select the pen tool again and at the top again select shape layers.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/shapeLayers.png&quot; alt=&quot;shapeLayers&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then create a triangle shape. This will be the shape of your bunting.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep5.png&quot; alt=&quot;buntingStep5&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Once you have your shape duplicate your layer along the guide path you created.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep6.png&quot; alt=&quot;buntingStep6&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Open your first stock image and paste it on top of your first triangle shape. Right click the layer and select ‘Create Clipping Mask’.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/createClippingMasl.png&quot; alt=&quot;createClippingMasl&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Repeat the process for all your triangles.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep7.png&quot; alt=&quot;buntingStep7&quot; /&gt;&lt;/p&gt;
&lt;p&gt;and Tada, theres your bunting &lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/icon_smile.gif&quot; alt=&quot;:)&quot; /&gt;&lt;/p&gt;
&lt;p&gt;If you want you can use the &lt;a href=&quot;http://www.femgeek.co.uk/12-days-of-femgeek-christmas-fairy-dust-brushes/&quot;&gt;fairy dust brushes&lt;/a&gt; from yesterday to create your background.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/buntingStep8.png&quot; alt=&quot;buntingStep8&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You can download the PSD for this tutorial below.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/FemgeekBuntingPsd.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/downloadBtn-20201229112059356.jpg&quot; alt=&quot;Femgeek Bunting Photoshop Tutorial&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Take a look at what people are doing with the tutorial below:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://chic-a-deee.blogspot.co.uk/2013/02/bunting-photoshop-tutorial.html&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-15-12-days-of-femgeek-christmas-bunting-photoshop-tutorial/chic-a-deee-300x92.png&quot; alt=&quot;chic-a-deee&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas – Fairy Dust Brushes</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-14-12-days-of-femgeek-christmas-fairy-dust-brushes/"/>
		<updated>2012-12-14T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-14-12-days-of-femgeek-christmas-fairy-dust-brushes/</id>
		<content type="html">&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-14-12-days-of-femgeek-christmas-fairy-dust-brushes/12daysofchristmas-20201229112622862.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Day 2 of the 12 days of Femgeek Christmas!&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded some fairy dust brushes from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/TYrEZj&quot;&gt;http://bit.ly/TYrEZj&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-14-12-days-of-femgeek-christmas-fairy-dust-brushes/8261547678_52272234cf_c.jpg&quot; alt=&quot;Femgeek Fairy Dust Brushes&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Some fairy dust brushes to add some sparkle to your christmas.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-14-12-days-of-femgeek-christmas-fairy-dust-brushes/FemgeekFairyDustBrushes.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-14-12-days-of-femgeek-christmas-fairy-dust-brushes/downloadBtn-20201229112622852.jpg&quot; alt=&quot;Femgeek Fairy Dust Brushes&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Don’t know how to install or use this download? Don’t worry, I created a little guide to help you. But if you run into any trouble &lt;a href=&quot;https://www.twitter.com/apricot_13&quot;&gt;tweet&lt;/a&gt; or &lt;a href=&quot;http://www.femgeek.co.uk/contact&quot;&gt;email me&lt;/a&gt; and I’ll try to help.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-14-12-days-of-femgeek-christmas-fairy-dust-brushes/8260553165_d6aa19335d_c.jpg&quot; alt=&quot;Installing Brushes&quot; /&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>12 Days of Femgeek Christmas - Duck Egg Blue Curve</title>
		<link href="https://femgeek.netlify.app/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/"/>
		<updated>2012-12-13T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/</id>
		<content type="html">&lt;p&gt;or is that day 12?&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/12daysofchristmas-20201229113036356.jpg&quot; alt=&quot;12 Days of Femgeek Christmas&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Are you all set for day 1 or 12.. of the 12 days of femgeek christmas!?&lt;/p&gt;
&lt;p&gt;I thought it was about time I shared some freebies on this blog. I wasn’t really sure what to give away to you guys because my blog is a little all over the place but I hope i’ve covered all my bases.&lt;/p&gt;
&lt;p&gt;When you use any of the freebies I’d really appreciate a link back to &lt;a href=&quot;http://www.femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt;. If you would like to, you can also follow me on &lt;a href=&quot;https://twitter.com/apricot_13&quot;&gt;twitter&lt;/a&gt;. You can also add femgeek on &lt;a href=&quot;https://www.facebook.com/femgeek.co.uk&quot;&gt;facebook&lt;/a&gt; and &lt;a href=&quot;https://plus.google.com/110396807693668334198/posts&quot;&gt;google+ pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It would be great if you could tweet/facebook/google plus about the 12 days too!&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Just downloaded a free Photoshop Curve from &lt;a href=&quot;http://femgeek.co.uk/&quot;&gt;femgeek.co.uk&lt;/a&gt; download it here: &lt;a href=&quot;http://bit.ly/U0Js5s&quot;&gt;http://bit.ly/U0Js5s&lt;/a&gt; #12daysoffemgeekchristmas from @apricot_13&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/8253938284_9b4b12fea9_c.jpg&quot; alt=&quot;Duck Egg Blue Curve&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/8252866855_34d498c36d_c.jpg&quot; alt=&quot;Duck Egg Blue Curve&quot; /&gt;&lt;/p&gt;
&lt;p&gt;A photoshop curve that gives your images a duck egg blue hue. Works best on images that contain green and blue hues.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Click the &#39;download&#39; button on the top right hand corner above where it says &#39;View raw&#39;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/apricot13/femgeek-static/blob/master/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/FemgeekDuckEggBlueCurve.zip&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/downloadBtn-20201229113036343.jpg&quot; alt=&quot;Femgeek Duck Egg Blue Curve&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Don’t know how to install or use this download? Don’t worry, I created a little guide to help you. But if you run into any trouble &lt;a href=&quot;https://www.twitter.com/apricot_13&quot;&gt;tweet&lt;/a&gt; or &lt;a href=&quot;http://www.femgeek.co.uk/contact&quot;&gt;email me&lt;/a&gt; and I’ll try to help.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2012-12-13-12-days-of-femgeek-christmas-duck-egg-blue-curve/8253938166_fd730d89f2_o-20201229113036441.jpg&quot; alt=&quot;Using Curves&quot; /&gt;&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>Eggless american pancakes</title>
		<link href="https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/"/>
		<updated>2011-02-07T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/</id>
		<content type="html">&lt;p&gt;I had a little accident with the fridge door the other day and accidentally dropped all our eggs on the floor! “Bugger!” I said, I wanted pancakes!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426412270_161bf5bf5d_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I didn’t find a proper eggless recipe, by which I mean the thin tasty english/french (Crepe) style pancakes but I did find this recipe, which turned out very well indeed!&lt;/p&gt;
&lt;p&gt;The recipe is adapted from &lt;a href=&quot;http://www.grouprecipes.com/58293/fluffy-eggless-pancakes.html&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426409942_8afdce9051_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The ingredients.&lt;/strong&gt;&lt;br /&gt;
This makes a LOT of pancakes, it says 6 but its nearer 8 if you ask me!, I’d suggest halving it if you can!&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;1 1/2 cups flour&lt;/li&gt;
&lt;li&gt;4 tsp baking powder&lt;/li&gt;
&lt;li&gt;1 tsp salt&lt;/li&gt;
&lt;li&gt;1 tbsp sugar&lt;/li&gt;
&lt;li&gt;1 tsp white vinegar (I used malt!)&lt;/li&gt;
&lt;li&gt;4 tbsp melted butter&lt;/li&gt;
&lt;li&gt;1 1/3 cups milk (I used soya – &lt;a href=&quot;http://www.vegetarian.org.uk/mediareleases/060524a.html&quot;&gt;because it doesn’t contain pus&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5425807279_c8f08b97fd_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426410268_760c75c489_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5425807751_468d992511_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426410712_14a0b5c71e_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
Add the flour, baking powder, salt and sugar to a large glass bowl.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426410888_75cccbb956_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426411322_6eb73f8594_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5425808733_b5e3d2da23_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
Add the melted butter&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5425808393_bafdb069e8_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
And the vinegar and watch it sizzle!&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426411758_bdee8205d2_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
Grab a ladle full of mixture (mix it a bit better than I have though!)&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426411912_29b3d2642b_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
and pour it onto a hot oiled pan.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426412090_fa16421760_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
When they’re golden on one side, flip them over&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2011-02-07-eggless-american-pancakes/5426412270_161bf5bf5d_b.jpg&quot; alt=&quot;Eggless Pancakes!&quot; /&gt;&lt;br /&gt;
and enjoy with a whole load of chocolate spread and maple syrup!&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>How to reload fonts without restarting photoshop</title>
		<link href="https://femgeek.netlify.app/posts/2010-04-27-reload-fonts-without-restarting-photoshop/"/>
		<updated>2010-04-27T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2010-04-27-reload-fonts-without-restarting-photoshop/</id>
		<content type="html">&lt;p&gt;This is one of the most invaluable things I’ve learnt about photoshop!&lt;/p&gt;
&lt;p&gt;When your working on a design and you want to try out a particular font the last thing you want to do is close Photoshop and reopen it this little trick will let you reset your fonts and add any new ones you’ve installed to the font list.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-reload-fonts-without-restarting-photoshop/3455823477_a9974a4b94.jpg&quot; alt=&quot;Screenshot of the menu in photoshop showing the reset character option at the bottom of the list&quot; title=&quot;Screenshot of the menu in photoshop showing the reset character option at the bottom of the list&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I always start a new text layer – otherwise your current paragraph/character settings are lost. (press T and click anywhere on the document) then go to Window &amp;gt; Character&lt;/p&gt;
&lt;p&gt;Click the little icon with the three lines and the down arrow in the top right hand corner of the Character Pallet, then select Reset Character and all your new fonts will be added to the list!&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>How to make a no sew skirt</title>
		<link href="https://femgeek.netlify.app/posts/2010-04-27-no-sew-skirt/"/>
		<updated>2010-04-27T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2010-04-27-no-sew-skirt/</id>
		<content type="html">&lt;p&gt;Making a skirt, no sewing required!&lt;/p&gt;
&lt;p&gt;\1. Buy a length of material from a fabric shop – it can be whatever you want. I bought a metre and a half just to be sure I had the right amount.&lt;/p&gt;
&lt;p&gt;Lay out the material and fold it lengthways so you have a long thin rectangle&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-no-sew-skirt/2502540102.jpeg&quot; alt=&quot;1&quot; /&gt;&lt;/p&gt;
&lt;p&gt;\2. Measure using a piece of string from above your hips (the widest bit) to wherever you want the skirt to end.&lt;/p&gt;
&lt;p&gt;Tie the piece of string to a pen/pencil/fabric marker and starting where you know the pen wont go over the edges of the material draw a semi circle.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-no-sew-skirt/2502540262.jpeg&quot; alt=&quot;2&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Cut along this line – you now have a circle – but don’t unfold it yet!&lt;/p&gt;
&lt;p&gt;\3. Fold the circle in half vertically and then diagonally.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-no-sew-skirt/2502540434.jpeg&quot; alt=&quot;3&quot; /&gt;&lt;/p&gt;
&lt;p&gt;\4. Cut a rounded quarter circle about 2inches from the point of the folded fabric – you should have two concentric circles.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-no-sew-skirt/2502540586.jpeg&quot; alt=&quot;4&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then all you need to do is force yourself into it – head first! You may need to make a slight rip in the waist to get in but once you’ve done that it’s easy enough to get in and out of it!&lt;/p&gt;
</content>
	</entry>
	
	<entry>
		<title>How to make skittles vodka</title>
		<link href="https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/"/>
		<updated>2010-04-27T00:00:00Z</updated>
		<id>https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/</id>
		<content type="html">&lt;p&gt;Its my friends birthday on Saturday night so I decided to make my own ‘cocktail’. Which is essentially skittles in a bottle of vodka!&lt;/p&gt;
&lt;p&gt;Take one cheap bottle of vodka:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2498112884.jpeg&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2498112884.jpeg&quot; alt=&quot;2498112884&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;and lots of skittles:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2497283195.jpeg&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2497283195.jpeg&quot; alt=&quot;2497283195&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Separate all the purple and green ones – because they make it bitter, And add the remaining ones to the bottle.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2497283411.jpeg&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2497283411.jpeg&quot; alt=&quot;2497283411&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;They all dissolve into this:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2498113556.jpeg&quot;&gt;&lt;img src=&quot;https://femgeek.netlify.app/posts/2010-04-27-how-to-make-skittles-vodka/2498113556.jpeg&quot; alt=&quot;2498113556&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I have a feeling tomorrow night could be messy!&lt;/p&gt;
</content>
	</entry>
</feed>
