Top Questions - Stack Overflow most recent 30 from stackoverflow.com 2009-11-20T22:07:50Z http://stackoverflow.com/feeds http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1773540/should-one-use-php-to-print-all-of-a-pages-html 0 Should one use PHP to print all of a page's HTML? Mala 2009-11-20T22:04:26Z 2009-11-20T22:07:49Z <p>Hi</p> <p>So I've always developed PHP pages like this: <code>&lt;?php</code> goes at the top, <code>?&gt;</code> goes at the bottom, and all the HTML gets either print()ed or echo()ed out. Is that slower than having non-dynamic html outputted outside of <code>&lt;?php ?&gt;</code> tags? I can't seem to find any info about this.</p> <p>Thanks!<br> --Mala</p> http://stackoverflow.com/questions/1773426/convert-a-list-of-structs-from-c-to-c 0 convert a list of structs from c# to c++ unknown (google) 2009-11-20T21:44:48Z 2009-11-20T22:07:45Z <p>I have the following c# code</p> <pre><code>static void Main(string[] args) { List&lt;Results&gt; votes = new List&lt;Results&gt;(); } public struct Results { public int Vote1; public int Vote2; public int Vote3; public Candidate precinctCandidate; }; public class Candidate { public Candidate() { } private string name; public string Name { get { return name; } set { name = value; } } private string lastName; public string LastName { get { return lastName; } set { lastName = value; } } } </code></pre> <p>I want to convert that code into Visual c++ CLR, Thanks</p> http://stackoverflow.com/questions/1744451/find-and-replace-in-vs-2008-2010 0 Find and Replace in VS 2008/2010 atch 2009-11-16T19:51:25Z 2009-11-20T22:07:41Z <p>Hi everyone, I'm just trying to remove spaces from some line:</p> <pre><code>"(jan | feb | mar | apr | may | jun | jul | aug | sep | oct | nov | dec)\.(\s+),(\s+)(\d{4})" </code></pre> <p>in my solution and try to do that with find and replace and somewhat don't know how to enter space character in this dialog box. And as I started with some regx what is the difference between:</p> <pre><code>"(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\.(\s+),(\s+)(\d{4})" </code></pre> <p>and </p> <pre><code> "(jan | feb | mar | apr | may | jun | jul | aug | sep | oct | nov | dec)\.(\s+),(\s+)(\d{4})" </code></pre> <p>regex wise? Thank you for any help.</p> http://stackoverflow.com/questions/1773560/tips-for-optimizing-sql-commands-worrying-about-legacy 0 Tips for optimizing sql commands worrying about legacy Nitai Bezerra 2009-11-20T22:07:36Z 2009-11-20T22:07:36Z <p>The concern with the legacy of the sql statements is a constant in my head. Especially when SCRUM is used, where the code has no owner, that is, all must be able to repair and maintain each piece. Optimize sql procedures usually means converting it into a set-based commands and use special operators. I need tips to keep the code working without forgetting the threshold optimization x readability.</p> http://stackoverflow.com/questions/1772372/import-huge-xml-data-1gb-into-sql-server-2008-daily 6 Import huge XML data (> 1Gb) into SQL Server 2008 daily Veve 2009-11-20T18:24:11Z 2009-11-20T22:07:34Z <p>Dear all:</p> <p>I have encountered a problem that I need to import a huge XML (> 1Gb) into SQL Server 2008 daily. What I have now is a sample XML file and the XML schema of it. The XML schema is pretty complex which contains many custom defined simple type, and element with complex type such as:</p> <pre><code>&lt;xs:element name="xxxx_url"&gt; &lt;xs:complexType&gt; &lt;xs:simpleContent&gt; &lt;xs:extension base="xs:anyURI"&gt; &lt;xs:attribute ref="target" use="optional"/&gt; &lt;xs:attribute ref="abc" use="optional"/&gt; &lt;/xs:extension&gt; &lt;/xs:simpleContent&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; </code></pre> <p>After import, a WCF service will be implemented to retrieve the data stored in SQL Sever, something like search, retrieve etc (read-only operations).</p> <p>The implementation steps I can think of are like:</p> <ol> <li>Define an object model according to the provided XSD (manually), the object model will be used for WCF service to return values.</li> <li>Define a database schema from the provided XSD (manually), the schema is estimated to have about 20 - 30 tables.</li> <li>Create a SSIS package to load XML into database daily.</li> <li>Create a WCF service which reads from database, populates data into the object model defined in step 1 and returns the object to service client.</li> </ol> <p>The problem is that these steps involve lots of manual work. I have to research the XSD row by row, and transform it to object model and database schema mannualy.</p> <p>I did some research that there're some automation tools to transform XSD into classes, and also transform XSD into database schema. But the classes transformed from XSD with the tool are pretty messed, and the transformation to schema is failed because it does not conform to MS dataset format.</p> <p>I am wondering is there any good solution to this problem, to save a lot of manual work?</p> <p>Any suggestion is appreciated !</p> http://stackoverflow.com/questions/1773558/acceptsnestedattributesfor-not-generating-foreign-key 0 accepts_nested_attributes_for not generating foreign key Lukas 2009-11-20T22:07:32Z 2009-11-20T22:07:32Z <p>I have a model</p> <pre><code>class ServiceRequest &lt; ActiveRecord::Base has_many :services accepts_nested_attributes_for :services ... end </code></pre> <p>and the child </p> <pre><code>class Service &lt; ActiveRecord::Base belongs_to :service_category, :foreign_key =&gt; "wsi_web_serv_cats_uid_fk" belongs_to :service_type, :foreign_key =&gt; "wsi_web_serv_types_uid_fk" belongs_to :service_subtype, :foreign_key =&gt; "wsi_web_srv_subtypes_uid_fk" belongs_to :service_requests, :foreign_key =&gt; "wsi_web_inq_audits_uid_fk" end </code></pre> <p>and am creating it through a form like so:</p> <pre><code>&lt;% form_for(@request, :url =&gt; { :action =&gt; :create }) do |form| %&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt;&lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;First Name&lt;/b&gt;&lt;/td&gt; &lt;td&gt;&lt;b&gt;Middle Initial&lt;/b&gt;&lt;/td&gt; &lt;td&gt;&lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;Last Name&lt;/b&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;%= form.text_field :first_name %&gt;&lt;/td&gt; &lt;td&gt;&lt;%= form.text_field :win_middle_init, :size =&gt; "2" %&gt;&lt;/td&gt; &lt;td&gt;&lt;%= form.text_field :last_name %&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="2"&gt; &lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;Address 1&lt;/b&gt;&lt;br/&gt; &lt;%= form.text_field :address_1 %&gt;&lt;br/&gt; &lt;%= form.text_field :address_2 %&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;City&lt;/b&gt;&lt;/td&gt; &lt;td&gt;&lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;State&lt;/b&gt;&lt;/td&gt; &lt;td&gt;&lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;Zip Code&lt;/b&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;%= form.text_field :municipality %&gt;&lt;/td&gt; &lt;td&gt;&lt;%= form.text_field :state, :size =&gt; "4" %&gt;&lt;/td&gt; &lt;td&gt;&lt;%= form.text_field :zip, :size =&gt; "9" %&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;Phone Number&lt;/b&gt;&lt;br/&gt; &lt;%= form.text_field :day_phone %&gt; &lt;/td&gt; &lt;tr/&gt; &lt;tr&gt; &lt;td&gt; &lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;Email&lt;/b&gt;&lt;br/&gt; &lt;%= form.text_field :email %&gt; &lt;/td&gt; &lt;tr/&gt; &lt;tr&gt; &lt;td&gt; &lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;Confirm Email&lt;/b&gt;&lt;br/&gt; &lt;%= form.text_field :email_confirmation %&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;font style="font-weight: bold" color="red"&gt;*&lt;/font&gt;&lt;b&gt;Preferred Contact&lt;/b&gt;&lt;br/&gt; &lt;%= form.select "contact_method", options_for_select([["Phone", "PHN"], ["Email", "EML"], ["Phone or Email", "BTH"]]) %&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;% form.fields_for :services do |fields| %&gt; &lt;%= fields.hidden_field :wsi_web_serv_cats_uid_fk %&gt; &lt;%= fields.hidden_field :wsi_web_serv_types_uid_fk %&gt; &lt;%= fields.hidden_field :wsi_web_srv_subtypes_uid_fk %&gt; &lt;% end %&gt; &lt;p&gt; &lt;%= form.submit "Create" %&gt; &lt;/p&gt; &lt;% end %&gt; </code></pre> <p>The hidden fields are populated from a form on a page that this one is directed to from. This all works fine. My create method is as follows:</p> <pre><code>def create service_request = ServiceRequest.new(params[:service_request]) if service_request.save! flash[:notice] = "Information submitted successfully. You will be contacted by a customer service representative regarding the services you selected." redirect_to :controller =&gt; "customer", :action =&gt; "index" else flash[:notice] = "Error submitting info. Please try again." redirect_to :back end end </code></pre> <p>Everything gets created in the database just fine. However, the two models are not linked by the foreign key. In otherwords, the foreign key is never set in the child model. How do I remedy this? I have seen some people say this is a documented bug, but I have been unable to find this to be true anywhere. Thanks for any help.</p> http://stackoverflow.com/questions/1773547/how-do-you-debug-run-classic-asp-pages-in-visual-studio-2008 0 How do you Debug/Run classic asp pages in Visual Studio 2008? Ken 2009-11-20T22:06:31Z 2009-11-20T22:07:32Z <p>Whenever I try to open a classic asp page while running the site in VS2008 I get the error: "This type of page is not served".</p> <p>How do you Debug/Run classic asp pages in Visual Studio 2008?</p> http://stackoverflow.com/questions/1705194/how-to-refresh-data-driven-combo-box-on-a-winform 2 How to refresh data driven combo box on a winform Christof 2009-11-10T01:54:42Z 2009-11-20T22:07:29Z <p>I have a winform with a combo box thats filled from a query in the database. If I add a field to the database, the new field won't show up in the form until I close it and reopen it. </p> <p>I was able to put in a MessageBox.Show() and once that popped up, I closed it, and saw the new data in the combo box. </p> <p>EDIT:</p> <p>Let me clarify a bit. I have a dropdown combo box, and that is populated by a table adapter. I just did the databinding with the GUI so I'm not sure how it works. </p> <p>What I want is, I want the new data that I enter to be refreshed when I come back to it. I have a seperate window to manage the data, and then I close it I want the combo box to be updated with what I just saved. </p> <p>Is this possible? I tried to do it on form load but that doesn't work either, I think because the form is already loaded. </p> http://stackoverflow.com/questions/1771428/tools-to-evaluate-callgrinds-call-profiles 1 Tools to evaluate callgrind's call profiles? fuenfundachtzig 2009-11-20T15:58:00Z 2009-11-20T22:07:26Z <p>Somehow related to <a href="http://stackoverflow.com/questions/1771340/can-i-export-tables-from-kcachegrind">this question</a>, which tool would you recommend to evaluate the profiling data created with callgrind? </p> <p>It does not have to have a graphical interface, but it should prepare the results in a concise, clear and easy-to-interpret way. I know about e.g. <code>kcachegrind</code>, but this program is missing some features such as data export of the tables shown or simply copying lines from the display.</p> http://stackoverflow.com/questions/1773514/c-asynchronous-sockets-where-is-the-state-object-stored 0 C# .. Asynchronous Sockets .. where is the State Object Stored? divinci 2009-11-20T21:59:25Z 2009-11-20T22:07:25Z <p>Hi all,</p> <p>A <em>simple</em> question really, but one where I cannot find any anwsers too.</p> <p>When I execute an Asynchronous Socket operation, such as :</p> <pre><code>socket.BeginSend ( new byte[]{6}, // byte[] | buffer 0, // int | data to send buffer offset 1, // int | data to send length SocketFlags.None, // enum | dunno :) new AsyncCallback(OnSend), // AsyncCallback | callback method STATEOBJECT // object | ..state object.. ); </code></pre> <p>It works, and when complete it invokes the AsyncCallback parameter, passing with it an IAsyncResult.</p> <pre><code>void OnSend(IAsyncResult ar) { object STATEOBJECT = ar.AsyncState as object; /* Process the socket operation */ } </code></pre> <p>SO..</p> <p>When the socket operation is being executed 'asynchronously' I know from various sources that the buffer is pinned in memory.</p> <p><strong>However I do not know where the 'state object' is stored?</strong></p> <p>why? because I am wondering what the effect of large 'state object's will have?</p> <p>Taa!</p> http://stackoverflow.com/questions/1773526/in-place-c-set-intersection 1 In-place C++ set intersection ChrisInEdmonton 2009-11-20T22:01:12Z 2009-11-20T22:07:23Z <p>The standard way of intersecting two sets in C++ is to do the following:</p> <pre><code>std::set&lt;int&gt; set_1; // With some elements std::set&lt;int&gt; set_2; // With some other elements std::set&lt;int&gt; the_intersection; // Destination of intersect std::set_intersection(set_1.begin(), set_1.end(), set_2.begin(), set_2.end(), std::inserter(the_intersection, the_intersection.end()); </code></pre> <p>How would I go about doing an in-place set intersection? That is, I want set_1 to have the results of the call to set_intersection. Obviously, I can just do a <code>set_1.swap(the_intersection)</code>, but this is a lot less efficient than intersecting in-place.</p> http://stackoverflow.com/questions/1773471/crtcheckmemory-before-and-after-function-return 0 _CrtCheckMemory before and after function return Mat 2009-11-20T21:52:22Z 2009-11-20T22:07:20Z <p>hi!</p> <p>following code:</p> <pre><code>_CrtCheckMemory(); vector&lt;Vector3&gt; samples = PoissonDisk::generate_poisson(m_resX-1, m_resY-1, minDist, 30, m_samples); _CrtCheckMemory(); int s = samples.size(); </code></pre> <p>the debugger traps into the heapcheck function in the second _CrtCheckMemory() telling me there's something wrong with the heap - so my assumption is that my generate_poisson function is doing a mess. however - if i add a _CrtCheckMemory(); call directly at the end of the generate_poisson function, right before return, then the debugger still traps on the same line as before, not on the newly added _CrtCheckMemory()</p> <p>what could this mean?</p> <p>thanks!</p> http://stackoverflow.com/questions/1771898/what-is-the-best-browser-automation-tool-for-python 1 What is the best browser automation tool for Python? roddik 2009-11-20T17:06:41Z 2009-11-20T22:07:15Z <p>Hello, I want to write a following script: given a text file with the list of actions to be executed on a certain site it would use some browser's (IE probably (because I don't know anything about other drive-able ones)) CSS rendering and JS executing capabilities to imitate a user doing those actions on a site. So I've found <a href="http://pycheesecake.org/wiki/PythonTestingToolsTaxonomy" rel="nofollow">this page</a> and the "web testing" section of it and there are PAMIE, PYXPCOM and windmill, also selenium, but the latter two run some sort of a server on the localhost (which doesn't seem to be well suitable decision). Pamie has some sort of the worst documentation ever and lots of "Under Construction" pages on their site last updated in 2006. And PyXPCOM seems to be created not specifically for FF and I may be a bad googler but I still didn't found a decent example of using pyxpcom for something like using FF. Which way to guide the browser would you prefer for my purposes and why? TIA</p> http://stackoverflow.com/questions/1773550/xml-json-conversion-in-javascript 0 XML <-> JSON conversion in Javascript Jason Denizac 2009-11-20T22:06:54Z 2009-11-20T22:06:54Z <p>Hi,</p> <p>Does anyone know of a good solution to convert from XML to JSON and then back to XML?</p> <p>I found two tools for jquery, <a href="http://www.fyneworks.com/jquery/xml-to-json/" rel="nofollow">xml2json</a> &amp; <a href="http://michalkorecki.com/content/introducing-json-xml-jquery-plugin" rel="nofollow">json2xml</a>.</p> <p>Each of these works very well - however, the conversions they use aren't 100% consistent.</p> <p>Has anyone encountered this situation before?</p> http://stackoverflow.com/questions/1585688/view-controller-being-sent-a-message-even-though-it-has-been-deallocated 0 View Controller being sent a message even though it has been deallocated. Michael Gaylord 2009-10-18T18:40:42Z 2009-11-20T22:06:51Z <p>I am not sure if something has changed in the iPhone SDK 3.0 but I am getting the strangest error. I have a view controller hierarchy where I switch between view controllers depending upon interface orientation. From what I can tell, the error is caused whenever I rotate the interface a view controller which has been deallocated is being sent a shouldAutorotateToInterfaceOrientation message. This is the backtrace for the error:</p> <pre><code>#0 0x01dc43a7 in ___forwarding___ #1 0x01da06c2 in __forwarding_prep_0___ #2 0x002e6733 in -[UIWindow _shouldAutorotateToInterfaceOrientation:] #3 0x002e6562 in -[UIWindow _updateToInterfaceOrientation:duration:force:] #4 0x002e6515 in -[UIWindow _updateInterfaceOrientationFromDeviceOrientation] #5 0x0004d63a in _nsnote_callback #6 0x01d8f005 in _CFXNotificationPostNotification #7 0x0004aef0 in -[NSNotificationCenter postNotificationName:object:userInfo:] #8 0x0045b454 in -[UIDevice setOrientation:] #9 0x002d6890 in -[UIApplication handleEvent:withNewEvent:] #10 0x002d16d3 in -[UIApplication sendEvent:] #11 0x002d80b5 in _UIApplicationHandleEvent #12 0x024c2ef1 in PurpleEventCallback #13 0x01d9bb80 in CFRunLoopRunSpecific #14 0x01d9ac48 in CFRunLoopRunInMode #15 0x024c17ad in GSEventRunModal #16 0x024c1872 in GSEventRun #17 0x002d9003 in UIApplicationMain #18 0x00002d50 in main at main.m:14 </code></pre> <p>The error that is getting printed to the Debug Console with NSZombieEnabled is:</p> <pre><code>2009-10-18 20:28:34.404 Restaurants[12428:207] *** -[ToolbarController respondsToSelector:]: message sent to deallocated instance 0x3b2b2a0 (gdb) continue Current language: auto; currently objective-c 2009-10-18 20:31:43.496 Restaurants[12428:207] *** NSInvocation: warning: object 0x3b2b2a0 of class '_NSZombie_BeltToolbarController' does not implement methodSignatureForSelector: -- trouble ahead 2009-10-18 20:31:43.496 Restaurants[12428:207] *** NSInvocation: warning: object 0x3b2b2a0 of class '_NSZombie_BeltToolbarController' does not implement doesNotRecognizeSelector: -- abort </code></pre> <p>What I can't understand is why the system is trying to message this controller even though it has been deallocated and is there a way to tell the system that the controller doesn't exist any longer.</p> <p>[UPDATE]: I have put together a sample project replicating the bug: <a href="http://www.bytesizecreations.com/project/ControllerSwitch.zip" rel="nofollow">download</a></p> <p>Load up the app and then change the Simulator's orientation a few times from Landscape to Portrait and it should occur. I have tried the same piece of code on a physical phone and it behaves in exactly the same way, so this is not a simulator related issue.</p> <p>[UPDATE]: I have used up one of my support requests with Apple's technical team to see if they can help me get to the bottom of this. Will post the solution - if they have one - here. Thanks for the help so far.</p> http://stackoverflow.com/questions/1773541/java-static-reflection-on-subclasses 0 Java static reflection on subclasses mooman 2009-11-20T22:04:40Z 2009-11-20T22:06:38Z <p>Hi all. I am implementing a sort of ORM in Java. I am trying to do a static find method that is only in the parent class. Let me get to the point:</p> <pre><code>public class DB { public static Object find (int id) { // i want to return anew instance of the calling subclass } } public class Item extends DB { // nothing here } public class Test { public static void main () { Item i = (Item) Item.find(2); ... } } </code></pre> <p>I don't know how to have the find method know which of its inherited class is calling it, so that i can return the right instance (and maybe call the right constructor, etc.) And the inherited class could be anything, no limit. </p> <p>I've tried stacktrace, but it's only traced from Test to DB.</p> <p>Any ideas?</p> <p>Thank you everyone!</p> http://stackoverflow.com/questions/1773546/how-can-i-get-msbuild-to-do-a-full-build-of-a-delphi-project-equivalent-to-dcc32 0 How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b? Zartog 2009-11-20T22:06:26Z 2009-11-20T22:06:26Z <p>How can I get MSBuild to do a full build of a Delphi project equivalent to dcc32 -b?</p> <p>I've got two projects I'm trying to build, the first one uses some conditional defines, which are getting passed via msbuild to the dcc32. However, some common units appear to be stuck with the first set of conditionals, so the second project is built improperly.</p> http://stackoverflow.com/questions/1773545/concurrency-violation-updating-a-sql-database-with-a-dataadapter 0 Concurrency violation updating a SQL database with a dataadapter Brett 2009-11-20T22:06:19Z 2009-11-20T22:06:19Z <p>I'm having some trouble updating changes I made to a datatable via a dataadapter. I am getting "Concurrency violation: the UpdateCommand affected 0 of 10 rows"</p> <pre><code>'Get data Dim Docs_DistributedTable As New DataTable("Docs_Distributed") Dim sql = "SELECT DISTINCT CompanyID, SortKey, OutputFileID, SequenceNo, DeliveredDate, IsDeliveryCodeCounted, USPS_Scanned FROM Docs_Distributed_Test" Using sqlCmd As New SqlCommand(sql, conn) sqlCmd.CommandType = CommandType.Text Docs_DistributedTable.Load(sqlCmd.ExecuteReader) End Using 'Make various updates to some records in DataTable. 'Update the Database Dim sql As String = "UPDATE Docs_Distributed " sql += "SET DeliveredDate = @DeliveredDate " sql += "WHERE SequenceNo = @SequenceNo" Using transaction As SqlTransaction = conn.BeginTransaction("ProcessConfirm") Try Using da As New SqlDataAdapter da.UpdateCommand = conn.CreateCommand() da.UpdateCommand.Transaction = transaction da.UpdateCommand.CommandText = sql da.UpdateCommand.Parameters.Add("@DeliveredDate", SqlDbType.DateTime).SourceColumn = "DeliveredDate" da.UpdateCommand.Parameters.Add("@SequenceNo", SqlDbType.Int).SourceColumn = "SequenceNo" da.ContinueUpdateOnError = False da.Update(Docs_DistributedTable) End Using transaction.Commit() Catch ex As Exception transaction.Rollback() End Try End Using </code></pre> <p>Now here's the catch. I am selecting DISTINCT records and essentially getting one row per SequenceNo. There may be many rows with the same SequenceNo, and I am hoping this will update them all. I'm not sure if this is related to my problem or not.</p> http://stackoverflow.com/questions/1773542/matlab-heart-filter 0 Matlab. Heart filter kristia 2009-11-20T22:04:45Z 2009-11-20T22:04:45Z <p>what is the best filter to use to clear noise from a heart.wav?</p> http://stackoverflow.com/questions/1773192/private-type-with-exported-fields 1 private type with exported fields mbarkhau 2009-11-20T20:56:29Z 2009-11-20T22:04:18Z <p>In day 2 of the go tutorial there is this exercise:</p> <p>Why may it be useful to have a private type with exported fields?</p> <p>For example:</p> <pre><code>package geometry type point struct { X, Y int; name string; } </code></pre> <p>Notice that point is lowercase and thus not exported, whereas the fields X and Y are uppercase and thus are. It seems to me, that in order to have access to one of the exported fields, you would have to be able to write something like.</p> <pre><code>p.X </code></pre> <p>But in order for that to be possible, p would have to have a declaration like such:</p> <pre><code>var p geomitry.point; </code></pre> <p>or p := new(geomitry.point);</p> <p>This however is not possible (afaik), since the type declaration for point isn't exported.</p> http://stackoverflow.com/questions/1773538/cocoa-core-data-and-tab-view-how-do-i-tell-when-tab-view-is-finished-loading 0 Cocoa Core Data and Tab View - How do I tell when Tab View is finished "loading" so I can tell the view to initialize itself? Elisabeth 2009-11-20T22:04:11Z 2009-11-20T22:04:11Z <p>Hi, I have a simple Core Data app I am building to try to understand Core Data. It has two entities: a weather station, and a collection of observations for a given station.</p> <p>I created the initial interface for this by putting a tab view on my window, selecting the first tab, and dragging the weather station entity onto that view; then selecting the second tab and dragging the observations entity onto the second tab.</p> <p>I then created a third tab myself and added a popup at the top. This popup is bound to the StationArrayController, so it populates with all the weather stations I add. This works great.</p> <p>I then added a table view to display the Observations associated with the selected Station. This also works great. I implemented this with a method that creates a predicate that searches for all observations whose station matches the selected station, and attached the predicate to the ObservationArrayController associated with the Table View on the third tab. (I couldn't figure out how to do this in IB, so I did it programmatically).</p> <p>The bug is this: If I load a previously saved file with weather stations and observations in it, when I go to the third tab, even though one of the stations <em>is</em> selected (ie, it appears in the popup), <em>all</em> of the observations appear in the tableview, not just the ones associated with that station.</p> <p>This is happening because I am not calling the method to attach the predicate to the Observation Array Controller until I actually use the popup to change the station manually.</p> <p>So my problem and question is this (sorry it took so long to get to this point!): How can I detect when the tab view has loaded so I can force the method which attaches the predicate to run and thus have an initial list of Observations which matches the selected Station?</p> <p>I tried creating a custom View class and subclassing it for the third tab view and putting this code in the awakeFromNib method, but this is too early in the process (the "selected station" is -1 at this point in the loading process).</p> <p>Any help would be much appreciated. thank you!!</p> <p>Elisabeth</p> http://stackoverflow.com/questions/1773159/many-to-many-jpa-mapping-inserting-but-not-fething-the-child-collections 0 many-to-many JPA mapping inserting but not fething the child collections black sensei 2009-11-20T20:49:17Z 2009-11-20T22:04:11Z <p>Hello good people i've hit a block once again with hibernate.I posted numerous time on different aspect of the user and contact management i've building. here i have UserAccount, Userprofile, Group and Contact. UserAccount has one-to-one with UserProfile and has one-to-many with group and with contact.Contact and groups Have many-to-many between them, all of this is bidirectional. here are my mappings</p> <pre><code>// UserAccount ...... @OneToOne(targetEntity=UserProfileImpl.class,cascade={CascadeType.ALL}) @org.hibernate.annotations.Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN) @JoinColumn(name="USER_PROFILE_ID") private UserProfile profile; @OneToMany(targetEntity=ContactImpl.class, cascade={CascadeType.ALL}, mappedBy="userAccount") @org.hibernate.annotations.Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN) private Set&lt;Contact&gt; contacts = new HashSet&lt;Contact&gt;(); @OneToMany(targetEntity=GroupImpl.class, cascade={CascadeType.ALL}, mappedBy="userAccount") @org.hibernate.annotations.Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN) private Set&lt;Group&gt; groups = new HashSet&lt;Group&gt;(); ....... //Group @ManyToOne(targetEntity=UserAccountImpl.class) @JoinColumn(name="USER_ACCOUNT_ID",nullable=false) private UserAccount userAccount; @ManyToMany(targetEntity=ContactImpl.class,cascade={CascadeType.PERSIST, CascadeType.MERGE}) @JoinTable(name="GROUP_CONTACT_MAP", joinColumns={@JoinColumn(name="GROUP_ID")}, inverseJoinColumns={@JoinColumn(name="CONTACT_ID")}) private Set&lt;Contact&gt; contacts = new HashSet&lt;Contact&gt;(); //Contact .... @ManyToOne(targetEntity=UserAccountImpl.class) @JoinColumn(name="USER_ACCOUNT_ID",nullable=false) private UserAccount userAccount; @ManyToMany(targetEntity=GroupImpl.class, mappedBy="contacts") private Set&lt;Group&gt; groups=new HashSet&lt;Group&gt;(); .... // helper methods from group public void addContact(Contact contact) { try{ this.getContacts().add(contact); contact.getGroups().add(this); }catch(Exception e) { } } public void removeContact(Contact contact) { contact.getGroups().remove(contact); this.getContacts().remove(contact); } /** * @param userAccount the userAccount to set */ public void setUserAccount(UserAccount userAccount) { this.userAccount = userAccount; } </code></pre> <p>i select userAccount by email with is unique key.so here is the criteria.</p> <pre><code> public UserAccount getUserAccountByEmail(String email) { // try { logger.info("inside getUserAccountByEmail"); logger.debug(email); Session session = (Session) this.getDBSession().getSession(); UserAccount user = (UserAccount) session.createCriteria(this.getPersistentClass()) .setFetchMode("contacts", FetchMode.SELECT) .setFetchMode("groups", FetchMode.SELECT) .add(Restrictions.eq("email", email)) .uniqueResult(); logger.debug(user); return user; // } catch(NonUniqueResultException ne) { // logger.debug("Exception Occured: getUserAccountByEmail returns more than one result ", ne); // return null; // } catch(HibernateException he){ // logger.debug("Exception Occured: Persistence or JDBC exception in method getUserAccountByEmail ",he); // return null; // }catch(Exception e) { // logger.debug("Exception Occured: Exception in method getUserAccountByEmail", e); // return null; // } </code></pre> <p>My unit tests are running fine i think. at least i can see the data.I run an integration tests show that data are in the database since i browser it.It in desperation that i added the setFetchMode stuff to it(Tried the JOIN and the SELECT).the query changes but then the resulset is still the same. So this arises some questions :</p> <p><strong>1.</strong> What should i do to fix this?<br> <strong>2.</strong> the helper method works fine but it's on the parent side(i do it in the test), talking about UserAccount for example.why the setting of the relationship is not on the child side since i create and save the parent before the child.So doing contact.setUserAccount(userAccount) seem not to be enough in my point of view.Obviously i might be wrong somewhere but i'll like to understand.I'm really tempted to add a helper Method on the child side.</p> http://stackoverflow.com/questions/1773454/batch-file-to-delete-folders 0 Batch File to Delete Folders Homebrew 2009-11-20T21:49:12Z 2009-11-20T22:04:03Z <p>I found some code to delete folders, in this case deleting all but 'n' # of folders. I created 10 test folders, plus 1 that was already there. I want to delete all but 4. The code works, it leaves 4 of my test folders, except that it also leaves the other folder. Is there some attribute of the other folder that's getting checked in the batch file that's stopping it from getting deleted ? It was created through a job a couple of weeks ago.</p> <p>Here's the code I stole (but don't really understand the details): +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++</p> <pre><code> rem DOS - Delete Folders if # folders &gt; n @Echo Off :: User Variables :: Set this to the number of folders you want to keep Set _NumtoKeep=4 :: Set this to the folder that contains the folders to check and delete Set _Path=C:\Gabriel_Temp\FolderTest If Exist "%temp%\tf}1{" Del "%temp%\tf}1{" PushD %_Path% Set _s=%_NumtoKeep% If %_NumtoKeep%==1 set _s=single For /F "tokens=* skip=%_NumtoKeep%" %%I In ('dir "%_Path%" /AD /B /O-D /TW') Do ( If Exist "%temp%\tf}1{" ( Echo %%I:%%~fI &gt;&gt;"%temp%\tf}1{" ) Else ( Echo.&gt;"%temp%\tf}1{" Echo Do you wish to delete the following folders?&gt;&gt;"%temp%\tf}1{" Echo Date Name&gt;&gt;"%temp%\tf}1{" Echo %%I:%%~fI &gt;&gt;"%temp%\tf}1{" )) PopD If Not Exist "%temp%\tf}1{" Echo No Folders Found to delete &amp; Goto _Done Type "%temp%\tf}1{" | More Set _rdflag= /q Goto _Removeold Set _rdflag= :_Removeold For /F "tokens=1* skip=3 Delims=:" %%I In ('type "%temp%\tf}1{"') Do ( If "%_rdflag%"=="" Echo Deleting rd /s%_rdflag% "%%J") :_Done If Exist "%temp%\tf}1{" Del "%temp%\tf}1{" </code></pre> http://stackoverflow.com/questions/1773078/posixipc-python-package-equivalent-for-windows 0 posix_ipc python package equivalent for Windows? Yuvi 2009-11-20T20:33:11Z 2009-11-20T22:03:47Z <p>Inter process communication primitives (Semaphores, Shared Memory) in python on windows? posix_ipc works great on linux, anything similar for windows?</p> http://stackoverflow.com/questions/1772340/what-is-the-worst-programming-job-you-ever-had-and-why 20 What is the worst programming job you ever had and why? Sonny Boy 2009-11-20T18:17:01Z 2009-11-20T22:03:42Z <p>Hey all,</p> <p>If you're like me, you've worked for a number of places and not all of them were great. Sometimes there are many different reasons not to like a role but I'm trying to find out the most common reasons. Was it the tools you had to use or the lack of tools? Pushy clients and/or managers? Low pay? Long hours?</p> <p>For me, I'd have to say one of my first programming roles was my least favorite. I was just learning .NET and it was a small software house with two other programmers. One of the other programmers was actually learning on the job (he was a Math major in college) and the senior developer came from a VB6 background and was teaching himself VB.NET as we worked on the project. I liked everyone there, but there were very few opportunities for learning. A lot of the work we completed seemed to be lacking polish and I felt it could have been done better. As the company started to encounter financial trouble I felt it was time to go. So basically a lack of learning opportunities coupled with an uncertain future made me unsatisfied with the role.</p> <p>What are your guys' views?</p> http://stackoverflow.com/questions/1773534/what-is-the-right-way-to-call-an-oracle-stored-function-from-ado-net-and-get-the 0 What is the right way to call an oracle stored function from ado.net and get the result? Sean McMillan 2009-11-20T22:03:31Z 2009-11-20T22:03:31Z <p>I've got a vb.net codebase using ado to connect to an oracle database. We have lots of stored procedures that we call, some with multiple out parameters. However, I now need to call a stored function, and it's not clear to me how to get the result of the function back into my VB code.</p> <p>How do I properly call an oracle stored function from ado.net?</p> http://stackoverflow.com/questions/1773448/in-javascript-jquery-how-do-i-determine-the-position-from-the-top-to-the-current 0 In javascript Jquery, how do I determine the position from the top to the current state...everytime someone scrolls? alex 2009-11-20T21:48:29Z 2009-11-20T22:03:26Z <p>How do you bind it so that when a user scrolls, I can know the "offset" from the top, in pixels?</p> http://stackoverflow.com/questions/1773504/how-to-count-and-display-objects-in-relation-manytomany-in-django 0 How to count and display objects in relation ManyToMany in Django Matthew 2009-11-20T21:57:48Z 2009-11-20T22:03:22Z <p>Hi!</p> <p>I have a simple model with news and categories:</p> <pre><code>class Category(models.Model): name = models.CharField() slug = models.SlugField() class News(models.Model): category = models.ManyToManyField(Category) title = models.CharField() slug = models.SlugField() text = models.TextField() date = models.DateTimeField() </code></pre> <p>I want to count news for each category and display it on the website, like this:</p> <pre><code>Sport (5) School (4) Films (6) Computer (2) etc... </code></pre> <p>How can I do this??</p> <p>Thanks!</p> http://stackoverflow.com/questions/1770114/what-are-some-methods-of-analyzing-a-website-for-user-experience-usability-and 2 What are some methods of analyzing a website for user experience, usability, and accessibility? lhnz 2009-11-20T12:18:34Z 2009-11-20T22:02:39Z <p>I'm a recent graduate who is looking to get a job doing user experience. Next week, I have a technical interview in which I will be given a website and will have to talk about its usability issues as well as come up with ways of improving the user experience. I feel I have the natural skills to do this and have been doing a fair amount of reading into the subject, but I would like some further advice on how to effectively critique different kinds of websites.</p> <p>Does anybody have any suggestions of common faults I should look out for, or advice on ways of structuring my evaluation in order that it is relatively air-tight and I do not miss anything <em>obvious</em>?</p> <p>As I've said before, I'm already doing a lot of reading and I realize that practice makes perfect. However, I'm hopeful that those that have long-term experience with this can help me by imparting their wisdom on gotchas, common issues, and what to look out for in a good/bad website.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1773437/the-right-way-to-kill-off-near-dead-hosted-applications 2 The right way to kill off near-dead hosted applications? routeNpingme 2009-11-20T21:46:07Z 2009-11-20T22:02:34Z <p>When a hosted software application <strong>does have a paying user base</strong> (albeit a small one), but it's no longer profitable to maintain it, improve it, or support it, what's the "right way" to kill it off, and instead use that time/money to focus on your solutions that are working? What's the most professional way to do this?</p> <p>Do you...</p> <ol> <li>Simply notify the users of an end-support date (say 1 year out?) and wait for them to leave after?</li> <li>Forcefully terminate the application on a certain date?</li> <li>Refer and help users transition to another competitor's solution?</li> <li>Open-source it?</li> </ol>