- Download powerline.less into ATOM_HOME (default: ~/.atom/)
- Add
@import './powerline.less';
into your styles.less in ATOM_HOME. - Enjoy! :D
Powerline could not work on some themes.
Officially supported themes:
- Atom Dark
- Atom Light
(function(){ | |
//SVG Flat Stripe Background | |
//by Khinenw | |
//gist.github.com/HelloWorld017/6fb557767095a0e79140cb3bfbed83e7 | |
'use strict'; | |
if(location.pathname !== '/') return; | |
var themes = [[/^\d+-(02|03|04)-.+$/, ['#f8bbd0', '#f06292', '#e91e63', '#c2185b', '#880e4f']], //Haru | |
[/^\d+-(05|06|07)-.+$/, ['#ffeb3b', '#cddc39', '#8bc34a', '#4caf50', '#009688']], //Natsu |
…
(U+2026), ⋯
(U+22EF), ⋮
(U+22EE)는 모두 .
(U+002E)가 3번 연속으로 나열된 것과 같은 것으로 봅니다.const draw = (width, height, text, font, fill) => { | |
const canvas = document.createElement('canvas'); | |
canvas.width = width; | |
canvas.height = height; | |
const ctx = canvas.getContext('2d'); | |
ctx.fillStyle = "#000"; | |
ctx.fillRect(0, 0, canvas.width, canvas.height); | |
ctx.fillStyle = "#fff"; |
git log --oneline -1 <PR-BRANCH>
git push -f origin :
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
글쓴이: 김정주([email protected])
이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.
텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.