Skip to content

Instantly share code, notes, and snippets.

View aleksmiller's full-sized avatar
👾
GAME OVER!

Ax Miller aleksmiller

👾
GAME OVER!
  • Ukraine
View GitHub Profile
@aleksmiller
aleksmiller / .gitlab-ci.yml
Created June 27, 2017 14:44 — forked from b0bbywan/.gitlab-ci.yml
Build and Deploy a javascript app with Gitlab-Ci
image: node:argon
before_script:
- apt-get -qq update
- apt-get -qq install -y python2.7 python2.7-dev build-essential make gcc g++ libicu-dev
- npm -g install npm --silent
- "echo -e \"export default {CLIENT_ID: '$CLIENT_ID'}\" > app/scripts/settings.js"
- npm set progress=false
- npm install --silent
@aleksmiller
aleksmiller / nested-component.html
Last active December 29, 2015 12:53
AngularJS nested component. Based on https://github.com/toddmotto/angular-component example
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nested component</title>
</head>
<body>
<div data-ng-app="app">
<div data-ng-controller="MainCtrl as main">
<form-panel count="main.count"></form-panel>
@aleksmiller
aleksmiller / header-color.html
Created November 23, 2014 12:34
App header/task switcher background color
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#36c">
<title></title>
</head>
<body></body>
</html>
@aleksmiller
aleksmiller / Centered_header.md
Last active August 29, 2015 14:07
Centered header with left/right background
/*
Example:
1. Item lev. 1
1. 1. Item lev. 2
1. 2. Item lev. 2
2. Item lev. 1
2. 1. Item lev. 2
2. 2. Item lev. 2
*/
ol {margin: 0;padding: 0;list-style-position: inside;}