号外
昨天,atom官方更新了atom的版本;
把之前内置到core的核心插件autocomplete替换成autocomplete plus,还做了许多修正,具体看这里
Notable Changes
Atom now bundles Autocomplete Plus and the completion providers for HTML, CSS, Less, Sass, sni...
分类:
其他好文 时间:
2015-05-16 12:03:44
阅读次数:
233
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:
编程语言 时间:
2015-05-16 11:47:02
阅读次数:
107
1.
代码:
#include
#include
#include
using namespace std;
const int INF=1<<30;
int a[1000005];
int dp[1000005];
int maxx[1000005];
int main()
{
int m,n;
while(scanf("%d%d",&m,&n)=...
分类:
其他好文 时间:
2015-05-15 19:57:37
阅读次数:
131
最近逃课做游戏,逃的有几门都要停考了,呵呵呵,百忙之中不忘超炒冷饭,感觉之前的人皮效果还是不够好,又改进了一些东西
首先上图
放大看细节
显而易见的比上次的效果要好很多,此次我把模型用3dmax进行了细化,模型裂缝情况有所好转,但是嘴唇等处还是有明显裂缝(没办法,网上没有比这个再细致的贴图了)
去除了之前所有大量的rim,换成了SSS次表面...
分类:
编程语言 时间:
2015-05-15 09:05:21
阅读次数:
249
Description:Count the number of prime numbers less than a non-negative number,n 1 int countPrimes(int n) { 2 int i,j; 3 bool *primer = malloc(...
分类:
其他好文 时间:
2015-05-15 01:17:42
阅读次数:
104
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at the head of the list.
对一个数字进行加1运算,这里需要注意进位的情况。按以...
分类:
其他好文 时间:
2015-05-14 20:34:53
阅读次数:
126
C++Primer再起航本文介绍:
编写简单的C++程序
初窥输入/输出
关于注释
控制结构
类的简介
参考文献
编写简单的C++程序`int main()
{
return 0;
}`
1. 每个 C++ 程序都包含一个或多个函数,而且必须有一个命名为 main。函数由执行函数功能的语句序列组成。操作系统通过调用main 函数来执行程序
2. main 函数则执行组成自己的语句并返回一...
分类:
编程语言 时间:
2015-05-14 16:33:28
阅读次数:
103
Warning Cannot send session cookie - headers already sent...问题的解决(PHP的UTF-8 BOM引起的问题)习惯了用edit plus进行php编程,所以有时会出现一些不为人知的错误,很麻烦;。近日,在开发项目时,某些页面总是出现以下问题...
分类:
Web程序 时间:
2015-05-14 16:11:22
阅读次数:
1289
参考 Loading Related Entities with Entity Framework - A Beginner's Primer
分类:
其他好文 时间:
2015-05-14 13:53:05
阅读次数:
135
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\ckz>sqlplus zzjd/zzjd@10.22.1.143/orcl as sysdba;
SQL*Plus: Release 11.2.0.1.0 Production on 星期三 5月 13 17:00:46 2...
分类:
数据库 时间:
2015-05-14 10:08:12
阅读次数:
348