分类 Technology 中的文章
My blog used the lnmp program to build the web environment, but when I needed to use mysql, I found that the lnmp installation log file was missing and the mysql root password was forgotten. I remember that the lnmp was installed by pressing Enter all the way, and the default lnmp password is lnmp.org# plus 5 random numbers, with only 100,000 possibilities. In this case, brute-forcing 100,000 times will definitely find the password.……
Deploying an SSH Honeypot with Docker to Record SSH Login Passwords
This guide shows how to move the real SSH service to a new port and deploy a Docker-based SSH honeypot on port 22 to collect brute-force logs for defensive analysis.……
10 Tips to Improve Your Python Data Analysis Skills
This article collects 10 practical tips for Python data analysis and Jupyter Notebook workflows, including dataset profiling, interactive plotting, notebook magics, debugging, and a few time-saving shortcuts.……
Serialization and Deserialization in Python
This article explains the basics of Python serialization and deserialization with
pickle, including file-based examples, dumps() and loads(), and one important safety warning for real-world use.……
Python Data Visualization - The Post-2000 Gaokao Generation
This tutorial uses Gaokao exam data to build bar charts, line charts, and a China map with Python, giving a practical starter workflow for
charts and pyecharts.……
Parallelism in One Line of Python Code
This article shows how Python
map combined with thread or process pools can make simple parallelism much lighter for everyday scripts, especially with multiprocessing.dummy for IO-bound work.……
Longest Palindromic Substring Algorithm - Manacher
This article explains Manacher’s algorithm for the longest palindromic substring problem, including the transformed string idea and the
Len array that allow it to run in $O(n)$ time.……
Finding Common Values in Two Python Lists
This article compares several common ways to find shared values between two Python lists and explains which methods remove duplicates and which ones preserve list order.……
Python Implementation of Classic Sorting Algorithms (1)
This article introduces five classic sorting algorithms in Python, including bubble sort, selection sort, insertion sort, shell sort, and merge sort, with code examples and complexity-oriented explanations for beginners.……
Faceswap Training Resource Acquisition and Processing
Following the previous article, “Faceswap Deep Learning AI for Video Face Swapping Explained,” everyone has learned how to perform face replacement in videos using AI through model training.……
Detailed Examples of Seaborn Plotting Kernel Density Curves
In a frequency distribution histogram, when the sample size is sufficiently enlarged to its limit, and the bin width is infinitely shortened, the step-like broken line in the frequency histogram will evolve into a smooth curve. This curve is called the density distribution curve of the population.
This article walks through how to use Seaborn with the Iris dataset in Pandas to plot several common kinds of kernel density curves.
1. Basic Density Curve
import seaborn as sns
import pandas as pd
sns.set(color_codes=True)
sns.set_style("white")
df = pd.read_csv('iris.csv')
sns.kdeplot(df['sepal_width'])

To plot a kernel density curve using Seaborn, you only need to use kdeplot. Note that a density curve only requires one variable; here we choose the sepal_width column.
2. Density Curve with Shading
import seaborn as sns
import pandas as pd
sns.set(color_codes=True)
sns.set_style("white")
df = pd.read_csv('iris.csv')
sns.kdeplot(df['sepal_width'], fill=True)

In recent Seaborn versions, fill=True is the clearer way to draw the shaded area.
Detailed Explanation of Faceswap Deep Learning AI for Video Face Swapping
Chunjing Muke will introduce the super popular black technology application deepfake, an app that achieves face swapping in images and videos.……
最新文章
- Prevent Data Leakage in Protein Datasets with Grouped Splits
- Audit Protein FASTA Files with Python Before Generating Embeddings
- Protein ML in Python: Build an Amino Acid Composition Baseline
- nanoBERT and VHHBERT: A Practical Guide to Nanobody Language Models
- TRON Wallet Desk: Turn Python Wallet Scripts into a Desktop App
- ESM Model Family Explained: ESM-2, ESM C, ESMFold2, and ESM3
- From Protein Language Models to CoFoldArena: How to Evaluate Predictions
- Protein Language Models for Antibodies: Choose Models and Test Them Fairly
- Protein Language Models: Extract ESM-2 Embeddings with Python
- Ollama Structured Outputs: Turn Notes into Validated JSON with Python
标签
1024
ablang
adsense
agents.md
ai
ai-agent
ai-seo
algorithm
amp
antibodies
automation
background
bioinformatics
blockchain
bootstrapping
boxes
c-index
cca
cdn
cli
cloudflare
codex
cofoldarena
copy
cpu monitoring
cuda
curl
data-leakage
data-quality
datascience
datavisualization
deployment
desktop-app
devtools
disown
docker
dovecot
download
economics
electron
esm2
esm3
esmc
esmfold2
fable
faceswap
fasta
fastmcp
ffmpeg
flask
folium
frontend
game
generator
git
github-actions
google
grep
hls
http
hugo
indexnow
javascript
json
just
k-means
kaggle
langfuse
leecode
linux
list
litellm
llm
llms.txt
logs
lollipop
m3u8
machine-learning
macos
manacher
matplotlib
mcp
mirror
mp3
mp4
multiomics
mutation
mysql
nanobert
nanobodies
networkx
nginx
normalize
ollama
password
pep-723
phaser
pillow
pip
postfix
preprocessing
print
probability
protein-language-models
protein-structure
proxy
pydantic
pyecharts
pyqt
python
python3
r
raincloud
requests
rg
ripgrep
roundcube
rsync
s-tui
sampling
scale
scikit-learn
scrapy
screen
seaborn
security
seo
sklearn
solana
somaticsignatures
spl
ssh
standardize
static-site
tensorflow
tkinter
trade
tron
tronpy
turtle
usdt
uv
vhhbert
vite
wallet
webp
wordcloud
wordpress
workflow
yaml
迅雷解析