Skip to content

Instantly share code, notes, and snippets.

View finagin's full-sized avatar
🖖

Igor Finagin finagin

🖖
View GitHub Profile
@finagin
finagin / lazy-loading.html
Last active May 4, 2020 01:08 — forked from droganaida/lazy-loading.html
Intersection Observer + custom lazy loading demo
<html>
<head>
<title>Lazy loading by #Blondiecode</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, "Helvetica Neue", Helvetica, serif;
}
footer {
@finagin
finagin / Container.php
Last active September 17, 2018 11:49 — forked from MustafaMagdi/Container.php
PHP Dependency Injection Container
<?php
namespace Core;
use Closure;
use Exception;
use ReflectionClass;
/**
* Class Container
@finagin
finagin / boltproxy.py
Last active November 16, 2017 22:21 — forked from technige/boltproxy.py
Simple proxy server for the Bolt protocol.
#!/usr/bin/env python
# coding: utf-8
# Copyright 2017, Nigel Small
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0