幻灵镇魂曲

phantom+express

你。 提交于 2020-04-06 02:44:05
var express = require( 'express' ); var router = express.Router(); var phantom = require( 'phantom' ); var web2img = (url, res, dataType, width, height) => { phantom.create().then( function (ph) { ph.createPage().then((page) => { var settings = { // operation: "POST", encoding: "utf8" }; page.open(url, settings).then((status) => { console .log(status); var fmt = 'JPEG' ; if (status == 'success' ) { page.property( 'viewportSize' , {width: width || 540 , height: height || 960 }); page.renderBase64(fmt).then((data) => { if (dataType == 0 ) { res.json({code: 1 , data: "data:image/png;base64," +

hdu 1982 Kaitou Kid - The Phantom Thief (1)

久未见 提交于 2020-03-24 07:15:11
Kaitou Kid - The Phantom Thief (1) Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3072 Accepted Submission(s): 1370 Problem Description Do you know Kaitou Kid? In the legend, Kaitou Kid is a master of disguise, and can take on the voice and form of anyone. He is not an evil person, but he is on the wrong side of the law. He's the very elusive phantom thief who never miss his prey although he always uses word puzzles to announce his targets before action. You are the leader of a museum. Recently, you get several priceless jewels and plan to

HDOJ HDU 1982 Kaitou Kid - The Phantom Thief(1) ACM 1982 IN HDU

余生颓废 提交于 2020-03-21 09:01:45
//MiYu原创, 转帖请注明 : 转载自 ______________白白の屋 题目地址 : http://acm.hdu.edu.cn/showproblem.php?pid=1982 PE了N次, 很纠结的一个题........ 题目如下 : Problem Description Do you know Kaitou Kid? In the legend, Kaitou Kid is a master of disguise, and can take on the voice and form of anyone. He is not an evil person, but he is on the wrong side of the law. He's the very elusive phantom thief who never miss his prey although he always uses word puzzles to announce his targets before action. You are the leader of a museum. Recently, you get several priceless jewels and plan to hold an exhibition. But at the moment, you

Flask的socket.error:10053

僤鯓⒐⒋嵵緔 提交于 2020-03-03 14:03:04
一脸懵逼 : 学习python一段时间,最近使用flask搭建了一个服务器,然后使用phantom(相当于浏览器)发送请求发送了几条flask就挂掉了,报错信息如下: 由于个人python经验不是很足,看到这个错误一脸懵逼。根据以往的经验,首先偶想到的是截图保存这个错误,这样以后遇到了就不会再次懵逼了。 二脸懵逼: 有问题找度娘。百度不行找google,结果折腾了一个下午,也没找到解决办法,不过也好找到了一些有用的信息. Windows Sockets Error Codes :https://msdn.microsoft.com/en-us/library/windows/desktop/ms740668(v=vs.85).aspx 翻译下:软件导致连接中断。一个已经建立的链接被你主机上的软件中断,可能是由于数据传输超时或者端口错误 看到这个消息,直接反应是这什么鬼。研究了半天也不懂,二脸懵逼啊。 三脸懵逼: 接着百度吧,路漫漫其修远兮, 找到一帖子,http://www.oschina.net/question/726618_2189576 看到这个答案仿佛瞬间就有一束阳光照耀到了我身上,摩拳擦掌,试试试。然后装个库都各种坑,不是装不上就是装上了不能用。百度百度才知道这些是适合unix系统的,无奈我用的是windos,三脸懵逼。 峰回路转: 接着来的剧情只能用峰回路转来形容了

AGC31E Snuke the Phantom Thief

感情迁移 提交于 2020-01-17 09:00:08
Snuke the Phantom Thief 有 \(N\) 个珠宝,第 \(i\) 个位于 \((x_i, y_i)\) ,价值为 \(v_i\) 。你可以选择一些珠宝,有若干限制,每个限制形如如下四种之一: \(x ≤ a_i\) 的珠宝只能选择不超过 \(b_i\) 个; \(x ≥ a_i\) 的珠宝只能选择不超过 \(b_i\) 个; \(y ≤ a_i\) 的珠宝只能选择不超过 \(b_i\) 个; \(y ≥ a_i\) 的珠宝只能选择不超过 \(b_i\) 个; 最大化选择的总价值。 \(1 ≤ N ≤ 80,1 ≤ x_i, y_i, a_i≤ 100\) 。 题解 https://www.cnblogs.com/zhoushuyu/p/10548483.html 首先这数据范围看着就很费用流 先考虑一维怎么做。 一个很妙的转化是:限制横坐标 \(≤a_i\) 的珠宝里至多选 \(b_i\) 个,等价于选择的横坐标第 \(b_{i+1}\) 小的珠宝,其横坐标必须 \(>a_i\) 。 如果是限制横坐标 \(≥a_i\) 的珠宝至多选 \(b_i\) 个,则可以先枚举选 \(s\) 个珠宝,然后限制就等价于选择的第 \(s-b_i\) 个珠宝其横坐标必须 \(<a_i\) 。(前述只考虑 \(b_i < s\) 的限制, \(b_i ≥ s\) 的限制显然无效)

downloading a file that comes as an attachment in a POST request response in PhantomJs

匿名 (未验证) 提交于 2019-12-03 09:14:57
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I want to download a CSV file, it is generated on a button click through a POST request. I researched to my best on casperJs and phantomJS forums and returned empty handed. In a normal browser like firefox, a browser download dialog window appears after the post request. How to handle this case in PhantomJS TTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Content-Encoding: gzip Vary: Accept-Encoding Server: Microsoft-IIS/7.5 Content-disposition: attachment;filename=ExportData.csv X-AspNet-Version: 2.0.50727 X

page.set(&#039;content&#039;) doesn&#039;t work with dynamic content in phantomjs

匿名 (未验证) 提交于 2019-12-03 02:33:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I tried to use phantomjs for screen capturing my page with node-phantom bridge. Here is what I'm trying: var phantom = require('node-phantom'); phantom.create(function (err, ph) { return ph.createPage(function (err, page) { return page.set('content', '<html><head></head><body><p>Hello</p></body></html>', function (err, status) { return page.render('./content.png', function (err) { ph.exit(); }); }); }); }); That works fine, but if I try to set content which contains javascript, that doesn't work. Please help me, why does it not work? EDIT:

Can&#039;t find variable: page in PhantomJS

匿名 (未验证) 提交于 2019-12-03 02:20:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm beginner in test, both in Unit Test and UI Test I'm trying to create a UI test for my login page using following code: console.log("Teste de Login"); var page = require('webpage').create(); page.open('http://localhost/login', function(status) { console.log("Page loadeed"); if(status === "success") { page.render('example1.png'); } page.evaluate(function() { // $("#numeroUsuario").val("99734167"); document.getElementById('numeroUsuario').value = "99734167"; page.render('exampl2.png'); // $("#formLogin").submit(); page.render('example3.png'

SPNEGO authentication in Phantom

匿名 (未验证) 提交于 2019-12-03 01:25:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Experimenting with Phantomjs to scrape some information from a vendor application our company uses. When I open the page and render it, I can see that the only output is the message SPNEGO authentication is not supported on this client. I had seen that message in Firefox before, and the solution was to add the host to the trusted uris. That's great for FF, but in the context of a phantomjs script, is there a way to declare a site as trusted? UPDATE: Tried the command-line parameters per Artjom's suggestion but no difference. 回答1: I don't

公司-大疆:大疆

帅比萌擦擦* 提交于 2019-11-26 19:46:52
ylbtech-公司-大疆:大疆 大疆创新 是 深圳市大疆创新科技有限公司 旗下的 无人机 品牌。 2018年8月23日,大疆发布“御” Mavic 2 系列无人机。 1. 返回顶部 1、 中文名称:大疆创新 英文名称:SZ DJI Technology Co.,Ltd. 创立时间:2006 创始人:汪滔 所属公司:深圳市大疆创新科技有限公司 所属行业:无人机 注册号:11792497 公司口号:The Future of Possible 所在地:中国广东省深圳市 目录 1 品牌历史 2 产品服务 ▪ 消费级无人机产品 ▪ 手持影像产品 ▪ 专业级产品 ▪ 行业应用 ▪ 其他产品 3 发展历程 ▪ 2012年 ▪ 2014年 ▪ 2016年 ▪ 2017年 ▪ 2018年 4 所获荣誉 5 侵权事件 2、 2. 返回顶部 1、 品牌历史 大疆创新,创立于2006年 ,创始人 汪滔 , 深圳市大疆创新科技有限公司 旗下的 无人机 品牌。 2012年,推出到手即飞的世界首款航拍一体机“大疆精灵Phantom 1” ; 2014年11月, 推出了SDK软件开发套件 。 2016年9月1日,大疆在 德国柏林IFA展会现场正式发布了灵眸Osmo手机云台 (Osmo Mobile)。 2018年8月23日,大疆创新发布“御”Mavic 2 系列无人机,包括“御”Mavic 2 专业版及“御