All notable changes to this configuration will be documented in this file.
- Enhanced Git integration
- Pull command:
<leader>g p
- Pull command:
- Push command:
g P
@ECHO ON | |
:: Save the directory where we are | |
pushd %CD% | |
echo %CD% | |
:: Shift directories to the correct path | |
%~d0 | |
cd %~dp0 |
{ | |
"files.autoSave": "onFocusChange", | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.sneak": true, | |
"vim.easymotionMarkerooundColor": "#020202", | |
"vim.normalModeKeyBindings": [ |
gunicorn run:app --workers=9
gunicorn run:app --workers=9 --worker-class=meinheld.gmeinheld.MeinheldWorker
Macbook Pro 2015 Python 3.7
Framework | Server | Req/s | Max latency | +/- Stdev |
---|
<template> | |
<q-page class="bg-light-green window-height window-width row justify-center items-center"> | |
<div class="column"> | |
<div class="row"> | |
<h5 class="text-h5 text-white q-my-md">Company & Co</h5> | |
</div> | |
<div class="row"> | |
<q-card square bordered class="q-pa-lg shadow-1"> | |
<q-card-section> | |
<q-form class="q-gutter-md"> |
CMake๋ฅผ ์ ์ฐ๋๊ฑฐ์ฃ ?
์ข์ ํด์ Visual Studio ๋ฟ์ ๋๋ค. ๊ทธ ์ด์ธ์๋ ์ ๋ถ ์ฌ๋(้ช้)์ ๋๋ค ์ฌ๋! - ์์ฑ์
""" Shows how to use flask and matplotlib together. | |
Shows SVG, and png. | |
The SVG is easier to style with CSS, and hook JS events to in browser. | |
python3 -m venv venv | |
. ./venv/bin/activate | |
pip install flask matplotlib | |
python flask_matplotlib.py | |
""" |
import tensorflow as tf | |
import numpy as np | |
from google.protobuf import json_format | |
import json | |
np.random.seed(12345) | |
def tensorflow_get_weights(): | |
""" |
@echo off | |
setlocal | |
call :setESC | |
cls | |
echo %ESC%[101;93m STYLES %ESC%[0m | |
echo ^<ESC^>[0m %ESC%[0mReset%ESC%[0m | |
echo ^<ESC^>[1m %ESC%[1mBold%ESC%[0m | |
echo ^<ESC^>[4m %ESC%[4mUnderline%ESC%[0m |
import * as React from 'react'; | |
import { Component } from 'react'; | |
export default function HOCBaseRender<Props, State, ComponentState>( | |
Comp: new() => Component<Props & State, ComponentState>) { | |
return class HOCBase extends Component<Props, State> { | |
render() { | |
return <Comp {...this.props} {...this.state}/>; | |
} | |
} |