'2020/01/19'에 해당되는 글 5건

  1. 2020.01.19 출근길 일기? 2
  2. 2020.01.19 시소러스 (thesaurus)
  3. 2020.01.19 kvm cpuinfo proc hide
  4. 2020.01.19 node.js cookie 관련 함수들
  5. 2020.01.19 node.js crypto 모듈

아부지 차를 빌려서 배터리나 방전 시켜서

후다닥 충전하고 반납하러 가는 길에 라디오를 들었는데

굿모닝 FM장성규입니다. 일요뮤직드라마에 폭 빠져 버렸다.

 

근데 오늘 내용 자체만으로는 전여친,남친의 결혼식에서 만난

전여친의 남친, 전남친의 여친끼리 눈이 맞아버린 이야기인데

막장인듯 하면서도 무슨 상관있냐라는 느낌

 

아무튼 그 5분? 10분 못들은것 때문에

mbc mini 까지 받아서 다시 들으려고 이 시간까지 기다리다가 겨우 다시 듣네

 

그나저나 오랫만에 라디오를 들으니 좋긴 좋구나..

 

나에게 필요한건

사람의 따스함이 느껴지는 목소리였던걸까..

Posted by 구차니

동의어 유의어 반의어 사전.

음성인식에서 시소로우 라고 하길래 찾아보니 같은건지 다른건진 모르겠다.

아무튼 유의어 들을 음성인식

 

[링크 : http://www.terms.co.kr/thesaurus.htm?ckattempt=1]

[링크 : https://ko.dict.naver.com/seo.nhn?id=23502100]

[링크 : https://blog.naver.com/sgjjojo/221272842350]

[링크 : https://en.wikipedia.org/wiki/Thesaurus]

[링크 : https://terms.tta.or.kr/dictionary/dictionaryView.do?subject=시소러스]

Posted by 구차니

hypervisor에서 설정에 따라 /proc/cpuinfo 의 내용을 숨길수 있는 것으로 보인다.

 

 

[링크 : https://amp.reddit.com/.../6qn7sk/is_it_possible_to_hide_a_vm_from_being_detected/]

'프로그램 사용 > kvm(virt-manager)' 카테고리의 다른 글

중첩가상화  (0) 2023.06.16
kvm ubuntu Xorg cpu 100% 문제  (0) 2019.10.10
kvm/qemu 로그 위치  (0) 2019.10.07
kvm core 을 guest에 할당하기(affinity)  (0) 2019.08.28
virsh host only network  (0) 2019.07.09
Posted by 구차니
Programming/node.js2020. 1. 19. 17:17

쿠키를 삭제한다. 단 삭제만 하고 어떠한 응답을 주는것이 아니기에

redirection 등을 추가로 해주어야 클라이언트에서 작동을 인식한다.

res.clearCookie(name [, options])
Clears the cookie specified by name. For details about the options object, see res.cookie().

Web browsers and other compliant clients will only clear the cookie if the given options is identical to those given to res.cookie(), excluding expires and maxAge.

res.cookie('name', 'tobi', { path: '/admin' })
res.clearCookie('name', { path: '/admin' })

[링크 : https://expressjs.com/ko/api.html]

[링크 : https://victorydntmd.tistory.com/35]

 

 

아래 블로그의 path는 optional 이기에 굳이 넣어주지 않아도 된다.

app.get('/logout', function(req,res) {
    res.clearCookie(key);
});

 

app.get('/logout', function(req,res) {
    res.clearCookie(key, {path:'/path'});
});

[링크 : https://kwanghyuk.tistory.com/90]

'Programming > node.js' 카테고리의 다른 글

node.js 집합연산  (0) 2020.01.23
node.js promise  (0) 2020.01.20
node.js crypto 모듈  (0) 2020.01.19
node.js xpath 그리고 boolean  (0) 2019.12.17
node.js JWT with refresh token  (0) 2019.12.10
Posted by 구차니
Programming/node.js2020. 1. 19. 16:42

DB에서 하는거나 was에서 하는거랑 좀 차이가 있다면 있을수 있지만

postgresql의 경우 crypto 모듈을 설치해야 하는 문장 하나를 관리해줘야 하니

보안상 문제나 구조적 문제가 없다면 WAS에서 처리하는 것도 나쁘진 않다는 생각이 든다.

 

crypto 모듈은 기본 모듈이라 npm install을 해주지 않아도 된다.

const crypto = require('crypto');

const secret = 'abcdefg';
const hash = crypto.createHmac('sha256', secret)
                   .update('I love cupcakes')
                   .digest('hex');
console.log(hash);
// Prints:
//   c0fa1bc00531bd78ef38c628449c5102aeabd49b5dc3a2a516ea6ea959d6658e

 

[링크 : https://nodejs.org/api/crypto.html]

 

+

[링크 : https://victorydntmd.tistory.com/33]

'Programming > node.js' 카테고리의 다른 글

node.js promise  (0) 2020.01.20
node.js cookie 관련 함수들  (0) 2020.01.19
node.js xpath 그리고 boolean  (0) 2019.12.17
node.js JWT with refresh token  (0) 2019.12.10
node.js synchornous file write  (0) 2019.11.06
Posted by 구차니