Paragraphs are separated by a blank line.
2nd paragraph. Italic, bold, and monospace
. Itemized lists
look like:
- this one
- that one
from("timer://scheduler?period=30s") | |
.log("get access token") | |
.to("direct:authService"); | |
from("direct:authService").tracing() | |
.setHeader(Exchange.HTTP_PATH) | |
.simple("<auth service context>/oauth2/token") | |
.setHeader("CamelHttpMethod") | |
.simple("POST") | |
.setHeader("Content-Type") |
// pm2 실행 | |
// NODE_CLUSTER_SCHED_POLICY = SCHED_RR pm2 start index.js - i max | |
const amqp = require("amqplib/callback_api"); | |
const express = require('express') | |
const app = express() | |
const port = 3000 | |
var channel; | |
const qname = "input_queue"; |
#!/bin/bash | |
# tech: windows10 wsl vscode ubuntu android-sdk-tools flutter dart | |
# update ubuntu | |
sudo apt-get update -y | |
sudo apt-get upgrade -y | |
# install requirements | |
sudo dpkg --add-architecture i386 |
# https://asdf-vm.com/#/ | |
sudo apt update | |
sudo apt-get install -y nmon autoconf unzip openjdk-8-jdk curl lib32z1 libglu1-mesa gradle xz-utils git libqt5webenginewidgets5 libc6 libstdc++6 libgcc1 libz1 net-tools make build-essential checkinstall zlib1g-dev libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev openssl libssl-dev libncurses5-dev libc6-dev libbz2-dev | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf && cd ~/.asdf && git checkout "$(git describe --abbrev=0 --tags)" | |
. $HOME/.asdf/asdf.sh | |
. $HOME/.asdf/completions/asdf.bash | |
curl -O https://gist.githubusercontent.com/yongteak/19f9fcd70a7cc217e858a74158b00e9e/raw/8697cb1b40939a9bc7fbc5b45146b782d67a050f/kerl -k |
daml 1.2 module CantonCoin where | |
import DA.Next.Set (Set, union, size, singleton) | |
import DA.Next.Set qualified as S | |
import DA.Next.Map (MapKey) | |
import DA.List (head) | |
import DA.Foldable qualified as F | |
subset: MapKey a => Set a -> Set a -> Bool | |
subset s1 s2 = s1 == s1 `S.intersection` s2 |
import 'package:flutter/material.dart'; | |
import 'package:animator/animator.dart'; | |
import 'package:states_rebuilder/states_rebuilder.dart'; | |
class MyBloc extends StatesRebuilder { | |
String animationSwitcher = 'opacity'; | |
String animationName = 'Opacity'; | |
changeAnimation(String switcher, String name) { | |
animationSwitcher = switcher; |
#!/bin/bash | |
# installing erlang on ubuntu's | |
# curl https://gist.githubusercontent.com/yongteak/48e405b8a40a45be70713b9c8dcb255f/raw/8fcb722ad1201cea7d90d9be289d94120c2b645c/install.sh | bash | |
VERSION="18.3" | |
sudo apt-get install build-essential libncurses5-dev openssl libssl-dev xsltproc automake autoconf fop -y | |
sudo mkdir -p /opt/erlang/ | |
curl -O https://raw.githubusercontent.com/kerl/kerl/master/kerl && chmod a+x kerl |
{ | |
"type": "Feature", | |
"geometry": { | |
"type": "Point", | |
"coordinates": [125.6, 10.1] | |
}, | |
"properties": { | |
"name": "Dinagat Islands" | |
} | |
} |
%% 콘솔에서 한글표현 | |
%% erl +pc unicode | |
{ok,Data} = file:read_file("word.txt"). | |
List = re:split(Data,"\\s+"). | |
Dict = | |
lists:foldl(fun(Word,Acc)-> | |
dict:update_counter(Word, 1, Acc) | |
end,dict:new(),List). |