Spring OAuth2 authorization server configuration details
The first two articles have experienced the of Spring Authorization Server respectively use And explained its various aspects filter The role of. Today, let's talk about the configuration of the Spring Authorization Server authorization server. It is strongly recommended that you try to build it manually. You will feel shallow on paper and know ...
Posted by Simon180 on Fri, 19 Nov 2021 00:09:33 -0800
ROS learning notes ---- topic programming
catalogue
1, Basic knowledge
2, Workspaces and feature packs
3, Programming implementation of publisher
4, Programming implementation of subscriber
1, Basic knowledge
Topic -- asynchronous communication programming
An important bus used to transmit data between nodes;
use
Publish / subscribe
...
Posted by clay1 on Fri, 19 Nov 2021 00:04:48 -0800
Create a simple tic tac toe game using HTML, CSS and JavaScript
๐ Author home page: Hai Yong ๐ About the author: ๐ CSDN high-quality creators in the whole stack field ๐ฅ HDZ core group members ๐ฅ Ranked among the top ten in the weekly list of station C ๐ Fan benefits: ๐ Fan group ๐ Four books per week and various small gifts per month (enamel cup, pillow, mouse pad, mug, etc.)
Jump straight to the ...
Posted by AV1611 on Thu, 18 Nov 2021 23:54:44 -0800
Use Socket in java to complete TCP protocol or UDP protocol communication
Use Socket in java to complete TCP protocol or UDP protocol communication
Introduce TCP and UDP
Two types of transmission protocols: TCP; UDP
TCP is the abbreviation of Tranfer Control Protocol. It is a connection oriented protocol to ensure reliable transmission. Through TCP protocol transmission, we get a sequential error free data stream. ...
Posted by cafrow on Thu, 18 Nov 2021 23:32:15 -0800
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
Shuttle snackBar component plug-in
[external chain picture transfer failed. The source station may have anti-theft chain mechanism. It is recommended to save the picture and upload it directly (img-lt6hz7e6-1631582673562)( https://ducafecat.tech/2021/09/14/translation/snackbar-widget-in-flutter/2021-09-14-09-15-10.png )]
original text
https://medium.com/flutterdevs/snackbar ...
Posted by hofmann777 on Thu, 18 Nov 2021 23:19:10 -0800
Python learning notes
In order to play the star water cup, I studied it with my teammates in fishing raids, mainly the knowledge of multithreading, multi process and decorators. I know a little about it
Multithreading
My understanding is to open a new thread to execute the functions I assigned to it
_
...
Posted by Spoiler on Thu, 18 Nov 2021 23:03:02 -0800
[Java] related use of weak references
Four references to Java
1. Strong reference
The most common reference type, which is not reclaimed even if there is not enough memory.
Think: is obj1 a strong reference itself an object? Occupy memory?
public class StrongReferenceDemo {
public static void main(String[] args) {
//obj1 is a strong reference to the actual object fr ...
Posted by mysqlnewjack on Thu, 18 Nov 2021 22:58:03 -0800
LeetCode 524. Match the longest word in the dictionary by deleting letters (dynamic programming) / 695. Maximum area of islands / 54. Spiral matrix (back)
524. Match the longest word in the dictionary by deleting letters
One question per day on September 14, 2021
Title Description
Give you a string s and a string array dictionary as a dictionary, find and return the longest string in the dictionary, which can be obtained by deleting some characters in S.
If there is more than one answer, the ...
Posted by Benjamin on Thu, 18 Nov 2021 22:26:22 -0800
[C language] character function and string function
catalogue
Find string length
1.strlen
String function with unlimited length
2.strcpy
3.strcat
4.strcmp
String function with limited length
5.strncpy,strncat,strncmp
String lookup
6.strstr
String cutting
7.strtok
Error message report
8.strerror
Memory operation function
9.memcpy
10.memmove
11.memcmp
12. memset
other
13. Some ...
Posted by Wayne Herbert on Thu, 18 Nov 2021 22:19:23 -0800