This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div :style="cssVars"> | |
<div class="test">test</div> | |
</div> | |
</template> | |
<script> | |
export default observer({ | |
name: 'App', | |
data: () => ({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default [{"icon":"mdi-ab-testing"},{"icon":"mdi-access-point"},{"icon":"mdi-access-point-network"},{"icon":"mdi-access-point-network-off"},{"icon":"mdi-account"},{"icon":"mdi-account-alert"},{"icon":"mdi-account-alert-outline"},{"icon":"mdi-account-arrow-left"},{"icon":"mdi-account-arrow-left-outline"},{"icon":"mdi-account-arrow-right"},{"icon":"mdi-account-arrow-right-outline"},{"icon":"mdi-account-badge"},{"icon":"mdi-account-badge-alert"},{"icon":"mdi-account-badge-alert-outline"},{"icon":"mdi-account-badge-horizontal"},{"icon":"mdi-account-badge-horizontal-outline"},{"icon":"mdi-account-badge-outline"},{"icon":"mdi-account-box"},{"icon":"mdi-account-box-multiple"},{"icon":"mdi-account-box-multiple-outline"},{"icon":"mdi-account-box-outline"},{"icon":"mdi-account-card-details"},{"icon":"mdi-account-card-details-outline"},{"icon":"mdi-account-cash"},{"icon":"mdi-account-cash-outline"},{"icon":"mdi-account-check"},{"icon":"mdi-account-check-outline"},{"icon":"mdi-account-child"},{"icon":"mdi-account-c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default [ | |
"mdi-ab-testing", | |
"mdi-access-point", | |
"mdi-access-point-network", | |
"mdi-access-point-network-off", | |
"mdi-account", | |
"mdi-account-alert", | |
"mdi-account-alert-outline", | |
"mdi-account-arrow-left", | |
"mdi-account-arrow-left-outline", |
npm run eject
npm install mobx mobx-react --save
npm i babel-plugin-transform-decorators-legacy --save-dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install python3 | |
sudo apt install python3-pip | |
sudo apt install python-minimal | |
sudo apt install python-pip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export LC_ALL=C | |
sudo apt-get update | |
sudo apt-get install software-properties-common python-software-properties | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
sudo apt-get update | |
sudo apt-get install -y docker-ce |
git clone https://github.com/tarantool/websocket.git .
luarocks make
tarantoolctl rocks install https://raw.githubusercontent.com/tarantool/websocket/master/websocket-scm-1.rockspec
https://aws.amazon.com/ru/cloud9/
# which node
# /root/.nvm/versions/node/v8.11.3/bin/node
mkdir aws-cloud9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import random | |
q = asyncio.Queue() | |
async def producer(num): | |
while True: | |
await q.put(num + random.random()) | |
await asyncio.sleep(random.random()) |