自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(69)
  • 收藏
  • 关注

转载 Scrapy Toturial

.转载于:https://www.cnblogs.com/beyond-Acm/p/4859207.html

2015-10-07 19:34:00 156

转载 PHPMailer

.转载于:https://www.cnblogs.com/beyond-Acm/p/4847365.html

2015-09-29 21:33:00 116

转载 User_Authentication_Personalization Model

花了一天时间实现了一个 简单的用户登录验证的小模型。基本实现了现在 用户登录模块的绝大多数功能, 也算是 熟悉了一下系统的逻辑。在这个小模型中, 实现了以下的基本功能 : Logging in and authenticating users . Managing passwords Recording user preferences Personalizi...

2015-09-29 21:10:00 326

转载 SQL && NoSQL

数据库 按照 一定规则保存 数据, 程序再发起 查询 取回所需的数据。Web 程序 最常用基于 关系模型的数据库,这种 数据库 也称为 SQL 数据库, 因为使用结构化查询语言。But in recent years document-oriented and key-value databases, informally known togetheras NoSQL da...

2015-09-23 15:44:00 104

转载 CVS && HTML && XML && JSON

.转载于:https://www.cnblogs.com/beyond-Acm/p/4828995.html

2015-09-22 15:05:00 67

转载 使用 Ajax

Ajax( Asynchronous JavaScript and XML)在 Ajax 中 Asynchronous 是指异步, 代表 客户端(Client 通常是指浏览器) 可以向服务器(Server) 发出请求 用户无须等待相应。 异步是 Ajax 技术的核心所在。Ajax 只是一个概念,用来描述 客户端XMLHTTPRequest 与服务器 Server 脚本之间的交互。...

2015-09-21 13:51:00 63

转载 Enhacing the content with JavaScript

What not to do :In theory , you could use JavaScript to add important content to a web page.However, that would be a very bad idea, because there would be no room for graceful degradation....

2015-09-14 15:18:00 86

转载 Alter the structure of web pages with JavaScript

Most of the DOM methods you've seen so far are useful for identifying elements.Both getElementById and getElementByTagName allow you to quickly and easilytarget specific element nodesin a d...

2015-09-10 15:05:00 100

转载 The Image Gallery Revisited

Lets apply the Best practices to the Image Gallery ./***      index.html      ***/<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <ti...

2015-09-10 11:25:00 99

转载 Best Practices in JavaScript

Some items you should konw : Graceful degradation : ensuring that your web pages still work without JavaScript Unobtrusive JavaScript : separating structure from behavior Backwar...

2015-09-10 10:20:00 93

转载 A JavaScript Image Gallery

childNodes property:The childNodes property is a way of getting information about the children of any element in adocument's node tree. It returns an array containing all the children of an...

2015-09-09 18:58:00 115

转载 The DOM in JavaScript

DOM : Document Object ModelD is for document :The DOM cant work without a document . When you create a web page and load it in a web browser, the DOM comes to life. It takes the document ...

2015-09-09 15:42:00 90

转载 A brief look at the Objects in JavaScript

ObjectsAn object is a self-contained collection of data. This data comes in to forms: properties and methods A property is a variable belonging to an object A method is a function...

2015-09-09 13:48:00 87

转载 3 ways of including JavaScript in HTML

Code written in JavaScript must be executed from a document written in HTML.There are three ways of doing this :1. you can place the JavaScript between <script> tags within the <head...

2015-09-09 11:38:00 77

转载 #3 working with data stored in files && securing your application (PART II)

Security problems is more and more important on the internet today. You can see the problems .This chapter is really exciting, you can learn serveral ways of attacking the web application and t...

2015-09-08 15:08:00 143

转载 GET && POST

If you looked closely at the removescore.php in #3you can find that we used both GET && POST in the same script.whats the differences between the GET and POST ?when you want the sc...

2015-09-08 14:32:00 110

转载 #5 string and custom functions && regular expressions

.转载于:https://www.cnblogs.com/beyond-Acm/p/4784011.html

2015-09-05 21:46:00 62

转载 #3 working with data stored in files && securing your application

This chapter reveals that you can use files and databases together to build PHP application that waash in binary data.The application needs to store images.Firstly, we should use the ALTER s...

2015-09-01 10:59:00 92

转载 #2 create and populate a database && realistic and practical applications (PART 2)

Extends from the last chapter , This chapter takes a look at some real-world problems that can occur as you move your applicationfrom testing to a live website, Through this chapter you will le...

2015-08-31 19:27:00 90

转载 NOT IN && NOT EXISTS (MySQL)

.转载于:https://www.cnblogs.com/beyond-Acm/p/4770837.html

2015-08-30 14:32:00 55

转载 INDEX && PRIMARY KEY && UNIQUE KEY

When I have do some sql tody, some confusion come up to me.Its about the index && PRIMARY KEY && UNIQUE KEY in MySQL. So I google it for the answers. There is a clearly answer ...

2015-08-21 11:59:00 86

转载 #2 create and populate a database && realistic and practical applications

The Chapter3 & Chapter4 of this book tells you how to create a realistic app on the web through the lab.That is really amazing when you finished yourself. I will show you how to make it as ...

2015-08-20 14:26:00 130

转载 #1 add life to static pages && connect to MySQL

由于实验室Project 中需要用到PHP, 之前也没接触过 PHP, 因此把 编程入门《Head Fist PHP & MySQL 》找来花了四五天快速过了一遍。现在想把书中的系统东西总结一下,方便日后的查询。chapter01 & chapter02 主要简单介绍了 PHP 以及 MySQL 数据库的基本语句,有基础的同学随便翻翻就懂了。虽然简单,但是...

