码迷,mamicode.com
首页 >  
搜索关键字:elf hook    ( 5575个结果
drf之模块
1.介绍 安装 pip install djangorestframework 注册:在INSTALLED_APPS列表中写:”rest_framework” drf框架的封装风格: import rest_framework from rest_framework.views import Vie ...
分类:其他好文   时间:2020-06-16 23:52:56    阅读次数:86
[WesternCTF2018]shrine(SSTI+过滤)
记一道存在过滤的模板注入的题。直接给源代码 import flask import os app = flask.Flask(__name__) app.config['FLAG'] = os.environ.pop('FLAG') @app.route('/') def index(): retu ...
分类:其他好文   时间:2020-06-16 23:47:40    阅读次数:155
ODOO里视图开发案例---定义一个像tree、form一样的视图
odoo里视图模型MVC模式: 例子:在原来的视图上修改他: var CustomRenderer = KanbanRenderer.extend({ ....});var CustomRendererModel = KanbanModel.extend({ ....});var CustomRen ...
分类:其他好文   时间:2020-06-16 23:39:13    阅读次数:191
122. 买卖股票的最佳时机II
暴力法计算所有可能的交易组合相对应的利润,并找出它们其中的最大利润。Python3class Solution: def maxProfit(self, prices: List[int]) -> int: return self.calculate(prices, 0) def calculate... ...
分类:其他好文   时间:2020-06-16 23:27:59    阅读次数:60
Linux— 查看系统的位数
[root@zf-test-web01-4 ~]# file /bin/ls #"/bin/ls" is a binary file /bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (u ...
分类:系统相关   时间:2020-06-16 14:52:43    阅读次数:54
LocationUtil
package com.android.demo.lileidemo.utils;import android.Manifest;import android.content.Context;import android.content.pm.PackageManager;import androi ...
分类:其他好文   时间:2020-06-16 14:43:38    阅读次数:68
QA Issue: No GNU_HASH in the elf binary
解决方法: do_install() { install -d ${D}${libdir} cp -a --no-preserve=ownership ${S}/libsample.so.3.5 ${D}${libdir} ln -sf libsample.so.3.5 ${D}${libdir}/ ...
分类:其他好文   时间:2020-06-15 17:39:20    阅读次数:122
IfcElementCompositionEnum
此枚举指示空间结构元素或代理的组成。IFC2x中增加的新枚举 ConstantDescription COMPLEX A group or aggregation of similar elements. ELEMENT An (undivided) element itself. PARTIAL ...
分类:编程语言   时间:2020-06-15 10:28:07    阅读次数:63
pyTorch使用mnist数据集实现手写数字识别
使用mnist数据集实现手写数字识别是入门必做吧。这里使用pyTorch框架进行简单神经网络的搭建。 首先导入需要的包。 1 import torch 2 import torch.nn as nn 3 import torch.utils.data as Data 4 import torchvi ...
分类:其他好文   时间:2020-06-14 19:02:50    阅读次数:76
我的nvim配置
" __ _____ __ __ ____ ____ ____ ___ _ _ _____ ___ ____ " \ \ / /_ | / | _ \ / | / / _ | \ | | _| / | " \ \ / / | || |/| | |) | | | | | | | | | | | | | ...
分类:系统相关   时间:2020-06-14 18:40:02    阅读次数:118
5575条   上一页 1 ... 30 31 32 33 34 ... 558 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!