Morgan Cheng

3,038
reputation
297 views

Registered User

name Morgan Cheng
member for 1 year
seen yesterday
website
location Beijing, China
age
I'm a Software Design Engineer in Microsoft. http://www.morgancheng.com
1d
asked Why Group.Value always the last matched group string?
Dec
14
comment How to exclude file patterns in vimgrep?
I didn't find any related options for vimgrep. Now I use grep instead.
Dec
14
asked How to exclude file patterns in vimgrep?
Dec
11
awarded  Popular Question
Dec
10
awarded  Notable Question
Dec
10
comment How to sort using statement of C# code in vim?
There are a lot of microsoftees work with VIM rather than VS like me:)
Dec
10
comment How to sort using statement of C# code in vim?
Thanks. To make it better, we can remove duplicate using statements with: :[range]sort ur /[^;]*/
Dec
9
comment How to sort using statement of C# code in vim?
This is a solution, even though it takes a lot of typing:)
Dec
9
asked How to sort using statement of C# code in vim?
Dec
6
awarded  Mortarboard
Dec
6
asked How to make vimgrep do word match search?
Dec
2
awarded  Nice Question
Dec
2
asked How Feedburner knows number of subscribers to a RSS Feed?
Dec
1
comment Is it necessary to “escape” character “<” and “>” for javascript string?
This is an approach, but I don't believe we should encourage to do that. Since creating a div then abandon it is not per formant.
Nov
29
comment Why <C-PageUp> and <C-PageDown> not work in vim?
It turns out to be 1st problem. I literally type ":map ", then hit Ctrl-PageUp in keyborad, and then " :tabp<CR>". It works. but it shows below in _vimrc. map ¿ :tabp<CR> map Î :tabn<CR>
Nov
29
asked Why <C-PageUp> and <C-PageDown> not work in vim?
Nov
28
asked What is difference between “function” and “function!” in VIM?
Nov
26
awarded  Popular Question
Nov
19
awarded  Popular Question
Nov
19
asked Why only ASP.NET have asynchronous programming model?
Nov
17
awarded  Popular Question
Nov
16
comment Does PHP support asynchronous programming?
In ASP.NET, each request is handled in one thread. Since threads as resources are limited, we don't want threads to be blocked on I/O operation. And, thread pool size is always limited in ASP.NET. So, Begin/End patterns are necessary. I suppose it is different story for PHP. Each request is handled in single process? and it doesn't matter to fork process to handle requests. So, this Begin/End asynchronous programming model is not necessary.
Nov
15
comment Does PHP support asynchronous programming?
I suppose forking processes should be light weighted in *nix OS.
Nov
15
comment Does PHP support asynchronous programming?
Sad news. So, what we can do is to fork process?
Nov
15
asked Does PHP support asynchronous programming?
Nov
13
asked Does C# resolve dependencies amongy static data member automatically?
Nov
13
comment How to find all coupling bracket with regular expression?
C#, but I don't think it matters much.
Nov
13
revised How to find all coupling bracket with regular expression?
added 143 characters in body; added 4 characters in body
Nov
13
asked How to find all coupling bracket with regular expression?
Oct
27
comment Javascript/JQuery HTML Encoding
I suppose only replacing these three characters is not enought.
Oct
23
awarded  Popular Question
Oct
23
comment How to design table that can be re-sequenced?
Yes. MySQL. But I suppose this can be a question not limited to MySQL.
Oct
21
awarded  Popular Question
Oct
17
comment How to design table that can be re-sequenced?
This approach can update quite a few records for single drag-and-drop. will it be costy?
Oct
17
asked How to design table that can be re-sequenced?
Oct
16
asked How to get last inserted row ID from wordpress database?
Oct
13
comment How to internationalize string used in javascript code?
In this approach, all I18N strings are downloaded even only few are used.
Oct
13
revised How to make __() and _e() work in any PHP file of wordpress?
added 200 characters in body
Oct
13
comment How to make __() and _e() work in any PHP file of wordpress?
require wp-config.php make it display garbage character. I found the answer. wp-blog-header.php is good for use.
Oct
12
awarded  Popular Question
Oct
12
comment How to make __() and _e() work in any PHP file of wordpress?
wordpress should have gettext extension.
Oct
12
comment How to make __() and _e() work in any PHP file of wordpress?
They are defined in l10n.php, but simply include that single file doesn't work. I suppose there is beter off-the-shelf API to include necessary files.
Oct
12
asked How to make __() and _e() work in any PHP file of wordpress?
Oct
12
asked How to internationalize string used in javascript code?
Oct
10
awarded  Yearling
Oct
6
comment What’s the best practice to transfer a variable value to javascript from server?
JSON is an option, but that would cost at least one more HTTP round trip.
Oct
6
asked What’s the best practice to transfer a variable value to javascript from server?
Oct
5
awarded  Popular Question
Oct
3
comment Does Browser load a whole block of JavaScript Before its execution?
@Berry, how do you paste it into Firebug? You can paste it into a html and open it with Firefox. I bet it would work.
Oct
3
comment Does Browser load a whole block of JavaScript Before its execution?
No, no, no. You can try it. In same block, you can use function before its declaration.