용어 | 번역 | 참고 링크 |
---|---|---|
Access | 접근 | |
Accessibility concerns | 접근성 고려사항 | |
Advantages | 장점 | [링크][Introduction_to_HTML5_Game_Development] |
Aliasing | 별칭 | [링크][js-string-trim-start] |
Brief history | 간략한 역사 | [링크][HTML#%EA%B0%84%EB%9E%B5%ED%95%9C_%EC%97%AD%EC%82%AC] |
Browser compatibility | 브라우저 호환성 | [링크][js-string-trim-start] |
Browser support | 브라우저 지원 | [링크][Using_IIR_filters] |
Concept | 개념 |
This file contains 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
const Pool = require("pg").Pool; | |
const pool = new Pool({ | |
user: "bsmth", | |
host: "localhost", | |
database: "demo_db", | |
password: "password", | |
port: 5432, | |
}); | |
// CREATE TABLE phone_numbers (person_name TEXT, phone_number int); |
This file contains 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
{ | |
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", | |
"version": "0.2", | |
"language": "en", | |
"languageId": "*", | |
"dictionaries": [ | |
"bash", | |
"css", | |
"cpp", | |
"django", |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<style> | |
.wrapper { | |
transform-style: preserve-3d; | |
} | |
.wrapper2 { | |
transform-style: flat; | |
} |
This file contains 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
const customerData = [ | |
{ ssn: "444-44-4444", name: "Bill", age: 35, email: "bill@company.com" }, | |
{ ssn: "555-55-5555", name: "Donna", age: 32, email: "donna@home.org" }, | |
]; | |
const dbName = "my_database"; | |
const request = indexedDB.open(dbName, 2); | |
request.onerror = (event) => { | |
console.log(event); |
This file contains 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
# Using 19 | |
node -v | |
v19.0.0 | |
yarn && yarn start | |
zsh: command not found: yarn | |
# of course, everything is broken | |
# try reinstall 19 with all of the global modules from 18 | |
nvm install 19 --reinstall-packages-from=18 |
This file contains 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
# Path to your oh-my-zsh configuration. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
#export ZSH_THEME="robbyrussell" | |
export ZSH_THEME="zanshin" |
This file contains 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
mkdir bin_dir && cd bin_dir | |
wget https://github.com/questdb/questdb/releases/download/6.0.4/questdb-6.0.4-no-jre-bin.tar.gz | |
tar -xvf questdb-6.0.4-no-jre-bin.tar.gz | |
cd questdb-6.0.4-no-jre-bin | |
./questdb.sh start -d /path/to/my_data_dir | |
./questdb.sh stop | |
# /path/to/my_data_dir will create a new root directory for QuestDB | |
# If a server config file exists already, it will be loaded, i.e. |
This file contains 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 urllib.request | |
import pandas as pd | |
import requests | |
def import_data(file_name, table_name): | |
params = {} | |
params['timestamp'] = 'TradeDate' | |
params['partitionBy'] = 'MONTH' | |
url_values = urllib.parse.urlencode(params) | |
query_url = "http://%s:9000/imp?" % (server_ip) + url_values |
This file contains 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 time | |
import socket | |
HOST = 'localhost' | |
PORT = 9009 | |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
try: | |
sock.connect((HOST, PORT)) | |
sock.sendall(('eod,instrument=fut open=141.5,high=142.0,low=139.9,close=142.0,settle_price=143.7,value=42.27\n').encode()) |
NewerOlder