일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SSL
- appres
- SSH
- Android
- 2FA
- Nodejs
- 앨범북
- SWIFT
- git
- OSX
- 앱스토어
- otpkey
- 애플
- MSYS2
- MFA
- css
- MYSQL
- fido
- apple
- 인증
- openssl
- albumbook
- 안드로이드
- OTP
- kmip
- 앱리소스
- Xcode
- SwiftUI
- FIDO2
- WebAuthn
- Today
- Total
목록분류 전체보기 (790)
인디노트
https://graspingtech.com/vmware-fusion-add-network-adapter/ VMware Fusion: How to add an extra Network Adapter to a Ubuntu VM - GraspingTech This tutorial will show you how to add extra network adapters to VMware Fusion VMs with an example of how to configure them in Ubuntu once added. When you first create a Windows or Ubuntu VM with VMware Fusion*, you’ll notice it has a single network adap gr..
cd git init git add . git commit -m 'message' git remote add origin git push -u origin master
Go Preferences -> Settings Search for C_Cpp.clang_format_fallbackStyle Click Edit, Copy to Settings Change from "Visual Studio" to "{ BasedOnStyle: Google, IndentWidth: 4 }" 이렇게 하면 void abc() { .... .... } 의 형식으로 된다. 참조 : https://stackoverflow.com/questions/45823734/visual-studio-code-formatting-for Visual Studio Code formatting for "{ }" I'm on Ubuntu. C++ in Visual Studio Code automatically li..
#! /bin/sh /usr/bin/vmhgfs-fuse .host:/{sharedname} {mount path} -o subtype=vmhgfs-fuse,allow_other
다음 내용을 추가로 설치해 주면 된다 pacman -S --needed base-devel mingw-w64-i686-toolchain mingw-w64-x86_64-toolchain git subversion mercurial mingw-w64-i686-cmake mingw-w64-x86_64-cmake
어카운트 (계좌) 확인하기 personal.listAccounts 어카운트 계좌 밸런스 확인 eth.getBalance(personal.listAccounts[0]) 신규 계좌 생성 personal.newAccount() 계좌 삭제 keystore 에 있는 UTC--... 파일을 삭제 채굴시 보상받는 계정 miner.setEtherbase(personal.listAccounts[0]) 계정 잔액 조회 eth.getBalance(eth.accounts[0]); Wei 단위로 조회 web3.fromWei(eth.getBalance(eth.coinbase), "ether") coinbase 는 현재 지정된 보상받는 계정을 뜻함 생성된 블록 수 조회 eth.blockNumber 0 번째 블록 정보 출력 eth...
윈도우에 이더리움을 설치후 geth attach 를 실행하는 경우 다음과 같은 에러가 발생하여 attach 가 되지 않는다. >geth attach Fatal: Unable to attach to remote geth: no known transport for URL scheme "c" 다음과 같이 실행 방식을 바꿔보자 geth.exe attach ipc://./pipe/geth.ipc 이렇게 하면 정상적으로 실행된다. 바로가기 아이콘의 속성을 다음과 같이 바꿔 놓는것도 좋은 방법니다. geth attach 가 정상적으로 실행된 모습
OS X 를 업데이트 했더니 외장 모니터가 30Hz 까지만 지원된다. 이런... 30Hz 로 두면 마우스 움직임 들이 뜻뜻미지근하게 움직임이 약하자. 다음과 같이 최대 30Hz 만 된다. 어떻하지? 그래서 어떻게든 60Hz 로 해야 하는데 인터넷에서 검색해 보면 다음과 같은 내용이 있다. EasyRes (앱스토어에 있는 무료 앱) 를 설치하면 해결된다. Try EasyRes app from the app store. One of my 4K monitors get 30Hz when I connect 2 4K monitors to my MacBook pro. The 2 monitors works fine together on Windows. Apple Support doesn't help. EasyRes f..
https://frozenpond.tistory.com/49 [wpf] Gird, StackPanel 레이아웃 사용법 및 예제(구글메인 페이지 따라 만들기) WPF에서 레이아웃을 구성하는 방법에는 Grid, StackPanel, DockPanel Canvas 등이 있습니다. 이번 게시글에서는 Grid와 StackPanel 사용법에 대해 정리합니다. 1. Grid Grid는 보통 화면을 분할하여 사용하며 자식. frozenpond.tistory.com
DLL 의 함수를 C# 에서 연결하는 방법 DLL 코드 C 코드 __declspec(dllexport) void __cdecl Function1(void) { } __declspec(dllexport) int __cdecl Function2(void) { return 100; } __declspec(dllexport) char* __cdecl Function3(void) { return "Function3"; } __declspec(dllexport) void __cdecl Function4(char *from, char **to) { memcpy(*to, from, (int)strlen(from)+1); } H 코드 #ifdef _cplusplus extern "C" { #endif // _cplusp..