Download postgresql from https://www.enterprisedb.com/download-postgresql-binaries;
Unzip it;
Open a cmd;
Enter into the ‘bin’ directory;
using StackExchange.Redis; | |
namespace RedisLockTest; | |
public enum LockStatus | |
{ | |
Success, | |
Failure, | |
Timeout | |
} |
[ | |
// | |
// VIM NAVIGATION SHORTCUTS | |
// | |
{ | |
// "ctrl+h": Focuses on the left editor group when the text editor is focused, Vim extension is active, and Vim is not in Insert mode. | |
"key": "ctrl+h", | |
"command": "workbench.action.focusLeftGroup", | |
"when": "editorTextFocus && vim.active && vim.mode != 'Insert'" |
#include <Python.h> | |
/***********************************************************/ | |
/* define logging function and logtypes for python.logging */ | |
/* by H.Dickten 2014 */ | |
/***********************************************************/ | |
enum logtypes {info, warning, error, debug}; | |
static void log_msg(int type, char *msg) | |
{ |
@ECHO ON | |
:: Save the directory where we are | |
pushd %CD% | |
echo %CD% | |
:: Shift directories to the correct path | |
%~d0 | |
cd %~dp0 |
Download postgresql from https://www.enterprisedb.com/download-postgresql-binaries;
Unzip it;
Open a cmd;
Enter into the ‘bin’ directory;
""" 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 | |
""" |
{ | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.sneak": true, | |
"vim.easymotionMarkerBackgroundColor": "#222", | |
"vim.normalModeKeyBindings": [ | |
{ |
@mixin display-breakpoints { | |
&:after { | |
content: "xs"; | |
position: fixed; | |
width: 30px; | |
font-size: 12px; | |
text-align: center; | |
background-color: black; | |
color: lime; | |
bottom: 0; |
빌드시스템(디폴트는 setuptools
이지만, poetry
, fitt
등 다른것도 있음) 구성과 관련해 필요한 패키지, 설정등이 들어감.
[build-system]
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
;; 한자키 설정({vk19sc1F1}) | |
Rwin::Send, {VK19} ; {vk19sc1F1} | |
;; 한글키 설정 | |
RAlt::Send, {VK15} ;{vk15sc138} |