일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- centOS7
- java
- C lanuage
- javascript
- caddy
- ubuntu
- 해석
- unity
- server
- 안드로이드
- C
- kakao
- techEmpower
- 컴퓨터과학총론
- mariadb
- 번역
- 자바
- error
- MySQL
- 개발
- NGINX
- php
- 프래그먼트
- 한글
- 개발자
- 구글
- android
- H2O
- it
- Portfolio
- Today
- Total
목록TheRestDevelop (46)
개발모음집
보호되어 있는 글입니다.
ViewController.swift class ViewController: UITableViewController {.... @IBAction func vidision(_ sender: Any) { let alert = UIAlertController(title: "원하는 타이틀", message: "원하는 메세지", preferredStyle: .actionSheet) let cancel = UIAlertAction(title: "취소", style: .cancel, handler: nil) alert.addAction(cancel) present(alert, animated: true, completion: nil) }} 출처 : https://zeddios.tistory.com/111?catego..
보호되어 있는 글입니다.
보호되어 있는 글입니다.
button을 누르면 delteCheckModal이 동작합니다. 게시글 삭제 deletecheckmodal 정말로 삭제하시겠습니까? × '삭제'버튼을 누르면 해당 게시글이 삭제됩니다. 정말로 삭제하시겠습니까? 삭제 닫기 데이터 넘기는 제이쿼리 코드
보호되어 있는 글입니다.
Download, build and install Build Utilities sudo apt-get install build-essential libpcre3 libpcre3-dev libssl-dev Make and CD to build directory (home) sudo mkdir ~/build && cd ~/build Download & unpack latest nginx-rtmp (you can also use http) sudo git clone git://github.com/arut/nginx-rtmp-module.git Download & unpack nginx (you can also use svn) sudo wget http://nginx.org/download/nginx-1.12...
from wordcloud import WordCloud from os import path def wordCloud(self): # Read the whole text. text = open(path.join(FILE_PATH, '파일명.txt')).read() # Generate a word cloud image wordcloud = WordCloud().generate(text) import matplotlib.pyplot as plt plt.figure() plt.imshow(wordcloud, interpolation="bilinear") plt.axis("off") plt.show()