Skip to content

Instantly share code, notes, and snippets.

{
"base": "GBP",
"history": [
{
"date": "2021-04-01",
"rates": [
{
"currency": "EUR",
"value": 5.0611
}
[
{
"name": "Loan 1",
"status": "warning",
"attributes": [
{
"label": "gross facility",
"content": "$3000000"
},
{
@danielantelo
danielantelo / README.md
Last active September 16, 2019 13:51
YNAP Frontend Task

YNAP Frontend Task

Outline

Create a small React based app that shows off your frontend skills and implements a parallax hero header and sticky columns as per the videos attached.

Note: videos are to be used as a guideline only, no need to replicate all the content.

Requirements

@danielantelo
danielantelo / benchmark
Last active December 28, 2017 12:29
script to apache benchmark website (ab tool)
#!/bin/bash
# command to run apache benchmark tool
# ** usage **
# ./benchmark "https://www.apple.com/"
curl -X GET "$1"
ab -k -c 20 -n 250 "$1"
@danielantelo
danielantelo / ttfb
Last active December 28, 2017 12:29
script to get ttfb of a website
#!/bin/bash
# command to check the time to first byte
# ** usage **
# 1. ./ttfb "https://www.apple.com/"
# 2. seq 10 | xargs -Iz ./ttfb "https://www.apple.com/"
curl -o /dev/null \
-H 'Cache-Control: no-cache' \
-s \
-w "Connect: %{time_connect} TTFB: %{time_starttransfer} Total time: %{time_total} \n" \
@danielantelo
danielantelo / optimize.sh
Last active May 12, 2021 11:17
Optimise images in a folder for web
#!/bin/bash
commandExists () {
type "$1" &> /dev/null ;
}
installImageMagick() {
if commandExists brew; then
brew install imagemagick
else
@danielantelo
danielantelo / README.md
Created July 24, 2016 17:30
Javascript data transformer exercise

Javascript data transformer exercise

Write a function that would take this sample data:

[
    { banana: 'fruit' },
    { apple: 'fruit' },
    { carrot: 'vegetable' }
]
@danielantelo
danielantelo / code-reviewing.md
Last active July 24, 2016 17:24
Code reviews

Submitting a PR

For every pull request for user facing changes, we should include the following in the PR description:

You should also be checking and optimizing any code being submitted as follows:

  • Optimise your changes for speed. Use the YSlow plugin and optimise before submitting a PR

Student.com Full Stack Web Task

Outline

Create a small PHP based app that scrapes the top listed property at http://www.unite-students.com/liverpool, follows its link and gathers information to display it based on the desktop and mobile wires.

Criteria

  • Your project must be composer based and you can use any readily available composer bundle to aid you
  • The page should be functional and presentable in modern browsers and devices
@danielantelo
danielantelo / scoping-and-hoisting-js-exercise.js
Created November 23, 2015 21:01
Simple scoping and hoisting js exercise
var foo = 1;
(function() {
console.log(foo);
var foo = 2;
var baz = 3;
bar = 4;
})();
console.log(foo);