自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

小龙在线

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

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

原创 jquery获取和设置select选中的值/文本/索引及选中事件

获取选中项获取选中项的值$("#select1").val();获取选中项的文本$("#select1 option:selected").text();// 或者$("#select1").find("option:selected").text();获取选中项的索引$("#select1").get(0).selectedIndex;设置选中项按照值来选中// 设置值为2的选项选中$("#

2017-09-30 15:27:54 12436

原创 Windows程序设计-设备无关位图

如果您有小型的DIB并且需要频繁地操作图素位,您可以使用SetDIBitsToDevice和StretchDIBits来显示它们。然而,对于大型的DIB,此技术会遇到显示效能的问题,尤其在8位视讯显示器上和Windows NT环境下。您可以使用CreateDIBitmap和SetDIBits把DIB转化为DDB。现在,显示位图可以使用快速的BitBlt和StretchBlt函数来进行了。然而,您不能直接存取这些与设

2017-09-28 14:19:15 542

原创 Windows程序设计-位图和位块传输

位图是一个二维的位数组,它与图像的图素一一对应。当现实世界的图像被扫描成位图以后,图像被分割成网格,并以图素作为取样单位。在位图中的每个图素值指明了一个单位网格内图像的平均颜色。单色位图每个图素只需要一位,灰色或彩色位图中每个图素需要多个位。

2017-09-25 11:03:08 805

原创 Windows程序设计-使用打印机

打印机参数简单打印打印的基本程序放弃程序增加打印对话框为POPPAD增加打印功能打印机参数 RESOURCE.H#define IDM_SCREEN 40001#define IDM_BASIC 40002#define IDM_OTHER 40003#

2017-09-22 17:15:22 2056

原创 Windows程序设计-剪贴板

Windows剪贴板允许把数据从一个程序传送到另一个程序中。它的原理相对而言比较简单,把数据存放到剪贴板上的程序或从剪贴板上取出数据的程序都无须太多的负担。数据格式CF_TEXT以NULL结尾的ANSI字符集字符串。它在每行末尾包含一个carriage return和linefeed字符。 CF_OEMTEXT含有文字数据(与CF_TEXT类似)的内存块。但是它使用的是OEM字符集。 CF_OE

2017-09-15 11:48:04 958

原创 Windows程序设计-通用对话框

增加通用对话框:打开/保存POPPAD.RC///////////////////////////////////////////////////////////////////////////////// Dialog//ABOUTBOX DIALOG DISCARDABLE 32, 32, 180, 100STYLE DS_MODALFRAME | WS_POPUPFONT 8,

2017-09-14 10:48:58 1415

原创 Windows程序设计-模态对话框和非模态对话框

对话框分为两类:「模态的」和「非模态的」,其中模态对话框最为普遍。当您的程序显示一个模态对话框时,使用者不能在对话框与同一个程序中的另一个窗口之间进行切换,使用者必须主动结束该对话框,这藉由通过按一下「OK」或者「Cancel」键来完成。不过,在显示模态对话框时,使用者通常可以从目前的程序切换到另一个程序。而有些对话框(称为「系统模态」)甚至连这样的切换程序操作也不允许。在Windows中,显示了系统模态对话

2017-09-14 10:12:12 3200

原创 Windows程序设计-菜单及其它资源

资源图标、鼠标指针、字符串、自定义资源、菜单、键盘加速器、对话框、位图。图标、鼠标指针、字符串、自定义资源加载图标 icondemo.rc部分代码:IDI_ICONDEMO ICON "ICONDEMO.ico"IDI_SMALL ICON "small.ico"/*-----------------------------

2017-09-13 08:33:10 1122

原创 Windows程序设计-子窗口控件

按钮类别/*---------------------------------------- BTNLOOK.C -- Button Look Program (c) Charles Petzold, 1998 ----------------------------------------*/#include <windows.h>struct{

2017-09-11 22:25:01 1463

原创 Windows程序设计-定时器

应用计时程序多任务维护更新过的状态报,实时更新自动储存终止程序展示版本的执行步进移动多媒体三种方法方法一SetTimer (hwnd, 1, uiMsecInterval, NULL) ;第一个参数是其窗口消息处理程序将接收WM_TIMER消息的窗口句柄。第二个参数是定时器ID,它是一个非0数值,在整个例子中假定为1。第三个参数是一个32位无正负号整数,以毫秒为单位指定一个时间间隔,

