Skip to content

Instantly share code, notes, and snippets.

View hakunamta00700's full-sized avatar

hakunamta00700

View GitHub Profile
@hakunamta00700
hakunamta00700 / summary_using_llm_prompt.txt
Created May 12, 2025 06:43
유튜브 요약하는 프롬프트
다음은 유튜브 영상의 전체 또는 일부 대본입니다. 이 대본의 내용을 먼저 분석하고, 다음 절차에 따라 정리해줘:
---
# 📂 **1단계 – 대본의 성격 판별**
다음 중 어떤 유형인지 판단해줘:
- (A) 실용 정보/방법/노하우 제공형
- (B) 뉴스/정치/사건/이슈 전달형
- (C) 감성 서사형(스토리텔링, 경험 공유, 에세이형)
- (D) 토론형
@hakunamta00700
hakunamta00700 / django-runserver-ssl.md
Last active December 13, 2018 05:18 — forked from claudiosanches/django-runserver-ssl.md
Django - SSL with runserver

Instalation

[sudo] apt-get install stunnel

Configuration

cd path/to/django/project
@hakunamta00700
hakunamta00700 / qround_progress_bar.py
Created November 21, 2018 01:36
Round Progress Bar in PyQt
# original source : https://stackoverflow.com/questions/33577068/any-pyqt-circular-progress-bar
# but it was pyqt4
# I modified it for PyQt5
from PyQt5 import QtCore, QtGui, Qt, QtWidgets
import sys
class QRoundProgressBar(QtWidgets.QWidget):
StyleDonut = 1
StylePie = 2
@hakunamta00700
hakunamta00700 / chartjs-ipython.py
Created September 6, 2016 07:02 — forked from fabriziopandini/chartjs-ipython.py
Using ChartJs from IPython
import json
from IPython.display import display, Javascript
def chartjs(chartType, data, options={}, width="700px", height="400px"):
""" Custom iphython extension allowing chartjs visualizations
Usage:
chartjs(chartType, data, options, width=1000, height=400)
Args: