Skip to content

Instantly share code, notes, and snippets.

View aiyk's full-sized avatar
💭
available

Ikechukwu Ekwe aiyk

💭
available
View GitHub Profile
@aiyk
aiyk / Common-Currency.json
Created March 10, 2021 15:02 — forked from ksafranski/Common-Currency.json
Common Currency Codes in JSON
{
"USD": {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},
@aiyk
aiyk / README.md
Created August 11, 2020 01:51 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@aiyk
aiyk / NginX Config MEAN STACK
Last active August 2, 2020 10:14
an nginx config for mean stack serving both front and backend on the same port
server_tokens off;
add_header X-Frame-Options SAMEORIGIN;
add_header X-Content-Type-Options nosiff;
add_header X-XSS-Protection "1; mode=block";
add_header Cache-Control "no-cache, no-store, max-age=0, must-revalidate";