    <?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>Blog Archives - Brice V</title>
	<atom:link href="https://www.bricev.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.bricev.com/category/blog/</link>
	<description>Web Developer</description>
	<lastBuildDate>Tue, 23 Jun 2020 19:19:59 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>
<site xmlns="com-wordpress:feed-additions:1">81497412</site>	<item>
		<title>Vertically Center Content</title>
		<link>https://www.bricev.com/blog/vertically-center-content/</link>
					<comments>https://www.bricev.com/blog/vertically-center-content/#respond</comments>
		
		<dc:creator><![CDATA[Brice Viland]]></dc:creator>
		<pubDate>Tue, 23 Jun 2020 19:19:51 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://www.bricev.com/?p=356</guid>

					<description><![CDATA[<p>In this tutorial I will explain how to vertically center content of one div element inside another div element. Display: Table; Solution The easiest solution that I implement when I&#8217;m developing websites. The table and table cell solution which makes your div elements act as if they are a table so that you can use...</p>
<p>The post <a href="https://www.bricev.com/blog/vertically-center-content/">Vertically Center Content</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>In this tutorial I will explain how to vertically center content of one div element inside another div element.</p>



<pre class="wp-block-code"><code lang="markup" class="language-markup">&lt;div id="outer">
	&lt;div id="inner">&lt;span>Your content goes here!&lt;/span>&lt;/div>
&lt;/div></code></pre>



<h2 class="wp-block-heading">Display: Table; Solution</h2>



<p>The easiest solution that I implement when I&#8217;m developing websites. The table and table cell solution which makes your div elements act as if they are a table so that you can use the vertical-align: middle; property. This technique is especially useful if you have a specific height requirement for the outer div element. Although, if your content happens to go past the size of this element then it will overflow out of the outer element.</p>



<pre class="wp-block-code"><code lang="css" class="language-css">#outer{
	display: table;
	height: 150px;
}

#inner{
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}</code></pre>



<p>Example below</p>



<div id="outer" style="display: table;height: 150px;background-color: #000;width: 250px;">
    <div id="inner" style="
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    text-align: center;
    color: #ffffff;"><span style="
    background-color: #34675c;
    padding: 10px;
">Your content goes here!</span></div>
</div>



<h2 class="wp-block-heading">Display: Flex; Solution</h2>



<p>The second example I use, when I&#8217;m not so concerned about supporting old browsers is flex. The reason being is that you can set a minimum height to the outer element and your inner content can dynamically extend beyond that height without causing overflow. The outer element will resize to support the contents within. </p>



<pre class="wp-block-code"><code lang="css" class="language-css">#outer{
	display: flex;
	min-height: 150px;

	/* Extra Stuff Below (Keeps padding with outer element) [Not Necessary] */
	padding: 20px 0;
	box-sizing: border-box;
}

#inner{
	margin: auto;
}</code></pre>



<div id="outer" style="display: flex;min-height: 150px;background-color: #000;width: 250px;padding: 20px 0;box-sizing: border-box;">
    <div id="inner" style="
    text-align: center;
    color: #ffffff;
    margin: auto;
    "><span style="
    display: inline-block;
    background-color: #34675c;
    padding: 10px;
    box-sizing: border-box;
