自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

小龙在线

整理一下自己的学习心得体会,方便以后查询。

  • 博客(15)
  • 资源 (94)
  • 收藏
  • 关注

原创 Spark获取并分析Mysql数据

安装环境Java环境安装并启动Spark下载并解压Sparkwget https://d3kbcqa49mib13.cloudfront.net/spark-2.2.0-bin-hadoop2.7.tgztar xzvf spark-2.2.0-bin-hadoop2.7.tgz /usr/localcd /usr/localln -s spark spark-2.2.0-bin-hadoop

2017-08-31 18:11:23 1913

原创 ln软连接和硬连接的区别和联系

经常忘,记录下来备忘~什么是链接?链接简单说实际上是一种文件共享的方式。连接有软连接和硬连接(hard link)之分的,软连接(symbolic link)又叫符号连接,更常用。符号连接相当于Windows下的快捷方式。它是用来干什么的?你可以将链接简单地理解为 Windows 中常见的快捷方式(或是 OS X 中的替身),Linux 中常用它来解决一些库版本的问题,通常也会将一些目录层次较深的文

2017-08-29 15:52:17 2815

原创 HTML页面自适应宽度的table(表格)

WEB应用的页面,表格的表现形式是常常遇到的,在列数有限的前提下,如何将各列中的内容自适应到不同分辨率的屏幕,这应该是一个比较容易遇到的问题,下面就来谈一谈我对这类问题的解决与看法。 将所有列设置为固定宽度,显然是不能满足此类要求的,但是若把全部的列都设置为百分比,恐怕在某些尺寸,或分辨率下,会变得很难看。比较习惯于用如下的方式来处理——在表格列数不是很多的前提下——将大部分列宽用固定值设置死,留

2017-08-26 20:30:22 52982

原创 xargs应用场景和常见用法

应用场景传递参数,从而组合多个命令分隔数据,避免参数过长不支持管道的命令常见用法基本是配合有输出结果多的命令,例如find、ls查找所有的jpg 文件并压缩find . -name *.png -type f -print | xargs tar -cvzf images.tar.gz删除查找到的日志find ~ -name *.log -print0 | xargs -0 rm -f查找当

2017-08-24 18:17:03 1963

原创 SBT安装和基本使用

SBT(Simple Build Tool)是scala的构建工具,需要Java1.8+版本。安装包安装首先要安装JRE http://blog.csdn.net/lilongsy/article/details/77452317然后下载SBT,并解压。 https://github.com/sbt/sbt/releases/tag/v1.0.0wget https://github.com/s

2017-08-23 11:42:24 1340

原创 phpcms常用代码

