学习笔记
文章平均质量分 66
我不喜欢蜀国
做个对社会有用的程序员。
展开
-
工作日志8/8/2014 逻辑清晰的重要性,赶deadline心态就要像考高考数学
上午九点Wendy开完会,报了个表格跟我讲,要加这些这些,哪些哪些需要validator,哪些哪些在shenmek原创 2014-08-09 05:33:11 · 444 阅读 · 0 评论 -
Ajax learning
AJAX 是一种在无需重新加载整个网页的情况下,能够更新部分网页的技术。打法原创 2014-06-28 05:31:15 · 360 阅读 · 0 评论 -
ASP.NET —— IIS Server
这两天看了点web Development的面试题,既然有两条路都准备了材料,那就先看用的正在用的.net原创 2014-07-23 04:38:38 · 394 阅读 · 0 评论 -
Java I/O
今天Sailesh那里有个xml文件需要读出来里面原创 2014-06-28 05:26:14 · 409 阅读 · 0 评论 -
6/27 工作日志 SQL stored procedure里面的SQL injection prevetion
今天给error form里面增加了一项comment栏,是个textbox input,先是加了个column,改了改asp原创 2014-06-27 05:04:44 · 423 阅读 · 0 评论 -
JS learning notes
1. use js in HTML, use tag, in or or separate fil原创 2014-05-14 04:50:12 · 370 阅读 · 0 评论 -
Little and Big Endian
#include //using namespace std; can be igonredint main (int argc, char *argv []) { int a = 34677374; int *ptr = &a; int *ptr1 = ptr + 1;//ptr1 = 0xsomewhere of ptr + 4 printf("%d\n", ptr);原创 2014-04-10 00:56:43 · 543 阅读 · 0 评论 -
Client and Server side Dynamic Pages
1. 首先,这俩都是Dynamic Pages,就有另外一个Static Pages,顾名思义,html都是写好了的,不会随着调用的时原创 2014-05-22 12:05:59 · 455 阅读 · 0 评论 -
Design pattern-Factory method
最近在看thinking in Java,学到了不少知识,主要的是书里面介绍了不仅语法,而且是java思想,看到了interface原创 2014-05-29 21:51:02 · 508 阅读 · 0 评论 -
7/23 Ajax .NET save content automatically and redirect to same page without new tabs
这两天改Form,比较有意思的是从原创 2014-07-24 04:05:56 · 648 阅读 · 0 评论 -
SQL case when,create, delete table
今天做了几个report,用了不少sql语句,bijia原创 2014-08-06 05:33:09 · 630 阅读 · 0 评论 -
7月14 SQL的whitespace保存
Git push让reject了,因为之前没有pull,git发现你的version更低,所以拒绝了,应该先pull,把文件偷梁换柱,然后原创 2014-07-15 00:23:02 · 451 阅读 · 0 评论 -
Difference between .asmx, .aspx and .ashx
a webpage provides a graphical user interface (text, images, buttons, etc.) while a web service does not provide a graphical user interface. It is mainly used to fetch data and perform actions.aspx转载 2014-08-04 22:01:18 · 1838 阅读 · 0 评论 -
工作日志 6/19 Research on generating pictures from text
下班前还有15分钟,今天把钱输光了,倒是省了心anxn原创 2014-06-20 05:51:49 · 429 阅读 · 0 评论 -
区别:JDK,JRE,JVM,JIT
JRE:java runtime environment,就是平常电脑没有java要下载的java程序,把我搞死的那个sas就是原创 2014-04-07 05:48:11 · 3526 阅读 · 0 评论 -
Validation in .NET 服务器端和客户端的Trigger不同
问题:维护一个表格By default the client-side validation is triggered when submitting forms using buttons.原创 2014-07-09 22:17:34 · 384 阅读 · 0 评论 -
String转换DateTime与数据库
首先,Time是一个dimension,不是object不是类,在C原创 2014-07-08 04:00:53 · 2534 阅读 · 0 评论 -
What events are fired as part of the ASP.NET System.Web.UI.Page lifecycle?
Reference: http://www.justinrhinesmith.com/blog/2008/05/04/what-events-are-fired-as-part-of-the-aspnet-systemwebuipage-lifecycle/ 这个博客里有好多转载 2014-07-25 01:46:50 · 619 阅读 · 0 评论 -
Java初探
打起这个念头是在做CC150时发现好多时候code太complex,不如java来的简单,早晚得学,所以就东一榔头西一棒子的看开了,也没怎么具原创 2014-04-07 02:55:19 · 351 阅读 · 0 评论 -
【面试总结】Google Interview Phone Interview
char * ptr;bool move(char ** ptr_old, char ** ptr_target, int number){ if (ptr_old + number { for (int i = 0; i { * (ptr_target + sizeof(char) * i) = * (ptr_old + sizeof(char) *i);原创 2014-03-26 04:35:09 · 957 阅读 · 0 评论 -
char * 与 char[]的区别及C++ Memory Layout
一直想记一下,这是很多朋友都总结过的问题。问题的引出从CC1.2的题目上,要求char*的string inplace reverse,于是写代码,搞了好几个都是错的,主要是char * 赋值的问题。最后CC1.2,函数输入不是”文字常量“就行,可以用char []这样的variable。简单点说,char * str,str是一个指针,指向文字常量区的某个地址,这货不可被更改。比如,char原创 2014-03-30 13:24:15 · 482 阅读 · 0 评论 -
【C/C++标准——头文件变迁】iostream与iostream.h的区别详细解析
iostream与iostream.h的区别详细解析 (原文章出处)以下是对C++中iostream与iostream.h的区别进行了详细的分析介绍,需要的朋友可以过来参考下C++的标准类库被修订了两次,有两个标准C92和C99,这两个库现在都在并行使用,用 .h 包含的是c92 ,不带 .h 的是c99的头文件,对于普通用户来说这两者没有什么区别,区别是在内部函数的具体实现上。旧的C+转载 2014-03-14 10:06:08 · 4891 阅读 · 0 评论 -
《计算机网络》基本知识
1. 网线4芯就可以通信,但为什么它是8芯的呢?答:我们常说的网线就是超五类双绞线,由四对相互缠绕的线对构成,共八根线。我们进行通信只需要其中四根就行了。需要8根是因为这种相互缠绕改变了电缆原有的电子特性。这样不但可以减少自身的串扰,也可以最大程度上防止其它电缆上的信号对这对线缆上的干扰。从而达到稳定传输的目的。2. TCP 建立会话为什么要三次握手?答: http://blog.cs原创 2014-03-28 04:24:09 · 612 阅读 · 0 评论 -
【考试总结】IP Addres之subnet mask
考了一个computer network的期中考试,搞了半天也没弄明白subnet和基本IP address的,感觉很郁闷,于是花了一个小时好好研究了一下,记录在此。为啥要用:一般来说,IP address分为前段network,后端为host number,有三种格式,Class A B C,即使是B或C,里面host容量也挺大的,一个机构如果用不了那么多,那就多花钱不值得。于是就用su原创 2014-03-28 00:53:38 · 1549 阅读 · 0 评论 -
找工作一月之笔记
自从上个月8号参加第一次job fair,考过毕业考试,就基本上时间都用在找工作了。拿到几个面试,但是都杳无音讯。主要还是要多学习,提示自己的能力,然后在从外界找。这一个月,先是弄好了简历,学习了一些数据库,relational database的SQL,网页开发的server端编程,面向对象思维的实践,大体上把知识都通了一遍。但是我知道还有很多的地方理解的不通透,毕竟没有真正实战过,趁着原创 2014-03-17 03:41:01 · 532 阅读 · 0 评论 -
解决google apple engine的“No selected project running”问题
http://forums.udacity.com/questions/100160967/one-solution-for-those-no-selected-projects-are-running-with-yellow-triangle-problem#cs253点击打开链接用了一整天解决了google apple engine的问题,原因是python更新到2.7.6了,原创 2014-03-10 06:47:47 · 662 阅读 · 0 评论 -
复习巩固——C中的指针
简单的几条。1,所谓的dereferencing 指针就是指用指针,*x = 42; // Dereference x to store 42 in its pointee2,空指针就是a constant with a value of zero defined in several standard libraries, including iostream.NULL原创 2014-03-14 09:48:27 · 448 阅读 · 0 评论 -
Using Jinja Template
今天算是导通jinja的模板怎么用了。记几点:1,GAE 的name不能用大写,不能用小数点和下划线,但是连接符“-”可以。2,有一个app,我在原先的源码里全部改掉不能运行,却新建一个app却正常运行,很奇怪,记一下以后解决吧。但是可以说明的是以后有什么新的app就create new application,能防止此类问题出现。原创 2014-03-12 04:13:38 · 439 阅读 · 0 评论 -
Const速记——啥东西不总结只转发就不是你的
Const关键词在C++的precedence是靠左的,const applies to the type to its left.Having this said,上例子:int* - pointer to intint const * - pointer to const intint * const - const pointer to intint const * co原创 2014-03-30 13:30:50 · 337 阅读 · 0 评论 -
Mobile Developing
call CQ //a call to CQ//make it mobile friendly //type is the keyword that makes the keyboard different accordingly, UI Use User-Agent to determine what browser the user原创 2014-04-14 21:06:18 · 395 阅读 · 0 评论 -
最基本VS的project创建
记得最初学C++ 用的是Visual Studio 6.0, 在那个大机房里,老师在讲台上吆喝着说“大家选择win32 console project”,当时也没管多少。现在转眼间到VS2013了,本文记一下创建C++ Project的小不同。用Console,里面自带"stdafx.h" is some header file with important stuff in it per原创 2014-03-18 13:58:01 · 1024 阅读 · 0 评论 -
计算机科学著名论题——NP-completeness
1,简而言之,如果解决了这个NP-completeness是可以用Polynomial时间内解决的话,是里程碑的事件,目前还木有被搞掂。。2,长而言之,请看下:摘自:http://stackoverflow.com/questions/210829/what-is-an-np-complete-problemWhat is NP?NP is the set of转载 2014-03-25 08:18:07 · 894 阅读 · 0 评论 -
Java Interface
看了一篇文章,从后往前看的,zuo原创 2014-04-18 09:40:38 · 363 阅读 · 0 评论 -
Java Package
One class per file.Class files can be organized into directories.Every file in a dir needs to declare package ‹dir name›; to make them into a package unit.The main program can refer to these cla原创 2014-04-18 08:34:45 · 676 阅读 · 0 评论 -
【讨论思考】可不可以不用pointer而实现一个linked list?
今天momo瞎扯出来一个题目,能不能realize a linked list without using pointers in C++。我这人比较细心,爱钻个牛角尖,于是就就着他这个扯淡题往下深究了一会。首先我觉得不可能不用pointer达到同样的效果,他说能,然后跟我扯,他的大体想法是用class,里面在定义个同样的class,这样就可以A.a.a.a......实现了singly li原创 2014-03-21 05:15:12 · 523 阅读 · 0 评论 -
C++ Template 小说
1. 属于genetic programming2. 到compile的时候instantiate相关的类。3. 分为class template和function template。4. 用法:在声明class前加上template 到时候implement的时候,所有的int/float/double 等都变成XXX用就好了。例子:linked list 和 stac原创 2014-03-19 10:24:36 · 421 阅读 · 0 评论 -
Oba's Google Style
为什么起这个名字呢,是突发了coding style的兴趣,于是搜了搜,整理一套自己的style。下面先用于C++,如果要是以后新的语言C#等再说。1. curly bracks放在同一行,这样减少行数,看起来简单。2. function name用camel convention。3. variable: 全局g_xxx,member in class xxx_,local用小写原创 2014-04-01 02:28:56 · 371 阅读 · 0 评论 -
C++的Array
就从传统的说起,后边提了一点template。声明:int arr [] 而非java习惯的int [] arr。初始化:arr = { }arr = {1, 2, 3}。或者声明时没有size,则自动分配,即 int arr1 [] = {1, 2, 3, 4, 5}//arr1 的size自动成了5.或者声明时size大于初始化的,则多余的自动分配默认值(0).但是原创 2014-03-31 04:59:20 · 566 阅读 · 0 评论 -
VoLTE, SIP/MSRP
今天庞叔叔转发一个邮件,关于一个Android App开发的岗位,还提到了VoLTE,SIP/MSRP的protocol。虽说不懂,于是就查了一下提高吧。VoIP是平常的circuit-switched网络(landline,2G,3G)通用的一个网络通话模式,但是到了LTE里,Voice和text是主打,占用了80%的利润,而他们的content格式特别,不好直接用voIP或推到2G3G,于原创 2014-03-30 05:52:11 · 1678 阅读 · 0 评论 -
Hello CSDN!
#include using namespace std;int main(){ cout<<"Hello CSDN!"<<endl; return 0;}一直在潜水,现在在这里整理学习和笔记,菜鸟成长记。原创 2014-03-04 02:35:56 · 336 阅读 · 0 评论