?参数类型是Constant Pointer也就是 UnsafePointer 可以传入的类型: UnsafePointer/UnsafeMutablePointer/AutoreleasingUnsafeMutablePointerString。如果Type 是 UInt8 或 Int8。可变类型... ...
分类:
其他好文 时间:
2019-03-31 09:49:24
阅读次数:
159
这次TCTF中一道题,给出了一个PHP一句话木马,设置了open_basedir,disable_functions包含所有执行系统命令的函数,然后目标是运行根目录下的/readflag,目标很明确,即绕过disable_functions和open_basedir,当然我还是一如既往的菜,整场比赛 ...
分类:
其他好文 时间:
2019-03-29 00:40:20
阅读次数:
217
网上无法找到 gcc-8.3.0 的 posix 版本, 所以自己便宜了这个版本 gcc -v Using built-in specs. COLLECT_GCC=d:\msys\mingw\bin\gcc.exe COLLECT_LTO_WRAPPER=d:/msys/mingw/bin/../l ...
分类:
其他好文 时间:
2019-03-28 13:35:33
阅读次数:
238
一:匿名函数 (在php5.3.0 或以上才能使用) php中的匿名函数(Anonymous functions), 也叫闭包函数(closures), 允许指定一个没有名称的函数。最常用的就是回调函数的参数值。(http://php.net/manual/zh/functions.anonymou ...
分类:
其他好文 时间:
2019-03-27 14:05:11
阅读次数:
158
Description Farmer John has built a new long barn, with N (2 <= N <= 100,000) stalls. The stalls are located along a straight line at positions x1,... ...
分类:
其他好文 时间:
2019-03-26 09:23:14
阅读次数:
195
Python提供了很多内置的工具函数(Built-inFunctions),在最新的Python3官方文档中,它列出了69个。大部分函数是我们经常使用的,例如print()、open()与dir(),而有一些函数虽然不常用,但它们在某些场景下,却能发挥出不一般的作用。内置函数们能够被“提拔”出来,这就意味着它们皆有独到之处,有用武之地。因此,掌握内置函数的用法,就成了我们应该点亮的技能。在《Pyt
分类:
编程语言 时间:
2019-03-24 23:12:44
阅读次数:
256
参考:Python的functools.reduce用法 python 3.0以后, reduce已经不在built-in function里了, 要用它就得from functools import reduce. reduce的用法 reduce(function, sequence[, ini ...
分类:
其他好文 时间:
2019-03-21 13:10:28
阅读次数:
168
Can you bind arrow functions? https://stackoverflow.com/questions/33308121/can-you-bind-arrow-functions You cannot "rebind" an arrow function. It will ...
分类:
其他好文 时间:
2019-03-21 09:13:12
阅读次数:
161
对List、Dict进行排序,Python提供了两个方法对给定的List L进行排序,方法1.用List的成员函数sort进行排序,在本地进行排序,不返回副本方法2.用built-in函数sorted进行排序(从2.4开始),返回副本,原始输入不变 sorted sorted(iterable, k ...
分类:
其他好文 时间:
2019-03-19 21:46:45
阅读次数:
178
Let's we have some prediction functions, for each prediction function has a corresponding tag: So if we have input as: Also we wish our program to the ...
分类:
其他好文 时间:
2019-03-19 21:28:05
阅读次数:
123