perloader

7O DD安装win10

进入救援模式,选ubuntu, sudo su wget -O- ‘https://mirror.joodle.nl/WindowsServer2016Evaluation-Template.gz’ | gunzip | dd of=/dev/sda Username: Administrator Password: Password147 Windows Server 2016从Evaluation评估版转换成正式版 开始—运行—CMD(管理员模式); DISM /online /Set-Edition:ServerStandard /ProductKey:WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY /AcceptEula 重启 wget -O- ‘https://mirror.joodle.nl/window10-2018-12-x64.gz’ | gunzip | dd of=/dev/sda Username: User Password: Abc123 Please change the password as soon as you login. Install drivers from c:\drivers then delete the drivers folder. […]

.

Read more

selenium语法

http://www.lianschedule.site/457 https://www.zybuluo.com/mwumli/note/222253 编码 #coding=utf-8 # coding=gbk 导入开发包 from selenium import webdriver 获得浏览器对象 driver=webdriver.Firefox() driver=webdriver.Ie() driver=webdriver.Chrome() 定位 find_element_by_id(“xx”) find_element_by_name(“xx”) find_element_by_class_name(“xx”) find_element_by_tag_name(“xx”) find_element_by_link_text(“xx”) find_element_by_parial_link_text(“xx”) find_element_by_xpath(“/html/body/div/div[2]/div/form/span/input”) find_element_by_xpath(“//input[@id=’xx’]”) find_element_by_xpath(“//input[@name=’xx’]”) find_element_by_xpath(“//class[@class=’xx’]”) find_element_by_xpath(“//*[@id=’xx’]”)//不仅id,name,class其他属性皆可 find_element_by_xpath(“//span[@id=’xx’]/input”) find_element_by_xpath(“//input[@id=’xx’ and @class=’xx’]”) find_element_by_css_selector(“#xx”)//id属性find_element_by_css_selector(“.xxx”)//class属性 find_element_by_css_selector(“xxx”)//标签名 find_element_by_css_selector(“span>input”)//父子关系 find_element_by_css_selector(“[name=xxx]”)//不仅name属性,其他属性皆可 find_element_by_css_selector(“span#a>input#b”)//组合定位 定位一组元素 find_elements_by_id(“xx”) find_elements_by_name(“xx”) find_elements_by_class_name(“xx”) find_elements_by_tag_name(“xx”) find_elements_by_link_text(“xx”) find_elements_by_parial_link_text(“xx”) find_elements_by_xpath(“/html/body/div/div[2]/div/form/span/input”) find_elements_by_xpath(“//input[@id=’xx’]”) find_elements_by_xpath(“//input[@name=’xx’]”) find_elements_by_xpath(“//class[@class=’xx’]”) find_elements_by_xpath(“//*[@id=’xx’]”)//不仅id,name,class其他属性皆可 find_elements_by_xpath(“//span[@id=’xx’]/input”) find_elements_by_xpath(“//input[@id=’xx’ and @class=’xx’]”) find_elements_by_css_selector(“#xx”)//id属性find_elements_by_css_selector(“.xxx”)//class属性 find_elements_by_css_selector(“xxx”)//标签名 find_elements_by_css_selector(“span>input”)//父子关系 […]

.

Read more

FINANCE(23)/FINANCE(19)>0.1 AND FINANCE(42)>365 净资产收益率=净利润/净资产,净资产收益率在10%以上,上市一年以上

.

Read more

linux 图形化桌面工具

debian 7 x64 ubuntu 16 x64 apt-get update apt-get install xorg xrdp lxde firefox   然后就可以用WIN的远程桌面连接机子的3389了,用户名是root

.

Read more

MySQL 创建定时任务

查看是否开启 show variables like ‘%sche%’; 开启 set global event_scheduler =1; 查看已经存在的定时任务 SELECT * FROM information_schema.EVENTS;   use database; create event test on schedule every 60 second do [something];   UPDATE `Files` SET `usr_id`=8362 WHERE `usr_id`=0 AND `file_created` BETWEEN ‘2018-01-16 00:00:00.000000’ AND ‘2019-01-02 08:00:00.000000’   via https://segmentfault.com/a/1190000005142597

.

Read more

DDCC

ipstresser.com webstresser.org

.

Read more

兑换商

Exchange webmoney and paypal http://exwp.com/index_en.html 汇率最佳,24h到帐,已兑换1500 WMZ Exchange BTC to WMZ https://btc2wm.me/ BTC to CNY https://www.alfacashier.com/ BTC to CNY https://www.megachange.is/en/

.

Read more

SQL服务器搭建

Ubuntu 16.04.2 LTS sudo apt-get update sudo apt-get install apache2 sudo systemctl restart apache2 sudo apt-get install mysql-server mysql_secure_installation sudo apt-get install php libapache2-mod-php php-mcrypt php-mysql sudo apt install unzip #sudo apt-get install php-mbstring cd /var/www/html/ wget https://files.phpmyadmin.net/phpMyAdmin/4.7.6/phpMyAdmin-4.7.6-all-languages.zip unzip -x *.zip mv phpMyAdmin-4.7.6-all-languages phpmyadmin sudo systemctl restart apache2 /sbin/iptables -I INPUT -p tcp –dport 3306 […]

.

Read more

闲置服务器的CPU算力挖XMR

Centos 6 矿池:xmr.nanopool.org yum -y install epel-release yum -y install centos-release-scl cmake3 hwloc-devel libmicrohttpd-devel openssl-devel yum -y install devtoolset-4-gcc* yum -y install git scl enable devtoolset-4 bash git clone https://github.com/fireice-uk/xmr-stak-cpu xmr-stak cd xmr-stak #调整百分之二的开发者捐赠 sed -i ‘s/2.0/0.0/g’ donate-level.h cmake3 . make install cd /root/xmr-stak/bin 先运行一遍 ./xmr-stak-cpu 会给出推荐的CPU配置信息,将它编辑进config.txt,并填写钱包地址、矿池地址、Payment ID等信息 httpd_port 设置http访问端口,可以用网页查看矿机状态 “cpu_threads_conf” : [ { “low_power_mode” […]

.

Read more

卸载阿里云自带监控程序

wget http://update.aegis.aliyun.com/download/quartz_uninstall.sh chmod +x quartz_uninstall.sh ./quartz_uninstall.sh rm -f /usr/sbin/aliyun-service rm -rf /usr/local/aegis killall -9 aliyun-service > /dev/null 2>&1

.

Read more
xyz