robotic process automation
robotic process automation
web crawling
scrapy
Portia
Beautiful Soup
XPath
browser automation framework
Selenium
Tag UI
test automation framework
appium
ui automation framework
ui.vision
SikuliX
Reference
Robot Framework
Selenium automates browsers
Tag UI
RPA VS Selenium
appium
scrapy
Portia
Beautiful Soup
XPat...
Elastic Stack
Elastic Stack
Filebeat + kafka + Logstash + Elasticsearch + Kibana
curl ip.sb
netstat -natp | grep 5601
filebeat
install
curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-7.15.2-x86_64.rpm
sudo rpm -vi filebeat-7.15.2-x86_64.rpm
elastic search
install
wget https://artifacts.elastic.co/downloads/elasticsearc...
Jupyer Error
Jupyer Error
No module named ‘jupytext’
python3 -m pip install jupytext
Jupyter Notebook : ERROR:asyncio:Exception in callback
jupyter notebook --generate-config
vim ~/.jupyter/jupyter_notebook_config.py
# add
c.NotebookApp.kernel_manager_class = 'notebook.services.kernels.kernelmanager.AsyncMappingKernelManager'
Reference
Jupyter No...
SSL error: dh key is too small
SSL error: dh key is too small
# 允许使用短dh key
sudo update-crypto-policies --set LEGACY
Reference
SSL error ‘dh key is too small’, when connecting to SQL Server using ODBC 17 and Laravel on Centos 8
FLutter 配置
FLutter 配置
IPHONEOS_DEPLOYMENT_TARGET
Set MinimumOSVersion to 9.0 in ios/Flutter/AppFrameworkInfo.plist
Ensure that you uncomment platform :ios, ‘9.0’ in ios/Podfile
Ensure that ios/Podfile contains the following post install script:
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_ad...
Security AES
Security AES
Dart AES
import 'package:encrypt/encrypt.dart';
final aesKey = Key.fromUtf8('wWKK335SKLDFJ146');
final iv = IV.fromLength(16);
final encrypter = Encrypter(AES(aesKey, mode: AESMode.cbc, padding: 'PKCS7'));
final encrypted = encrypter.encrypt(content, iv: iv);
final decrypted = encrypter.decrypt(encrypted, iv: iv);
print(d...
468 post articles, 59 pages.