Showing posts with label Other. Show all posts
Showing posts with label Other. Show all posts
Thursday, October 22, 2015
Different encoding systems for "Hello" example:
ANSI
48 65 6C 6C 6F
Unicode (little-endian) encoding with no BOM.
48 00 65 00 6C 00 6C 00 6F 00
Unicode (little-endian) encoding with BOM
FF FE 48 00 65 00 6C 00 6C 00 6F 00
Unicode (big-endian) encoding with no BOM
00 48 00 65 00 6C 00 6C 00 6F
Unicode (big-endian) encoding with BOM
FE FF 00 48 00 65 00 6C 00 6C 00 6F
UTF-8 encoding
EF BB BF 48 65 6C 6C 6F
UTF-7 encoding
2B 2F 76 38 2D 48 65 6C 6C 6F
Reference:
http://blogs.msdn.com/b/oldnewthing/archive/2004/03/24/95235.aspx
Monday, September 21, 2015
Thursday, August 6, 2015
Tuesday, August 4, 2015
How to solve log4net not writing into database problem
log4net not writing into database problem
Turn on debug, no problem found. At last, change bufferSize from 400 to 1
<bufferSize value="1" />
Everything is working fine.
References:
http://stackoverflow.com/questions/756125/how-to-track-down-log4net-problems
Turn on debug, no problem found. At last, change bufferSize from 400 to 1
<bufferSize value="1" />
Everything is working fine.
References:
http://stackoverflow.com/questions/756125/how-to-track-down-log4net-problems
Wednesday, July 29, 2015
Monday, July 27, 2015
Secondary skills for software engineers
Secondary skills for software engineers
http://radek.io/2015/07/27/secondary-skills-for-software-engineers/
What are the most important skills?
1. Language(s)
2. Problem
3. Naming
4. Communication
??
http://radek.io/2015/07/27/secondary-skills-for-software-engineers/
What are the most important skills?
1. Language(s)
2. Problem
3. Naming
4. Communication
??
Wednesday, July 22, 2015
Monday, July 20, 2015
Wednesday, July 15, 2015
The anatomy of a credit card form
Very detailed design for Credit Card payment
https://medium.com/user-experience-design-1/the-anatomy-of-a-credit-card-payment-form-32ec0e5708bb
https://medium.com/user-experience-design-1/the-anatomy-of-a-credit-card-payment-form-32ec0e5708bb
Monday, June 15, 2015
Long sentence
http://yarchive.net/blog/long_sentences.html
Long sentence =>
complicated sentence =>
- Need to remember context
- Not to extend and repeat previsoue idea
Tuesday, June 9, 2015
Tuesday, May 26, 2015
Monday, May 25, 2015
Friday, May 8, 2015
Wednesday, April 8, 2015
Thursday, March 26, 2015
Thursday, March 5, 2015
Monday, February 23, 2015
How to enable intellisense in Visual Studio after remove reSharper?
My Visual Studio inellisense stopped working after removed ReSharper(ReSharper is so slow).
The solution:
Tools->Options->Text Editor->All Languages->General
Turn off "Auto list members", and "Parameter information"
And turn on again.
The solution:
Tools->Options->Text Editor->All Languages->General
Turn off "Auto list members", and "Parameter information"
And turn on again.
Thursday, January 15, 2015
How to solve problem: Installed Windows service by installutil not showing up in MMC services windows
Although installutil tells you everything is fine, the new service will not show up in MMC services windows.
Solution: use sc
sc create servicename binPath= servicebin.exe
Solution: use sc
sc create servicename binPath= servicebin.exe
Monday, December 22, 2014
Top 10 Most Popular Programming Languages 2014 from Stack Overflows
Tag Name Tag Count
JavaScript 150927
PHP 114808
Java 106522
HTML 78740
C# 78396
http://www.fluxbytes.com/tech-news/top-10-most-popular-programming-languages-2014/
JavaScript 150927
PHP 114808
Java 106522
HTML 78740
C# 78396
http://www.fluxbytes.com/tech-news/top-10-most-popular-programming-languages-2014/
Subscribe to:
Posts (Atom)