User Harald Scheirich - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T10:53:58Zhttp://stackoverflow.com/feeds/user/22080http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170101/how-do-you-get-other-people-to-contribute-to-the-project-wiki11How do you get other people to contribute to the project Wiki?Harald Scheirich2008-10-04T10:38:20Z2009-11-29T15:36:23Z
<p>We have a distributed team working on a mid-sized project; I am currently the only technical person involved. At the beginning of the project we had a discussion on what to use for project documentation and we agreed on a wiki.</p>
<p>We are now a couple of months into this project and still nobody except me has put any actual content into the wiki. As usual, Word documents are being sent around; some are occasionally uploaded, but most are not.</p>
<p>When deploying new software I usually spearhead things by just using the new tool and basically 'eating my own dogfood' but in this case I am not the one who can contribute and I don't really want to sit down and convert other people's Word docs into Wiki format.</p>
<p>How do you educate people about the use of the wiki and how do you get them to use it?</p>
<p>[Edit 1]
One of the main problems right now is that almost all of the content that is being produced by now is NOT my content, it is mostly SMEs and project management stuff. While I am willing to spearhead, I really don't want to be the document fairy...</p>
<p>The wiki is currently a MediaWiki, we have another instance of it running for another project and that works OK.</p>
http://stackoverflow.com/questions/1780447/game-engines-for-iphone-vs-native-iphone-sdk-development/1780899#17808990Answer by Harald Scheirich for Game engines for iPhone vs. native iPhone sdk development Harald Scheirich2009-11-23T03:00:32Z2009-11-23T03:00:32Z<p>If you want to do 2d development you should have a look at <a href="http://code.google.com/p/cocos2d-iphone/" rel="nofollow">cocos2d iphone</a> it is implemented in cocoa free open source and very easy to pick up</p>
http://stackoverflow.com/questions/1780690/unity-vs-torque-game-engines-and-ide-environment/1780894#17808940Answer by Harald Scheirich for Unity vs Torque game engines and IDE environmentHarald Scheirich2009-11-23T02:58:10Z2009-11-23T02:58:10Z<p>We just did a demo using torque, the experience I took away from that is that not only do you get the source for it. But you will have to start modifying the source very quickly. I don't that you can do any thing but a strict fps shooter with the torque 3d engine without changing the source. </p>
<p>And while there is a large community for torque out there, they are not really set up well to convey changes to the source. I.e. most of the source changes don't post patches but unwieldy instructions on how to change the source.</p>
<p>I don't have a comparable experience with unity but before I would commit to Torque I would probably run Unity through some tests. </p>
http://stackoverflow.com/questions/1726462/memory-leak-analysis/1727007#17270070Answer by Harald Scheirich for Memory Leak AnalysisHarald Scheirich2009-11-13T03:45:01Z2009-11-13T03:45:01Z<p>For leaks I have been using <a href="http://sites.google.com/site/dmoulding/vld" rel="nofollow">Visual Leak Detector</a> while it only works in debug mode it is free and seems reasonably reliable</p>
http://stackoverflow.com/questions/1724383/qsqldatabasetransaction-and-other-open-transaction-block-or-fail1QSqlDatabase::transaction and other open transaction, block or fail ?Harald Scheirich2009-11-12T18:33:21Z2009-11-12T21:55:54Z
<p>I am dealing with Sql Server and Oracle through Qt, when using <code>QSqlDatabase::transaction()</code> on a database connection. When another user/connection has a transaction open on the same database does the <code>transaction()</code> call block until the other transaction is finished or fail ?</p>
http://stackoverflow.com/questions/1666213/flash-games-hack-score-is-49700-how-to-improve-flash-games-security/1666524#1666524-1Answer by Harald Scheirich for Flash games hack, score is 49700?? How to improve flash games security?Harald Scheirich2009-11-03T10:35:26Z2009-11-03T10:35:26Z<p>As you said depending on what is being done to hack this there are different holes to fix. As you are sending the actual information in your message, and "secret" is contained in the code it becomes a much easier target. Some of the things you could do to improve security</p>
<ul>
<li><p>Use a different hash function, MD5 has known flaws it is possible to create messages with the same signature without knowing the content, SHA1, SHA2 offer higher security, this will prevent an attack through a weakness of MD5</p></li>
<li><p>Make the 'secret' unique to each message, ie. send it from the server for each posting, this will prevent people from reusing the same hash over and over again, and make it harder to look at the code and create the hash</p></li>
<li><p>Hash the result multiple times e.g. <code>value = hash(hash(hash(...,salt),salt),salt)</code> this won't help if people are decompiling your program but it will help if they are just trying to recreate the hash by itself.</p></li>
<li><p>Look for software to protect your SWF against decompilation, i don't do much flash so I don't have any reliable links for that</p></li>
</ul>
http://stackoverflow.com/questions/1647664/python-pyqt4-adding-an-unknown-number-of-qcombobox-widgets-to-qgridlayout/1647754#16477540Answer by Harald Scheirich for Python PyQT4 - Adding an unknown number of QComboBox widgets to QGridLayoutHarald Scheirich2009-10-30T02:53:01Z2009-10-30T02:58:19Z<p>I can't tell you the solution in PyQt but the structure you need to follow is the following. The QListView can do what you need, you don't need to create separate checkboxes. Create a subclass of <a href="http://doc.trolltech.com/4.5/qabstractitemmodel.html" rel="nofollow"><code>QAbstractItemModel</code></a> or <a href="http://doc.trolltech.com/4.5/qstandarditemmodel.html" rel="nofollow"><code>QStandardItemModel</code></a> (depending on how much coding you will want to do) override the <code>flags()</code> method to return the appropriate flags <em>including</em> <a href="http://doc.trolltech.com/4.1/qt.html#ItemDataRole-enum" rel="nofollow"><code>Qt::ItemIsUserCheckable</code></a>, in the <code>columncount()</code> method add an extra column to include the checkbox and in the <code>data</code> method for the column where you want your checkbox to appear return the checked state <code>Qt::Checked</code>, <code>Qt::Unchecked</code> for the <code>Qt::CheckStateRole</code>. </p>
<p>This can also be accomplished using the <a href="http://doc.trolltech.com/4.5/qlistwidget.html" rel="nofollow"><code>QListWidget</code></a> where you can use <a href="http://doc.trolltech.com/4.5/qlistwidgetitem.html" rel="nofollow"><code>QListWidgetItem</code></a> for adding data and do not need to create a model. On <code>QListWidgetItem</code> you can use <code>setFlags()</code> and <code>setData(QVariant(bool, Qt::CheckStateRole)</code> without having to subclass a model</p>
http://stackoverflow.com/questions/1642582/for-consistent-tempo-on-iphone-is-there-a-better-solution-than-system-sounds/1644493#16444931Answer by Harald Scheirich for For consistent tempo on iPhone, is there a better solution than system sounds?Harald Scheirich2009-10-29T15:20:56Z2009-10-29T15:20:56Z<p>I am going to start a flame here, so if you don't like this comment have at it. But did you actually look at the documentation that apple provides for you? </p>
<p>The documentation the "Getting Started with Audio" page lists multiple ways to play audio, one explicitely states "To play sounds with lowest I/O latency, or to provide simultaneous audio input and output, ..." (I am probably violating some NDA here whatever)</p>
<p>At least peak at the docs before you ask a question here </p>
http://stackoverflow.com/questions/1627418/opengl-es-scrolling-3-layer-starfield-textures-gets-me-from-60-40-fps/1628306#16283062Answer by Harald Scheirich for OpenGL ES. Scrolling 3 layer starfield textures gets me from 60 -> 40 FPSHarald Scheirich2009-10-27T01:34:27Z2009-10-27T01:34:27Z<p>I don't know how you want your stars to look like, but you might want to try to move them from a texture to geometry by using <code>GL_POINTS</code> in the <code>DrawElements</code> or <code>DrawArrays</code> maybe just replace the top two layers with layers of geometry. You can manipulate the points using <code>PointSize</code>, <code>PointSizePointerOES</code> and <code>PointParameter</code> to modify the rendering of the points. </p>
http://stackoverflow.com/questions/1628126/in-qt-create-a-table-with-an-blank-editable-row/1628277#16282770Answer by Harald Scheirich for In Qt, create a table with an blank editable rowHarald Scheirich2009-10-27T01:23:03Z2009-10-27T01:23:03Z<p>Sounds like a reasonable solution, as it should work for any model that you might want as the actual table model, ie. SqlTableModel or just a plain one. As long as you add the row when the user is done editing and take care not to add the row when the user did not add any data. </p>
http://stackoverflow.com/questions/1547621/general-printing-raster-and-or-vector-images/1547656#15476560Answer by Harald Scheirich for General printing raster and/or vector imagesHarald Scheirich2009-10-10T10:59:31Z2009-10-10T10:59:31Z<p>Well you got close, look at <a href="http://doc.trolltech.com/4.5/printing.html" rel="nofollow">Printing in Qt</a>. There is the <a href="http://doc.trolltech.com/4.5/qprinter.html" rel="nofollow">QPrinter</a> class that implements some of what you are looking for. It is implmenetent as a <code>QPaintDevice</code>. This means that any widget that can render itself on the screen can be printed. This also mean you don't need to render to a bitmap to print, you can use Qt widgets or drawing functions for printing</p>
<p>On a side note, check the version number of the Qt documentation, the last release of Qt is 4.5, 4.6 is in beta. </p>
http://stackoverflow.com/questions/1534948/create-database-in-qt/1535088#15350880Answer by Harald Scheirich for Create database in QTHarald Scheirich2009-10-08T01:12:44Z2009-10-08T01:12:44Z<p>We can't see what you <code>createTable()</code> does, the code that you have never calls <code>db.open()</code> most of the QT database and SQL calls return <code>bool</code> for success and there is a <code>lastError()</code> function for both the <code>QSqlDatabase</code> and the <code>QSqlQuery</code> calls. Check those if appropriate calls, i.e. <code>db.open()</code> and <code>query.exec()</code> return false.</p>
<p>e.g.</p>
<pre><code>bool makeDB(QString dbName) {
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
db.setHostName("localHost");
db.setDatabaseName(dbName);
bool result = db.open();
if (result)
{
//do more processing
}
else
{
qDebug() << db.lastError().text()
}
return result;
}
</code></pre>
<p>Also I don't think that SqlLite supports any kind of authentication <a href="http://www.hwaci.com/sw/sqlite/prosupport.html#crypto" rel="nofollow">this</a> seems to indicate that you can secure your db by licensing an extension from the creators of SqlLite.</p>
<p>As to the actual table creation there should be some SQL that is executed that looks like this:</p>
<pre><code> CREATE TABLE (x int, y varchar);
</code></pre>
<p>depending on the columns that you actually want.</p>
<p><a href="http://www.sqlite.org/lang%5Fcreatetable.html" rel="nofollow">This</a> is the respective documentation.</p>
http://stackoverflow.com/questions/1468309/persistence-classes-in-qt/1482648#14826483Answer by Harald Scheirich for Persistence classes in QtHarald Scheirich2009-09-27T02:36:52Z2009-09-27T23:40:59Z<p>As far as I know there is nothing ready made that gives to this facility directly in qt. There are some possible approaches. </p>
<ul>
<li><p>Implement the fields as Q_PROPERTY, the are then reflected through the Metaclass system and can be used to implement generic DAO functionality</p></li>
<li><p>You could still use the QSqlTableModel but encapsulate writes with transactions, if a transaction fails, refresh the model from the DB. Feasibility depends on the size of the data that you hold in the the model. </p></li>
</ul>
<p>We currently use a TableModel/QSqlRecord based approach for reading and writing, there is no ORM mapping done in our system. I have been trying to engineer a more generic approach but the refactoring work that we would have to do to get there is to costly at the moment.</p>
<p>This link <a href="http://giorgiosironi.blogspot.com/2009/08/10-orm-patterns-components-of-object.html" rel="nofollow">http://giorgiosironi.blogspot.com/2009/08/10-orm-patterns-components-of-object.html</a> is not Qt related but a good overview of implementation patterns</p>
http://stackoverflow.com/questions/1382024/do-warnings-matter/1382052#13820521Answer by Harald Scheirich for Do warnings matter?Harald Scheirich2009-09-05T00:24:07Z2009-09-05T00:24:07Z<p>YES </p>
http://stackoverflow.com/questions/1353795/qt-models-tree-view-and-table-view/1353844#13538440Answer by Harald Scheirich for Qt model's tree view and table viewHarald Scheirich2009-08-30T13:16:02Z2009-09-03T12:49:26Z<p>Depending on how much customisation you want the QTreeWidget might be the easiest route, but if you already have a model, it depends on which one you derived from. To get to the functionality you would like you need to add child structures to the rows that you have already built up. You might have missed it but the 'QModelIndex' class has a 'parent' field, this helps build up an hierarchic structure. </p>
<p>You will probably well served by taking the <code>QStandardItem</code> and <code>QStandardItemModel</code> classes. These have a decent interface to build a tree structure, depending on what data you will need to display each level in the hierarchy can have a different number of columns and there is no limit to the depth.</p>
<p>If you feel adventuresome you can take it from the top and just implement the <code>QAbstractItemModel</code> interface, but that can be hard to get right sometimes.</p>
<p>Overall I think that this is one of the strangest concepts in QT due to the amount of dimenionalities that are in the QAbstractItemModel (rows, columns, parent/child and roles)</p>
<p>For Example </p>
<pre><code>for (int i = 0; i < 3; ++i) {
QStandardItem *parent= new QStandardItem("Family " + QString::number(i),this);
item->setRowCount(3);
for (int j = 0; j < 3; ++j) {
QStandardItem *child = new QStandardItem("Child " + QString::number(i*3+j), this);
parent->setChild(j,child);
}
model->appendRow(parent);
}
</code></pre>
<p>Disclaimer: this has not been compiled ... </p>
<p>But as you can see you need to add the children to the item, and not the model, each item can contain a hierarchy of items.</p>
http://stackoverflow.com/questions/1370116/can-i-make-nsmanagedobject-into-a-singleton/1370739#13707390Answer by Harald Scheirich for Can I make NSManagedObject into a singleton?Harald Scheirich2009-09-02T23:43:30Z2009-09-02T23:43:30Z<p>That depends on why you would want to make it a singleton, if you have trouble passing it to all the entities that need to access the data, using a singleton is not a good solution anyway. It usually introduces more problems rather than solving any. </p>
<p>If you are worried about multiple edits to the same object, Core Data has mechanisms to handle that, see the "Change Management" chapter in the "Core Data Programming Guide"</p>
http://stackoverflow.com/questions/1349092/how-to-show-a-big-image-on-the-iphone-without-overflowing-the-memory/1349336#13493360Answer by Harald Scheirich for How to show a big image on the iPhone (without overflowing the memory)?Harald Scheirich2009-08-28T21:02:33Z2009-08-28T21:02:33Z<p>Unless you have an uncompressed image format it would be very hard to load the image in patches, you will have to provide the patches that the user would load, determine what portion of the image to show, and load the correct patches. There is an example for this "ScrollViewSuite" that demonstrate that technique. But this technique does require a preprocessing step.</p>
http://stackoverflow.com/questions/1340313/list-of-object-types-for-iphone-sdk-programming/1340656#13406561Answer by Harald Scheirich for list of object types for iphone sdk programmingHarald Scheirich2009-08-27T12:08:47Z2009-08-28T13:06:54Z<p>The documentation is your friend, depending on your current skills you should also read the <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html" rel="nofollow">Objective-c 2.0 Introduction</a>, read the Getting Started documents or look at the sample code. For C/Objective-C you have the basic datatypes you would expect int, float, double, char. NSArray and NSDictionary are pretty important for storing things, their changeable counterparts NSMutableArray and NSMutableDictionary are useful. NSNumber is a wrapper so your basic types can be used where objects are used (to put them in an NSArray for example)</p>
http://stackoverflow.com/questions/1346207/qt-application-performance-vs-winapi-mfc-wtl/1346870#13468703Answer by Harald Scheirich for QT Application Performance vs. WinAPI/MFC/WTL/...Harald Scheirich2009-08-28T13:06:20Z2009-08-28T13:06:20Z<p>We have been using Qt for multiple years now, developing a good size UI application with various elements in the UI, including a 3D window. Whenever we hit a major slowdown in app performance it is usually our fault (we do a lot of database access) and not the UIs. </p>
<p>They have done a lot of work over the last years to speed up drawing (this is where most of the time is spent). In general unless you really do implement a kind of editor usually there is not a lot of time spent executing code inside the UI. It mostly waits on input from the user. </p>
http://stackoverflow.com/questions/1328492/qtableview-not-allow-user-to-edit-cell/1328659#13286593Answer by Harald Scheirich for QTableView - not allow user to edit cellHarald Scheirich2009-08-25T14:28:23Z2009-08-25T17:11:51Z<p>Depending on whether you are coding everything or doing things in the designer, set </p>
<ul>
<li><code>editTriggers</code> to <code>QAbstractItemView::NoEditTriggers</code></li>
<li><code>selectionBehavior</code> to <code>QAbstractItemView::SelectRows</code></li>
<li>optionally set <code>selectionMode</code> to <code>QAbstractItemView::SingleSelection</code> if you want the user to select exactly one row</li>
</ul>
<p>on the tableview object the appropriate calls will all be prefixed with <code>set</code> e.g <code>setEditTriggers()</code> in the Designer you can find these option in the <code>AbstractItemView</code> section </p>
http://stackoverflow.com/questions/1319896/qt-database-interface-best-place-to-get-started/1319944#13199442Answer by Harald Scheirich for QT Database Interface... best place to get started?Harald Scheirich2009-08-24T00:10:00Z2009-08-24T00:10:00Z<p>We have been using the QtSql classes for a couple of years now, we are currently using the ODBC driver to connect to MSSql instance. Overall the the whole interface performs it's taks reasonably well. It insulates you completely from the Database driver <code>QSqlDatabase</code>, <code>QSqlQuery</code> and <code>QSqlResult</code> at the forefront, there are some abstractions that also insulate you from actual SQL <code>QSqlTableModel</code> and <code>QSqlRelationalTableModel</code> but those are geared for use in any of the Qt views. There is also a class <code>QDataWidgetMapper</code> that helps you map data to non table views. Also QVariant does an excelent job of wrapping SQL data, and providing typed access to the result of a query. While all of this is very helpful, unless your application is small in scope it won't save you from having to come up with a decent DAO layer, none of the Qt classes provide that. </p>
<p>We have a process where we turn a - custom made - xml description into a sql script for creating a table, a qt wrapper class for <code>QSqlRecord</code> and we use <code>QSqlTableModel</code> for most of our CRUD work. That work reasonably well but there is a lot of overhead in these classes so I would not repeat this approach. </p>
<p>We did find some quirks with the ODBC driver, I am sure there are some other quirks with the oracle driver. OTOH we are reasonably sure that we will be able to switch from MS-SQL to ORACLE within a short amount of time.</p>
<p>As for starting points, I think there is a simple example in the qt examples.</p>
http://stackoverflow.com/questions/1319235/tangible-benefits-of-use-case-modelling/1319282#13192823Answer by Harald Scheirich for Tangible benefits of Use Case ModellingHarald Scheirich2009-08-23T18:58:56Z2009-08-23T18:58:56Z<p>While we don't use a very formal use case approach I have found that use cases and the less formal user stories help you envision your product from the user point of view. In the end most of us write software for user that are not ourselves. Formulating use cases helps you get away from an internal view and focus on the outside view of the system that you are building. </p>
<p>In addition to that you get pre-packaged production units to work on for the agile work flow. If you can implement one use case there is one piece of functionality that you system fulfills. </p>
<p>I admit though that I do not have a lot of experience doing classic design upfront requirements gathering. I am sure there are other people that can give you a better answer to this question</p>
http://stackoverflow.com/questions/1256299/c-developer-tools-the-dark-areas/1256735#12567352Answer by Harald Scheirich for C++ Developer Tools: The Dark AreasHarald Scheirich2009-08-10T19:26:01Z2009-08-10T19:26:01Z<p>Refactoring, Refactoring, Refactoring. And compilation while typing. For refactorings I am missing at least half of what most modern Java IDEs can do. While Visual Assist X goes a long way, a lot of refactoring is missing. The task of writing C++ code is still pretty much that. Writing C++ code. The more the IDE supports high level refactoring the more it becomes construction, the more mallable the structure is the easier it will be to iterate over the structure and improve it. Pick up a demo version of Intellij and <a href="http://www.jetbrains.com/idea/features/refactoring.html" rel="nofollow">see what you are missing</a>. These are just some that I remember from a couple of years ago.</p>
<ul>
<li><p>Extract interface: taken a view classes with a common interface, move the common functions into an interface class (for C++ this would be an abstract base class) and derive the designated functions as abstract</p></li>
<li><p>Better extract method: mark a section of code and have the ide write a function that executes that code, constructing the correct parameters and return values</p></li>
<li><p>Know the type of each of the symbols that you are working with so that not only command completion can be correct for derived values e.g. symbol->... but also only offer functions that return the type that can be used in the current expression e.g. for </p>
<p>UiButton button = window->...</p></li>
</ul>
<p>At the ... only insert functions that actually return a UiButton.</p>
http://stackoverflow.com/questions/1249264/visual-studio-and-boosttest/1249584#12495840Answer by Harald Scheirich for Visual Studio and Boost::TestHarald Scheirich2009-08-08T18:33:50Z2009-08-08T18:33:50Z<p>We don't have boost test but use cppunit but this should be pretty general. We have very thin main project (basically only consisting of main.cpp) all the other files are in libraries (mostly static for us). The test code links against these libraries and includes what ever it needs per test. This also keeps you from having to have all the applications code included in the test project. </p>
http://stackoverflow.com/questions/1248851/self-regulation-of-a-mini-economy/1248887#12488871Answer by Harald Scheirich for Self-regulation of a mini economyHarald Scheirich2009-08-08T13:34:04Z2009-08-08T18:25:44Z<p>As usual <a href="http://en.wikipedia.org/wiki/Virtual%5Feconomy" rel="nofollow">Virtual Economy</a> on wikipedia is a good starting point. Also "mmorpg economics" on google will be helpful. But what I noticed is that all the efforts that most of what you list somehow try to artificially extract money out of the game, via taxation or other means. This can easily be viewed as "unfair" only one of the items that you denote gives an incentive to spend money.</p>
<p>Not having played the game I can't tell what methods would be feasible, but it all comes down to balancing the flow of resources into the game with what is spent. <a href="http://www.mine-control.com/zack/uoecon/uoecon.html" rel="nofollow">This</a> is a piece about Ultima online during its first year describing some of the things that happened and the measures taken to remidiate problems with the economic cycle. </p>
<p>-- Edit: added Ultima Online Link</p>
http://stackoverflow.com/questions/1248290/how-to-improve-this-code-too-many-if/1248857#12488573Answer by Harald Scheirich for How to improve this code? (too many if)Harald Scheirich2009-08-08T13:14:02Z2009-08-08T13:14:02Z<p>First you are doing ok, this does exactly what it expresses, don't worry about the space that you are using, most of the solutions here just muddy the water. </p>
<p>If you really want to 'do' something look if you can't move the Border parameter into the square. you could move the border padding (10 in your example into the square), possibly also the State which border should be shown, and then just call square.printBorders(). That depends a lot on the context where you are using this.</p>
http://stackoverflow.com/questions/1236399/qt-qfiledialog-input-field-tab-complete-like-shell/1236630#12366300Answer by Harald Scheirich for Qt QFileDialog input field - tab complete like shellHarald Scheirich2009-08-06T02:06:51Z2009-08-06T02:06:51Z<p>I am not sure you can actually, i don't see any access to the input field in the documentation of <a href="http://doc.trolltech.com/4.5/qfiledialog.html" rel="nofollow">QFileDialog</a>. Qt is fairly aggressive at hiding implementation detail from it's users. You might be able to do this by taking the implementation of QFileDialog (C++) and modify it for your purpose.</p>
http://stackoverflow.com/questions/1203135/what-is-the-fastest-way-to-find-the-center-of-an-irregularly-shaped-polygon/1203520#12035200Answer by Harald Scheirich for What is the fastest way to find the center of an irregularly shaped polygon?Harald Scheirich2009-07-29T22:46:49Z2009-07-29T22:46:49Z<p>I am not saying that this is the fastest, but it will give you a point inside the polygon. Calculate the <a href="http://en.wikipedia.org/wiki/Straight%5Fskeleton" rel="nofollow">Straight Skeleton</a>. The point you are looking for is on this skeleton. You could pick the one with the shortest normal distance to the center of the bounding box for example. </p>
http://stackoverflow.com/questions/1203007/predictive-vs-reactive-software-design/1203418#12034182Answer by Harald Scheirich for Predictive vs Reactive software designHarald Scheirich2009-07-29T22:26:11Z2009-07-29T22:26:11Z<p>One of the premises of (at least) XP is that change is cheap. The waterfall model was built on the principles that change, any change, is costly. The assumption in the waterfall model is that once software has been written, changing it is more expensive than investing the time up front to come to a "complete" understanding of the problem. </p>
<p>Experience seems to indicate that it is very hard to come to a complete understanding of the problem and that if some precautions are taken (e.g. Unit Testing) change can become a lot cheaper. Therefore if you encounter a problem where some of the agile premises don't hold true other approaches might become feasible again. In between Waterfall and Agile there is at least Spiral development which is - sort of - what we practice.</p>
http://stackoverflow.com/questions/1200590/good-resources-for-gui-creation-in-visual-studio/1200813#1200813-1Answer by Harald Scheirich for Good resources for GUI creation in Visual StudioHarald Scheirich2009-07-29T14:47:12Z2009-07-29T14:47:12Z<p>I have to say I don't agree with croutle, creating good UI does not necessarily have anything to do with coding. <a href="http://www.smashingmagazine.com/2009/06/15/40-helpful-resources-on-user-interface-design-patterns/" rel="nofollow">SmashingMagazine</a> has a large catalog of resources for UI design, and while most of those are very webcentric the general prinicple still apply no matter if you put your UI together in the Forms editor through coding or on a webpage.</p>
<p>For me GUI designers have always been a way to keep presentation separate from content, a good implementation of a GUI with it's Designer will support that, if you start having to write a lot of code to affect simple effects in the UI that line starts to blur. Interface Builder on Mac does this the best of all the ones I have used (amongst others Java Swing, Windows Forms).</p>
<p>The question is does the interaction suck or does the look suck, unless you are a good artist there is not really a lot you can do about the latter, but to stick to the bare minimum. There is a science to minimalism that can be learned even for the non artist types (lay out everything on a regular grid for example). <a href="http://www.west.asu.edu/achristie/555/design.pdf" rel="nofollow">This</a> piece is geared somehow towards print, but most of the aspects that are mentioned are universal and do apply to screen and UI design. </p>
<p>The former can be fixed by trying to put yourself in the users shoes. Look at the task that the users are doing and how they accomplish that using your software. Does it make it easier for the users to do their work or does it throw roadblocks in the the path that encumber the work flow. </p>
http://stackoverflow.com/questions/1804728/how-to-receive-drag-and-drop-from-apple-address-book-in-qt-4-4-on-mac-os-x-10-5-1Comment by Harald Scheirich on How to receive drag and drop from Apple Address book in Qt 4.4 on Mac OS X 10.5/10.6Harald Scheirich2009-11-26T18:06:40Z2009-11-26T18:06:40ZQMacMimeData is implemented in src/gui/kernel/qclipboard_mac.cpp sometimes they rely on their "gut feeling" too muchhttp://stackoverflow.com/questions/405002/missing-desired-features-in-notepad/405012#405012Comment by Harald Scheirich on Missing/desired features in Notepad++Harald Scheirich2009-11-06T13:50:02Z2009-11-06T13:50:02ZXenu I would love to get rid of crimson, I use Notepad++ all the time (v.5.3.1) right now, the cool thing about the crimson column mode is then when you do a column select the selection acts just like a normal select would but on columns, this includes becoming a column insert cursor when you type, making column editing incredibly easy. The NP++ mode overwrites the selected text (unless I am doing something completely wrong), crimson extends the linear way of selection/editing to the columns Try it out ... http://stackoverflow.com/questions/405002/missing-desired-features-in-notepad/405012#405012Comment by Harald Scheirich on Missing/desired features in Notepad++Harald Scheirich2009-11-03T16:33:10Z2009-11-03T16:33:10ZStill not the same, it will probably work in a pinch but the crimson functionality works so seamless within the editor (no popups), i have been keeping crimson around just for thishttp://stackoverflow.com/questions/1653517/why-is-c-and-c-ide-tool-support-behind-whats-available-for-managed-platforms/1654195#1654195Comment by Harald Scheirich on Why is C and C++ IDE tool support behind what's available for managed platforms?Harald Scheirich2009-10-31T12:23:52Z2009-10-31T12:23:52ZC'mon that is just a useless remark. Every tool has it's purpose, if you want to stick with your text editor good for you, but a lot of the IDE's feature move our craft (yes craft) one step up from just typing codehttp://stackoverflow.com/questions/1653517/why-is-c-and-c-ide-tool-support-behind-whats-available-for-managed-platforms/1653531#1653531Comment by Harald Scheirich on Why is C and C++ IDE tool support behind what's available for managed platforms?Harald Scheirich2009-10-31T12:21:20Z2009-10-31T12:21:20ZAs to vs2010 they brought in an external parser just for the IDE. As to complexity, include files, macros and template objects all have to be taken into account toohttp://stackoverflow.com/questions/1418578/qt-qpushbutton-icon-above-text/1418793#1418793Comment by Harald Scheirich on Qt QPushbutton Icon above TextHarald Scheirich2009-09-13T21:11:27Z2009-09-13T21:11:27Zsubclassing just for formatting is usually not worth the effort. A lot can be done just by applying styles. And while the documentation on the styles could be better, it works reasonably well and usually as expected.
http://stackoverflow.com/questions/1417765/parse-config-file-in-c-c/1418274#1418274Comment by Harald Scheirich on Parse config file in C/C++Harald Scheirich2009-09-13T17:34:36Z2009-09-13T17:34:36ZI have found the overhead of not necessarily the parsing but the binding of xml files to the data not worth the effort for simple configuration files. If you have something that creates the bindings it is a different matter. http://stackoverflow.com/questions/1406940/how-signal-and-slots-are-implemented-under-the-hood/1408003#1408003Comment by Harald Scheirich on How signal and slots are implemented under the hood ?Harald Scheirich2009-09-10T22:22:34Z2009-09-10T22:22:34ZBasically correct, you can set a breakpoint at the the emit and then step through the signalling process. While usually delivered directly, signals mayb be queued, this is necessary when you want to connect two objects in different threadshttp://stackoverflow.com/questions/1353795/qt-models-tree-view-and-table-viewComment by Harald Scheirich on Qt model's tree view and table viewHarald Scheirich2009-09-03T12:49:57Z2009-09-03T12:49:57Zif you post your code here it becomes searchable and for all to seehttp://stackoverflow.com/questions/1369494/how-to-efficiently-select-a-subset-of-rows-of-a-qtableview-that-match-certain-cri/1369895#1369895Comment by Harald Scheirich on How to efficiently select a subset of rows of a QTableView that match certain criteria?Harald Scheirich2009-09-02T23:49:41Z2009-09-02T23:49:41ZThe QAbstractItemModel supports a function called match, it will do the searching for you, and returns a list of QModelIndex entries http://stackoverflow.com/questions/1349092/how-to-show-a-big-image-on-the-iphone-without-overflowing-the-memory/1349336#1349336Comment by Harald Scheirich on How to show a big image on the iPhone (without overflowing the memory)?Harald Scheirich2009-08-30T12:55:47Z2009-08-30T12:55:47ZNo to create the tiles you would either have to load the whole image into memory, which is what you are trying to prevent, or have them in a format where you can determine the location of a pixel in the file from its location on the screen, which you can't easily with JPG (i don't know if you can at all)http://stackoverflow.com/questions/1349092/how-to-show-a-big-image-on-the-iphone-without-overflowing-the-memory/1349336#1349336Comment by Harald Scheirich on How to show a big image on the iPhone (without overflowing the memory)?Harald Scheirich2009-08-29T16:24:50Z2009-08-29T16:24:50ZDepends what you mean by "do this on the iPhone". The description of your app is a little bit vague. If you store the images on the phone then you can as well prepare the tiles. If you store the images on a server the you would have to make your server serve the tiles as opposed to a whole imagehttp://stackoverflow.com/questions/1346207/qt-application-performance-vs-winapi-mfc-wtl/1346278#1346278Comment by Harald Scheirich on QT Application Performance vs. WinAPI/MFC/WTL/...Harald Scheirich2009-08-28T13:06:04Z2009-08-28T13:06:04ZWhile the signal and slot mechanism might seem fast, it is definitely not light weight, one signal connected to one slot causes 3-4 if not more function calls, step through the thing and you will see. http://stackoverflow.com/questions/1296798/cant-make-empty-selection-in-nstableview/1319231#1319231Comment by Harald Scheirich on Can't make empty selection in NSTableViewHarald Scheirich2009-08-23T18:47:02Z2009-08-23T18:47:02ZSorry to say this but then what do you expect by asking a question about an operating system that has not been released yet, and which you are under an NDA about. http://stackoverflow.com/questions/1305705/jdesktop-or-qt-for-better-desktop-application/1305788#1305788Comment by Harald Scheirich on Jdesktop or Qt for better Desktop applicationHarald Scheirich2009-08-20T12:33:23Z2009-08-20T12:33:23ZI think they relying on community input for jambi now, iirc i saw something about this a couple of months ago, but i can't find the appropriate link.
On a side note I would not call having to write c++ a 'con', it is as much of a con as something else written in java if you don't use java in general