Font-type display of dot-matrix Chinese characters on Linux
I Chinese Character Dot Matrix Font Library
Code
Location Code _In the national standard GD2312-80, all Chinese characters and symbols are assigned to a square array of 94 rows and 94 columns. Each row of the square array is called a "zone", numbered from 01 to 94, and each column is called a "bit", numbered from 01 ...
Posted by weekenthe9 on Fri, 12 Nov 2021 11:58:38 -0800
mysql database exercise two
Student table: Chart of Accounts: Achievement Sheet: Data modification and deletion: 1. Renew the address of Xi'an City to Xi'an Science and Technology Second Road 2. Modify the email of S1001 to an empty string 3. Update the name of the second course to java basics, with 60 hours and a second grade class 4. Increase the S1001 and course numbe ...
Posted by kiss-o-matic on Fri, 12 Nov 2021 11:59:02 -0800
Ctfshow web getting started - command execution
web29
The source code is:
<?php
/*
# -*- coding: utf-8 -*-
# @Author: h1xa
# @Date: 2020-09-04 00:12:34
# @Last Modified by: h1xa
# @Last Modified time: 2020-09-04 00:26:48
# @email: h1xa@ctfer.com
# @link: https://ctfer.com
*/
error_reporting(0);
if(isset($_GET['c'])){
$c = $_GET['c'];
if(!preg_match("/flag/i", $c)){
...
Posted by designxperts on Fri, 12 Nov 2021 11:56:51 -0800
Python basic syntax (10) dictionary of basic types
Basic Python syntax (1) introduction to Python
Python basic grammar (2) Zen of Python
Python basic syntax (3) use of miniconda
Python basic syntax (4) install Python language based on CentOS7 source code
Python basic syntax (5) numbers of basic types
Python basic syntax (6) string of basic types
Python basic syntax (7) list of basic types ...
Posted by dcgamers on Fri, 12 Nov 2021 11:32:34 -0800
C language to achieve mine sweeping (6 steps)
In the last issue, we implemented the sanziqi game. In this issue, we explained mine sweeping. Let's take a look at the effect first: (personally, I think it is a little more difficult than sanziqi, because it is designed with two two-dimensional arrays, boundary settings and interface printing are more complex, but its code is not as much as s ...
Posted by Ryodox on Fri, 12 Nov 2021 11:30:52 -0800
Tuples of basic types of Python basic syntax
Basic Python syntax (1) introduction to Python
Python basic grammar (2) Zen of Python
Python basic syntax (3) use of miniconda
Python basic syntax (4) install Python language based on CentOS7 source code
Python basic syntax (5) numbers of basic types
Python basic syntax (6) string of basic types
Python basic syntax (7) list of basic types ...
Posted by lli2k5 on Fri, 12 Nov 2021 11:20:07 -0800
Compare for, for..in, for...of, forEach
1 for... in
1.1 enumerable objects
const person = {
name: 'Lydia',
age: 21,
};
for (const item in person) {
console.log(item);
}
The output result is: name age This result can be simply understood as that for the object, using the for... in... Loop is to loop the key value of the object.
But using for... of... Results are differe ...
Posted by ksukat on Fri, 12 Nov 2021 11:08:39 -0800
Vue3 animation and source code analysis
Vue3 animation and source code analysis
1. How does Vue implement animation
In Vue, animation is mainly displayed through the built-in component < transition > < / transition > provided by Vue.
2. Use
1. Wrap a single element or component
<template>
<div>
<button @click="isShow = !isShow">toggle</bu ...
Posted by garmann on Fri, 12 Nov 2021 10:39:47 -0800
[docker series] docker learning IV. principles related to image
[docker series] docker learning IV. principles related to imageWhat is mirroring?Mirroring is a lightweight, executable, stand-alone software package.Image is used to package the running environment of software and software developed based on the running environment. It contains all the contents required to run some software, such as code, runt ...
Posted by Reef on Fri, 12 Nov 2021 10:30:39 -0800
6. Arrays and Sorting
Catalog
1. Array base
1.1. Introducing arrays
Initial Value and Creation of 1.2 Array
1.3 Array Practice
2. Array Expansion
2.1 Custom Array Expansion
2.2 System-defined Array Expansion Method
3. Method encapsulation in arrays
3.1 References on Methods
3.2 Variable parameters
Return value of 3.3 method returns array
4. Sorting
4.1 ...
Posted by langer on Fri, 12 Nov 2021 10:15:32 -0800