일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- RNN
- imread
- mariadb
- keras
- 삼성소프트웨어멤버십
- LSTM
- dataframe
- DFS
- synology
- install
- pandas
- Splunk
- mean
- Button
- pycharm
- Lotto
- javascript
- CNN
- E-P1
- SPL
- pip
- index
- Python
- Numpy
- ipad
- 알고리즘
- GT-S80
- Series
- GitHub
- SciPy
- Today
- Total
목록전체 글 (493)
잠토의 잠망경
jupyter note to python code jupyter nbconvert --to script 파일이름.ipynb
https://www.geeksforgeeks.org/searching-algorithms/ Searching Algorithms - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org 검색알고리즘이란? 1. Sequential Search(순차검색) 2. Interval Search(간격검색) 전제 : 정렬 탐색 알고..
private MaterialLabel materialLabel1; private MaterialLabel materialLabel2; private void button1_Click(object sender, EventArgs e) { this.materialLabel1.BackColor = System.Drawing.Color.Green; }
DataFrame to_csv시 Append 처음에는 w option을 줘서 생성한다. 이후에는 a option을 줘서 추가한다. def saveDataDataFrame(datas:DataFrame): import os if not os.path.exists('number_bin.csv'): datas.to_csv('number_bin.csv', index=False, mode='w', encoding='utf-8-sig') else: datas.to_csv('number_bin.csv', index=False, mode='a', encoding='utf-8-sig', header=False)
Event TextBox 입력후 Enter로 조회하고 싶을때 아래와 같이 MVVM 사용하면 된다. View ViewModel public void UIElement_OnKeyDown(object sender, KeyEventArgs e) { //https://stackoverflow.com/questions/3752451/enter-key-pressed-event-handler if (e.Key == Key.Enter) { CommandSearchFunction(); } }
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" xmlns:ei="clr-namespace:Microsoft.Expression.Interactivity.Core;assembly=Microsoft.Expression.Interactions" // main public void Control_OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e) { CallbackFunction(SelecedItem); }
https://stackoverflow.com/questions/9099497/how-to-extract-highlighted-parts-from-pdf-files from typing import List, Tuple import fitz # install with 'pip install pymupdf' def _parse_highlight(annot: fitz.Annot, wordlist: List[Tuple[float, float, float, float, str, int, int, int]]) -> str: points = annot.vertices quad_count = int(len(points) / 4) sentences = [] for i in range(quad_count)..
https://global.download.synology.com/download/Document/Software/DeveloperGuide/Package/DownloadStation/All/enu/Synology_Download_Station_Web_API.pdf sample01 http://synologyaddress:myport/webapi/query.cgi?api=SYNO.API.Info &version=1 &method=query &query=SYNO.API.Auth,SYNO.DownloadStation.Task{"data":{"SYNO.API.Auth":{"maxVersion":7,"minVersion":1,"path":"entry.cgi"}},"success":true}참고: https://..