自增序列号$n:1,2,3,。。。。根据栏目id获取栏目名和栏目链接<a href="{$CATEGORYS[$r[catid]][url]}">[{$CATEGORYS[$r[catid]][catname]}]</a>根据推荐位调用文章列表:{pc:content action="position" posid="2" catid="13" order="listorder DESC" num=

2017-08-22 15:51:09 1027

原创 帝国cms(empirecms)常用代码

<table width="100%" border="0" cellspacing="1" cellpadding="3">[e:loop={栏目ID/专题ID,显示条数,操作类型,只显示有标题图片,'firsttitle=1 or isgood=1','firsttitle desc,newstime desc'}]<tr><td><a href="<?=$bqsr[titleurl]?>

2017-08-22 15:43:03 3366

原创 织梦(dedecms)常用代码

按指定条件获取文章列表{dede:arclist row='7' typeid='15' infolen='30'}&lt;div class="item"&gt;&lt;img src="[field:litpic/]" alt="[field:title/]"&gt;&lt;h3&gt;&lt;a href="[field:arcurl/]"&gt

2017-08-22 15:21:33 2244

原创 Ubuntu/Centos下Java环境配置

查看是否已安装JDK运行如下命令:java -version如果提示出了java版本等信息,则已经安装了java。否则,没有安装。下载JDK查看系统位数运行如下命令:uname -m如果包含64,则是64位系统,可以下载对应的64位版本,否则下载32位jdk版本。下载地址http://www.oracle.com/technetwork/java/javase/downloads/index.htm

2017-08-21 17:00:52 567

原创 Scrapy模拟表单和Ajax发送POST请求

普通请求使用scrapy.Request类就可以实现,但是遇到模拟表单提交post请求的时候,Request类就不如子类**FormRequest类方便了,因为他自带**formdata,专门用来设置表单字段数据。def start_requests(self): form_data = {'f1':'1', 'f2':'100'} # 表单数据,字典格式,注意数字也要用引号引起来,否则报

2017-08-21 10:36:02 8303

原创 响应式导航(从水平到垂直)的分析与实现

使用媒体查询,在宽屏下,使用类pure-u-md-1-3,使得导航水平放置,隐藏切换按钮;在窄屏下,使用类pure-u-1,使得导航垂直放置,显示切换按钮,其中切换按钮使用了绝对定位。代码详情<!--[if lte IE 8]> <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/grids-responsiv

2017-08-20 11:35:48 570

转载 hadoop、storm和spark的区别

一、hadoop、Storm该选哪一个?为了区别hadoop和Storm,该部分将回答如下问题:1.hadoop、Storm各是什么运算 2.Storm为什么被称之为流式计算系统 3.hadoop适合什么场景,什么情况下使用hadoop 4.什么是吞吐量首先整体认识:Hadoop是磁盘级计算,进行计算时,数据在磁盘上,需要读写磁盘;Storm是内存级计算,数据直接通过网络导入内存。读写内存比读

2017-08-15 11:54:46 709

原创 font-face加载任意字体和字体格式转换

font-face加载任意字体和字体格式转换

2017-08-12 15:57:55 1988

原创 gawk格式化数据

基本方法gawk能提供一个类编程环境来修改和重新组织文件中的数据。 gawk程序是Unix中的原始awk程序的GNU版本。 gawk提供了一种编程语言而不只是编辑器命令。可以做的事情:定义变量来保存数据;使用算术和字符串操作符来处理数据;使用结构化编程概念(比如 if-then 语句和循环)来为数据处理增加处理逻辑;通过提取数据文件中的数据元素,将其重新排列或格式化,生成格式化报告。g

2017-08-11 11:46:20 1203

转载 shell中$(( ))、$( )与${ }的区别

在bash中,$()与““(反引号)都是用来作命令替换的。 命令替换与变量替换差不多,都是用来重组命令行的,先完成引号里的命令行,然后将其结果替换出来,再重组成新的命令行。例子:$ echo today is $(date "+%Y-%m-%d")today is 2014-07-01$()与““在操作上,这两者都是达到相应的效果,但是建议使用$(),理由如下:““很容易与”搞混乱,尤其对初学

2017-08-02 11:39:39 1499

安卓 RE文件浏览器,Root Explorer PRO Apk 4.10.3

Root Explorer app is the ultimate most powerful, most functional, and useful file manager for root users. Root explorer apk allows you to Access the whole of android’s file system including the secured ones. You can download 100% Original apk file of Root Explorer from our site without any survey or any other annoying process as well as provide you a detailed guide on using Root Explorer. There are many sites providing a modified version of root explorer that can cause damage to your device or

2022-11-22

x64dbg-snapshot-2022-10-18-22-09

An open-source binary debugger for Windows, aimed at malware analysis and reverse engineering of executables you do not have the source code for.

2022-10-28

C#用FiddlerCore抓包HTTP和HTTPS源码

C#用FiddlerCore抓包HTTP和HTTPS源码

2022-10-25

Kettle pdi-ce-9.3.0.0-428.zip

pdi-ce-9.3.0.0-428.zip Kettle

2022-09-26

ChromeDriver-92.0.4515.107.zip

ChromeDriver 包含Windows、Mac、Linux各个版本。 ---------ChromeDriver 92.0.4515.107 (2021-07-29)--------- Supports Chrome version 92 Resolved issue 3389: Host validation for ChromeDriver requests [Pri-2]

2021-08-12

xpdf-win64.zip

xpdf-tools-win-4.03 and XpdfReader-win64-4.03.

2021-02-14

ChromeDriver-87.0.4280.88.rar

---------ChromeDriver 87.0.4280.88 (2020-12-02)--------- Supports Chrome version 87 Resolved issue 2421: Delete old port-forwarding channels on android adb-server [Pri-3] Resolved issue 3474: Emulated mobile device list needs updating [Pri-3] Resolved issue 3507: Implement "get computed role" [Pri-]

2020-12-14

honglvdeng.rar

steg、Stegsolve.jar隐写。

2020-09-17

带exp的pwn测试文件

带exp的pwn测试文件、ret2text、ret2syscall、ret2shellcode、ret2libc、ret2csu、stack_pivoting、stack_smash

2020-09-12

单步跟踪法脱壳.zip

单步跟踪法脱壳、单步跟踪法脱壳、单步跟踪法脱壳、单步跟踪法脱壳、单步跟踪法脱壳用到的软件、单步跟踪法脱壳用到的软件、单步跟踪法脱壳用到的软件

2020-09-12

TraceMe.exe year.exe.rar

TraceMe.exe year.exe 反编译调试 TraceMe.exe year.exe 反编译调试 TraceMe.exe year.exe 反编译调试 TraceMe.exe year.exe 反编译调试

2020-09-12

flag.rar图片逆向排序

图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序图片逆向排序

2020-09-09

coconut_tree.zip

图片隐写椰子树coconut tree,包含原图、生成图、python代码。方法是在图片里按规律设置特殊色值的点,缩写拼接起来就可以看到flag。

2020-08-30

sqlite-dll-win64-x64-3320300.zip

sqlite-dll-win64-x64-3320300 sqlite3.def和sqlite3.dll

2020-07-08

chromedriver_2.46.zip

----------ChromeDriver v2.46 (2019-02-01)---------- Supports Chrome v71-73 Resolved issue 2728: Is Element Displayed command does not work correctly with v0 shadow DOM inserts [[Pri-1]] Resolved issue 755: /session/:sessionId/doubleclick only generates one set of mousedown/mouseup/click events [[Pri-2]] Resolved issue 2744: Execute Script returns wrong error code when JavaScript returns a cyclic data structure [[Pri-2]] Resolved issue 1529: OnResponse behavior can lead to port exhaustion [[Pri-2]] Resolved issue 2736: Close Window command should handle user prompts based on session capabilities [[Pri-2]] Resolved issue 1963: Sending keys to disabled element should throw Element Not interactable error [[Pri-2]] Resolved issue 2679: Timeout value handling is not spec compliant [[Pri-2]] Resolved issue 2002: Add Cookie is not spec compliant [[Pri-2]] Resolved issue 2749: Update Switch To Frame error checks to match latest W3C spec [[Pri-3]] Resolved issue 2716: Clearing Text Boxes [[Pri-3]] Resolved issue 2714: ConnectException: Failed to connect to localhost/0:0:0:0:0:0:0:1:15756. Could not start driver. [[Pri-3]] Resolved issue 2722: Execute Script does not correctly convert document.all into JSON format [[Pri-3]] Resolved issue 2681: ChromeDriver doesn't differentiate "no such element" and "stale element reference" [[Pri-3]]

2020-06-29

chromedriver_84.0.4147.30.zip

包含chromedriver_linux64.zip、chromedriver_mac64.zip、chromedriver_win32.zip、notes.txt。 Supports Chrome version 84 Resolved issue 3420: after switching to the print window, the chromedriver stops responding Resolved issue 3421: Driver returns Cyrillic text without styles Resolved issue 3422: GetElementText breaks with prototype 1.6.0.3 Resolved issue 3434: Cannot get 'assert' messages from the 'browser' logs

2020-06-29

Magisk-v20.4+MagiskManager-v7.5.0+Magisk-uninstaller-20200323.zip

Magisk-v20.4 MagiskManager-v7.5.0 Magisk-uninstaller-20200323

2020-06-18

VirtualXposed_0.18.2.apk

VirtualXposed不需要解锁、不需要root、不需要解锁bootloader,就可以使用Xposed功能的APP

2020-06-10

阿里巴巴新版Java开发手册.rar

《Java 开发手册》是阿里巴巴集团技术团队的集体智慧结晶和经验总结,经历了多次大规模一 线实战的检验及不断完善,公开到业界后,众多社区开发者踊跃参与,共同打磨完善,系统化地整理 成册,当前的版本是泰山版。

2020-04-29

poppler-0.68.0_x86.7z

I have been using the Poppler library for some time, over a series of various projects. It’s an open source set of libraries and command line tools, very useful for dealing with PDF files. Poppler is targeted primarily for the Linux environment, but the developers have included Windows support as well in the source code. Getting the executables (exe) and/or dlls for the latest version however is very difficult on Windows. So after years of pain, I jumped on oDesk and contracted Ilya Kitaev, to both compile with Microsoft Visual Studio, and also prepare automated tools for easy compiling in the future. Update: MSVC isn’t very well supported, these days the download is based off MinGW. So now, you can run the following utilities from Windows! PDFToText – Extract all the text from PDF document. I suggest you use the -Layout option for getting the content in the right order. PDFToHTML – Which I use with the -xml option to get an XML file listing all of the text segments’ text, position and size, very handy for processing in C# PDFToCairo – For exporting to images types, including SVG! Many more smaller utilities

2019-10-25

quamotion-webdriver.0.123.3.win7-x64.zip

quamotion webdriver windows 64位,可以在windows x64下测试安卓,ios。

2019-08-15

selenium-server-standalone-3.141.59

selenium-server-standalone-3.141.59.jar selenium-server-standalone-3.141.59.jar

2019-01-08

mozilla firfox geckodriver v0.23.0 火狐 webdriver

This release contains a number of fixes for regressions introduced in 0.22.0, where we shipped a significant refactoring to the way geckodriver internally dealt with JSON serialisation. Removed The POST /session/{session id}/element/{element id}/tap endpoint was removed, thanks to Kerem Kat. Changed webdriver crate upgraded to 0.38.0. Fixed desiredCapabilities and requiredCapabilities are again recognised on session creation A regression in 0.22.0 caused geckodriver to recognise desired and required instead of the correct desiredCapabilities and requiredCapabilities. This will have caused significant problems for users who relied on this legacy Selenium-style session creation pattern. Do however note that support for Selenium-styled new session requests is temporary and that this will be removed sometime before the 1.0 release. duration field made optional on pause actions A regression in 0.22.0 caused the pause action primitive to require a duration field. This has now been fixed so that pauses in action chains can be achieved with the default duration. Log level formatted to expected Marionette input A regression in 0.22.0 caused the log level to be improperly formatted when using Firefox pre-releases. This is now fixed so that the requested log level is correctly interpreted by Marionette. temporary field on addon installation made optional A regression in 0.22.0 caused the temporary field for POST /session/{session id}/moz/addon/install to be mandatory. This has now been fixed so that an addon is installed permanently by default. SHA1s in version information uses limited number of characters The SHA1 used in --version when building geckodriver from a git repository is now limited to 12 characters, as it is when building from an hg checkout. This ensures reproducible builds.

2018-11-20

ChromeDriver v2.44

----------ChromeDriver v2.44 (2018-11-19)---------- Supports Chrome v69-71 Resolved issue 2522: Test ChromeDriverTest.testWindowMaximize is failing on Mac build bot on Waterfall [[Pri-2]] Resolved issue 2615: Incorrect 'alert open error' for window handle call [[Pri-2]] Resolved issue 2649: Element Send Keys should get "text" property in W3C mode [[Pri-2]] Resolved issue 1995: XML special case of Is Element Enabled is not handled as per spec [[Pri-2]] Resolved issue 1994: XML special case of Get Element CSS Value is not handled as per spec [[Pri-2]] Resolved issue 2655: Set Window Rect needs to check for invalid input [[Pri-3]] Resolved issue 2597: Support new unhandledPromptBehavior modes [[Pri-3]]

2018-11-20

APK反编译工具apktool-dex2jar-luyten-jd-gui

apk反编译工具: apktool 查看apk资源文件 dex2jar 把dex转换成jar luyten 查看jar源码,支持jdk新版 jd-gui 查看jar源码,需要jdk 1.7.0

2018-10-17

ChromeDriver 2.39 win32

ChromeDriver - WebDriver for Chrome windows10 ChromeDriver - WebDriver for Chrome windows10

2018-05-31

强化学习在阿里的技术演进与业务创新

强化学习在阿里的技术演进与业务创新 当前的机器学习算法⼤致可以分为有监督的学习、⽆监督的学习和强化学 习(Reinforcement Learning)等。强化学习和其他学习⽅法不同之处在于强化学 习是智能系统从环境到⾏为映射的学习,以使奖励信号函数值最⼤。

2018-02-06

TensorFlow机器学习实战指南中英双语版-epub和pdf格式

TensorFlow机器学习实战指南中英双语版-epub和pdf格式 中文版只有epub格式,英文版两种格式都有。

2018-01-31

SVG精髓(第2版) (图灵程序设计丛书) 英文版

《SVG精髓(第2版)》通过实例透彻讲解了SVG(可缩放矢量图形)这种标记语言的规范及应用。作者从简单的SVG应用开始,带领读者逐步探索了SVG的复杂功能,包括滤镜、变换、渐变和模式。从应用层面看,本书涵盖了动画、交互图形和动态SVG编程等技术,不仅能为有经验的开发人员提供重要参考,同时通过讲解基本的XML和CSS技术,为没有Web开发经验的读者提供了入门捷径。

2017-10-26

Linear Algebra and Its Applications 5th Edition (David C. Lay)全书9-10章及所有答案

Linear Algebra and Its Applications 5th Edition (David C. Lay)全书9-10章及所有答案

2017-10-25

网络安全思维导图

网络安全思维导图,网络安全思维导图 网络安全思维导图 网络安全思维导图 网络安全思维导图来源:http://lanxiaomi.blog.51cto.com/4554767/1964958

2017-09-19

《Windows程序设计》第五版 源码

《Windows程序设计》第五版 珍藏版 源码 一共二十三章 本书介绍了在Microsoft Windows 98、Microsoft Windows NT 4.0和Windows NT 5.0 下程序写作的方法。这些程序用C语言编写并使用原始的Windows Application Programming Interface(API)。

2017-09-11

moco-runner-0.11.1-standalone

测试服务框架moco-runner-0.11.1-standalone

2017-06-21

hanlp-portable-1.3.2.jar

HanLP是由一系列模型与算法组成的Java工具包,目标是普及自然语言处理在生产环境中的应用。不仅仅是分词,而是提供词法分析、句法分析、语义理解等完备的功能。HanLP具备功能完善、性能高效、架构清晰、语料时新、可自定义的特点。

2017-04-18

emmet PythonScript 打包压缩文件

官网下载太慢,留下来,以作备份。 压缩包里包含以下文件: emmet-npp.zip PythonScript_1.0.8.0.msi

2017-03-20

simplehtmldom

php解析html类库 解析器不仅仅只是帮助我们验证html文档;更能解析不符合W3C标准的html文档。它使用了类似jQuery的元素选择器,通过元素的id,class,tag等等来查找定位;同时还提供添加、删除、修改文档树的功能。当然,这样一款强大的html Dom解析器也不是尽善尽美;在使用的过程中需要十分小心内存消耗的情况。不过,不要担心; https://github.com/samacs/simple_html_dom

2014-05-12

Joomla k2组件 K2_v2.6.8

Joomla k2组件 K2_v2.6.8 Joomla内容扩展组件,功能非常强大,类似Drupal的CCK。

2014-05-12

netbeans-8.0-php-windows

netbeans 8.0 php windows

2014-04-16

openx 2.8.7 最全汉化包

openx 2.8.7 最全汉化包 安装位置:\lib\max\language 备份原来的zh_CN文件夹

2014-03-08

phpcms phpcms_v9.5.0_UTF8

phpcms_v9.5.0_UTF8 中文UTF8版本 phpcms v9

2014-03-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除