분류 전체보기
-
Integrate with MySQLPrograming/Django 2020. 3. 28. 11:50
1. 왜 MySQL 인가? 현업때 사용하던 sqlite3도 있지만 웹 어플리케이션 기획단계에서 가능하다면 많이 사용되고 있는 데이터베이스를 사용해 보고 싶었다. 2. 설치하기 아래 링크를 따라하면 간단하게 설치가 가능하다. https://django-mysql.readthedocs.io/en/latest/installation.html Requirements and Installation — Django-MySQL 3.3.0 documentation Extending your QuerySets Half the fun features are extensions to QuerySet. You can add these to your project in a number of ways, depending on w..
-
[Target] Conference & JournalsSecurity in CPS/PhD in UQ 2020. 3. 19. 10:38
Conferences A*: ACM CCS, IEEE S&P, NDSS, USENIX SEC A: DSN, ESORICS, ACSAC, TrustCom, RAID B: SEC, ARES Journals IEEE Trans: Computer, TDSC, Forensics, Rel., ACM Trans: System Sec, Elsevier: CAMWA, Com&Security, Com Nets, ComCom Others: Wiley SCN Core Rank http://portal.core.edu.au/conf-ranks/ http://portal.core.edu.au/conf-ranks/ Back to CORE homepage | search journals CORE2018 Summary: A* - 4%..
-
[tshark] a network protocol analyzerSecurity in CPS/Networking 2020. 2. 25. 14:36
https://www.wireshark.org/docs/man-pages/tshark.html tshark - The Wireshark Network Analyzer 3.2.1 Set capture buffer size (in MiB, default is 2 MiB). This is used by the capture driver to buffer packet data until that data can be written to disk. If you encounter packet drops while capturing, try to increase this size. Note that, while Tshark attempts www.wireshark.org tshark 은 tcpdump와 실시간 네트워..
-
[R] Plotly 에서 marker 사용하기Programing/Data Science 2020. 2. 24. 13:18
https://plot.ly R를 사용해 데이터에 대한 그래프를 그려야할 때가 있는데요. 기존에는 ggplot2 라이브러리를 사용하고 있었는데 친구의 추천으로 plotly를 사용해 보았습니다. plotly 라이브러리의 특징으로는 우선 사용하기 쉽고 다양한 언어(R, Python and Matlab)를 지원하고 있습니다. 그리고 html 포맷으로 plot한 그래프를 export 할 수 있는데 마우스의 움직임에 따라 해당 데이터의 값이 주석으로 표시되는데 주석이 표시되는 위치나 포맷을 사용자가 원하는 대로 수정이 가능합니다. 그리고 확대/축소 기능으로 특정 데이터나 그래프의 일부분을 원하는 크기로도 볼 수 있습니다. Plotly사이트에는 2D, 3D 등 다양한 종류의 예제 코드를 제공하게 있어서 쉽게 따라할..