- 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
import { chain } from 'chain'; | |
// Open this file in vscode and mouse over the symbols to see their types. | |
// Wrapped scalar. | |
const v = chain('hello chain!') | |
.value(); | |
// Calling methods on wrapped arrays. | |
const v2 = chain([1, 2, 3]) |
#!/bin/bash | |
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then | |
echo "~/Library/KeyBindings/DefaultkeyBinding.dict already exists" | |
exit -1 | |
fi | |
mkdir -p ~/Library/KeyBindings | |
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict | |
{ | |
"โฉ" = ("insertText:", "\`"); |
db.getCollection('list').aggregate([ | |
{ | |
$facet: { | |
"events":[{ | |
$match: { | |
'type': 'Event' | |
} | |
}], | |
"tasks": [{ | |
$match: { |
/* Shadow 0dp */ | |
box-shadow: none; | |
/* Shadow 1dp */ | |
box-shadow: 0 1px 1px 0 rgba(0,0,0,0.14), 0 2px 1px -1px rgba(0,0,0,0.12), 0 1px 3px 0 rgba(0,0,0,0.20); | |
/* Shadow 2dp */ | |
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.20); | |
/* Shadow 3dp */ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Twitter Archive Browser</title> | |
<script src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.min.js"></script> | |
<style> |
๋ํดํ ์ผ์น... ์ธ์ด(์ดํ ์ผ์น)๋ ๋ํดํ ํ์... ์ธ์ด(์ดํ ํ์)์ ์ํธ ํธ๋์คํ์ผ ๊ฐ๋ฅํ ์ธ์ด์ ๋๋ค. ์ผ์น๊ณผ ํ์์ ๊ธฐ๋ณธ์ ์ผ๋ก ๋์น(equivalent) ๊ด๊ณ์ด๋ฉฐ ๊ฐ ์ธ์ด์ ๋ช ๋ น์ด์ ์ ์๋ก 1:1 ๋งคํ๋ ์ ์์ต๋๋ค.
ํ์ v0.4.5๋ฅผ ๊ธฐ์ค์ผ๋ก ํฉ๋๋ค. ์๋ ๋์ด๋ ํ๊ธ ์์ ๋ฌธ์ ๋ช ๋ น์ด๋ฅผ ์ ์ธํ ๋ชจ๋ ์คํ์ ๋์ผํฉ๋๋ค.
๋ํดํ ์ผ์น... ์ธ์ด | ๋ํดํ ํ์... ์ธ์ด | ํด์ |
---|
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
// munged from https://github.com/simontime/Resead | |
namespace sead | |
{ | |
class Random | |
{ |
#!/bin/bash | |
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then | |
echo "~/Library/KeyBindings/DefaultkeyBinding already" | |
exit 0 | |
fi | |
mkdir -p ~/Library/KeyBindings | |
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict | |
{ | |
"โฉ" = ("insertText:", "\`"); | |
"~4" = ("insertText:","โฉ"); |
In this guide we will only focus on using the prebuilt images from Docker Hub.
Prerequisites: You have Git, Docker, Docker compose and Nginx pre-installed.
Clone Mastodon's repository.