2017-09-10 16:07:49 1491

原创 Windows程序设计-鼠标

基础确认鼠标是否存在fMouse = GetSystemMetrics (SM_MOUSEPRESENT); // True(非0)存在确定按键个数cButtons = GetSystemMetrics (SM_CMOUSEBUTTONS) ;双击速度SystemParametersInfo鼠标按键动作Clicking按下并放开一个鼠标按键。Double-clicking快速按下并放开鼠标按键两

2017-09-10 14:49:41 1226

原创 Windows程序设计-键盘

队列和同步Windows和键盘驱动程序将硬件扫描码转换为格式消息,并放入系统消息队列,然后同步到应用程序的消息队列。按键消息   键按下 键释放 非系统键 WM_KEYDOWN WM_KEYUP 系统键 WM_SYSKEYDOWN WM_SYSKEYUP系统按键一般由DefWindowProc,带Alt。对所有四类按键消息,wParam是虚拟键代码,表示按下或释放

2017-09-08 11:05:22 652

转载 Win32截屏

/* 头文件 */#include <windows.h>/* 常量定义 */#define PALVERSION 0x300#define CAP_SHOW_MODE_STRTCH 1#define CAP_SHOW_MODE_NOSTRTCH 0/* 全局变量 */HBITMAP ghBitmap = NULL;RECT rectShow;// 修改这里截取不同的窗口,如果为NU

2017-09-07 16:35:59 1973

原创 Windows程序设计-GDI图形

GDI图形设备接口(GDI:Graphics Device Interface)是Windows的子系统,它负责在视频显示器和打印机上显示图形。六种GDI对象:画笔、画刷、位图、区域、字体和调色板。 除了调色盘之外,这些对象都是通过SelectObject选进设备内容的。GDI函数分类取得(或者建立)和释放(或者清除)设备内容的函数:GetDC RealseDC BeginPaint EndPa

2017-09-07 13:11:55 1495

原创 Spark统计词汇量/排行榜/中位数

简介使用python调用spark的api接口很方便,代码简洁。 首先要安装python、pip、pyspark。pip install pyspark数据格式words.txtword1word2word3...统计词汇量workdcount.py# -*- coding:utf-8 -*-from pyspark import SparkConf, SparkContextconf =

2017-09-06 09:29:54 2134

原创 Windows程序设计-输出文字

WM_PAINT消息窗口消息处理程序会接收到一个WM_PAINT消息的事件:在使用者移动窗口或显示窗口时,窗口中先前被隐藏的区域重新可见。使用者改变窗口的大小(如果窗口类别样式有着CS_HREDRAW和CS_VREDRAW位旗标的设定)。程序使用ScrollWindow或ScrollDC函数滚动显示区域的一部分。程序使用InvalidateRect或InvalidateRgn函数刻意产生WM

2017-09-05 11:08:02 638

原创 Python lxml解析HTML并用xpath获取元素

代码使用方法见注释#-*- coding: UTF-8 -*-from lxml import etreesource = u'''<div><p class="p1" data-a="1">测试数据1</p><p class="p1" data-a="2">测试数据2</p><p class="p1" data-a="3" style="height:100px;"><strong cla

2017-09-04 17:32:23 5500

原创 Windows程序设计-窗口和消息

完整代码注释#include <Windows.h>LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow){ static TCHAR szAp

2017-09-03 20:51:55 722

原创 Windows程序设计-宽字符Unicode

Unicode简介Unicode是为了解决ASCII编码紧缺,为了解决ANSI编码分页不一致等问题而产生的编码格式,属于宽字符编码,可以表示65536个字符。宽字符(Unicode)c定义并初始化普通字符char c = 'A';char * p = "Hello!"char a[] = "Hello!"; // 全局变量使用static char a[] = "Hello!"; // 局部

2017-09-03 15:28:36 798

原创 Windows程序设计-HelloWorld

windows程序#include <Windows.h>int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow){ MessageBox(NULL, TEXT("Hello, Windows 98!"), TEXT(

2017-09-03 11:48:26 653 1

安卓 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

Reinforcement Learning An Introduction Second edition

Reinforcement Learning An Introduction Second edition

2017-12-14

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

空空如也

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

TA关注的人

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