일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- Xcode
- git
- fido
- apple
- SSH
- 인증
- SWIFT
- kmip
- OSX
- MYSQL
- css
- 앨범북
- openssl
- WebAuthn
- MSYS2
- appres
- albumbook
- otpkey
- SwiftUI
- FIDO2
- SSL
- 앱스토어
- Android
- 애플
- 2FA
- OTP
- 안드로이드
- 앱리소스
- Nodejs
- MFA
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
sudo apt install build-essential clang flex bison g++ gawk \ gcc-multilib g++-multilib gettext git libncurses-dev libssl-dev \ python3-distutils rsync unzip zlib1g-dev file wget # Download and update the sources git clone https://git.openwrt.org/openwrt/openwrt.git cd openwrt git pull # Select a specific code revision git branch -a git tag git checkout v23.05.0 # Update the feeds ./scripts/feeds..
gsap https://natsci.manoa.hawaii.edu/rw_common/plugins/stacks/gsap/ Index of /rw_common/plugins/stacks/gsap natsci.manoa.hawaii.edu fullscreen.js 도? https://natsci.manoa.hawaii.edu/rw_common/plugins/stacks/ Index of /rw_common/plugins/stacks natsci.manoa.hawaii.edu

모든 DB를 Backup 하는 스크립트 Backup file 이름 규칙: DBname_YYYYDDMM_HHMMSS.BAK DECLARE @name VARCHAR(50) -- database name DECLARE @path VARCHAR(256) -- path for backup files DECLARE @fileName VARCHAR(256) -- filename for backup DECLARE @fileDate VARCHAR(20) -- used for file name -- specify database backup directory SET @path = 'C:\Backup\' -- specify filename format SELECT @fileDate = CONVERT(VARCHAR(20),G..
덤프 (dump) 그냥 DB 가 설치되어 있는 서버에서 mongodump 하면 현재 디렉토리에 dump 라는 폴더가 생성되며 그 안에 DB 가 파일로 덤프된다. 다음과 같은 옵션들이 있다. mongodump --out 덤프저장위치(디렉토리) --host 127.0.0.1 --port 27017 -u계정 -p비번 --db DB명 복구 (restore) mongorestore --host 127.0.0.1 --port 27017 -u계정 -p비번 --drop 드롭시킬기존DB명 --db 복구할DB명 "덤프된디렉터리위치" 마찬가지로 DB 가 설치된 서버에서 직접 수행시 --host --port 등을 생략 할 수 있다.
https://smart-factory-lee-joon-ho.tistory.com/315 우분투 22.04 에 MongoDB 6.0 설치 하는 방법 admin 생성 db 생성 전부 알려드립니다. https://techviewleo.com/install-mongodb-on-ubuntu-linux/ NoSQL 데이터베이스는 관계형 테이블이 아닌 형식으로 데이터를 저장하는 비표형 데이터베이스이다. 데이터 아키텍처에 따라 NoSQL 데이터베이스의 유 smart-factory-lee-joon-ho.tistory.com
xcode-select --install 를 수행하면 xcode-select: error: command line tools are already installed, use "Software Update" in System Settings to install updates 메시지가 표시되는 경우가 있다. 다음을 수행해 본다. xcode-select --print-path 출력이 이런식으로 나올 수 있다. /Library/Developer/CommandLineTools 실제 이 폴더에 가보면 xcode 가 설치된 곳이 아니다. 아마도 이전 버전의 설정의 잔재.... 다음명령으로 올바르게 다시 설정하자. sudo xcode-select --switch /Applications/Xcode.app 이제 다음과 ..
const ipv4Regex = /^(\d{1,3}\.){3}\d{1,3}$/; if (ipv4Regex.test(ipAddress)) { console.log('This is an IPv4 address'); } const ipv6Regex = /^([\da-fA-F]{1,4}:){7}[\da-fA-F]{1,4}$/; if (ipv6Regex.test(ipAddress)) { console.log('This is an IPv6 address'); } Angular에서 net 모듈을 사용하여 isIPv4() 및 isIPv6() 함수를 사용할 수도 있습니다. net 모듈은 Node.js의 내장 모듈이므로, Angular에서 사용하기 위해서는 @types/node 패키지를 설치하여야 합니다. 하지만 이 방법..
const net = require('net'); // IPv4인지 확인 if (net.isIPv4('192.168.0.1')) { console.log('This is an IPv4 address'); } // IPv6인지 확인 if (net.isIPv6('2001:0db8:85a3:0000:0000:8a2e:0370:7334')) { console.log('This is an IPv6 address'); }
https://medium.com/jspoint/a-simple-guide-to-load-c-c-code-into-node-js-javascript-applications-3fcccf54fd32 A simple guide to load C/C++ code into Node.js JavaScript Applications In this article, we are going to get ourselves familiar with the mechanism and tools to load the C/C++ code dynamically in JavaScript… medium.com
Angular에서 environment 값은 src/environments 폴더의 environment.ts 파일에서 가져올 수 있습니다. 이 파일은 기본적으로 개발 환경에서 사용되며, environment.prod.ts 파일은 프로덕션 환경에서 사용됩니다. environment.ts 파일에는 개발 환경에서 사용할 수 있는 모든 변수와 값이 포함되어 있습니다. 이 파일을 열어보면 다음과 같은 코드를 볼 수 있습니다. export const environment = { production: false, apiUrl: 'http://localhost:3000/api' }; 위의 코드에서 production 변수는 false로 설정되어 있으므로 개발 환경을 나타냅니다. apiUrl 변수는 개발 환경에서 사용할..