2017年8月15日
摘要: FIddler2 1、FIddler2 request请求的參数出现中文乱码问题时,须要进行一下设置: 打开注冊表编辑器,找到HKCU\Software\Microsoft\Fiddler 2\,在里面加入一个字符串值,名叫HeaderEncoding,值设置为默认编码。建议设成GB18030。然后 阅读全文
posted @ 2017-08-15 21:48 blfbuaa 阅读(88) 评论(0) 推荐(0) 编辑
摘要: <%@ page language="java" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE html> <html lang="en"> <head 阅读全文
posted @ 2017-08-15 20:50 blfbuaa 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 一、详细使用方法可參考官方文档:http://www.my97.net/dp/demo/resource/main.asp 二、工作中的样例: 1、日期选择后,时间自己主动填充为当前时间 代码: <input class="texts one Wdate" id="StartTime_date" n 阅读全文
posted @ 2017-08-15 20:11 blfbuaa 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 3Sum Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the su 阅读全文
posted @ 2017-08-15 18:48 blfbuaa 阅读(215) 评论(0) 推荐(0) 编辑
摘要: JM是H.264编码的官方实现,与X264开源实现相比,JM的实现比較完整,代码更加规范。并且同一时候提供了编码和解码过程。便于对照分析。可是JM的最大缺点是效率比X264低。因此。非常多应用都基于X264来做,可是,假如要进行研究学习的话。JM更keyi为合适。 JM18.6能够支持linux、U 阅读全文
posted @ 2017-08-15 17:51 blfbuaa 阅读(715) 评论(0) 推荐(0) 编辑
摘要: 一、概述 最近注意到QQ新版使用了沉浸式状态栏,ok。先声明一下:本篇博客效果下图: 关于这个状态栏变色究竟叫「Immersive Mode」/「Translucent Bars」有兴趣能够去 为什么在国内会有非常多用户把 「透明栏」(Translucent Bars)称作 「沉浸式顶栏」?上面了解 阅读全文
posted @ 2017-08-15 17:18 blfbuaa 阅读(267) 评论(0) 推荐(0) 编辑
摘要: Palindrome Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 53647 Accepted: 18522 Description A palindrome is a symmetrical string, that is, 阅读全文
posted @ 2017-08-15 16:21 blfbuaa 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://blog.csdn.net/fangaoxin/article/details/6952954 会话(Session)跟踪是Web程序中经常使用的技术,用来跟踪用户的整个会话。经常使用的会话跟踪技术是Cookie与Session。Cookie通过在client记录信息确定用户 阅读全文
posted @ 2017-08-15 14:48 blfbuaa 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Ulua_toLua_基本案例(六)_LuaCoroutine2 using UnityEngine; using System.Collections; using LuaInterface; public class TestCoroutine2 : MonoBehaviour { LuaSta 阅读全文
posted @ 2017-08-15 14:21 blfbuaa 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 随喜结佛缘 程序猿之歌 朝阳承载你青春的气息, 晚霞承载你忙碌的荣光。 星夜灯光是你疲劳身躯坚持鏖战的抚慰。 为什么这样忙?为什么这么累? 由于项目里有无限的任务与责任。 忍耐是你坚守的源泉, 信念是你前进的动力, 追逐梦想是你一生永恒的夙愿。 为什么这样忙?为什么这么累? 由于程序猿心中也深藏神圣 阅读全文
posted @ 2017-08-15 13:14 blfbuaa 阅读(157) 评论(0) 推荐(0) 编辑
摘要: /*By Jiangong SUN*/ I've encountered a problem in one server, which is : Every time I login into the server, it creates a new temporary user profile f 阅读全文
posted @ 2017-08-15 11:40 blfbuaa 阅读(268) 评论(0) 推荐(0) 编辑
摘要: Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maxim 阅读全文
posted @ 2017-08-15 10:01 blfbuaa 阅读(96) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <iostream> #include <algorithm> #include <vector> #include <queue> #include <set> #include <map> #incl 阅读全文
posted @ 2017-08-15 09:26 blfbuaa 阅读(263) 评论(0) 推荐(0) 编辑
摘要: matlab矩阵内存预分配就意味着,划定一个固定的内存块,各数据可直接按“行、列指数”存放到对应的元素中。若矩阵中不预配置内存。则随着“行、列指数”的变大。MATLAB就必须不断地为矩阵找到新的“空的内存”,从而导致“建造矩阵”的速度大大下降。 Hilbert矩阵的数学描写叙述 Hilbert矩阵是 阅读全文
posted @ 2017-08-15 09:04 blfbuaa 阅读(11568) 评论(0) 推荐(0) 编辑
摘要: Windows Socket+网络 Winsock是 Windows下套接字标准。 Winsock 编程分为UDP【Windows socket + UDP】,TCP【Windows socket + TCP】编程。Windows socket 建立在网络基础之上,UDP编程採用用户数据报协议(Us 阅读全文
posted @ 2017-08-15 08:19 blfbuaa 阅读(191) 评论(0) 推荐(0) 编辑