User Klathzazt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T21:46:06Z http://stackoverflow.com/feeds/user/35223 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1833261/qt-expand-to-home-directory/1838704#1838704 0 Answer by Klathzazt for Qt: Expand ~ to home-directory Klathzazt 2009-12-03T09:21:05Z 2009-12-03T09:21:05Z <p>Look at the class QDesktopServices:</p> <p><a href="http://doc.trolltech.com/qtextended4.4/qdesktopservices.html#StandardLocation-enum" rel="nofollow">http://doc.trolltech.com/qtextended4.4/qdesktopservices.html#StandardLocation-enum</a></p> http://stackoverflow.com/questions/290128/why-are-event-based-network-applications-inherently-faster-than-threaded-ones/290151#290151 4 Answer by Klathzazt for Why are event-based network applications inherently faster than threaded ones? Klathzazt 2008-11-14T13:57:41Z 2009-10-18T17:12:07Z <p>I think event based vs thread based is not the question - it is a nonblocking Multiplexed I/O, Selectable sockets, solution vs thread pool solution.</p> <p>In the first case you are handling all input that comes in regardless of what is using it- so there is no blocking on the reads- a single 'listener'. The single listener thread passes data to what can be worker threads of different types- rather than one for each connection. Again, no blocking on writing any of the data- so the data handler can just run with it separately. Because this solution is mostly IO reads/writes it doesn't occupy much CPU time- thus your application can take that to do whatever it wants.</p> <p>In a thread pool solution you have individual threads handling each connection, so they have to share time to context switch in and out- each one 'listening'. In this solution the CPU + IO ops are in the same thread- which gets a time slice- so you end up waiting on IO ops to complete per thread (blocking) which could traditionally be done without using CPU time.</p> <p>Google for non-blocking IO for more detail- and you can prob find some comparisons vs. thread pools too.</p> <p>(if anyone can clarify these points, feel free)</p> http://stackoverflow.com/questions/848788/how-to-ensure-access-to-my-web-service-from-my-code-only/848959#848959 0 Answer by Klathzazt for How to ensure access to my web service from my code only? Klathzazt 2009-05-11T16:39:02Z 2009-10-18T16:37:43Z <p>I am assuming you don't want to use SSL? If you do then you can open HTTPS session and then pass some secret key in the request.</p> <p>If you don't want SSL your options are limited: to have pseudo security I suggest both authentication and authorization methods and a third to reduce overall traffic:</p> <p>Authentication: Generator in client application that creates secret keys by combining with a key file. The keyfile can be updated every so often for greater security: lets say you update the key file once a week. To re-cap: Generator combines in app secret with out of app key file to generate a 3rd key for transmission used in authentication. The server would then be able to authenticate.</p> <p>Authorization: Of course you also want to lock out rogue applications. Here it would be best to have authorization mechanism with the site. Don't replace keyfiles for unless the client logs in. Track key files to users. etc.</p> <p>Traffic reduction: If you are receiving obscene amount of traffic or if you suspect someone trying to DOS your server, you can also have both the server and clients sync to request/response on a procedurally generated URL that can change often. It is wasteful to open/close so many HTTPS sessions if someone is just flooding you with requests.</p> http://stackoverflow.com/questions/1390867/adding-attributes-to-qpropertys/1497735#1497735 1 Answer by Klathzazt for Adding attributes to Q_PROPERTYs Klathzazt 2009-09-30T12:11:29Z 2009-09-30T12:11:29Z <p>Maybe have the property and other properties to describe the min/max values. It is straightforward and easy to understand and use- which to me is a plus.</p> http://stackoverflow.com/questions/868423/qt-dll-deployment-on-windows/1497724#1497724 0 Answer by Klathzazt for Qt DLL deployment on Windows Klathzazt 2009-09-30T12:09:27Z 2009-09-30T12:09:27Z <p>A1: Best practice: put the DLL in the directory of the executable. It will look there first for loading the DLL. This is common practice.</p> <p>A2: If somehow the application uses a different version of Qt and the module you are describint requires a later or specific version, it might cause a problem (not work, crash, etc).</p> <p>With static Linking you would also have to consider license restrictions of Qt. LGPL is happy as long as the library is dynamically loaded at runtime and can be separated from the application. This only applies if you do not release your source, etc.</p> <p>Also, your installer should set up access to those files so that they are protected from being overwritten by some other rogue application.</p> http://stackoverflow.com/questions/1454021/how-to-implement-a-https-login-page-in-a-web-application/1491230#1491230 0 Answer by Klathzazt for How to implement a HTTPS login page in a web application? Klathzazt 2009-09-29T08:21:28Z 2009-09-29T08:21:28Z <p>Load for secure pages a script to check the token.</p> <p>at top of your script:</p> <pre><code> if(!getSecurityToken()) // 1 redirect(login_page) if(!checkToken(token)) // 2 redirect(login_page) </code></pre> <p>The login page should set the secure token and create a session, which would then be passed in the request. The server keeps track of which session owns which token. For implementing the server you must implement for your scripts the checkToken method. The token should be saved in cookies or else in someway saved in the page (for subsequent requests).</p> <p>When a request is made to the server it must contain the token, or else will fail redirect (1).</p> <p>When the users session expires (by logout or timeout) then the mapping in the server will no longer exist (session id to token id) and thus any new requests with the token will be invalid and cause a redirect(2).</p> http://stackoverflow.com/questions/1223872/programatically-press-a-button-on-another-application-c-windows/1430168#1430168 0 Answer by Klathzazt for Programatically press a button on another application (C, Windows) Klathzazt 2009-09-15T23:34:17Z 2009-09-15T23:34:17Z <p>You can use sendkeys (as tr3 said) to send mouse clicks, which is different than using SendMessage. It is also less direct and more hack-ish, but is useful for automation (in VBS).</p> <p>Also, just a guess but the problem could be that your message handling is broken somewhere by not calling the base class member. Example:</p> <pre><code>void CMyClass::OnMessageY(CWnd *cwnd) { CBaseClass::OnMessageY(cwnd); //... my code } </code></pre> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/909531#909531 0 Answer by Klathzazt for Can anyone recommend a good SQL parsers? Klathzazt 2009-05-26T08:12:34Z 2009-05-26T08:12:34Z <p>If you have DDL to create the tables, parse off the table name and prepend some generated table name for this. Depending on the SQL engine you are using, you have different ways to query the schema:</p> <p>Using SQLite:</p> <pre><code>PRAGMA table_info(my_table) PRAGMA table_info(temporary_my_table) </code></pre> <p>Or on MySQL:</p> <pre><code> SELECT table_name, column_name, data_type FROM information_schema.columns WHERE table_schema = 'my_schema' AND (table_name LIKE '%my_table'; </code></pre> http://stackoverflow.com/questions/819767/how-do-i-reset-iis-programmatically/819939#819939 0 Answer by Klathzazt for How do I reset IIS programmatically? Klathzazt 2009-05-04T12:45:41Z 2009-05-04T12:45:41Z <p>You can also use iisreset from command prompt to restart all of IIS.</p> <p>I believe tvanfossan answer is ok but the interface he recommends I think can only reset all of IIS once. You may want to programmatically identify which process running in your application pool you want to kill if you have a hung process. </p> <p>I suggest looking at the scripting interfaces as well: <a href="http://msdn.microsoft.com/en-us/library/ms526050.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms526050.aspx</a></p> http://stackoverflow.com/questions/819523/how-to-go-to-the-next-level-integrating-animations-in-wpf-applications-with-blend/819624#819624 0 Answer by Klathzazt for How to go to the next level integrating animations in WPF applications with Blend / VS2008? Klathzazt 2009-05-04T10:39:53Z 2009-05-04T10:39:53Z <p>Here are some video tutorials: <a href="http://expression.microsoft.com/en-us/cc188684.aspx" rel="nofollow">http://expression.microsoft.com/en-us/cc188684.aspx</a></p> <p>You may also want to use Xamlpad.exe which comes with the SDK to learn how XAML works.</p> <p>It is very important that you learn how all the components work at The same time you use blend, otherwise it may confuse you or you may try to do things the framework may have trouble with.</p> <p>Good Luck.</p> http://stackoverflow.com/questions/817807/c-how-to-remove-all-null-properties-from-a-generic-object-using-reflection/817841#817841 0 Answer by Klathzazt for C#: How to remove all null properties from a generic object using reflection? Klathzazt 2009-05-03T19:52:29Z 2009-05-03T19:52:29Z <p>You may want to create some sort of wrapping object that only exposes members of what it is wrapping if they are not null.</p> <p>You may also want to check out version 4 of C#. From <a href="http://en.wikipedia.org/wiki/Duck%5Ftyping#Duck%5Ftyping%5Fin%5Fstatically%5Ftyped%5Flanguages" rel="nofollow">the wikipedia entry for duck typing</a>: </p> <blockquote> <p>Version 4 release of C# have extra type annotations that instruct the compiler to arrange for type checking of classes to occur at run-time rather than compile time, and include run-time type checking code in the compiled output. Such additions allow the language to enjoy most of the benefits of duck typing with the only drawback being the need to identify and specify such dynamic classes at compile time.</p> </blockquote> http://stackoverflow.com/questions/817473/why-cant-i-add-a-xml-datasource-in-expression-blend-3/817532#817532 0 Answer by Klathzazt for Why can't I add a XML datasource in Expression Blend 3? Klathzazt 2009-05-03T17:19:30Z 2009-05-03T17:19:30Z <p>I just tried using blend 1.0. This version also had other options, such as 'infer xml schema'.</p> <p>My guess is that there was some check added in later version to ensure that the file pointed to has an extension.</p> <p>My suggestion is to edit the xaml directly. Note, this is old XAML from blend 1.0: </p> <pre><code>&lt;Window.Resources&gt; &lt;XmlDataProvider x:Key="rssDS" d:IsDataSource="True" Source="http://www.tanguay.info/web/rss/"/&gt; &lt;/Window.Resources&gt; </code></pre> <p>Hope that helps, let me know.</p> http://stackoverflow.com/questions/817396/mysql-timestamp-only-on-create/817477#817477 0 Answer by Klathzazt for mysql timestamp only on create Klathzazt 2009-05-03T16:53:02Z 2009-05-03T16:53:02Z <p>I suggest using DATETIME for that column. It won't change when the record is updated.</p> <p>For me, I use TIMESTAMP for tracking when the record was last touched, although in general I avoid using it.</p> http://stackoverflow.com/questions/293401/msvcr90-dll-was-not-found/293452#293452 2 Answer by Klathzazt for MSVCR90.DLL was not found. Klathzazt 2008-11-16T03:44:49Z 2009-05-01T17:41:51Z <p>Here are some things to check for your configuration of the project- under the general tab:</p> <ul> <li>.1 Configuration type - exe in your case.</li> <li>.2 Use of MFC: if this is an MFC application it might be more portable if you do: Use MFC in a static library.</li> <li>.3 Use of ATL - if not using atl (or not sure) say Not using ATL.</li> <li>.4 Under C/C++ -> Runtime Library: Say Multi-threaded Debug (for debug version) or Multi-Threaded (for release version).</li> </ul> <p>If you are getting specific linker errors that say something is already defined: This means that you have some parts of your app (separate libs being linked to your exe) that are built with different runtime linking:</p> <p>You can: </p> <ul> <li><p>Make sure that these libraries were compiled with the same version of visual studio as your application.</p></li> <li><p>Change those projects to use static runtime: C/C++ -> Code Generation -> Runtime LIbrary: /MT or MTd (same as #4 above)</p></li> <li><p>If you still have some specific errors try telling the linker to ignore certain libraries: Go to Linker->Ignore Specific Library and put in the library that you want to ignore. This is most common for 'libcmt.lib' or 'libcmtd.lib'. It is important also to know that lib ending with 'd' is usually the debug version. If you are creating a release build and you are getting 'already defined in libcmtd.lib' that means that somewhere you are linking a release lib to a debug lib.</p></li> </ul> http://stackoverflow.com/questions/277551/how-can-i-use-sqlite-to-open-a-database-from-memory 0 How can I use SQLite to open a database from memory? Klathzazt 2008-11-10T10:32:41Z 2009-05-01T11:16:17Z <p>It looks like all the methods for loading SQLite involve loading from a named file using a string. I would like to load SQlite database from memory.</p> <p>The database is already loaded into memory.</p> http://stackoverflow.com/questions/647705/as-a-programmer-with-no-cs-degree-do-i-have-to-learn-c-extensively/647778#647778 0 Answer by Klathzazt for As a programmer with no CS degree, do I have to learn C++ extensively? Klathzazt 2009-03-15T13:00:06Z 2009-03-15T13:00:06Z <p>C++ is just a programming language. What you don't have that other students (if they paid attention in class) have is the deeper understanding that comes through studying concepts. </p> <p>Being a programmer is not and should not be the end goal of any CS graduate. However it is as far as most people get without such a degree.</p> <p>Here is an analogy: An engineer and an architect both at some point learn to draft buildings using CAD. Also, someone completely untrained can come in and start work using CAD and be very effective. This is a good career and it pays well, but for both the engineer and the architect it is not where you want to be when you are 30.</p> http://stackoverflow.com/questions/468403/when-does-windows-signal-a-process-handle/625310#625310 0 Answer by Klathzazt for When does windows signal a process handle? Klathzazt 2009-03-09T07:45:10Z 2009-03-09T07:45:10Z <p>If any of the DLL's you are using are using threads, they may not terminate (or join) fast enough if you do not explicitly unload them- which would of course occur if you had explicitly loaded them using LoadLibrary</p> <p>Take a look here: <a href="http://msdn.microsoft.com/en-us/library/ms682596" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms682596</a>(VS.85).aspx</p> <p>Specifically this line:</p> <blockquote> <p>... The DLL is unloaded when the process terminates or calls the FreeLibrary function and the reference count becomes zero. If the process terminates as a result of the TerminateProcess or TerminateThread function, the system does not call the DLL entry-point function.</p> </blockquote> http://stackoverflow.com/questions/557527/large-xml-file-xmldocument-not-feasible-but-need-to-be-able-to-search/625297#625297 0 Answer by Klathzazt for Large XML file, XmlDocument not feasible but need to be able to search Klathzazt 2009-03-09T07:35:41Z 2009-03-09T07:35:41Z <p>You could implement a sax based parser - so that you only take branches you are interested in when parsing the XML. This would be the best approach because it doesn't load the entire xml as a document.</p> <p>Optimally you would design your custom parser around your needs on an as needed basis- and do all the parsing for everything on a single pass- for example, if you may be interested in specific nodes later save references to them so you can start there later rather than reparsing or traversing again.</p> <p>The down side here is that its a bit of custom programming.</p> <p>The upside is that you will only be reading what you are interested in and handling the xml document based on your requirements. You can also start processing results before finishing a pass through the document. This is great for kicking off worker threads based on the contents of the document. Example: you can take the entire contents of an element as the root of another XML document, and then load it as such separately (use xpath, etc). You can copy the contents into a buffer and then hand that off to a worker to process- etc.</p> <p>I have used this a long time ago using libxml2 for C, but there are C# bindings as well (and many other languages).</p> http://stackoverflow.com/questions/512350/what-coding-tricks-have-you-used-to-avoid-writing-more-sql/528887#528887 0 Answer by Klathzazt for What coding tricks have you used to avoid writing more sql? Klathzazt 2009-02-09T16:35:49Z 2009-02-09T16:35:49Z <p>I have used <a href="http://www.outlet-orm.org/site/" rel="nofollow">outlet-orm</a> which is an awesome ORM solution that doesn't generate. I think out of all the tricks I have done in the past this one has been by far the most convenient and time saving.</p> http://stackoverflow.com/questions/475329/best-tools-for-2d-constructive-area-geometry/496174#496174 0 Answer by Klathzazt for Best Tools for 2D Constructive Area Geometry Klathzazt 2009-01-30T16:35:15Z 2009-01-30T16:35:15Z <p>If you are in the windows world you may consider using MFC which has CRgn and other ops that you can use to compute those differences- most notably it is easy to create splines that clip regions- and then you can easily work with those clipped regions (areas, intersections, etc).</p> <p>I assume since the MFC operations are encapsulating GDI- you could use GDI directly to do the same ops, but of course if you have and don't mind MFC then it is worth checking out.</p> http://stackoverflow.com/questions/419547/net-wsdl-command-line-utility-error/484253#484253 0 Answer by Klathzazt for .Net WSDL command line utility error Klathzazt 2009-01-27T17:05:55Z 2009-01-27T17:05:55Z <p>Is this an XSD File? files have dependencies. Download the dependency files and place them side/by/side with the XSD you downloaded. I would assume visual studio may fetch dependencies.</p> <p>If this doesn't solve it, please provide more details.</p> http://stackoverflow.com/questions/435466/resources-in-project-file-in-vs2008-gets-reused-creatively-by-the-form-designer/483831#483831 0 Answer by Klathzazt for Resources in project file in VS2008 gets "reused" creatively by the form designer, possible to avoid? Klathzazt 2009-01-27T15:23:40Z 2009-01-27T15:23:40Z <p>Generated resource file and code sample would be good. </p> <p>And what you are saying is: you have an empty string literal definition in your namespace (the first one found) but that is causing some problem? Won't it be empty at all times? When you compile the code- it does quirky things like this to save space. I ran into a similar issue when generating XAML files with codebehind for on-the-fly automated build of assembly files: The compiler is smart enough to know 'it doesn't make a difference but for us it did because it would rename the literals (which were used elsewhere).</p> <p>To work around this we used named types for these primitives in our namespace and made that one global. What I see here is that your global namespace is filling in the blanks- you may want to have one 'below' which evaluates all null strings.</p> <p>I haven't worked with this in over a year so forgive me if my wording is poor, but what i mean is: think XML. You need to either explicitly use namespace in the properties or assign them lower (like attached property in xaml).</p> <p>I hope this helps (and makes sense)</p> http://stackoverflow.com/questions/478298/how-do-i-write-a-c-program-that-will-easily-compile-in-linux-and-windows/478316#478316 12 Answer by Klathzazt for How do I write a C++ program that will easily compile in Linux and Windows? Klathzazt 2009-01-25T21:19:55Z 2009-01-25T21:19:55Z <p>C++ is cross platform. The problem you seem to have is that you are using platform dependent libraries. </p> <p>I assume you are really talking about UI componenets- in which case I suggest using something like GTK+, Qt, or wxWindows- each of which have UI components that can be compiled for different systems.</p> <p>The only solution is for you to find and use platform independent libraries.</p> <p>And, on a side note, neither cygwin or Wine are emulation- they are 100% native implementations of the same functionality found their respective systems.</p> http://stackoverflow.com/questions/461580/persistence-solutions-for-c-with-a-sql-database/462366#462366 1 Answer by Klathzazt for Persistence solutions for C++ (with a SQL database)? Klathzazt 2009-01-20T17:57:39Z 2009-01-20T17:57:39Z <p>It sounds like you are looking for some ORM so that you don't have to bother with hand written SQL code.</p> <p>There is a post <a href="http://stackoverflow.com/questions/74141/good-orm-for-c-solutions">here</a> that goes over ORM solutions for C++.</p> <p>You also did not mention the type of application you are writing, if it is a desktop application, mobile application, server application.</p> <p>Mobile: You are best off using SQLite as your database engine because it can be embedded and has a small footprint.</p> <p>Desktop App: You should still consider using SQLite here, but you also have the option with most desktop applications to have an always on connection to the internet in which case you may want to provide a network server for this task. I suggest using Apache + MySQL + PHP and using a lightweight ORM such as <a href="http://www.outlet-orm.org/site/" rel="nofollow">Outlet ORM</a>, and then using standard HTTP post calls to access your resources.</p> <p>Server App: You have many more options here but I still suggest using Apache + MySQL + PHP + ORM because I find it is much easier to maintain this layer in a script language than in C++.</p> http://stackoverflow.com/questions/289502/did-you-ever-get-an-unexpected-answer-during-interview/289515#289515 1 Answer by Klathzazt for Did you ever get an unexpected answer during interview? Klathzazt 2008-11-14T08:40:15Z 2009-01-09T05:36:20Z <p>As an interviewer I had not been surprised very often. Most of the people have been respectful and intelligent. I had only been surprised by how quiet and nervous some people get or how little they tried to answer some of the technical questions.</p> <p>As an interviewee I've given answers that were not expected. There was one occasion where I gave an answer at an early stage interviewer for large multinational company- and they simply did not understand the solution. Lesson learned: never give a 'different' or 'out of the box' answer unless it is in writing and the person receiving it is technical in that area. Otherwise, they may simply regard it as incorrect. Give the answer you think will be the norm- because in most cases the early interviewer has a very short list of the 'possible' answers.</p> <p>Update: The interview I was referring to was a 4th or 5th stage phone screen- so I guess it is not as applicable. The question was one of those ones that involve 'assume you have infinite memory' so I played on that coming up with some strange 'what if' scenario. The 'best' answer was one that was more to the point using traditional methods.</p> http://stackoverflow.com/questions/275595/what-are-the-most-active-community-resources-for-mfc-development 1 What are the most active community resources for MFC development? Klathzazt 2008-11-09T04:18:39Z 2008-12-31T08:42:24Z <p>I am wondering what are the best community resources for MFC development- such as forums, IRC channels, etc. Currently the only resource I have for finding answered questions on MFC is using google which comes up with Codeproject results or the occasional result on MSDN or some other web page. Now that there is stackoverflow I am sure I will be asking more questions here, but else am I missing?</p> http://stackoverflow.com/questions/346487/job-exit-interviews-how-to-handle-them-how-to-prepare/346513#346513 9 Answer by Klathzazt for Job exit interviews: how to handle them, how to prepare? Klathzazt 2008-12-06T17:28:06Z 2008-12-06T17:28:06Z <p>I have jumped ship a few times in my career. Here are my answers to your questions of exit interviews:</p> <ul> <li><p>Not every company I have worked with has done exit interviews. When they did, they were a last minute plea to see if they could change my mind.</p></li> <li><p>Software dev topics: If you are leaving they will want to know if it was because of the type of work- which for software developers means what paradigm and languages. This may be to find out if they could entice you to stay if your work were to change or just to know that maybe everyone is leaving the company because hey, they hate cobol (just using as an example).</p></li> <li><p>Employer perspective: For you to leave, the company will likely think it is something they did that forced your hand. They will want to get an accurate account for why you left so they can predict this in the future- which can have an affect on what salary and raises other employees receive. Example: they may not make as much of an effort to keep someone like you next time if they think it will just backfire again- Or, maybe they can get to someone sooner if they see the same signs, Or- maybe they can change hiring practices to have better retention of quality people.</p></li> <li><p>Positive impression: It depends on the company. Even if you leave on good terms, they may still resent you leaving if you were a valuable asset to the company. This also depends on the size of the company. </p></li> </ul> http://stackoverflow.com/questions/345629/what-to-do-when-your-company-thinks-in-hours-rather-than-months/345653#345653 1 Answer by Klathzazt for What to do when your company thinks in hours rather than months? Klathzazt 2008-12-06T00:53:33Z 2008-12-06T00:53:33Z <p>8 Years and you are ~10 people? That's not a business model, that's surviving. I suggest moving on or becoming seriously vocal and active to get to the next level. If you don't have a business model that is built for serious growth, you will just go on surviving until something comes along and whipes you out.</p> http://stackoverflow.com/questions/345610/remove-all-but-the-last-500-000-bytes-from-a-file-with-the-stl/345636#345636 0 Answer by Klathzazt for Remove all but the last 500,000 bytes from a file with the STL Klathzazt 2008-12-06T00:40:57Z 2008-12-06T00:40:57Z <p>So you want the end of the file- you are copying that to some sort of buffer to do what with it? What do you mean 'writes that back' to the file. Do you mean that it overwrites the file, truncating on init to 500k bytes of the original+ what it adds?</p> <p>Suggestions:</p> <ul> <li><p>Rethink what you are doing. If this works and is what is desired, what is wrong with it? Why change? is there a performance problem? Are you starting to wonder where all your log entries went? It helps most for this type of question to provide more of the problem than to post the existing behavior. No one can fully comment on this unless they know the complete problem- because it is subjective.</p></li> <li><p>If it were me and I were tasked at reworking your logging mechanism i'd build in a mechanism to cut off the log files to either: length of time or size.</p></li> </ul> http://stackoverflow.com/questions/327863/is-it-a-good-idea-to-code-my-own-blog-engine-beginner/327898#327898 0 Answer by Klathzazt for Is it a good idea to code my own blog engine (beginner)? Klathzazt 2008-11-29T19:32:11Z 2008-11-29T19:32:11Z <p>It is much more important to choose a project that you will enjoy- especially if you are doing it for fun.</p> <p>I think the best way to learn is to do something thats already been done - so have a set of goals. You may think its less rewarding, but but by the time you are 'finishing' you will likely have thought of and implemented new ideas into your software.</p> http://stackoverflow.com/questions/1491674/when-a-parent-process-is-killed-by-kill-9-will-subprocess-also-be-killed/1491704#1491704 Comment by Klathzazt on When a parent process is killed by "kill -9", will subprocess also be killed? Klathzazt 2009-09-29T10:55:00Z 2009-09-29T10:55:00Z Here is a link to how to create a zombie process if you are interested in how they are created and to experiment with how they are handled for your system: <a href="http://www.unix.com/unix-dummies-questions-answers/100737-how-do-you-create-zombie-process.html" rel="nofollow">unix.com/unix-dummies-questions-answers/&hellip;</a> http://stackoverflow.com/questions/933850/how-to-find-the-location-of-the-executable-in-c/933868#933868 Comment by Klathzazt on how to find the location of the executable in C Klathzazt 2009-06-01T09:22:43Z 2009-06-01T09:22:43Z In Linux /proc filesystem is a kernel level option- so it can't be guaranteed to be available or enabled on any given Linux system. Also, it could be enabled in the kernel but not available if /etc/fstab does not have a mount point for it. Also, you may run into security issues. http://stackoverflow.com/questions/828108/please-help-me-to-solve-this-memory-allocation-problem/828130#828130 Comment by Klathzazt on Please help me to solve this memory allocation problem Klathzazt 2009-05-06T05:34:03Z 2009-05-06T05:34:03Z in your struct as well- you have to replace ListPtr * with ListPtr. As previously stated, it would be a lot less confusing if you did not have the typedef statements. http://stackoverflow.com/questions/819321/how-important-are-grades-when-applying-for-a-job Comment by Klathzazt on How important are grades when applying for a job? Klathzazt 2009-05-04T10:55:48Z 2009-05-04T10:55:48Z Yeh about your #2 entry: It is not about memorizing the diagrams, it is about understanding how they work. If you understand the algorithm then writing the diagram is a cakewalk. Again about memorizing the proofs: you should learn and understand the core concepts well enough to come up with them on an exam. If you are studying to memorize then you are doing it wrong. http://stackoverflow.com/questions/293583/top-users-on-stackoverflow-slackers-or-superstars/295601#295601 Comment by Klathzazt on Top users on stackoverflow: slackers or superstars? Klathzazt 2009-05-03T16:05:33Z 2009-05-03T16:05:33Z I think your comment misses the point that I had made at the time of this post- which was when there were far fewer questions. People were asking open ended questions that were intentionally subjective and answering these themselves to earn rep. http://stackoverflow.com/questions/277551/how-can-i-use-sqlite-to-open-a-database-from-memory/811014#811014 Comment by Klathzazt on How can I use SQLite to open a database from memory? Klathzazt 2009-05-01T17:44:28Z 2009-05-01T17:44:28Z this is not a public page http://stackoverflow.com/questions/378380/how-can-i-debug-a-win32-process-that-unexpectedly-terminates-silently Comment by Klathzazt on How can I debug a win32 process that unexpectedly terminates silently? Klathzazt 2009-02-03T14:57:02Z 2009-02-03T14:57:02Z you say in your question that the application threads have terminated and the main process loop then exits. This sounds like the application is terminating normally- and that the 'bug' is probably a design problem. Check your thread loops to see why they are exiting (break points). http://stackoverflow.com/questions/435466/resources-in-project-file-in-vs2008-gets-reused-creatively-by-the-form-designer/488918#488918 Comment by Klathzazt on Resources in project file in VS2008 gets "reused" creatively by the form designer, possible to avoid? Klathzazt 2009-02-03T14:41:35Z 2009-02-03T14:41:35Z The problem with this is that you may not be able to alter the resource files- or manage them. If they were 3rd party or require some non-standard alteration to work around whitespace you will be shooting yourself in the foot. http://stackoverflow.com/questions/327066/xml-parsing-and-transformation-in-php/327083#327083 Comment by Klathzazt on XML parsing and transformation in PHP? Klathzazt 2008-11-29T15:43:55Z 2008-11-29T15:43:55Z Yes- you can pretty much do anything within PHP that you can do with plain old libxml2. The next answer has details for registering php functions for use within xsl http://stackoverflow.com/questions/318344/how-to-start-programming-for-android Comment by Klathzazt on How to start programming for Android? Klathzazt 2008-11-25T18:15:05Z 2008-11-25T18:15:05Z <a href="http://letmegooglethatforyou.com/?q=android+programming+development" rel="nofollow">letmegooglethatforyou.com/?q=android+programming+&hellip;</a> http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184629#184629 Comment by Klathzazt on What is the best comment in source code you have ever encountered? Klathzazt 2008-11-18T14:40:29Z 2008-11-18T14:40:29Z you showed your boss some random comment in some source code? http://stackoverflow.com/questions/293723/how-could-i-create-a-custom-windows-message Comment by Klathzazt on How could I create a custom windows message? Klathzazt 2008-11-16T09:37:58Z 2008-11-16T09:37:58Z An MessageBox doesn't work for you in this situation? Are you using MFC? http://stackoverflow.com/questions/289314/error-when-installing-visual-studio-2005-on-vista Comment by Klathzazt on Error when installing Visual Studio 2005 on Vista Klathzazt 2008-11-14T05:35:12Z 2008-11-14T05:35:12Z I've had similar problems with a copy of VS2005 standard for my XP computer. I think it is an installer issue. Thankfully the copy I had was a promo disk and not paid for. http://stackoverflow.com/questions/279148/get-65k-records-only-listed-in-combo-box-from-a-table-of-155k-records/279151#279151 Comment by Klathzazt on get 65K records only listed in combo box from a table of 155K records. Klathzazt 2008-11-14T04:51:41Z 2008-11-14T04:51:41Z This is correct. Excel / Access have a limit: 16-bit integer. I am guessing he wants to do something with that data such as search/replace from that UI on the entire dataset- which won't fully load. http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245068#245068 Comment by Klathzazt on What's the difference between JavaScript and Java? Klathzazt 2008-11-11T03:45:03Z 2008-11-11T03:45:03Z Great answer and funny.