实现目标: 开发首页显示BBS的标题和摘要,点击BBS的标题可跳转到BBS详细页面进行展示。 开发环境及开发工具: Python 3.6.3 Django 2.0 Pycharm 2017.3 实现过程: 1创建project 用语句创建: django-admin startproject BBS ...
分类:
其他好文 时间:
2017-12-22 15:07:28
阅读次数:
260
What is Maven? At first glance Maven can appear to be many things, but in a nutshell Maven is an attempt to apply patterns to a project's build infras ...
分类:
其他好文 时间:
2017-12-14 04:09:34
阅读次数:
186
# 安装教程 # 安装vagrant 教程 # 准备 - windows操作系统 - VirtualBox-5.1.18-114002-Win, - vagrant_1.9.3.msi - 镜像文件https://atlas.hashicorp.com/ubuntu/boxes/trusty64/v ...
分类:
其他好文 时间:
2017-12-10 13:09:41
阅读次数:
205
在函数内部定义变量时,他们与函数外部具有相同名称的其他变量没有任何关系,即变量名称对于函数来说是局部的,这称为变量的作用域,示例如下: def func_local(x): print 'x is', x x = 2 print 'Chanaged local x to',x x = 50 func ...
分类:
编程语言 时间:
2017-12-06 21:53:42
阅读次数:
253
今天说的是在TabBar嵌套Nav时,进行Push的时候隐藏TabBar的问题。 之前项目也需要这么做,那时候iOS7还没出,也是各种搜罗,后来的解决方法是当push操作的时候自己隐藏Tabbar,push过去视图拉伸适应屏幕,再pop回来的时候接再显示Tabbar,过程复杂还需要自己写动画,最终效 ...
分类:
移动开发 时间:
2017-11-25 14:21:47
阅读次数:
229
【返回导航】 在简单了解了Orleans 之后我们可以通过几个例子去加深印象 一、Orleans入门例子 这个例子是跟着《Orleans入门例子》(https://www.cnblogs.com/gaopang/articles/7379802.html) 1.创建 首先创建一个四个项目的解决方案, ...
分类:
其他好文 时间:
2017-11-22 13:08:47
阅读次数:
1127
因为动态连接库需要对DBT_DEVICEARRIVAL、DBT_DEVICEREMOVECOMPLETE等消息的处理,所以拿一个不太理想的usb-hid的dll来说明,不多说直接上代码 涉及的一些内容: ...
分类:
编程语言 时间:
2017-11-16 11:46:36
阅读次数:
152
Some functions may have different return types depending on the types of the arguments with which they’re invoked. Using TypeScript’s function overloa ...
分类:
其他好文 时间:
2017-11-10 20:08:28
阅读次数:
208
写在前面: 使用Spring-Boot时,嵌入式Servlet容器可以通过扫描注解(@ServletComponentScan)的方式注册Servlet、Filter和Servlet规范的所有监听器(如HttpSessionListener监听器)。 Spring boot 的主 Servlet 为 ...
分类:
编程语言 时间:
2017-11-10 01:47:49
阅读次数:
321
Flip Game Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 47766 Accepted: 20383 Description Flip game is played on a rectangular 4x4 field ...
分类:
其他好文 时间:
2017-11-04 20:43:56
阅读次数:
186