일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- otpkey
- css
- SwiftUI
- 앱리소스
- apple
- OSX
- WebAuthn
- Xcode
- appres
- Android
- OTP
- Nodejs
- kmip
- 안드로이드
- MSYS2
- 앨범북
- MFA
- openssl
- fido
- SWIFT
- git
- SSH
- MYSQL
- 인증
- FIDO2
- SSL
- albumbook
- 애플
- 앱스토어
- 2FA
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
https://bpsecblog.wordpress.com/2016/04/04/gdb_memory_2/ 우리집에 GDB 있는데… 메모리 보고갈래?(2)season 1. 우리집에 GDB 있는데… 메모리 보고 갈래?(2)DAY #2. 애프터 신청 (너 GDB 사용법, 갖고싶다.. 너란 STACK ) 1234567891011121314151617181920212223242526//tomato.c#include #include void func2() { puts("func2()");} void sum(int a, int b) { printf("sum : %d\n", a+b); func2();} int main(int argc, char *argv[]) { int num=0; char arr[10]; sum(1,2..
https://bpsecblog.wordpress.com/2016/03/08/gdb_memory_1/ 우리집에 GDB 있는데… 메모리 보고갈래? (1)들어가기에 앞서…컴(존)알못들이여 오라. 보안 공부하다 높다란 진입장벽 앞에서 좌절하신 분들께 이 글을 바칩니다. 해커가 되겠다는 청운을 안고 대학을 입학했으나.. 4년째 뉴비..★ 컴알못인 제가 자세히 친절하게 하나하나 꼭꼭 씹어보겠습니다.season 1. 우리집에 gdb 있는데… 메모리 보고갈래?DAY #1. 듀근듀규뉸구누균ㄱ 첫만남 구체적으로 뭐하는지가 궁금하시다구여?…뭘 하더라도 기초가 중요한 것 같네요.메모리에 대한 썰부터 간단히 풀어볼게요!![그림 1] 썰 주제 되십니다 1. 주소는 왜 때문에 0000 0000 ~ FFFF FFFF ???램은 몇..
원문 : https://opensource.com/article/18/3/start-blog-30-minutes-hugo Do you want to start a blog to share your latest adventures with various software frameworks? Do you love a project that is poorly documented and want to fix that? Or do you just want to create a personal website?Many people who want to start a blog have a significant caveat: lack of knowledge about a content management system (..
signal(SIGPIPE, SIG_IGN); //SIGPIPE 무시; 네트웍 자료전송중 클라이언트가 끊기는 경우 프로그램이 종료되는 것을 막기 위함 signal(SIGINT, SigIntProc); //인터럽트발생 기본처리는 프로그램 종료 //signal(SIGURG, SigUrgProc); //긴급소켓상태, 기본처리는 무시 //signal(SIGIO, SigIoProc); //소켓입출력가능, 기본처리는 무시 //signal(SIGQUIT, SigQuitProc); //종료, 코어에서 사용 //signal(SIGSYS, SigSysProc); //잘못된시스템호출, 코어에서 사용 signal(SIGTERM, SigTermProc); signal(SIGABRT, SigAbortProc); signal(SI..
Subnet Mask Cheat SheetSee also RFC 1878.AddressesHostsNetmaskAmount of a Class C/3042255.255.255.2521/64/2986255.255.255.2481/32/281614255.255.255.2401/16/273230255.255.255.2241/8/266462255.255.255.1921/4/25128126255.255.255.1281/2/24256254255.255.255.01/23512510255.255.254.02/2210241022255.255.252.04/2120482046255.255.248.08/2040964094255.255.240.016/1981928190255.255.224.032/181638416382255.2..
http://eradman.com/posts/multi-master.htmlIntroducing Multi-MasterThanks to work excellent work of 2ndQuadrant, the components needed to support unidirectional and bidirectional replication are [mostly] integrated into PostgreSQL. Logical replication allows a range of options including the replication of part of a cluster and multi-master configurations.Build/Installon LinuxAt the time of this w..
Assuming you've used home-brew to install and upgrade Postgres, you can perform the following steps.Stop current Postgres server:launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plistInitialize a new 10.1 database:initdb /usr/local/var/postgres10.1 -E utf8run pg_upgrade (note: change bin version if you're upgrading from something other than below):pg_upgrade -v \ -d /usr/local/va..
용량이 큰 텍스트 또는 바이너리 파일을 분할하거나 재조립할 필요가 있을 때, split 명령과 cat 명령을 활용하면 되겠다. split 명령의 형식은 아래와 같다. split [options] file prefix 우선 텍스트 파일을 분할해 보자. 예를 들어 myfile.txt 파일을 100행 단위로 잘게 나누어 myfile_part로 시작되는 파일명으로 저장하는 경우다. 터미널창에서 아래와 같이 입력해 보자. -l 옵션으로 나눌 행(line) 단위를 지정하면 된다. split -l 100 myfile.txt myfile_part 나누어진 결과는 myfile_partaa, myfile_partab,... 이런 식으로 저장된다. 기본 순서가 aa, ab, ac 이런식으로 정해지는데 알파벳이 싫으면 수자를..
http://bdr-project.org/docs/stable/installation-source.html Postgres-BDR의 개발은 2011 년 말에 시작되어 2012 년 5 월 PgCon에서 시제품이 발표되었습니다. 거기에서 2nd Quadrant는 BDR v1을 전 세계에서 사용되는 강력한 강도의 생산 소프트웨어로 개발하기 시작했습니다. BDR v1은 2014 년 9 월 1 일부터 생산되었습니다. BDR v1은 PostgreSQL 9.4 포크입니다. BDR v2는 2017 년부터 사용되었습니다. BDR v2는 PostgreSQL 9.6의 확장으로 실행됩니다 BDR v3은 PostgreSQL 10의 향상된 기능을 활용하여 2018 년에 새로 출시되었습니다. BDR v3은 향후 개발을위한 주요 코..