Sometime, we need to open a file or buffer which name began with current word in emacs.
Here I give the solution as follows.
(provide 'quick-file-jump)
(defun ab/quick-buffer-jump ()
"Quickly jum...
分类:
其他好文 时间:
2014-05-15 15:02:20
阅读次数:
373
/*
* hdu AC Me
* date 2014/5/13
* state AC
*/
#include
#include
#include
#include
using namespace std;
const int MAXN=100001;
char Arr[MAXN];
int cnt[26];
int main()
{
//cout << "Hello wor...
分类:
其他好文 时间:
2014-05-15 06:16:24
阅读次数:
247
Call back function easily implement
#include
void HelloWorld(int nIndex)
{
printf("%d person say Hello World\n",nIndex);
}
void MyName(int len)
{
printf...
分类:
其他好文 时间:
2014-05-15 04:21:05
阅读次数:
270
1.面向对象直接定义类class People {public: void sayHello() {
printf("hello c oop \n"); }}; People * p = new People();
p->sayHello();使用头文件定义Ml...
分类:
编程语言 时间:
2014-05-15 02:23:54
阅读次数:
440
Description
Businesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase. For example, you can call the Universit...
分类:
其他好文 时间:
2014-05-15 00:20:39
阅读次数:
332
本文作者:sushengmiyan
本文地址:
主要内容:
---------------------------------------------------|
1.JDK的下载与安装 |
2.编写第一个java程序HelloWorld |
3.编译执行HelloWorld...
分类:
编程语言 时间:
2014-05-14 15:39:47
阅读次数:
385
最近写程序遇到一个问题,就是发现select监听标准输出的时候遇到了死循环,具体程序如下程序一。程序的意图是每当用户在控制台有任何输入,就输出”hello world!”。
程序一:
#include
#include
#include
#include
int
main(int argc, char *argv[])
{
...
分类:
其他好文 时间:
2014-05-14 14:46:25
阅读次数:
250
很多人都知道,如果用ASP.NET MVC 写一个hello
world,IDE会为你自动创建很多文件的,这是十分的繁琐和蛋疼的。那么Owin可以为我们做些什么呢?那就让我们初探一下Owin吧,首先创建一个ASP.NET
empty web Application.创建成功后,我们打开Nuget,安...
一个典型的HTML5文档的基础结构如下: 1 2 3 4 5 6 7 8 9 Hello,
HTML5!10 11 12 13 14 15 16 17 18 19 Hello, HTML5!20...
分类:
Web程序 时间:
2014-05-14 10:56:26
阅读次数:
305