For the past 2 years I have been working for Pied Piper to extend the API and have been responsible for integrations with a number of high profile companies.
I often work on many side projects to try out new technologies and keep up to date with the latest coding trends.
Please click the buttons below to view examples of my work. If you would like to view more examples do get in touch.
This is a fizz buzz example for Javascript.
Fizz Buzz is a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”(The well known fizz buzz is a must have for your Webfolio, used by most companies at interview stage to quickly determine a developer's skill level. Having one here in advance can be helpful for interview preparation.)
<script type="text/javascript"> for(i = 1; i <= 100; i++){ var str = (i % 3) == 0 ? 'fizz' : ''; str += (i % 5) == 0 ? 'buzz' : ''; console.log(str == '' ? i : str); } </script>
Here you would describe in detail what the snippet is used for and how it is utilised within the project.
<?php /*Example from Laravel*/ require __DIR__.'/../bootstrap/autoload.php'; $app = require_once __DIR__.'/../bootstrap/app.php'; $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response); ?>