Skip to content

Instantly share code, notes, and snippets.

@arkhemlol
arkhemlol / rxjs-diagrams.md
Created October 5, 2018 18:20 — forked from PCreations/rxjs-diagrams.md
Super Intuitive Interactive Diagrams to learn combining RxJS sequences by Max NgWizard K
@arkhemlol
arkhemlol / angular-mock-backend.js
Created May 6, 2016 22:22 — forked from kennethlynne/angular-mock-backend.js
High fidelity prototyping using a mock back-end. Include angular-mocks in your script includes after angular. Demo: http://codepen.io/kennethlynne/pen/lJbce
'use strict';
angular.module('yourApp')
.constant('Config', {
viewDir: 'views/',
API: {
useMocks: true,
fakeDelay: 2000,
protocol: window.location.protocol.split(':')[0],
host: window.location.hostname,
@arkhemlol
arkhemlol / LESS mixin for CSS arrow
Created April 24, 2016 19:33 — forked from julienchazal/LESS mixin for CSS arrow
LESS mixin for CSS arrow
/* ------------------------ */
/* LESS mixin for CSS arrow */
/* ------------------------ */
/* https://github.com/HugoGiraudel/LESS-Mixin-for-CSS-arrows
//Usage
.arrow(size, color, direction, offset, border-size, border-color);
Where
@arkhemlol
arkhemlol / box-shadow.html
Last active October 14, 2015 19:05 — forked from ocean90/box-shadow.html
CSS3 Box Shadow, only top/right/bottom/left and all
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;