摘要: After you understand how C-level extensibility works in Dreamweaver and its dependency on certain data types and functions, it’s useful to know how to... 阅读全文
posted @ 2014-11-07 23:47 简道 阅读(761) 评论(0) 推荐(0) 编辑
摘要: //browseFile(fieldToStoreURL){//getFullPath(filePathURL){//getSimpleFileName() {//fixUpPath(docURL,siteURL,savedPath)//fileIsCurrentlyOpen(absoluteFil... 阅读全文
posted @ 2014-11-07 23:32 简道 阅读(539) 评论(0) 推荐(0) 编辑
摘要: Available commands:ascii Set transfer mode to ASCIIbinary Set transfer mode to binarycd path ... 阅读全文
posted @ 2014-08-25 23:11 简道 阅读(4268) 评论(2) 推荐(0) 编辑
摘要: XAML界面很简单,只有一个按钮和一个lable元素,要实现点击button时,lable的内容从0开始自动递增。 C#private void button_Click(object sender, RoutedEventArgs e){ for (int i = 0; i ... 阅读全文
posted @ 2014-08-21 23:39 简道 阅读(1644) 评论(0) 推荐(0) 编辑
摘要: Android SDK 为 Android 应用的开发、测试和调试提了必要的API库和开发工具。如果你是一个android 开发新手,推荐你下载使用 ADT Bundle 以快速开始android 的开发,它提供了必要的 android sdk 组件和一个内置 ADT 的 Eclipse 版本。 阅读全文
posted @ 2014-08-05 16:34 简道 阅读(814) 评论(0) 推荐(0) 编辑
摘要: Android Studio 是一个新的基于 IntelliJ IDEA Android 的安卓开发环境,它对Eclipse ADT 进行了改进并新增了功能。FeatureAndroid StudioADTBuild systemGradleAntMaven-based build dependen... 阅读全文
posted @ 2014-08-05 15:51 简道 阅读(496) 评论(0) 推荐(0) 编辑
摘要: I worked on a personal project recently, and I was trying to find the jQuery scrollbar plugin that's perfect. But there was no perfect scrollbar plugin. That's why I decided to make one. 阅读全文
posted @ 2014-07-24 09:10 简道 阅读(2040) 评论(0) 推荐(0) 编辑
摘要: 开始前的准备PHP安装包下载:http://windows.php.net/downloads/releases/php-5.5.14-Win32-VC11-x86.zipNginx 下载地址:http://nginx.org/download/nginx-1.6.0.zipRunHiddenCon... 阅读全文
posted @ 2014-07-12 23:26 简道 阅读(549) 评论(0) 推荐(0) 编辑
摘要: 登陆mysqlmysql -u username -p创建用户名配置权限,这里为该用户配置tablename表的全部权限,也可以指定GRANT ALL PRIVILEGES ON database.* TO 'username'@'hostname' IDENTIFIED BY 'password'... 阅读全文
posted @ 2014-07-10 01:44 简道 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 日常的网页开发调试工作中,经常需要知道指定的某个网页元素绑定了哪些事件以及绑定代码的位置,下面介绍三种用来跟踪页面中的事件的方法。 阅读全文
posted @ 2014-06-26 11:03 简道 阅读(5116) 评论(5) 推荐(3) 编辑
摘要: 有多重途径可以安装Laravel,下面是通过composer安装laravel的方法。Composer 是 PHP 的一个依赖管理工具。它允许你申明项目所依赖的代码库,它会在你的项目中为你安装他们。composer下载及相关使用说明见:https://getcomposer.org/ 阅读全文
posted @ 2014-06-23 12:07 简道 阅读(670) 评论(0) 推荐(1) 编辑
摘要: PHP高级程序设计 学习笔记 2014.06.18MVC (Model-View-Controller,模型-视图-控制器)是一种可以简化应用程序开发和维护的非常常用的设计模式。它从逻辑上把应用程序分隔为个部分。模型部分负责应用程序的业务逻辑,封装访问数据库的方法并提供一个可以重用的类库。视图部分控... 阅读全文
posted @ 2014-06-18 23:53 简道 阅读(765) 评论(2) 推荐(1) 编辑
摘要: ArrayAccess接口ArrayAccess接口是对象的行为看起来像个数组,定义了四个方法。接口概要如下:ArrayAccess {/* Methods */abstract public boolean offsetExists ( mixed $offset )abstract public... 阅读全文
posted @ 2014-06-17 00:52 简道 阅读(508) 评论(0) 推荐(0) 编辑
摘要: SPL 提供了一系列标准异常。日常的使用中我们应该根据需求科学的使用它们,来使我们的程序更加健壮。LogicException 是从 Exception 基类派生的,没有添加任何附加方法。抛出逻辑异常和抛出标准一次的方法类似,区别在于逻辑异常须在应用程序编写有误时才抛出。下面演示下LogicExce... 阅读全文
posted @ 2014-06-16 23:34 简道 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: SPL(标准PHP库 - Standard PHP Library)是PHP5面向对象功能中重要的部分。原文解释是这样的“The Standard PHP Library (SPL) is a collection of interfaces and classes that are meant to solve common problems”。 阅读全文
posted @ 2014-06-15 22:06 简道 阅读(888) 评论(0) 推荐(0) 编辑