码迷,mamicode.com
首页 >  
搜索关键字:a star    ( 10038个结果
marquee横向无缝滚动无js
<!DOCTYPE html><html><head><meta charset="utf-8"> <title></title></head><body><marquee behavior="scroll" contenteditable="true" onstart="this.firstChi ...
分类:Web程序   时间:2017-07-11 00:48:39    阅读次数:295
[Leetcode] search for a range 寻找范围
Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the or ...
分类:其他好文   时间:2017-07-10 20:19:18    阅读次数:163
Java经常使用类及其经常用法
1、ArrayList java.util.ArrayList<E> add(E e) //插入尾部 add(int index, E element) remove(int index) remove(Object o) get(int index) indexOf() lastIndexOf() ...
分类:编程语言   时间:2017-07-10 20:08:31    阅读次数:165
bat脚本启动Burp
我的burp点击之后并不会直接打开,需要用命令启动,所以在网上找了一下快捷启动的方法。 ①新建一个文本文档,输入start javaw -jar “burp路径”, ②另存为***.bat,文件类型选择所有文件。 ③点击bat脚本就可以直接打开burp了。 ...
分类:其他好文   时间:2017-07-10 18:06:06    阅读次数:289
PHP学习总结(一)
》PHP 面向对象 》PHP 模板 1. 为什么要使用模板? 为了分离php和HTML代码,使可维护性更高! 2. 为什么要缓存模板? 为了提高加载速度,提高性能和数据库承受能力! 3. 为什么要把模板编译成PHP文件? 模板中使用了一些自定义语法,如 {$name} , 为了使其正常显示,需将它转 ...
分类:Web程序   时间:2017-07-10 16:42:16    阅读次数:139
windows下安装Memcached服务器,PHP的memcache扩展
Memcahed 介绍:Memcahed是一个内存缓存服务器 (类似MySQL服务器) 作用:提高web的响应速度,例如缓存数据库查询结果 原理:把数据存到内存中 (提高速度的原因) 教程相关 系统:windows7(x64) Memcached版本:1.4.4 PHP版本:5.6.30 memca ...
分类:Windows程序   时间:2017-07-10 16:26:50    阅读次数:200
linux环境部署常用命令
1. 查看当前所属目录:pwd 2. 回到上级目录:cd ../ 回到上两级目录:cd ../ ../ 3. 查看当前目录下有哪些文件:ls 4. 查看最后100行日志:tail -100 catalina.out 动态重看操作日志:tail -f catalina.out 5. 结束:ctrl+c ...
分类:系统相关   时间:2017-07-10 15:10:02    阅读次数:702
lua table
http://www.cnblogs.com/whiteyun/archive/2009/08/10/1543139.html ...
分类:其他好文   时间:2017-07-10 14:35:00    阅读次数:172
wmic
先决条件:a. 启动Windows Management Instrumentation服务,开放TCP135端口。b. 本地安全策略的“网络访问: 本地帐户的共享和安全模式”应设为“经典-本地用户以自己的身份验证”。1. wmic /node:"192.168.1.20" /user:"domai ...
分类:其他好文   时间:2017-07-10 14:27:53    阅读次数:258
CUDA gputimer.h头文件
#ifndef __GPU_TIMER_H__ #define __GPU_TIMER_H__ struct GpuTimer { cudaEvent_t start; cudaEvent_t stop; GpuTimer() { cudaEventCreate(&start); cudaEvent ...
分类:其他好文   时间:2017-07-09 23:57:56    阅读次数:754
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!