">Your content goes here!</span></div>
</div>
<p>The post <a href="https://www.bricev.com/blog/vertically-center-content/">Vertically Center Content</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bricev.com/blog/vertically-center-content/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">356</post-id>	</item>
		<item>
		<title>Higher ranks in Google search and increasing page speed for your WordPress site</title>
		<link>https://www.bricev.com/blog/higher-ranks-in-google-search-and-increasing-page-speed-for-your-wordpress-site/</link>
					<comments>https://www.bricev.com/blog/higher-ranks-in-google-search-and-increasing-page-speed-for-your-wordpress-site/#respond</comments>
		
		<dc:creator><![CDATA[Brice Viland]]></dc:creator>
		<pubDate>Sun, 21 Jun 2020 16:09:38 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://www.bricev.com/?p=350</guid>

					<description><![CDATA[<p>Yoast SEO plugin Firstly, the most important plugin to start with is Yoast. This plugin is loaded with features to help ensure your website presents itself well to major search engines. It will automatically place most every meta detail into your website to make your website easily indexed. Furthermore, if you are using a plugin...</p>
<p>The post <a href="https://www.bricev.com/blog/higher-ranks-in-google-search-and-increasing-page-speed-for-your-wordpress-site/">Higher ranks in Google search and increasing page speed for your WordPress site</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Yoast SEO plugin</h2>



<p>Firstly, the most important plugin to start with is <a href="https://wordpress.org/plugins/wordpress-seo/" target="_blank" rel="noreferrer noopener">Yoast</a>. This plugin is loaded with features to help ensure your website presents itself well to major search engines. It will automatically place most every meta detail into your website to make your website easily indexed.</p>



<p>Furthermore, if you are using a plugin such as Advanced Custom Fields to display some of your content. There is a plugin that will integrate Yoast into your custom fields. Check out <a href="https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/" target="_blank" rel="noreferrer noopener">ACF Content Analysis For Yoast SEO</a> if this applies to you.</p>



<h2 class="wp-block-heading">WP Fastest Cache</h2>



<p>Secondly, you want to have a <a href="https://wordpress.org/plugins/wp-fastest-cache/" target="_blank" rel="noreferrer noopener">cache</a> for your WordPress site. I strongly believe this is absolutely crucial to deliver your content faster. A cache serves as a resource to store your website for a visitor and that can be reserved to provide more instantaneous results. Alongside, this plugin being a cache system it will also minify CSS and JS to serve your content most efficiently. There are additional features to this plugin that I won&#8217;t be including but definitely check out all of them!</p>



<h2 class="wp-block-heading">Smush</h2>



<p>Images on websites can really slow down performance especially the higher quality they are and the larger file size that they are. I do believe it&#8217;s important to have a beautiful website and having high resolution photos can play a crucial part in that design. <a href="https://wordpress.org/plugins/wp-smushit/" target="_blank" rel="noreferrer noopener">This plugin</a> will optimize the images in your WordPress website to reduce file size and optimize them to be used more efficiently. This will greatly speed up your website.</p>



<p>These three plugins will easily optimize your website and help you achieve higher rankings on Google.</p>



<ol class="wp-block-list"><li>Yoast &#8211; <a href="https://wordpress.org/plugins/wordpress-seo/">https://wordpress.org/plugins/wordpress-seo/</a></li><li>WP Fastest Cache &#8211; <a href="https://wordpress.org/plugins/wp-fastest-cache/">https://wordpress.org/plugins/wp-fastest-cache/</a></li><li>Smush &#8211; https://wordpress.org/plugins/wp-smushit/</li></ol>



<p>ACF Content Analysis For Yoast SEO &#8211; <a href="https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/">https://wordpress.org/plugins/acf-content-analysis-for-yoast-seo/</a></p>



<h2 class="wp-block-heading">Tools to help you understand your websites performance</h2>



<p>Next, it&#8217;s time we talk about reviewing our results and figuring out how we can optimize our website even more so!</p>



<h2 class="wp-block-heading">Google Search Console</h2>



<p><a href="https://search.google.com/search-console/about" target="_blank" rel="noreferrer noopener">This service</a> provided by Google will show you exactly how well your website is doing in Google searches. This is extremely important also because you can submit a sitemap to make sure that Google does in fact have your website listed in Google searches. Why optimize a website that could never be found in the first place?</p>



<h2 class="wp-block-heading">Page Speed Insights</h2>



<p>Then, we come to our next very <a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" rel="noreferrer noopener">important tool</a>. The speed of your website has a great deal to do with search engine optimization. Search engines want to provide quality resources for everybody, which means you need to deliver quality content.</p>



<p>This tool will help you understand what edits you could make to your website to improve the speed of it. Sometimes this may even mean you may need to modify your WordPress theme. Get in contact with a developer to help you out or <a href="/hire-me" target="_blank" rel="noreferrer noopener">hire me</a>! You may also find using a more efficient theme to be all you need, you can check out my <a href="/themes" target="_blank" rel="noreferrer noopener">themes</a>!</p>



<h2 class="wp-block-heading">Now optimize your WordPress site!</h2>



<p>Thank you for reading my article and these are tools that have helped me. I love learning more about other people&#8217;s experiences. So, please leave a comment with your opinions!</p>
<p>The post <a href="https://www.bricev.com/blog/higher-ranks-in-google-search-and-increasing-page-speed-for-your-wordpress-site/">Higher ranks in Google search and increasing page speed for your WordPress site</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bricev.com/blog/higher-ranks-in-google-search-and-increasing-page-speed-for-your-wordpress-site/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">350</post-id>	</item>
		<item>
		<title>Super Smash Bros Drinking Game</title>
		<link>https://www.bricev.com/blog/super-smash-bros-drinking-game/</link>
					<comments>https://www.bricev.com/blog/super-smash-bros-drinking-game/#respond</comments>
		
		<dc:creator><![CDATA[Brice Viland]]></dc:creator>
		<pubDate>Fri, 19 Jun 2020 20:14:01 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://www.bricev.com/?p=346</guid>

					<description><![CDATA[<p>You will absolutely get smashed with this fun drinking game you can play with your friends. Next, grab your joy cons and pro controllers because it&#8217;s time for you to dish out the sauce on your enemies. Rules of the game are rather simple and will have you taking sips of your drink in no...</p>
<p>The post <a href="https://www.bricev.com/blog/super-smash-bros-drinking-game/">Super Smash Bros Drinking Game</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>You will absolutely get smashed with this fun drinking game you can play with your friends. Next, grab your joy cons and pro controllers because it&#8217;s time for you to dish out the sauce on your enemies.</p>



<p>Rules of the game are rather simple and will have you taking sips of your drink in no time! Firstly, for maximum enjoyment I recommend playing with these rules in 1v1&#8217;s. However, that is not a requirement because the drinking game is still really fun when played with multiple people at once. Then, you need to get all your awesome friends together but you can also play online too. If playing online I&#8217;d recommend being in a video call that way you can know if everyone is participating!</p>



<p>Without further ado, the rules will be listed below:</p>



<ul class="wp-block-list"><li>2 sips when you die</li><li>5 sips for any opponent you meteor (That attack that sends your opponent flying downwards and ends up taking their stock)</li><li>5 sips for an SD (you lost a stock not because of anyone else, you fell off the ledge or something of that sort)</li></ul>



<p>Simple enough right?! Now have fun! If you think anything needs to be added to the rules just leave a comment 🙂</p>



<p>Now get out there and have fun! Anyone who drinks alcohol should always drink responsibly.</p>
<p>The post <a href="https://www.bricev.com/blog/super-smash-bros-drinking-game/">Super Smash Bros Drinking Game</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bricev.com/blog/super-smash-bros-drinking-game/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">346</post-id>	</item>
		<item>
		<title>PHP PDF Merge Files</title>
		<link>https://www.bricev.com/blog/php-pdf-merge-files/</link>
					<comments>https://www.bricev.com/blog/php-pdf-merge-files/#comments</comments>
		
		<dc:creator><![CDATA[Brice Viland]]></dc:creator>
		<pubDate>Thu, 16 Apr 2020 18:25:15 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://www.bricev.com/?p=297</guid>

					<description><![CDATA[<p>This is a simple tutorial on how to merge PDF files with PHP. Starting, you&#8217;ll want to download the libraries used. You can download them below into a folder called &#8220;inc&#8221; within your project. Pick the latest version for each! FPDF &#8211; www.fpdf.org/en/download.php Create a folder called &#8220;fpdf&#8221; within your &#8220;inc&#8221; folder and then take...</p>
<p>The post <a href="https://www.bricev.com/blog/php-pdf-merge-files/">PHP PDF Merge Files</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>This is a simple tutorial on how to merge PDF files with PHP. Starting, you&#8217;ll want to download the libraries used. You can download them below into a folder called &#8220;inc&#8221; within your project.</p>



<p>Pick the latest version for each!</p>



<p>FPDF &#8211; <a rel="noreferrer noopener" href="http://www.fpdf.org/en/download.php" target="_blank">www.fpdf.org/en/download.php</a> Create a folder called &#8220;fpdf&#8221; within your &#8220;inc&#8221; folder and then take just the file &#8220;fpdf.php&#8221; from the download.</p>



<p>FPDI &#8211; <a rel="noreferrer noopener" href="https://www.setasign.com/products/fpdi/downloads" target="_blank">www.setasign.com/products/fpdi/downloads</a> Create a folder called &#8220;fpdi&#8221; within your &#8220;inc&#8221; folder and then copy all of the contents in the &#8220;src&#8221; folder from the download to that &#8220;fpdi&#8221; directory. That&#8217;s all that you will need.</p>



<p>Great, now that you have your libraries we can include our script from below to merge our pdfs. You will need to place the pdf&#8217;s you want to merge in the root directory of your project.</p>



<pre class="wp-block-code code-block"><code lang="php" class="language-php">//Include FPDF
require_once(__DIR__ . '/inc/fpdf/fpdf.php');

//Include FPDI
require_once(__DIR__ . '/inc/fpdi/autoload.php');
use setasign\Fpdi\FPDI;

//Init FPDI object
$pdf = new FPDI();

//Create files array
$files = [
	'page 1.pdf', 
	'page 2.pdf', 
	'page 3.pdf'
];

//Iterate over files and their pages
foreach ($files as $file) {
    $pageCount = $pdf->setSourceFile($file);
    for ($i = 0; $i &lt; $pageCount; $i++) {
        $tpl = $pdf->importPage($i + 1);
        $pdf->addPage();
        $pdf->useTemplate($tpl);
    }
}

/*
	Output PDF
	F - Save to file
	D - Start download
*/
$pdf->Output('F','page 1-3.pdf');</code></pre>



<p>Now that you have added the script, All you will need to do is update the files to match the names of the PDF&#8217;s you&#8217;d like to merge and the output file name. Voila, you have merged your PDF&#8217;s and that resulting PDF should be in your root directory.</p>



<p>For my test environment I used <a href="https://www.bricev.com/blog/wordpress-easily-set-up-a-local-development-environment/">Xampp</a> and you can download the project directory I used <a href="https://www.bricev.com/wp-content/uploads/2020/04/PHP-Merge-PDFs.zip" target="_blank" rel="noreferrer noopener">here</a> excluding the libraries you&#8217;ll need to download from above.</p>
<p>The post <a href="https://www.bricev.com/blog/php-pdf-merge-files/">PHP PDF Merge Files</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bricev.com/blog/php-pdf-merge-files/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">297</post-id>	</item>
		<item>
		<title>Best PC FPS Shooters Top 5</title>
		<link>https://www.bricev.com/blog/best-pc-fps-shooters-top-5/</link>
					<comments>https://www.bricev.com/blog/best-pc-fps-shooters-top-5/#respond</comments>
		
		<dc:creator><![CDATA[Brice Viland]]></dc:creator>
		<pubDate>Fri, 10 Apr 2020 22:39:02 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://www.bricev.com/?p=283</guid>

					<description><![CDATA[<p>Here are my favorite PC shooters out now! I’m just rating these based on what I’ve played the most and what is most enjoyable to me. 1. Tom Clancy’s Rainbow Six Siege This game is the most badass game I’ve ever played. It’s highly competitive and the most tactical game you will ever play. Teamwork...</p>
<p>The post <a href="https://www.bricev.com/blog/best-pc-fps-shooters-top-5/">Best PC FPS Shooters Top 5</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Here are my favorite PC shooters out now! I’m just rating these based on what I’ve played the most and what is most enjoyable to me.</p>



<h2 class="wp-block-heading">1. Tom Clancy’s Rainbow Six Siege</h2>



<p>This game is the most badass game I’ve ever played. It’s highly competitive and the most tactical game you will ever play. Teamwork in this game is absolutely essential.</p>



<h2 class="wp-block-heading">2. Fortnite</h2>



<p>I might have actually put the most time in to this game especially when I used to stream. It’s fun for everybody but also has a very competitive scene. It’s a battle royale game that is free to play.</p>



<h2 class="wp-block-heading">3. PUBG: Player Unkown’s Battleground</h2>



<p>Probably the first game I decided to actually try to be more competitive in. This was the game that made me upgrade my PC into an elite gaming system. It’s another battle royale game that is more realistic than Fortnite.</p>



<h2 class="wp-block-heading">4. Counter Strike: Global Offensive</h2>



<p>When it comes to “sweating” in a competitive shooter this game easily takes the crown.</p>



<h2 class="wp-block-heading">5. Ring of Elysium</h2>



<p>A really cool battle royale game with a lot of potential. This game very easily could have surpassed PUBG with it’s playability but I just felt like it wasn’t done well enough to do that.</p>
<p>The post <a href="https://www.bricev.com/blog/best-pc-fps-shooters-top-5/">Best PC FPS Shooters Top 5</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bricev.com/blog/best-pc-fps-shooters-top-5/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">283</post-id>	</item>
		<item>
		<title>WordPress Easily Set Up a Local Development Environment</title>
		<link>https://www.bricev.com/blog/wordpress-easily-set-up-a-local-development-environment/</link>
					<comments>https://www.bricev.com/blog/wordpress-easily-set-up-a-local-development-environment/#respond</comments>
		
		<dc:creator><![CDATA[Brice Viland]]></dc:creator>
		<pubDate>Wed, 23 May 2018 02:28:39 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<guid isPermaLink="false">https://www.bricev.com/?p=197</guid>

					<description><![CDATA[<p>What is my preferred WordPress Local Development Environment? So you are looking to set up a WordPress local development environment? In my opinion, I want the environment to resemble a standard setup as much as possible. I want to have access to a folder where I can plop in a WordPress installation and get started!...</p>
<p>The post <a href="https://www.bricev.com/blog/wordpress-easily-set-up-a-local-development-environment/">WordPress Easily Set Up a Local Development Environment</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>What is my preferred WordPress Local Development Environment?</h2>
<p>So you are looking to set up a WordPress local development environment? In my opinion, I want the environment to resemble a standard setup as much as possible. I want to have access to a folder where I can plop in a WordPress installation and get started! This is why I prefer <a href="https://www.apachefriends.org/index.html">Xampp</a>.</p>
<h2>How to Get Started with Xampp.</h2>
<ol>
<li><a href="https://www.apachefriends.org/download.html">Download Xampp.</a></li>
<li>Run the Xampp setup.</li>
<li>Start services necessary which are Apache and MySQL from the Xampp control panel.</li>
<li>Create database through phpMyAdmin which already comes equipped with the Xampp control panel. To easily access <a href="https://www.phpmyadmin.net/">phpMyAdmin</a> through Xampp you can click &#8220;Admin&#8221; on the MySQL row. From phpMyAdmin, you will be able to add a user and create a database.</li>
<li>Setup WordPress</li>
</ol>
<h2>Use Duplicator to Move a Live Site to your Local Development Environment?</h2>
<p>After all that, you can then proceed to use a plugin called <a href="https://wordpress.org/plugins/duplicator/">Duplicator</a> which will help you easily duplicate a live site to your local setup.</p>
<p>The post <a href="https://www.bricev.com/blog/wordpress-easily-set-up-a-local-development-environment/">WordPress Easily Set Up a Local Development Environment</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bricev.com/blog/wordpress-easily-set-up-a-local-development-environment/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">197</post-id>	</item>
		<item>
		<title>Becoming a Full-Time WordPress Freelancer through Codeable</title>
		<link>https://www.bricev.com/codeable/becoming-a-full-time-wordpress-freelancer-through-codeable/</link>
					<comments>https://www.bricev.com/codeable/becoming-a-full-time-wordpress-freelancer-through-codeable/#comments</comments>
		
		<dc:creator><![CDATA[Brice Viland]]></dc:creator>
		<pubDate>Fri, 18 May 2018 03:15:38 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Codeable]]></category>
		<guid isPermaLink="false">https://www.bricev.com/?p=159</guid>

					<description><![CDATA[<p>What is Codeable and how do I become a full-time WordPress freelancer? Codeable is the best WordPress outsourcing service. Quality is the central focus when I bring up Codeable to friends and family. I was so excited to call my mother and let her know of my accomplishment of being able to become a full-time WordPress...</p>
<p>The post <a href="https://www.bricev.com/codeable/becoming-a-full-time-wordpress-freelancer-through-codeable/">Becoming a Full-Time WordPress Freelancer through Codeable</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>What is Codeable and how do I become a full-time WordPress freelancer?</h2>
<p><a href="https://codeable.io/">Codeable</a> is the best WordPress outsourcing service. Quality is the central focus when I bring up Codeable to friends and family. I was so excited to call my mother and let her know of my accomplishment of being able to become a full-time WordPress Freelancer.</p>
<h2>Well, how do I become a Codeable Expert?</h2>
<p>There is a very informative article to help understand how Codeable&#8217;s screening process works, you can check it out <a href="https://intercom.help/codeable/posting-your-project/codeable-expert-screening-process">here</a>. I&#8217;ll explain shortly with my experience. Firstly, you start off by <a href="https://codeable.io/experts-application/">submitting an application</a>. After that, you may hear back from them and you will be absolutely delighted with how friendly they are. Then, you will begin your test project. I had received a beautiful design where I built out a home page. By the way, they had given me the assets in plenty of formats (PSD, Sketch, and an image) so don&#8217;t worry too much about having the correct software to view the assets. I then developed a theme from scratch and used Advanced Custom Fields. You may have a different area of expertise and that&#8217;s totally okay. They liked my test project and we moved forward to the live interview and live coding test. This is when I talked to one of the developers and one of the happiness heroes. I felt very at ease talking with them and you definitely will too. Then, I was accepted as a Codeable Expert!</p>
<p>Okay, maybe that seems like a lot but this ensures quality for awesome clients.  I would recommend focusing on each step as you continue through the process. Focus on the perks of becoming an expert. You love to code, you&#8217;re excited to deliver quality work to clients, you communicate well. Then you will succeed.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone wp-image-20" src="https://www.bricev.com/wp-content/uploads/2018/05/apple-computer-connection-205421-300x200.jpg" alt="" width="469" height="313" srcset="https://www.bricev.com/wp-content/uploads/2018/05/apple-computer-connection-205421-300x200.jpg 300w, https://www.bricev.com/wp-content/uploads/2018/05/apple-computer-connection-205421-600x400.jpg 600w, https://www.bricev.com/wp-content/uploads/2018/05/apple-computer-connection-205421-768x512.jpg 768w, https://www.bricev.com/wp-content/uploads/2018/05/apple-computer-connection-205421-1024x683.jpg 1024w, https://www.bricev.com/wp-content/uploads/2018/05/apple-computer-connection-205421.jpg 1620w" sizes="(max-width: 469px) 100vw, 469px" /></p>
<h2><strong>Being a Codeable Expert is rewarding.</strong></h2>
<p>I never realized how many people need help with their websites! Codeable is the best WordPress outsourcing platform there is. Also, it is by far the best community I have ever been a part of. Experts help other experts here, this is a collaborative effort. Furthermore, it is so amazing to be able to hand off a project that you did your best on and see first hand what a difference you made for your client.</p>
<p><img decoding="async" class="alignnone wp-image-184" src="https://www.bricev.com/wp-content/uploads/2018/05/achievement-actor-adult-327533-300x188.jpg" alt="" width="466" height="292" srcset="https://www.bricev.com/wp-content/uploads/2018/05/achievement-actor-adult-327533-300x188.jpg 300w, https://www.bricev.com/wp-content/uploads/2018/05/achievement-actor-adult-327533-600x376.jpg 600w, https://www.bricev.com/wp-content/uploads/2018/05/achievement-actor-adult-327533-768x481.jpg 768w, https://www.bricev.com/wp-content/uploads/2018/05/achievement-actor-adult-327533-1024x641.jpg 1024w, https://www.bricev.com/wp-content/uploads/2018/05/achievement-actor-adult-327533.jpg 1724w" sizes="(max-width: 466px) 100vw, 466px" /></p>
<h2>Clients value your quality work.</h2>
<p>So to wrap this up, this is my first week at Codeable. At this point, I was able to work with three different clients, it was a real pleasure. This is my first year as a freelancer and already my first week at Codeable, I see it&#8217;s possible to do this full-time. This has been &#8220;just an idea&#8221; for so long but now it has become reality.</p>
<p>Thank you Codeable!</p>
<p>The post <a href="https://www.bricev.com/codeable/becoming-a-full-time-wordpress-freelancer-through-codeable/">Becoming a Full-Time WordPress Freelancer through Codeable</a> appeared first on <a href="https://www.bricev.com">Brice V</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bricev.com/codeable/becoming-a-full-time-wordpress-freelancer-through-codeable/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">159</post-id>	</item>
	</channel>
</rss>