2015-08-18 15:05:00 250

转载 A New Start

转眼来新加坡已经快半个月了, 半个月在 NUS 的生活还算习惯, 工作也不算特别忙。所以决定还是每天抽空更新一下自己的 博客, 主要记录一下 学习的内容 还有 在这边的生活见闻, 希望十个月 过去以后 能够在这里 有所收获。八月已经过去一多半了,初步的想法是1. 首先整理一下 研一下学期 学习的 《算法导论》的内容2. 然后把 半个月 接触的 PHP 知识总结写进博客(...

2015-08-17 23:45:00 149

转载 Linux root 密码的修改

sudo password root转载于:https://www.cnblogs.com/beyond-Acm/p/4471172.html

2015-05-01 21:19:00 65

转载 红黑树的实现

。转载于:https://www.cnblogs.com/beyond-Acm/p/4458187.html

2015-04-26 19:18:00 49

转载 准备的一些英文面试题

1. about self-introduction1. Ok, i feel very honored to introduce myself to you here. My name is Gaozhipeng, I graduated from the Hangzhou Dianzi University in 2014 as a undergraduat...

2015-04-26 19:17:00 117

转载 平衡二叉树

/******* avl.h **********/ 1 /***********************************************************/ 2 /* Copyright (C) SA14226214, USTC, 2014-2015 */ 3 /* ...

2015-04-15 13:57:00 293

转载 二叉排序树

/*  bst.h  *//***********************************************************//* Copyright (C) SA14226214, USTC, 2014-2015 *//* ...

2015-04-14 19:25:00 72

转载 动态规划3——最大公共子序列问题

。转载于:https://www.cnblogs.com/beyond-Acm/p/4423188.html

2015-04-13 20:28:00 94

转载 动态规划2——矩阵链乘问题

。转载于:https://www.cnblogs.com/beyond-Acm/p/4423185.html

2015-04-13 20:27:00 69

转载 Java 多线程

。转载于:https://www.cnblogs.com/beyond-Acm/p/4422894.html

2015-04-13 18:16:00 55

转载 Java 容器

。转载于:https://www.cnblogs.com/beyond-Acm/p/4418764.html

2015-04-11 23:37:00 49

转载 链表逆序(递归实现和非递归实现)

链表逆序操作笔试的时候真的不要写的太多, 上次还来了个递归实现链表逆序。就当利用这个题复习下单链表的常用操作了, 下面的单链表(ADT)参考了《数据结构和算法分析---C语言描述》中的写法, 稍有改动。增加了一些自己觉得会经常用到的函数。链表的主要操作在 linklist.h 文件中, 链表函数的实现主要在 linklist.c 文件中。 test_linklist.c 是一个简...

2015-04-10 21:30:00 266

转载 散列表

。转载于:https://www.cnblogs.com/beyond-Acm/p/4414405.html

2015-04-10 13:51:00 61

转载 动态规划1——生产线调度问题(Dynamic Programming)

.转载于:https://www.cnblogs.com/beyond-Acm/p/4414308.html

2015-04-10 13:11:00 490

转载 迷宫问题&MakeFile

先看一个有意思的问题, 我们定义一个二维数组表示迷宫。它表示一个迷宫, 其中的1表示墙壁,0表示可以走的路, 只能横着走或竖着走,不能斜着走,我们要编程序找出从左上角到右下角的路线。其实这个问题可以用深度优先搜索的方法搞定的了。这个算法中涉及到了几个知识:1. 一个是栈,每走过一个点会把这个点会把这个点压入栈中。2. 用一个新的数据结构保存走迷宫的路线,每个走过的...

2015-04-08 17:51:00 107

转载 Java中对象方法的调用过程&动态绑定(Dynamic Binding)

Java面向对象的最重要的一个特点就是多态, 而多态当中涉及到了一个重要的机制是动态绑定(Dynamic binding)。之前只有一个大概的概念, 没有深入去了解动态绑定的机理, 直到很多公司都问到了动态绑定的实现, 然后。。。就真的没有然后了。痛定思痛, 在<Core Java>找到了相关的章节,也算是对动态绑定的实现有了一个大概的了解。对象是Java中最重要...

2015-04-06 23:23:00 561

转载 Java构造器(construtor)与垃圾收集器(GB)

在Java中,程序员会在乎内存中的两块空间。 堆(heap)和栈(stack)。当java虚拟机启动时, 它会从底层的操作系统取得一块内存, 并且以此块内存来执行java程序。在Java中, 实例变量是声明在类中而不是方法中的变量,实例变量存在于所属的对象中, 即实例变量会随着对象一起位于堆上。Java中的局部变量以及平时所说的形参(方法的参数)都是被声明在方法中,局部变量会...

2015-04-05 17:09:00 150

转载 几种排序算法之间的比较

之前已经学习了六种常见的排序算法, 包括 插入排序、 归并排序、 快速排序、 希尔排序、 堆排序、 选择排序 。从总体情况来看 : 插入排序, 选择排序的思路比较简单, 容易完成, 时间复杂度为O(n2)。而希尔排序、归并排序、 快速排序、 堆排序在思路上有难度, 但是时间上都有了很大的提高, 时间复杂度为 O(n*longn)。为了对几种排序方法有一个直观的印象, 写了一个...

2015-04-05 15:32:00 109

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除