代码改变世界

项目开始第二天---搭框架

2011-11-09 13:18 by 小寇子, 238 阅读, 0 推荐, 收藏,
摘要:崩溃的一天,让我开始怀疑是自己的teamwork欠缺,还是对方的问题,一遇到这样的开发者,跟自己期待值相差的时候,开始有点抵触.总结: 1.以后自己带大家搭框架 会有明确的文档,告诉开发者需要什么软件,什么版本,和下载地址 2.不要抵触别人,管理好自己的期待值. 阅读全文

Facebook Social Plugins ----Like Button

2011-03-16 23:49 by 小寇子, 294 阅读, 0 推荐, 收藏,
摘要:The most important Social Plugin is the Like Button, which enables users to share your page with their friends with one click. You can add a Like button to any page with an iframe tag:View Code1<html>2<head>3<title>MyGreatWebpage</title>4</head>5<body>6<iframes 阅读全文

Skype API

2011-03-07 23:18 by 小寇子, 743 阅读, 0 推荐, 收藏,
摘要:INTRODUCTIONThe Skype API is divided into 2 separate parts. Skype Phone API and SkypeAccess API:• Skype Phone API is an interface that Skype uses to access devices,including, but not limited to, USB phones. The device by itself does nothave to be a hardware device, but generally it is. This API is c 阅读全文

一些开源的Google项目

2010-11-23 22:10 by 小寇子, 466 阅读, 0 推荐, 收藏,
摘要:1.Google Chart Tools http://code.google.com/apis/charttools/A rich gallery of visualizations provided as: Image charts - using a simple URL request to a Google chart server Interactive charts - using ... 阅读全文

Linux输出重定向[网络摘抄]

2010-09-07 13:27 by 小寇子, 10 阅读, 0 推荐, 收藏,
只有注册用户登录后才能阅读该文。 阅读全文

工具函数

2010-06-28 11:15 by 小寇子, 214 阅读, 0 推荐, 收藏,
摘要:/** * 在控制台执行命令,并返回String字符串,默认操作系统为Windows */ public static String executeCmd(String strCmd) throws Exception { String os = System.getProperty("os.name").toLowerCase(); Process p = null; if (os.c... 阅读全文

Ant Task上路。。。。

2010-06-23 14:24 by 小寇子, 317 阅读, 1 推荐, 收藏,
摘要:1.ant Runs Ant on a supplied buildfile. 在一个build.xml里运行外部的build.xml的projet或project里的target. 属性1:antfile 指定外部build.xml的位置 属性2:useNativeBasedir 为true的时候,basedir仍然用外部build.xml里生命的basedir 阅读全文

工作中的各种难题。。。。

2010-05-26 23:04 by 小寇子, 1064 阅读, 0 推荐, 收藏,
摘要:安装后apache启动错误httpd: Syntax error on line 53 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/mod_dav_svn.so into server: /usr/local/apache2/modules/mod_dav_svn.so: undefin... 阅读全文

Google Base Data API

2010-04-11 22:21 by 小寇子, 393 阅读, 0 推荐, 收藏,
摘要:What is the Google Base Data API?   Google Base is a free service for submiting all kinds of content for Google to host and to make searchable online. It allows content providers to upload stru... 阅读全文

UiBinder小试牛刀

2009-11-20 22:36 by 小寇子, 786 阅读, 0 推荐, 收藏,
摘要:public interfaceUiBinder<U,O>Interface implemented by classes that generate DOM or Widget structures from ui.xml template files, and which inject portions of the generated UI into the fields of ... 阅读全文