代码改变世界

阅读排行榜

Hyperlinks

2018-02-27 16:42 by Weiweim, 292 阅读, 收藏,
摘要: Hyperlinks are created with anchor elements, which generally look like: and render on the page like this: Udacity. Inside the opening a tag there is h 阅读全文

GitHub里的Hello World!

2017-12-05 10:00 by Weiweim, 286 阅读, 收藏,
摘要: 前提:已成功登录GitHub,网络通畅 首先,创建一个Repository(宝库),这个repository里可以放任何你想放的东西; 注意要勾选上Initialize this repository with a README; 接着,创建一个Branch(分支),这里命名为readme-edit 阅读全文

Changing How Git Log Displays Information_10

2018-03-25 22:03 by Weiweim, 281 阅读, 收藏,
摘要: Let's think about some of these questions: the SHA - git log will display the complete SHA for every single commit. Each SHA is unique, so we don't re 阅读全文

Start->Selenium IDE->总览

2018-02-26 17:01 by Weiweim, 279 阅读, 收藏,
摘要: 简介 Selenium-IDE(集成开发环境)是用来开发测试用例的工具。它是一个Firefox插件,包含一个context menu,允许你首先从浏览器当前显示的页面中选择一个UI元素,然后从Selenium命令列表中进行选择,并根据所选UI元素的上下文预先定义参数。 安装 IDE 使用Firefo 阅读全文

2_创建应用

2017-12-22 11:49 by Weiweim, 271 阅读, 收藏,
摘要: django-admin是Django用于管理任务的命令行工具。 另外,manage.py在每个Django项目中都会自动创建。 其中, startproject用来创建django项目, django-admin startproject name [directory] 为当前目录或给定目标中的 阅读全文