User Edin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T17:02:05Zhttp://stackoverflow.com/feeds/user/49077http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/483445/ie8-doesnt-pass-session-cookie-for-ajax-request0Ie8 doesn't pass session cookie for ajax requestEdin2009-01-27T13:48:06Z2009-10-04T10:00:03Z
<p>I have simple php application, it works on all browsers except on IE8 beta 2, problem occurs when I try to update table field using Ajax call (jQuery post method). Using IE8 debugger I figure out that IE8 doesn't send session cookie so php scripts redirects to login page instead of executing requested action. </p>
<p>What can I do to make this work.</p>
<p>Edit:
I haven't mention that i was using Code Igniter so i have solved this problem by replacing Code Igniter default session implementation with native one. Code igniter default session implementation uses cookie to store all data. </p>
http://stackoverflow.com/questions/487311/how-to-implement-reference-counted-objects-in-delphi0How to implement reference counted objects in DelphiEdin2009-01-28T11:32:07Z2009-08-05T20:52:53Z
<p>I have a graph like structure. I don't know exactly when to destroy the objects in traditional Delphi manner, instead I would like to implement something like reference counted objects. I know that I can use something like object.GetReference and object.Release instead of Free, and use a private variable for reference counting, but is there any better way?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/719365/torn-between-learning-php-insert-framework-here-and-ruby-on-rails/736013#7360130Answer by Edin for Torn Between learning PHP [insert framework here] and Ruby on RailsEdin2009-04-09T21:42:29Z2009-04-09T21:42:29Z<p>When you say bad PHP programer i suddenly think that only professionals uses Ruby, i am not a pro i use PHP.</p>
http://stackoverflow.com/questions/287445/why-do-people-hate-sql-cursors-so-much/724666#7246661Answer by Edin for Why do people hate SQL cursors so much?Edin2009-04-07T08:37:07Z2009-04-07T08:37:07Z<p>I agree with article on this page:</p>
<p><a href="http://weblogs.sqlteam.com/jeffs/archive/2008/06/05/sql-server-cursor-removal.aspx" rel="nofollow">http://weblogs.sqlteam.com/jeffs/archive/2008/06/05/sql-server-cursor-removal.aspx</a></p>
http://stackoverflow.com/questions/396550/delphi-object-persistence-what-is-the-best-way4Delphi object persistence, what is the best wayEdin2008-12-28T19:22:11Z2009-03-21T18:28:48Z
<p>I have developed application for drawing some shapes (lines mostly) , now i need to be able to store sketch to a file, i know that delphi has build in routines for object persistance, but i have never used it. </p>
<p>Can someone tell me can object persistence be used if i have to persist object that have also references to other objects (that will be stored to), i have TLine object wich can be connected to other TLine object etc. </p>
<p>Is it better to use this feature or write custom procedure to store/read object to/from file.</p>
<p>thx</p>
http://stackoverflow.com/questions/207774/what-is-the-best-rich-textarea-editor-for-jquery/501516#5015162Answer by Edin for What is the best rich textarea editor for jQuery?Edin2009-02-01T20:29:25Z2009-02-01T20:29:25Z<p>I personaly use FCK because Tiny MCE does't handle html editing well, small changes in html produce lots of unececary html tags.</p>
http://stackoverflow.com/questions/469055/sorting-values-but-only-if-they-are-x-more-than-current-order/475151#4751510Answer by Edin for Sorting values, but only if they are X more than current orderEdin2009-01-24T00:09:54Z2009-01-24T00:09:54Z<p>TList.Sort won't work because it uses quick sort algoritham as mghie commented. </p>
<p>Bubble sort algoritham is not that fast, here is implementation so you can try, this time in pascal.</p>
<pre><code>var I,N,T,D:Integer ;
A:array of Integer;
Change:Boolean;
begin
SetLength(A, 4);
A[0] := 5;
A[1] := 7;
A[2] := 25;
A[3] := 15;
Change := True;
N := High(A);
while Change do
begin
Change := false;
for I := 1 to N do
begin
D := A[I]-A[I-1];
if (D > 5) then
begin
T := A[I-1];
A[I-1] := A[I];
A[I] := T;
Change := true;
end;
end;
end;
end;
</code></pre>
http://stackoverflow.com/questions/469055/sorting-values-but-only-if-they-are-x-more-than-current-order/471333#4713330Answer by Edin for Sorting values, but only if they are X more than current orderEdin2009-01-22T23:48:26Z2009-01-22T23:48:26Z<p>Try sorting with custom comparing function , you can quickly try this if you fill TList with numbers and call MyList.Sort(myCompareFunc);</p>
<pre><code>function myCompareFunc(item1,item2:Pointer):Integer;
var
v1,v2:Integer;
begin
v1 := (integer)item1;
v2 := (integer)item2;
if v1 > v2 then
result := 1
else if (v1 < v2 )
result := -1
else
result := 0
//most important
if abs(v1-v2) < 5 result := 0 ;
end;
</code></pre>
http://stackoverflow.com/questions/182389/game-project-development/461003#4610030Answer by Edin for Game project developmentEdin2009-01-20T11:54:49Z2009-01-20T11:54:49Z<p>If you familiar with Delphi try GlScene.</p>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/460844#4608440Answer by Edin for Did you ever switch from one programming language to another?Edin2009-01-20T11:09:11Z2009-01-20T11:09:11Z<p>I switch from language to language on daily basis, at work i use C#, for personal projects PHP for Web and Delphi for windows applications.</p>
http://stackoverflow.com/questions/459554/how-do-i-tell-if-one-instance-of-my-program-is-running/459665#4596651Answer by Edin for How do i tell if one instance of my program is running?Edin2009-01-19T23:52:16Z2009-01-19T23:52:16Z<p>You can simply use FindWindow windows api function. In delphi class name of the window is the same as class name, you can redefine class name by overriding CreateParams function. To check if window exists add code before main window is created , before Application.Initialize;</p>
<pre><code>Program test
var
handle :HWND;
begin
handle := FindWindow('TMySuperApp', nil);
if IsWindow(handle) then
begin
//app is running
exit;
end.
Application.Initialize;
Application.CreateForm(TMySuperApp, SuperApp);
Application.Run;
end;
</code></pre>
http://stackoverflow.com/questions/446617/finding-closed-contours-in-a-graph/450391#4503911Answer by Edin for Finding closed contours in a graphEdin2009-01-16T13:23:53Z2009-01-16T13:23:53Z<p>Thnks for reply, i think i have solution , eg. if i move from one node to next connected i can pick next one by measuring angle between edges. </p>
http://stackoverflow.com/questions/446617/finding-closed-contours-in-a-graph0Finding closed contours in a graphEdin2009-01-15T12:53:56Z2009-01-16T13:23:53Z
<p>Hi, </p>
<p>I have graph and somehow I need to find all closed contours in graph that doesn't contains any other edges of the graph. </p>
<p>I was searching google but only gives me charts :)</p>
<p>Is there any library or if you know name of such algorithm.</p>
<p>thx</p>
http://stackoverflow.com/questions/445357/best-database-for-small-applications-and-tools/446580#4465801Answer by Edin for Best database for small applications and toolsEdin2009-01-15T12:38:35Z2009-01-15T12:38:35Z<p>I have workd with MSsql server , Oracle, Sqllite, MySql, but for my personal projects i use only Firebird, emambed and server solution in less than 2MB. It's amazing fast, and there is lots of good development tools e.g. IBExpert. </p>
<p>If you work with delphi than you don't need any new components just use Ibx that comes with delphi.</p>
http://stackoverflow.com/questions/411342/delphi-code-generation/413525#4135251Answer by Edin for Delphi code generationEdin2009-01-05T15:49:45Z2009-01-05T15:49:45Z<p>For me best way is by creating custom components, and then create designer for this component.<br />
I have find that i spent most of the time writing code that read/write values from controls. So i created control that can read, write, validate values, and automatically fill form or stored procedure or directly generate SQL and execute. </p>
<p>Custom designer allows you to setup all properties easy. Now i don't write code for such trivial task i just put control , open designer and set properties and rules that must be satisfied.</p>
http://stackoverflow.com/questions/395557/are-framework-dependencies-a-problem/396626#3966260Answer by Edin for Are framework dependencies a problem?Edin2008-12-28T20:18:16Z2008-12-28T20:18:16Z<p>I am also delphi developer and i don't see any reason why anyone would switch from delphi to .net. Delphi is based on VCL which is stable for i don't now 10 or more years, if someone started to develop application with Delphi 1.0 its still can be compiled in Delphi 2009 or Delphi for .Net. </p>
<p>Delphi is also much faster than .Net, you can not notice speed if you develop database applications but if you work on image processing or other intesive algoritams delphi code is faster comparing to C#/Vb.net. </p>
<p>Delphi cominity is also bigger to than .net, VCL has also more stuff than .net. </p>
<p>Microsoft C++ is only compatible with previous versions, but coding in C++ is horror, i know its powerfull but can't be comparad to delphi when time is critical, for those who did't use delphi just search google for VCL components and see how big is delphi comunity.</p>
<p>I also know programmers who developed applications in vb5 and could not continue development in vb6 without lots of changes, and when .net releasd they must stick with old tools, or rewrite evrything.</p>
<p>Sorry for my bad english.</p>
http://stackoverflow.com/questions/373105/what-religion-is-delphi/392951#3929511Answer by Edin for What religion is Delphi?Edin2008-12-25T16:40:12Z2008-12-25T16:40:12Z<p>Delphi is rock & roll :), it's musican not very religious i think</p>
http://stackoverflow.com/questions/396550/delphi-object-persistence-what-is-the-best-way/653412#653412Comment by Edin on Delphi object persistence, what is the best wayEdin2009-03-17T11:21:18Z2009-03-17T11:21:18ZI did't have idea too, then i started to write classes like Point, Line, Arc etc.,then Collections for those classes etc. You'll probobly need to inherit all classes from base class that have methods like Draw,HitTest.For drawing just use control that has published Canvas prop i think its PaintBox.http://stackoverflow.com/questions/483445/ie8-doesnt-pass-session-cookie-for-ajax-requestComment by Edin on Ie8 doesn't pass session cookie for ajax requestEdin2009-03-05T10:42:30Z2009-03-05T10:42:30ZYeah it sucks , not secure at all.http://stackoverflow.com/questions/483445/ie8-doesnt-pass-session-cookie-for-ajax-requestComment by Edin on Ie8 doesn't pass session cookie for ajax requestEdin2009-03-05T10:41:36Z2009-03-05T10:41:36ZOn normal request works ok, but after ajax request it clears cookie.
http://stackoverflow.com/questions/411342/delphi-code-generation/413525#413525Comment by Edin on Delphi code generationEdin2009-01-26T12:29:38Z2009-01-26T12:29:38ZSure , but my implementation only works with firebird database, i ll post somewhere, i need few days.http://stackoverflow.com/questions/469055/sorting-values-but-only-if-they-are-x-more-than-current-order/471333#471333Comment by Edin on Sorting values, but only if they are X more than current orderEdin2009-01-23T23:27:57Z2009-01-23T23:27:57ZHa ha, its object Pascal with c extension, yes you are right it won't work because TList.Sort uses QuickSort algorithm so there is no chance that order can be preserved.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408910#408910Comment by Edin on What's your most controversial programming opinion?Edin2009-01-22T23:13:59Z2009-01-22T23:13:59ZI don't like XML too, i try to use json whenewer possible.