일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- OSX
- OTP
- 앱스토어
- FIDO2
- git
- SwiftUI
- otpkey
- appres
- kmip
- fido
- Android
- 안드로이드
- openssl
- apple
- MSYS2
- MYSQL
- 앱리소스
- SWIFT
- 애플
- 인증
- WebAuthn
- Nodejs
- Xcode
- 2FA
- albumbook
- MFA
- css
- 앨범북
- SSH
- Today
- Total
목록분류 전체보기 (790)
인디노트
Mac 환경에서 MySQL 5.7.9 버젼 설치 후 root 접속 시도 시 패스워드 장애로 MySQL 접속이 불가능하다.#sudo /usr/local/mysql/support-files/mysql.server stop#sudo mysqld_safe --skip-grant-tables#mysql -u rootupdate mysql.user set password=password('2261bbs') where user='root'; 콘솔 윈도우에서 mysqld_safe 실행으로 safe 모드로 MySQL 데몬을 구동하고 다른 콘솔 윈도우를 띄어 MySQL에 접속한다.#mysql -u root접속 후 다음 명령어로 root 비밀번호를 업데이트한다. [5.7 이전 버젼]update mysql.user set p..
How to Install MySQL on CentOS 6Updated Wednesday, August 12th, 2015 by LinodeUse promo code DOCS10 for $10 credit on a new account. Try this Guide Contribute on GitHub View Project | View File | Edit FileMySQL is a popular database management system used for web and server applications. This guide will introduce how to install, configure and manage MySQL on a Linode running CentOS 6.This guide ..
아~~~ 정말... 예전에도 이것땜에 한참 헤맷는데 또 당했다. 그래서 여기 적어 놓는다. NSMutableDicrionary 를 상속받아서 사용시에 몇가지 abstract method 를 구현해주어야 한다. 그렇지 않고 사용시 "method only defined for abstract class" 라는 디버깅 메세지를 만날 것이다. 다음은 override 해야할 method 들이다. 1. NSMutableDicrionary setObject:forKey:removeObjectForKey: 2. NSDicrionary countobjectForKey:keyEnumerator 클래스 레퍼런스를 링크하였으니 각 클래스 레퍼런스의 "Overview" 에 "Subclassing notes" 를 참고하면 된다...
Javascript - 비밀번호 유효성 검사 ( password validation ) 1. 영문, 숫자 혼합하여 6~20자리 이내 function chkPwd(str){ var reg_pwd = /^.*(?=.{6,20})(?=.*[0-9])(?=.*[a-zA-Z]).*$/; if(!reg_pwd.test(str)){ return false; } return true;} if(!chkPwd( $.trim($('#mpassword').val()))){ alert('비밀번호를 확인하세요.₩n(영문,숫자를 혼합하여 6~20자 이내)'); $('#mpassword').val(''); $('#mpassword').focus(); return false; } ------------------------------..
핀테크 스타트업 캐시멜로 라는 회사에 입사를 하였다.전세계 화폐를 하나로 통합 할 수 있는 비전을 제시하고 있는 캐시멜로는 다양한 가능성을 내포하고 있다.아침에 출근을 하고 자리 정리하고 (아직 텅 빈 책상 이지만) 노트북을 켜고 와이파이 연결하고 약간은 설레임과 약간은 걱정스러움과... 이것저것 섞여있는 감정이 든다.창문밖에서 나는 자동차 소리밖에는 들리지 않는 조용하고 차분한 아침이다.내가 무슨 역할을 해야 할지는 계속 생각하고 있다.나는 프로그래머다. 프로그램 잘 만드는 일이 나의 소중한 할 일이다. 여기서의 나의 할일은 iOS 앱 개발이다.이제 인생을 좀더 천천히 생각해 볼 나이가 되었지만 세상은 너무 빨리 변하고 너무 빨리 앞서간다.따라가기도 바쁘겠지만 그래도 나의 경험이 도움이 될 수 있다면 ..
자연어 처리가 쉽지는 않다.현재까지 나온 자연어 처리 플랫폼은 아직 100% 라고 하지 못하고 있다. 물론 자연어 처리분야에서 100% 라는게 존재할 수 있을까.그것도 인간이 자연어를 해석하는 단계정도를 100% 로 가정하는 것이다.다음과 같은 단순한 문장을 이해하고 처리하는 인공지는 머신을 만들어 보려고 한다. 물론 이건 완전 초급이다. 하지만 모두 이렇게 시작하지 않을까?"나의 이름음 강규영 입니다."
구글이 자연어 처리(정확히는 자연어 이해)를 수행하는 코드인 SyntaxNet을 오픈소스로 공개하였습니다. 원문 글은 구글 Research Blog에 2016년 5월 12일에 업데이트되었습니다. 해당 블로그의 글을 한글화하여 포스팅합니다. 개인적으로, 어색하게 직역되어 무슨뜻인지 이해가 불가능한 글을 상당히 싫어합니다. 이 글은 제가 원문의 글을 파악하고 이해한 후에 그 문장을 익숙한 한국어 문장으로 다시 작성하였습니다. 그렇지만 원저자의 의도를 왜곡하지는 않았습니다. 구글 블로그 : http://googleresearch.blogspot.kr/2016/05/announcing-syntaxnet-worlds-most.htmlarXiv 논문 : http://arxiv.org/abs/1603.06042Git..
In my Android project in Github, linked below, you can find working code that allows to write on extSdCard in Android 5. It assumes that the user gives access to the whole SD Card and then lets you write everywhere on this card. (If you want to have access only to single files, things get easier.)Main Code snippletsTriggering the Storage Access Framework:@TargetApi(Build.VERSION_CODES.LOLLIPOP) ..
Lots of good questions, let's dig in. :)How do you use it?Here's a great tutorial for interacting with the Storage Access Framework in KitKat:https://developer.android.com/guide/topics/providers/document-provider.html#clientInteracting with the new APIs in Lollipop is very similar. To prompt the user to pick a directory tree, you can launch an intent like this: Intent intent = new Intent(Intent...
$ ln -s /Path/referenced/by/symlink symlink Git doesn't know about this file yet. git ls-files lets you inspect your index (-s prints stat-like output):$ git ls-files -s ./symlink [Nothing!] Now, add the contents of the symbolic link to the Git object store by adding it to the index. When you add a file to the index, Git stores its contents in the Git object store.$ git add ./symlink So, what wa..