码迷,mamicode.com
首页 >  
搜索关键字:elf hook    ( 5575个结果
Just a Hook HDU - 1698 (区间修改+区间查询)
Just a Hook HDU - 1698 In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of the heroes. The hook is made up of sever ...
分类:其他好文   时间:2020-05-05 00:29:03    阅读次数:57
[React Testing] Test your Custom Hook Module with react-hooks-testing-library
It's always important to test your code, especially if you're open-sourcing it for others to use. In this video, we'll learn how to use react-hooks-te ...
分类:其他好文   时间:2020-05-04 19:40:17    阅读次数:73
自调整表(self-adjusting list)的实现
自调整表:所有的插入操作都发生在表的前端。 find操作:当一个元素由find访问的时候,该元素就被移到表的前端,而其他元素的相对顺序保持不变。 以下展示自调整表的数组实现和链表实现。 数组实现: #include <iostream> template <typename Object> clas ...
分类:其他好文   时间:2020-05-04 19:39:03    阅读次数:151
第二十三篇 -- 为窗体添加背景图片
效果图: play.py #!/usr/bin/env python # _*_ coding: UTF-8 _*_ """ @Project -> File : Operate_system_ModeView_structure -> play.py @IDE : PyCharm @Author ...
分类:Windows程序   时间:2020-05-04 15:23:27    阅读次数:79
软件包管理
软件包管理 软件相关概念 ABI ABI即 Application Binary Interface Windows与Linux不兼容 ELF(Executable and Linkable Format) PE(Portable Executable) 库级别的虚拟化: Linux: WINE W ...
分类:其他好文   时间:2020-05-04 13:36:39    阅读次数:60
Python_Selenium之basepage 识别元素、浏览器操作、获取属性、鼠标事件、键盘事件、弹窗、切换frame、切换句柄封装(持续更新中...)
#coding=gbkimport osimport timefrom selenium import webdriverfrom selenium.webdriver.common.by import By #导入by方法from selenium.webdriver.support.wait i ...
分类:编程语言   时间:2020-05-04 13:31:50    阅读次数:91
HTML大纲
1.快捷键:单词+TAB 2.初始代码 <!DOCTYPE html> 文档声明 <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-sca ...
分类:Web程序   时间:2020-05-04 09:24:49    阅读次数:103
Netty 异步模型
基本介绍 1) 异步的概念和同步相对。 当一个异步过程调用发出后, 调用者不能立刻得到结果。 实际处理这个调用的组件在完成后, 通过状态、 通知和回调来通知调用者。2) Netty 中的 I/O 操作是异步的, 包括 Bind、 Write、 Connect 等操作会简单的返回一个 ChannelF ...
分类:Web程序   时间:2020-05-04 01:01:54    阅读次数:92
Leetcode 1.两数之和
题目描述 给定整数数组 和目标值,在数组中找到和为目标值的两个整数,并返回他们的下标。,示例: nums = [2, 7, 11, 15], target = 9 nums[0] + nums[1] = 2 + 7 = 9 返回 [0, 1] 解决方法 1. 双重for循环: (运行时间60ms) ...
分类:其他好文   时间:2020-05-03 20:27:42    阅读次数:55
HOOK函数ZwQuerySystemInformation实现进程隐藏
实现原理: 由于遍历进程通常是通过调用WIN32 API函数 EnumProcesses 或是CreateToolhelp32Snapshot 等来实现的。 通过跟踪逆向这些WIN32 API函数可知,它们内部最终是通过调用ZwQuerySystemInformation函数来检索系 统进程信息的, ...
分类:系统相关   时间:2020-05-03 16:28:11    阅读次数:89
5575条   上一页 1 ... 44 45 46 47 48 ... 558 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!