ASCII-Generator.site generates ASCII artistic character map online
What is ASCII-Generator.site?
ASCII-Generator.site is a Django website for generating ASCII art character maps from images or text 🎨
What is Django?
Django is a free and open source WEB program framework written in Python, which adopts the framework mode of MTV, namely model M, view V and template T. It can help you develop WEB si ...
Posted by rajns on Thu, 18 Nov 2021 23:20:35 -0800
Overall scheme of dispatching center [internal customized transformation based on XXL job]
Overall scheme of dispatching center
XXL job transformation
target
Our dispatching center is generally built in the spring environment. The native support scheme of XXXL job requires @ xxxjob ("xxx") annotation. However, our self-developed scheduling center supports scheduling by configuring beans and bean methods (methods can ...
Posted by uktrips007 on Wed, 17 Nov 2021 18:00:04 -0800
LCD1602 displays temperature symbols based on Arduino
LCD1602 display is based on Arduino
This article mainly introduces the Arduino control LCD1602 display, specific hardware knowledge, working principle and sequence diagram. Many great gods have analyzed it in detail on the Internet, such as Reference I https://blog.csdn.net/Lucifer_min/article/details/112133408 Reference II https://blog.csdn ...
Posted by skypilot on Tue, 16 Nov 2021 02:41:03 -0800
You get video music download in python
Recently, I want to download video and music resources, but I can't download them, which annoys me.
So I found a way to download video and music. Now follow me!
The protagonist is you get, which is implemented through python script and presented through GUI, which is convenient for people who can't program.
You get is an open-source third-pa ...
Posted by deltawing on Thu, 11 Nov 2021 09:38:52 -0800
Batch replace string specified in MarkDown document
Batch replace string specified in MarkDown document
preface
Recently, I bought a new computer. It took almost a weekend to upgrade various configurations. At the same time, I want to import the previous blog documents. Because the blog documents are written in Typora, and the pictures are also stored locally. After the picture path change ...
Posted by Chesso on Mon, 08 Nov 2021 00:07:45 -0800
smartctl command disk detection and operation of Linux
Knowledge introduction
SMART is a disk self analysis and detection technology, which has been basically popularized as early as the late 1990s Each hard disk (including IDE and SCSI) will record its own parameters when running These parameters include model, capacity, temperature, density, sector, seek time, transmission, bit error rate, etc A ...
Posted by binarylime on Sat, 06 Nov 2021 06:07:19 -0700
Arthas online java process diagnosis tool online debugging artifact
tag: java diagnostic stack online debugging time-consuming deadlock arthas Alibaba
Arthas
Arthas is an open source Java diagnostic tool of Alibaba, which is deeply loved by developers.
Official website documents: https://arthas.aliyun.com/doc/
When you encounter the following similar problems and are helpless, Arthas can help you solve them:
...
Posted by betportal on Thu, 04 Nov 2021 08:51:39 -0700
Python installation guide anaconda, python, Jupiter
1, Anaconda installation
setup script
Download installer
https://www.anaconda.com/products/individual
After downloading, click anaconda3-2019.07-windbos-x86_ 64.exe to install, select the path, check the add environment variable (you don't need to configure it yourself), and wait for the installation to complete
Verify that the install ...
Posted by mrjonnytou on Sun, 31 Oct 2021 04:16:18 -0700
Fast RCNN code operation record
For your reference and study, if you have any questions, welcome to exchange and correct!
  first, there are installed anaconda, pytorch 1.0 and cuda on the laboratory server. First, apply for an account with the administrator and enter the account folder according to the account password.
1. Remote connection server ssh(VScode)
I ...
Posted by Ruiser on Thu, 28 Oct 2021 11:56:51 -0700
Linux system shell script and python script writing
GPU queuing script
python script
GPU queuing script ---- once the GPU is idle, the script execution program is triggered
reference resources: Â GPU queuing script (python script)
cmd = 'bash run.sh' this sentence sets the python script to execute
import os
import sys
import time
cmd = 'bash run.sh' #Set script to run
def gpu_info(): ...
Posted by Wakab on Wed, 20 Oct 2021 10:54:07 -0700