일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 쿠버네티스
- OpenStack
- 도커
- docker
- 실습
- kubernetes
- express
- node.js
- 클라우드
- IaaS
- worker
- 개념
- Docker Swarm
- network
- PaaS
- Docker-compose
- MongoDB
- 이론
- mysql
- 네트워크
- RAID
- nodejs
- RAPA
- gns3
- 명령어
- Javascript
- git
- 용어정리
- PAT
- dockerfile
- Today
- Total
목록프로그래밍 (173)
융융이'Blog
1. 문제 정의 주제 : 댓글 악설 댓글 및 욕설 필터링 주제 선정 이유 위 과 같이 악성 댓글에 대한 사회적 이슈가 항상 있어 왔습니다. 이러한 문제들은 익명성 아래에 작성자들이 도를 넘는 악성 댓글을 달고 근거 없는 비방글, 인신 공격성 악성 댓글를 작성함으로써 상대방에게 정신적인 피해를 입히고 있습니다. 또한 이로 인하여 피해자는 극단적인 선택을 하여 자살을 초래할 정도로 심각한 사회문제가 되기도 하였습니다. 현재는 위 와 같은 방법으로 악성 댓글에 대한 사용자들이 직접 신고하는 방식으로 필터링을 하거나 특정 단어에 대한 필터링을 하고 있습니다. 이와 같은 방법은 효율적인 필터링이 되지 않을 뿐만 아니라 이용자들의 신고에 대한 피드백이 없어 반복적인 신고가 필요한 현시점입니다. 와 같이 댓글을 작성..
message = await api.post('/auth/check', {} ,{headers: {'token': `${token}`}}) 세번째 인자 값으로 헤더값을 추가하면 된다.
toggleEdit = (e) => { console.log(e.currentTarget.getAttribute('youtuber_id')); this.setState({ edit: !this.state.edit, }); } 이처럼 getAttribute('') 메소드를 통하여 불러오면 됩니다~
import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { Card, CardBody, Progress } from 'reactstrap'; import classNames from 'classnames'; import { mapToCssModules } from 'reactstrap/lib/utils'; const propTypes = { header: PropTypes.oneOfType([ PropTypes.number, PropTypes.string ]), icon: PropTypes.string, color: PropTypes.string, value: PropTypes.string, children:..
... state ={ id: '', name: '', category: '', error: '', checkID: false } ... handleChange = (e) =>{ const { value, name } = e.target; this.setState( {[name]: value}); } ...
https://github.com/coreui/coreui-free-react-admin-template/
순서는 매우 간단하다. 1. react app을 만든다. $ npm install -g create-react-app $ create-react-app myapp $ cd myapp $ npm start //프로젝트 배포형 $ npm run build 2. firebase cli를 설치한다. $npm install -g firebase-tool 3. firebase 설정 및 배포를 해준다.(미리 firebase Console에 들어가 프로젝트를 만들고 cli에서 해당 프로젝트에서 배포를 하면된다.) $firebase login $firebase init $firebase deploy 참고 : https://www.freecodecamp.org/news/react-and-firebase-are-all-yo..
[debug] [2020-02-15T08:04:41.053Z] > refreshing access token with scopes: ["email","https://www.googleapis.com/auth/cloud-platform","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","openid"] [debug] [2020-02-15T08:04:41.054Z] >>> HTTP REQUEST POST https://www.googleapis.com/oauth2/v3/token [debug] [2020-02-15T08:04:41.587Z] > HTTP REQUES..