/images/avatar.png

Flutter Analysis Options With Google

analysis_options.yaml This file is flutter project root. It can make more good code by adding guideline to base lint. pedantic This is a lint that was served from Google for analysis_options.yaml. Install pedantic pubspec.yaml 1 2 3 4 5 6 7 # If you use `package:pedantic/pedantic.dart`, add a normal dependency. dependencies: pedantic: ^1.11.0 # Or, if you just want `analysis_options.yaml`, it can be a dev dependency. dev_dependencies: pedantic: ^1.11.0 analysis_options.yaml

vsftpd Restrict User Directory Access

vsftp Config 1 vi /etc/vsftpd/vsftpd.conf 1 2 3 4 5 6 --- chroot_local_user=YES chroot_list_enable=YES chroot_list_file=/etc/vsftpd/chroot_list allow_writeable_chroot=YES --- chroot_local_user Restrict change directory to top level, user can move in user’s directory. chroot_list_enable If it’s YES - The user who registered below file can move to top level. If it’s NO - The user who registered below file can not move to top level. chroot_list_file The user list is on the file.(One line must have one user id) allow_writeable_chroot If you set chroot_local_user is YES, and you want to write file on the account, you have to set allow_writeable_chroot is YES.

Markdown Cheat Sheet

Thanks for visiting The Markdown Guide! This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for basic syntax and extended syntax. Basic Syntax These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements. Heading H1 H2 H3 Bold bold text