User Michał Piaskowski - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:49:30Zhttp://stackoverflow.com/feeds/user/1534http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1582529/maximum-value-vs-size-of-long-and-double-in-net/1582553#15825530Answer by Michał Piaskowski for Maximum value vs. size of long and double in .NETMichał Piaskowski2009-10-17T16:14:03Z2009-10-17T16:14:03Z<p>double is floating point number. Whitch bassicaly meams that it as the number stored in double gets bigger it's beeing rouned, and the least significiant part is being dismissed.</p>
<p>For example in double when you have a number like 100 billion.
It might be exactly 100 000 000 000 or it might be 100 000 000 000,000 000 000 000 000 001</p>
http://stackoverflow.com/questions/1556206/bash-can-not-get-if-to-work-like-i-want-to/1556249#15562490Answer by Michał Piaskowski for Bash Can not get IF to work like I want toMichał Piaskowski2009-10-12T18:49:10Z2009-10-12T18:56:58Z<p>the [ ] is shorthand for bash test command
<a href="http://ss64.com/bash/test.html" rel="nofollow">http://ss64.com/bash/test.html</a></p>
<p>if operation in bash checks if return code of the command use for testing is 0.</p>
<p>You can check the return status of any command with:
<code>echo $?</code></p>
<p>For example try this:</p>
<pre>
test -e myfile.txt
echo $?
[ -e myfile.txt ]
echo ?$
</pre>
http://stackoverflow.com/questions/1554845/am-i-using-the-right-approach-to-monitor-the-tasks-i-want-to-perform-when-a-handl/1554898#15548981Answer by Michał Piaskowski for Am I using the right approach to monitor the tasks I want to perform when a handle is created?Michał Piaskowski2009-10-12T14:24:11Z2009-10-12T18:34:01Z<p>how about a handler that runs only once?
Something like this:</p>
<pre>
if (wasRun)
return;
wasRun = true;
</pre>
http://stackoverflow.com/questions/24648/whats-the-best-way-to-get-to-know-linux-or-bsd-kernel-internals7What's the best way to get to know linux or BSD kernel internals?Michał Piaskowski2008-08-23T21:58:53Z2009-08-22T13:41:03Z
<p>I'd like to gain better knowledge of operating system internals. Process management, memory management, and stuff like that. <br>
I was thinking of learning by getting to know either linux or BSD kernel.<br>
Which one kernel is better for learning purposes?<br>
What's the best place to start?<br>
Can you recommend any good books?<br></p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1300439#130043910Answer by Michał Piaskowski for What non-programming books should programmers read?Michał Piaskowski2009-08-19T14:43:28Z2009-08-21T20:22:50Z<p><a href="http://rads.stackoverflow.com/amzn/click/0767908171" rel="nofollow">A Short History of Nearly Everything</a> by Bill Bryson</p>
<p><img src="http://ecx.images-amazon.com/images/I/41X4V11GGAL.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU01%5F.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/1301252/restarting-service-from-a-client-computer-without-rights/1301268#13012680Answer by Michał Piaskowski for Restarting service from a client computer without rightsMichał Piaskowski2009-08-19T17:00:35Z2009-08-19T17:00:35Z<p>Setup a service on an account with enough rights to do the restart and write another application that will communicate with that service and tell it to do the restart.</p>
http://stackoverflow.com/questions/1276403/simple-vim-commands-you-wish-youd-known-earlier/1301250#13012504Answer by Michał Piaskowski for Simple VIM commands you wish you'd known earlierMichał Piaskowski2009-08-19T16:56:39Z2009-08-19T16:56:39Z<pre>:q!</pre>
<p>I wish i knew that before I started vi for the first time</p>
http://stackoverflow.com/questions/1301038/what-are-the-differences-between-mssql-t-sql-and-sql/1301105#13011052Answer by Michał Piaskowski for What are the differences between MSSQL, T-SQL, and SQLMichał Piaskowski2009-08-19T16:29:08Z2009-08-19T16:29:08Z<p>It depends in what context those terms are being used.</p>
<p>They might mean exactly the same or have a slightly different meaning in some situations.</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Transact-SQL" rel="nofollow">T-SQL</a> - dialect of SQL language used in Microsoft Sql Server </li>
<li><a href="http://en.wikipedia.org/wiki/Microsoft_SQL_Server" rel="nofollow">MSSQL</a> - Microsoft SQL Server software</li>
<li><a href="http://en.wikipedia.org/wiki/SQL" rel="nofollow">SQL</a> - Structured Query Language - depending on the context it might mean the sql language itself, sql database or sql database server of any kind.</li>
</ul>
http://stackoverflow.com/questions/1300963/why-wont-tcpclient-write-throw-an-exception-when-writing-to-a-closed-connection/1301023#13010233Answer by Michał Piaskowski for Why won't TcpClient.Write throw an exception when writing to a closed connection (the first time)?Michał Piaskowski2009-08-19T16:11:55Z2009-08-19T16:11:55Z<p>That's because of the way TCP/IP protocol works.
When you call TcpClient.Write data is being sent to the server, and the function returns success without waiting for a server response.</p>
<p>In the meantime the server returns an error.
Tcp/IP stack on your side notices that and next time you try to write it will throw an exception</p>
http://stackoverflow.com/questions/1300021/best-way-to-create-a-standalone-program-for-windows-without-having-to-install-pre/1300484#13004840Answer by Michał Piaskowski for Best way to create a standalone program for windows without having to install pre-requisites?Michał Piaskowski2009-08-19T14:52:49Z2009-08-19T14:52:49Z<p>You can use C++ with <a href="http://www.wxwidgets.org/" rel="nofollow">wxwidgets</a> for GUI and statically link your application</p>
http://stackoverflow.com/questions/1287480/c-how-would-you-organize-a-screen-saver-in-the-file-system/1288758#12887580Answer by Michał Piaskowski for C#: How would you organize a screen saver in the file system?Michał Piaskowski2009-08-17T15:54:29Z2009-08-17T16:32:16Z<p>For a screen saver I'd try to put most of it in the .exe (.scr) file. It might make the executable quite big but I think it's worth it. </p>
<p>For the downloaded content use application data folder, or maybe allow user to set the location (put the path in registry). For example if you are downloading images, the user might want to put that in My Pictures folder.</p>
http://stackoverflow.com/questions/806020/c-what-does-the-operator-do-in-detail/1288513#12885130Answer by Michał Piaskowski for C# what does the == operator do in detail?Michał Piaskowski2009-08-17T15:10:55Z2009-08-17T15:10:55Z<p>The behavior of == operator depends how the variable you are applying it to was declared (not on the class of the object, I'll add an example).</p>
<p>For value types it will compare their values.</p>
<p>For reference types a == b returns true if a is the same object as b, unless the == operator was overloaded. Not overridden as others said, you can't override operators in c# because they are not virtual.</p>
<p><code>
object obj_a, obj_b;
string str_a, str_b;</p>
<pre><code> str_a = "ABC";
str_b = new string("ABC".ToCharArray());
obj_a = str_a;
obj_b = str_b;
Console.WriteLine("str_a == str_b = {0}", str_a == str_b); // in string == operator is overloaded
Console.WriteLine("str_a.Equals(str_b) = {0}", str_a.Equals(str_b)); // string overrides Object.Euqals
Console.WriteLine("obj_a == obj_b = {0}", obj_a == obj_b); // in object == operator is not overloaded
Console.WriteLine("obj_a.Equals(obj_b) = {0}", obj_a.Equals(obj_b)); // Object.Equesl is virtual and overridden method from string will be executed.
Console.ReadKey();
</code></pre>
<p></code></p>
<p>The output of that program is </p>
<pre>
str_a == str_b = True
str_a.Equals(str_b) = True
obj_a == obj_b = False
obj_a.Equals(obj_b) = True
</pre>
http://stackoverflow.com/questions/1244995/partially-populate-child-collection-with-nhibernate/1287156#12871560Answer by Michał Piaskowski for Partially Populate Child Collection with NHibernateMichał Piaskowski2009-08-17T10:11:30Z2009-08-17T10:11:30Z<p>Make the Comments Collection lazy, so that hibernate doesn't fetch it when you're getting the BlogPost. Then use a filter on Comments collection.</p>
<pre>
comments = session.CreateFilter(blogPost.Comments, ... ).List();</pre>
http://stackoverflow.com/questions/1282829/is-there-a-better-way-to-make-console-games-than-with-console-clear/1282859#12828591Answer by Michał Piaskowski for Is there a better way to make console games than with Console.Clear() ?Michał Piaskowski2009-08-15T21:13:30Z2009-08-15T21:18:54Z<p>You migth wanna check out the <a href="http://www.codeproject.com/KB/cs/csconsolelibrary.aspx" rel="nofollow">ConsoleLibrary</a></p>
<p>I didn't use it, but from the article/demos it seems it would allow you to do bunch of neat stuff on the console.</p>
http://stackoverflow.com/questions/1282742/planning-and-development-steps-for-first-program/1282804#12828041Answer by Michał Piaskowski for Planning and development steps for first programMichał Piaskowski2009-08-15T20:45:55Z2009-08-15T20:45:55Z<p>Do You have any document specifying what the application is going to do instead of a specification how thing are going to be done?</p>
<p>If you don't have that, then take a step back and write a <a href="http://en.wikipedia.org/wiki/Functional_specification" rel="nofollow">Functional Specification.</a> After you have that you might want to redo some of the work you already did.</p>
<p>You also should take a few moment's to think how are you going to ogranize your code. What namespaces and classes are you going to use. Where will you put the code for:</p>
<ul>
<li>User interface</li>
<li>Business logic</li>
<li>Database access</li>
</ul>
<p>You should isolate those parts of your application to make it easier to maintain.</p>
http://stackoverflow.com/questions/748584/are-cnames-slow/748661#7486614Answer by Michał Piaskowski for Are CNAMES slow ?Michał Piaskowski2009-04-14T17:44:15Z2009-04-14T17:44:15Z<p>The impact of using CNAME is in most cases very low.
The DNS response format allows the server to put some additional data in the message, and in many situation when you look up CNAME record, the server will add the corresponding A record in the additional data section, so no more look ups are required.</p>
http://stackoverflow.com/questions/748591/how-should-i-track-objs-in-use-c/748600#7486001Answer by Michał Piaskowski for How should i track Objs in use, C#Michał Piaskowski2009-04-14T17:27:12Z2009-04-14T17:27:12Z<p>Implement the IDisposable interface, and use the <b>using</b> keyword</p>
<pre>
class MyClass : IDisposable
{
void Dispose()
{}
}
using(MyClass obj = Man.GetObj())
{
obj.DoSomething();
}// obj.Dispose() will be called when the object goes out of scope.
</pre>
http://stackoverflow.com/questions/748455/c-syntactic-sugar-for-out-parameters/748590#7485902Answer by Michał Piaskowski for C# - Syntactic sugar for out parameters?Michał Piaskowski2009-04-14T17:24:59Z2009-04-14T17:24:59Z<p>I don't think such functionality exists, but if it were implemented in a way similar to arrays in perl that could be useful actually. </p>
<p>In perl You can assign an array to a list of variables in parentheses. So you can for example do this</p>
<pre>
($user, $password) = split(/:/,$data);
</pre>
http://stackoverflow.com/questions/748387/how-to-remove-a-stack-item-which-is-not-on-the-top-of-the-stack-in-c/748400#7484003Answer by Michał Piaskowski for How to remove a stack item which is not on the top of the stack in C#Michał Piaskowski2009-04-14T16:35:18Z2009-04-14T16:40:39Z<p>Consider using different container. Maybe a LinkedList.
Then you can use</p>
<pre>AddFirst
AddLast
RemoveLast
RemoveFirst</pre>
<p>just like pop/push from stack and you can use</p>
<pre>Remove</pre>
<p>to remove any node from the middle of the list</p>
http://stackoverflow.com/questions/748258/ssl-in-a-c-web-proxy-how-do-i-determine-if-the-request-is-sll-or-not/748332#7483320Answer by Michał Piaskowski for SSL in a C# Web Proxy; how do I determine if the request is SLL or not?Michał Piaskowski2009-04-14T16:15:13Z2009-04-14T16:15:13Z<p>You need to add support for the CONNECT command.</p>
<p><a href="http://www.codeproject.com/KB/IP/akashhttpproxy.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/akashhttpproxy.aspx</a></p>
http://stackoverflow.com/questions/748175/asynchronous-vs-synchronous-execution-what-does-it-really-mean/748181#7481810Answer by Michał Piaskowski for Asynchronous Vs. Synchronous Execution, What does it really mean?Michał Piaskowski2009-04-14T15:41:50Z2009-04-14T15:54:53Z<p>Simply said asynchronous execution is doing stuff in the background.</p>
<p>For example if you want to download a file from the internet you might use a synchronous function to do that but it will block your thread until the file finished downloading. This can make your application unresponsive to any user input.</p>
<p>Instead you could download the file in the background using asynchronous method. In this case the download function returns immediately and program execution continues normally. All the download operations are done in the background and your program will be notified when it's finished.</p>
http://stackoverflow.com/questions/742365/how-captured-value-in-anonymous-methods-are-implemented-in-net/742377#7423770Answer by Michał Piaskowski for How captured value in anonymous methods are implemented in .NETMichał Piaskowski2009-04-12T20:32:53Z2009-04-12T20:32:53Z<p>You can read about anonymous method implementation in following articles</p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/02/686456.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/08/02/686456.aspx</a></p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/03/687529.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/08/03/687529.aspx</a></p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2006/08/04/688527.aspx</a></p>
http://stackoverflow.com/questions/735325/determine-if-an-entity-field-changed-in-nhibernate/735590#735590-1Answer by Michał Piaskowski for Determine if an entity field changed in NHibernateMichał Piaskowski2009-04-09T19:25:41Z2009-04-09T19:25:41Z<p>Create another session and call Get() on that new session. This will force a select from database to create new entity associated with new session. </p>
http://stackoverflow.com/questions/735461/c-accessing-form-control-from-custom-function/735467#7354670Answer by Michał Piaskowski for C# accessing form control from custom functionMichał Piaskowski2009-04-09T18:53:16Z2009-04-09T18:53:16Z<p>You can't access instance members from static functions, change you function declaration to</p>
<p><code></p>
<pre><code> public void MyFunct(){
myWebBrowserControl.Navigate("http://www.google.com");
}
</code></pre>
<p></code></p>
http://stackoverflow.com/questions/735346/cannot-load-c-dll-in-c/735397#7353970Answer by Michał Piaskowski for Cannot Load C++ DLL in C#Michał Piaskowski2009-04-09T18:31:23Z2009-04-09T18:31:23Z<p>Call GetLastError after LoadLibrary, check the error code value here: <a href="http://msdn.microsoft.com/en-us/library/ms681381.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms681381.aspx</a>
and see if that helps.</p>
http://stackoverflow.com/questions/570098/in-c-how-to-check-if-a-tcp-port-is-available/735202#7352020Answer by Michał Piaskowski for In C#, how to check if a TCP port is available?Michał Piaskowski2009-04-09T17:38:16Z2009-04-09T17:48:15Z<p>You don't have to know what ports are open on your local machine to connect to some remote TCP service (unless you want to use a specific local port, but usually that is not the case).</p>
<p>Every TCP/IP connection is identified by 4 values: remote IP, remote port number, local IP, local port number, but you only need to know remote IP and remote port number to establish a connection. </p>
<p>When you create tcp connection using</p>
<pre>
TcpClient c;
c = new TcpClient(remote_ip, remote_port);
</pre>
<p>Your system will automatically assign one of many free local port numbers to your connection. You don't need to do anything.
You might also want to check if a remote port is open. but there is no better way to do that than just trying to connect to it.</p>
http://stackoverflow.com/questions/662723/firefox-passwords-insecure/662744#6627440Answer by Michał Piaskowski for Firefox passwords insecure?Michał Piaskowski2009-03-19T15:48:47Z2009-03-19T15:48:47Z<p>Did you set master password in Firefox? I always thought that Firefox will use it to encrypt the stored passwords when it's set.</p>
http://stackoverflow.com/questions/660820/using-unmapped-class-with-nhibernate-named-query/662692#6626922Answer by Michał Piaskowski for Using Unmapped Class with NHibernate Named QueryMichał Piaskowski2009-03-19T15:37:07Z2009-03-19T15:37:07Z<p>Why don't you use:</p>
<p><code>
query.SetResultTransformer(Transformers.AliasToBean(typeof(Person)));
</code></p>
<p>It will insert data from each column in your query into Person object properties using column alias as a property name.</p>
http://stackoverflow.com/questions/652305/lazy-loading-in-nhibernate/652539#6525390Answer by Michał Piaskowski for Lazy Loading in NHibernateMichał Piaskowski2009-03-16T23:32:01Z2009-03-17T06:18:40Z<p>All of the answers here are correct, but if there are so many Orders you migth also want to use filters, so that you don't have to load all of them.</p>
<pre>
Customer customer = session.CreateCriteria(...)
.SetFetchMode("Orders", FetchMode.Lazy)
.UniqueResult<Customer>();
Ilist<Order> orders = session.CreateFilter(customer.Orders," WHERE this.OrderDate < ?")
.SetDateTime(...).List();
</pre>
http://stackoverflow.com/questions/652337/sort-objects-using-predefined-list-of-sorted-values1Sort objects using predefined list of sorted valuesMichał Piaskowski2009-03-16T22:12:20Z2009-03-16T23:06:36Z
<p>I was wondering what would be the fastest way to sort an array of object in the same order as a different array.</p>
<p>Here is an example in C#:
<code></p>
<pre><code>class MyClass
{
public MyClass(int value)
{
this.value = value;
}
int value;
public int Value
{
get { return value; }
set { this.value = value; }
}
}
static List<int> sortedValuesList;
static List<MyClass> objectList;
</code></pre>
<p></code>
what is the fastest way of sorting objectList in the same order as sortedValuesList?
There might be multiple objects with the same value.</p>
<p>I already have simple algorithm that can do it, but it's On^2 and requires extra memory.</p>
<p><b>EDIT:</b>
I guess it's not clear what I'm trying to do.
Let's say a user sees a data grid of salespeople on the screen. He can sort them by any column he wants. Now the user clicks on a button and a table of customers is being shown. Every customer references one of the salespeople. I want to sort the customer list, based on the order of salespeople in previous data grid.</p>
<p>It's only a theoretical question as I don't need more performance. I was just wondering if there is some nice sorting algorithm when you need to use a lookup table to compare objects.</p>
http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers/1255278#1255278Comment by Michał Piaskowski on What are the important notions in C that you did not learn from your teachers Michał Piaskowski2009-08-25T21:43:00Z2009-08-25T21:43:00Z+1 for C is not C++http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/133611#133611Comment by Michał Piaskowski on Best programming novel to take on holidayMichał Piaskowski2009-08-25T19:51:27Z2009-08-25T19:51:27Z+1 for The futurological congresshttp://stackoverflow.com/questions/1330452/changing-the-program-flow-when-running-under-a-debuggerComment by Michał Piaskowski on Changing the program flow when running under a debuggerMichał Piaskowski2009-08-25T19:40:18Z2009-08-25T19:40:18ZMost debuggers can be attached to a process at runtime. In that case checking for debugger on statrup won't help much.http://stackoverflow.com/questions/1300963/why-wont-tcpclient-write-throw-an-exception-when-writing-to-a-closed-connection/1301023#1301023Comment by Michał Piaskowski on Why won't TcpClient.Write throw an exception when writing to a closed connection (the first time)?Michał Piaskowski2009-08-19T17:25:27Z2009-08-19T17:25:27ZYou 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.http://stackoverflow.com/questions/412813/when-to-use-arraylist-over-array-in-cComment by Michał Piaskowski on When to use ArrayList over array[] in c#?Michał Piaskowski2009-08-17T15:46:40Z2009-08-17T15:46:40ZThat's not cheating, that's making your life easier. You should make your life easier whenever possible.http://stackoverflow.com/questions/806020/c-what-does-the-operator-do-in-detail/806027#806027Comment by Michał Piaskowski on C# what does the == operator do in detail?Michał Piaskowski2009-08-17T15:11:33Z2009-08-17T15:11:33ZYou can't override operators in C# because they are not virtual. You can only overload them.http://stackoverflow.com/questions/1288038/what-is-the-query-to-print-date-along-with-timestamp-in-sqlComment by Michał Piaskowski on What is the query to print date along with timestamp in sql?Michał Piaskowski2009-08-17T13:51:14Z2009-08-17T13:51:14ZWhat database are you using?http://stackoverflow.com/questions/1282742/planning-and-development-steps-for-first-program/1282804#1282804Comment by Michał Piaskowski on Planning and development steps for first programMichał Piaskowski2009-08-15T21:47:01Z2009-08-15T21:47:01ZYou 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 handlershttp://stackoverflow.com/questions/1272996/thoughts-on-invoking-private-methods-through-delegateComment by Michał Piaskowski on Thoughts on Invoking Private Methods through DelegateMichał Piaskowski2009-08-15T21:33:57Z2009-08-15T21:33:57ZIf you don't need to make asynchronous call you can just write pf(); instead of calling BeginInvoke(); EndInvoke(); on a delegate.http://stackoverflow.com/questions/748584/are-cnames-slow/748731#748731Comment by Michał Piaskowski on Are CNAMES slow ?Michał Piaskowski2009-04-14T18:14:18Z2009-04-14T18:14:18Z+1, thanks for correcting me.http://stackoverflow.com/questions/575881/major-minor-build-revision-versioning-style-vs-year-month-day-whatever-versioning/575891#575891Comment by Michał Piaskowski on major.minor.build.revision versioning style vs year.month.day.whatever versioning styleMichał Piaskowski2009-04-14T18:09:48Z2009-04-14T18:09:48ZI'm doing exactly the same thing.http://stackoverflow.com/questions/742354/what-are-all-the-usages-of-in-c/742356#742356Comment by Michał Piaskowski on What are all the usages of '@' in C#?Michał Piaskowski2009-04-12T20:30:19Z2009-04-12T20:30:19ZIt also allows multiline strings.http://stackoverflow.com/questions/662723/firefox-passwords-insecure/662735#662735Comment by Michał Piaskowski on Firefox passwords insecure?Michał Piaskowski2009-04-09T21:11:26Z2009-04-09T21:11:26ZI think that's a great feature, and it always asks for master password before showing the passwords if you have set one.http://stackoverflow.com/questions/734937/string-parsing-extracting-numbers-and-letters/734976#734976Comment by Michał Piaskowski on String parsing, extracting numbers and lettersMichał Piaskowski2009-04-09T17:08:35Z2009-04-09T17:08:35ZGreat answer. I love the way you use the information that there is only one letter and it has to be either the first or the last character.http://stackoverflow.com/questions/652337/sort-objects-using-predefined-list-of-sorted-values/652354#652354Comment by Michał Piaskowski on Sort objects using predefined list of sorted valuesMichał Piaskowski2009-03-16T22:20:46Z2009-03-16T22:20:46ZThe sorted list doesn't contain actual objects. It only contains values used for sorting.