首页 > 2016年02月24日 > 全部分享
uboot命令分析+实现【转】
转自:http://xouou.iteye.com/blog/2150061 先贴一个重要结构,位于uboot/include/command.h,这个结构代表每个uboot命令 struct cmd_tbl_s { char *name; /* Command Name */ int maxarg
分类:其他   时间:2016-02-24 10:47:50    收藏:0  评论:0  赞:0  阅读:215
设置DIV根据内容自动调整高度的三个方法
Div即父容器在Firefox、Chrome、Safari中不会根据内容自动调节高度,我们看下面的HTML代码: <divid="main"><divid="content"></div></div> 当Content内容很多时,即使main设置了高度100%或auto。在除IE外的其他浏览器中还是
分类:其他   时间:2016-02-24 10:47:40    收藏:0  评论:0  赞:0  阅读:281
IOS 跳转到系统的url
About — prefs:root=General&path=AboutAccessibility — prefs:root=General&path=ACCESSIBILITYAirplane Mode On — prefs:root=AIRPLANE_MODEAuto-Lock — prefs
分类:移动平台   时间:2016-02-24 10:47:30    收藏:0  评论:0  赞:0  阅读:183
python
try语句设立了这样一种情形,其中try语句后面可以跟一个except语句每个except语句都处理错误,错误也被正式的称为异常,当python对try语句中的代码求值时会抛出异常,而不是是程序失败 首先使用except处理一种类型的错误列如在试图检查冰箱时得到的keyError有多种类型的异常,每
分类:编程语言   时间:2016-02-24 10:47:20    收藏:0  评论:0  赞:0  阅读:260
CodeForces - 61E Enemy is weak
Description The Romans have attacked again. This time they are much more than the Persians but Shapur is ready to defeat them. He says: "A lion is nev
分类:其他   时间:2016-02-24 10:47:00    收藏:0  评论:0  赞:0  阅读:174
activity 嵌套一级fragment,一级fragment嵌套二级fragment,在一级fragment中刷新二级fragment中的UI
今天遇到挺纠结的问题,由于产品设计的问题,技术上涉及到activity 嵌套一级fragment,一级fragment嵌套二级fragment,在一级fragment中刷新二级fragment中的UI。 其中一级fragment中有顶部搜索栏,搜索栏下面有viewpager+fragment的布局,
分类:其他   时间:2016-02-24 10:46:50    收藏:0  评论:0  赞:0  阅读:905
C# 委托
delegate 是表示对具有特定参数列表和返回类型的方法的引用的类型。在实例化委托时,你可以将其实例与任何具有兼容签名和返回类型的方法相关联。你可以通过委托实例调用方法。 委托用于将方法作为参数传递给其他方法。事件处理程序就是通过委托调用的方法。你可以创建一个自定义方法,当发生特定事件时,某个类(
分类:Windows开发   时间:2016-02-24 10:46:41    收藏:0  评论:0  赞:0  阅读:205
div行内样式style常用属性
div 行内样式style常用属性 观看演示 下载源代码 〖 作者:Nimitz 〗〖 发布日期:2014-02-16 〗 一、常用属性: 1、Height:设置DIV的高度。 2、Width:设置DIV的宽度。 例: <div style="width:200px;height:200px;"><
分类:其他   时间:2016-02-24 10:46:20    收藏:0  评论:0  赞:0  阅读:169
(转)location.href 用法
*.location.href 用法: top.location.href=”url” 在顶层页面打开url(跳出框架) self.location.href=”url” 仅在本页面打开url地址 parent.location.href=”url” 在父窗口打开Url地址 this.locatio
分类:Web开发   时间:2016-02-24 10:46:10    收藏:0  评论:0  赞:0  阅读:297
从数据库中生成XML文件
前台页面<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//
分类:数据库技术   时间:2016-02-24 10:46:03    收藏:0  评论:0  赞:0  阅读:208
核心ASP.NET
1.用于Web应用程序的.NET Framework ASP.NET是.NET Framework的一部分,它可以在通过HTTP请求文档是在WEB服务器上动态创建它们,在.Net Framework中创建Web应用程序有不同的架构,ASP.NET Web From是这些技术的旧版本,ASP.NET 
分类:Web开发   时间:2016-02-24 10:45:50    收藏:0  评论:0  赞:0  阅读:302
Leetcode 70 Climbing Stairs
其实就是斐波那契数列 1 class Solution { 2 public: 3 int climbStairs(int n) { 4 int f1 = 0; 5 int f2 = 1; 6 int f3 = 0; 7 for(int i = 0; i < n; ++i){ 8 f3 = f2 +
分类:其他   时间:2016-02-24 10:45:40    收藏:0  评论:0  赞:0  阅读:209
关于IPicture::Render函数
1、IPicture::Render简介 HRESULT Render( HDC hdc, //Handle of device context on which to render the image long x, //Horizontal position of image in hdc lo
分类:其他   时间:2016-02-24 10:45:10    收藏:0  评论:0  赞:0  阅读:249
ProductHunt:创业公司产品猎场和秀场
Product模式介绍ProductHunt(站点www.producthunt.com)是一个国外新出现的创业公司产品展示和交流平台,顾名思义。对于创业者而言这里是一个秀场,而对于投资人而言这里是一个猎场。这里的创业公司指的是互联网、移动互联网、软件工具、在线服务、产品设计、新硬件相关领域的技术创
分类:其他   时间:2016-02-24 10:44:50    收藏:0  评论:0  赞:0  阅读:194
reduce and each_with_object
target = [{material: 'legend', quantity: '5'}, {material: 'angel', quantity: '10'}, {material: 'angel', quantity: '5'}] target.each_with_object(Hash.n
分类:其他   时间:2016-02-24 10:44:40    收藏:0  评论:0  赞:0  阅读:237
Reverse Words in a String
Given an input string, reverse the string word by word. For example, Given s = “the sky is blue”, return “blue is sky the”. Update (2015-02-12): For C
分类:其他   时间:2016-02-24 10:44:20    收藏:0  评论:0  赞:0  阅读:159
Fedora23 安装 psycopg2
1. 首先安装postgresql数据库 yum install postgresql yum install postgresql-server yum install pgadmin3 yum install postgresql-contrib 2. 前往官网下载源代码 http://init
分类:其他   时间:2016-02-24 10:44:00    收藏:0  评论:0  赞:0  阅读:327
SaaS、PaaS、IaaS的含义与区别
先上个图,直观的了解一下 云计算有SPI,即SaaS、PaaS和IaaS三大服务模式。 PaaS和IaaS源于SaaS SaaS Software as a Service 软件即服务,提供给客户的服务是应用程序 PaaS Platform as a Service 平台即服务,提供给客户的服务是软
分类:其他   时间:2016-02-24 10:43:50    收藏:0  评论:0  赞:0  阅读:284
SpringMVC表单标签简介
在使用SpringMVC的时候我们可以使用Spring封装的一系列表单标签,这些标签都可以访问到ModelMap中的内容。下面将对这些标签一一介绍。 在正式介绍SpringMVC的表单标签之前,我们需要先在JSP中声明使用的标签,具体做法是在JSP文件的顶部加入以下指令: Jsp代码 <%@tagl
分类:编程语言   时间:2016-02-24 10:43:40    收藏:0  评论:0  赞:0  阅读:302
Android 日期对话框DatePickerDialog
<?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/LinearLayout01" android:layout_width="fill_parent" android:layout_height="fill_p
分类:移动平台   时间:2016-02-24 10:43:31    收藏:0  评论:0  赞:0  阅读:212
1372条   上一页 1 ... 58 59 60 61 62 ... 69 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!