일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- javascript
- pycharm
- index
- keras
- GT-S80
- E-P1
- RNN
- SPL
- DFS
- install
- imread
- SciPy
- dataframe
- Splunk
- 삼성소프트웨어멤버십
- ipad
- synology
- mean
- Button
- Lotto
- Python
- GitHub
- CNN
- Numpy
- LSTM
- pandas
- Series
- pip
- mariadb
- 알고리즘
- Today
- Total
목록잠토네 잠수함 (493)
잠토의 잠망경
gotypes.py github import enum #tag::color[] class Player(enum.Enum): black = 1 white = 2 @property def other(self): return Player.black if self == Player.white else Player.white #end::color[] #tag::points[] from collections import namedtuple class Point(namedtuple('Point', 'row col')): def neighbors(self): return[ Point(self.row-1, self.col), # A A Point(self.row+1, self.col), # ..
brief category tag 주요 내용 html lang lang="ko" head title 아래 참고 제목 head meta meta charset="UTF-8" 인코딩 방식 body h1 제목, 크기 설정됨 body h1 제목, 크기 설정됨 body p 문장 body br 줄바꿈 body strong 강조, bold body b 강조, bold body em, i 이태릭체 body hr split body span 문장 그룹 color body ul, li unordered list, 순서 없는 목록 body ol, li ordered list, 순서 없는 목록 body ol, li start="5" 시작 순서 주기 body dl, dt, dd 특정 항목과 설명을 한 set으로 묶어서 표시 b..
one dark pro 를 설치해보자 도구(tools) → 옵션(option) → 환경 → 색 테마 one dark pro (별로임) 함수가 보이지 않아서 실망 어둡게(그나마)
문자열 바꾸기 방법 github 기초 data datas = pd.DataFrame({'col1': [' ab_c_d_e_', 'b: cd', 'cde_ '], 'col2': ['a', 'a', 'c'], 'col3': [1, 2, 3], 'mydate': [pd.to_datetime('20200402'), pd.to_datetime('20200501')-pd.DateOffset(days=5), pd.to_datetime('20200502')] }, index=[0, 1, 2]) Replace 방식 def f_pandas_replace(datas:DataFrame): print(datas.info()) print(datas['col1'].str) print(datas['col1'].str.replace(..
mariadb를 사용하다 보면 timestamp 오류가 발생할 경우가 있다. AttributeError: 'Timestamp' object has no attribute 'translate' 해당 오류가 발생할 경우 해결책 datas = pd.DataFrame({'col1': [' ab_c', 'b: cd', 'cde_ '], 'col2': ['a', 'a', 'c'], 'col3': [1, 2, 3], 'mydate': [pd.to_datetime('20200402'), pd.to_datetime('20200501')-pd.DateOffset(days=5), pd.to_datetime('20200502')] }, index=[0, 1, 2]) print(datas.info()) 다음과 datetime6..
※ 주의 exploer로 하면 잘되고 whale로 하면 안된다. 1. Test할 app을 만든다. app 이름은 MyApp01으로 하며 경로는 myapp01이다. 2. javascipt를 아래 경로에 만든다. 폴더가 없다면 만든다. C:\Program Files\Splunk\etc\apps\myapp01\appserver\static 3. javascript 내용은 아래와 같이 넣는다. C:\Program Files\Splunk\etc\apps\myapp01\appserver\static\helloworld.js alert("hello world"); 4. splunk를 재붓팅한다. 5. MyApp01 클릭 6. 편집 클릭 7. 원본 클릭 8. 수정 부분은 여기다. 9. 수정을 해보자 script="he..
splunk spl 내에서 db에 임의의 값을 insert하는 방법에 대해서 논해보고자 한다. 1. table이 준비되어 있는지 확인한다. 2. splunk DB Connect로 이동한다. 3. outputs로 이동한다. 4. sample SPL을 넣어준다. | makeresults | eval S_DATE = "2020516", C_NAME = "SAMPLE", S_VOLUME=1000 5. 대상 db table 정보를 넣어주고 클릭 6. SPL과 Table Column을 Mapping해준다. 7. 해당 Command의 이름을 지정해준다. 아래 주의 ※ 오류: 애플리케이션이 Splunk DB Connect일 경우 정상적으로 동작하지 않았다. 근데 또 원복하니 된다. ㅡㅡ; 뭐지 8. Sample Tes..