Michał Piaskowski

2,119
Reputation
241 views

Registered User

Name Michał Piaskowski
Member for 1 year
Seen 5 hours ago
Website
Location Poland
Age 27
21h
awarded  Mortarboard
Dec
1
comment Why use System.Threading.Interlocked.Decrement instead of minus?
i = i - 1; is not the same as i--; it is --i;
Oct
24
revised Moving from IMAP gmail to Google Apps for domain
edited tags
Oct
17
answered Maximum value vs. size of long and double in .NET
Oct
12
revised Bash Can not get IF to work like I want to
added 237 characters in body; added 26 characters in body
Oct
12
answered Bash Can not get IF to work like I want to
Oct
12
revised Am I using the right approach to monitor the tasks I want to perform when a handle is created?
added 14 characters in body; added 3 characters in body
Oct
12
answered Am I using the right approach to monitor the tasks I want to perform when a handle is created?
Sep
8
awarded  Necromancer
Aug
27
revised For kernel/OS is C still it
edited tags
Aug
25
comment What are the important notions in C that you did not learn from your teachers
+1 for C is not C++
Aug
25
comment Best programming novel to take on holiday
+1 for The futurological congress
Aug
25
comment Changing the program flow when running under a debugger
Most debuggers can be attached to a process at runtime. In that case checking for debugger on statrup won't help much.
Aug
22
revised How to get started in operating system development
added 131 characters in body
Aug
22
revised How can I build a small operating system on an old desktop computer?
edited tags
Aug
22
revised OS Development
edited tags; edited title
Aug
22
revised malloc() and the C/C++ heap
edited tags
Aug
22
revised books that guide you to knowing the underlying system better
deleted 8 characters in body; edited tags; added 8 characters in body; edited tags
Aug
22
revised What is a good barebones linux distro for beginner kernel development?
edited tags
Aug
19
comment Why won’t TcpClient.Write throw an exception when writing to a closed connection (the first time)?
You can use the socket KeepAlive option, but AFAIR you can't set that on TcpClient. You'll have to use System.Net.Sockets.Socket and NetworkStream.
Aug
19
answered Restarting service from a client computer without rights
Aug
19
answered Simple VIM commands you wish you’d known earlier
Aug
19
answered What are the differences between MSSQL, T-SQL, and SQL
Aug
19
accepted Why won’t TcpClient.Write throw an exception when writing to a closed connection (the first time)?
Aug
19
answered Why won’t TcpClient.Write throw an exception when writing to a closed connection (the first time)?
Aug
19
revised What non-programming books should programmers read?
deleted 15 characters in body
Aug
19
answered Best way to create a standalone program for windows without having to install pre-requisites?
Aug
19
answered What non-programming books should programmers read?
Aug
17
revised C#: How would you organize a screen saver in the file system?
deleted 1 characters in body
Aug
17
accepted C#: How would you organize a screen saver in the file system?
Aug
17
answered C#: How would you organize a screen saver in the file system?
Aug
17
comment When to use ArrayList over array[] in c#?
That's not cheating, that's making your life easier. You should make your life easier whenever possible.
Aug
17
comment C# what does the == operator do in detail?
You can't override operators in C# because they are not virtual. You can only overload them.
Aug
17
answered C# what does the == operator do in detail?
Aug
17
revised What am I missing out on by only running .Net 2.0 vs 3.5?
deleted 3 characters in body
Aug
17
comment What is the query to print date along with timestamp in sql?
What database are you using?
Aug
17
answered Partially Populate Child Collection with NHibernate
Aug
17
awarded  Yearling
Aug
15
comment Planning and development steps for first program
You should avoid what Shaun described as "drop that there, double click and write code". Don't put data access and business logic code in event handlers. create a separate namespaces and classes where you'll put all of that. Then you can call that code from event handlers
Aug
15
comment Thoughts on Invoking Private Methods through Delegate
If you don't need to make asynchronous call you can just write pf(); instead of calling BeginInvoke(); EndInvoke(); on a delegate.
Aug
15
revised Is there a better way to make console games than with Console.Clear() ?
added 117 characters in body
Aug
15
answered Is there a better way to make console games than with Console.Clear() ?
Aug
15
answered Planning and development steps for first program
Aug
9
revised What are all the special iPhone / iPod Touch HTML tags?
edited tags
Jul
24
awarded  Nice Question
Jul
8
awarded  Disciplined