14. Draggable drag control of fluent widgets
Draggable series components allow us to drag components.
Draggable
The Draggable component has two parameters that must be filled in. The child parameter is a child control and the feedback parameter is a component that moves with drag. The usage is as follows:
Draggable(
child: Container(
height: 100,
width: 100 ...
Added by igorlopez on Wed, 05 Jan 2022 22:52:36 +0200
Compile WebRTC under Mac (Mac and iOS versions)
prefaceWith the influence of COVID-19, the demand for audio and video has explode in the past two years. In the field of audio and video, WebRTC can be said to be an inseparable treasure house, including the whole process of audio and video acquisition, encoding and decoding, transmission and rendering. This article mainly records the whole pro ...
Added by awpti on Tue, 04 Jan 2022 13:51:51 +0200
Vulnhub customs clearance manual - 04 Five86-1
Vulnhub customs clearance manual - 04 Five86-1
Background overview:
The download address is: https://www.vulnhub.com/entry/dc-1-1,292/
The target IP is 100.10 10.133, add the IP address to the hosts file and map it to the domain name five86 local
Technical points:
opennetadmin exploitfind / -type f -user username view the files that ...
Added by Loldongs on Sun, 02 Jan 2022 19:48:36 +0200
Vulnhub customs clearance manual - 03 Raven-1
Background overview:
Download address: https://www.vulnhub.com/entry/raven-1,256/
The IP of the target is 100.10 10.132, add the IP address to the hosts file and map it to the domain name Raven local.
1. Information collection
1.1 scan target host IP
Use the ARP scan - L command to scan the surviving hosts in the LAN.
└─# arp-scan ...
Added by textbox on Wed, 29 Dec 2021 19:30:51 +0200
How to build a personal Git remote warehouse for raspberry pie (the same is true for other Linux devices)
First, we need to analyze the problem. To implement a Git remote warehouse server, we need to know:
How to configure Git server side.How to connect to a remote warehouse.How to push, pull, fetch and other operations from the remote warehouse.
After the analysis, it is found that it is quite simple. Let's go step by step. The first is the conf ...
Added by PHPMan on Sun, 19 Dec 2021 08:34:09 +0200
How to configure the newly acquired mac computer on the front end
Installation terminal iTerm2https://iterm2.com/Homebrew package management toolInstall brewAutomatic script (all domestic addresses)/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
Apple uninstall script:/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
Install ...
Added by Slashscape on Thu, 16 Dec 2021 18:24:10 +0200
Write a camera program under Mac Os
Sketch:
For informatics contests, batting is an extremely important skill. It can use an inefficient but accurate program to validate our advanced algorithm program with a large amount of randomly generated data.
Simply put, in the course of the competition, I believe that everyone has experienced an amazing wa in the written program, but the ...
Added by jordan on Wed, 08 Dec 2021 00:05:56 +0200
Are you still stepping on the ten thousand year pit of GIT? Promise me not to be stupid
GIT
Here are the most complete strategies about GIT in the whole network. Please praise it before you see it to prevent getting lost
01. What is GIT
concept
Git (pronounced / g) ɪ t /) is an open source distributed version control system, which can effectively and quickly deal with project version management from very small to very large. ...
Added by jimjack145 on Thu, 28 Oct 2021 15:11:18 +0300
Mac OS QT application packaging
1, Introduction
The graphical interface packaged on MacOS must be created from the Bundle. This Bundle is like Apk, which contains code, libraries, resource files and so on.
If you create a QT project by yourself and use a. pro file, this file will have the Bundle attribute. To be safe, you can also add the following:
CONFIG+=app_bundle
If ...
Added by sonehs on Wed, 22 Sep 2021 03:09:24 +0300