User Martin Beckett - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T08:31:41Zhttp://stackoverflow.com/feeds/user/10897http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1912165/best-worst-examples-of-undefined-behavior-in-c-or-c/1912170#19121701Answer by Martin Beckett for Best/worst examples of undefined behavior in C or C++?Martin Beckett2009-12-16T03:58:14Z2009-12-16T03:58:14Z<p>Identical char literals might point to the same memory and might be editable, if an edit changes one, both or isn't allowed is undefined</p>
http://stackoverflow.com/questions/136050/prevent-visual-studio-creating-browse-info-ncb-files2Prevent visual studio creating browse info (.ncb) filesMartin Beckett2008-09-25T20:58:07Z2009-12-15T22:44:42Z
<p>Is there a way to prevent VS2008 creating browse info file files for C++ projects.<br />
I rarely use the class browser and it isn't worth the time it takes to recreate it after every build, especially since it runs even if the build failed.</p>
<p>EDIT - it's also needed for go to declaration/definition</p>
http://stackoverflow.com/questions/1892242/calculate-md5-in-c/1892277#18922772Answer by Martin Beckett for calculate md5 in C++Martin Beckett2009-12-12T04:19:51Z2009-12-12T04:19:51Z<p>From the Horse's mouth<br>
<a href="http://people.csail.mit.edu/rivest/Md5.c" rel="nofollow">http://people.csail.mit.edu/rivest/Md5.c</a></p>
<p>Or Peter Deutsch's clean-room implementation<br>
<a href="http://sourceforge.net/projects/libmd5-rfc/files/" rel="nofollow">http://sourceforge.net/projects/libmd5-rfc/files/</a></p>
http://stackoverflow.com/questions/1891742/dual-bandwidth-agile-team/1891751#18917512Answer by Martin Beckett for Dual bandwidth agile team?Martin Beckett2009-12-12T00:35:17Z2009-12-12T00:35:17Z<p>The only way I can see is an internal market.<br>
Assign a $ value to the next release of your 'real' product and then you can fairly apportion effort to that vs the incoming contract.</p>
<p>Of course the value of the 'real' product depends on management but at least it pushes the problem onto them in a rational way.</p>
http://stackoverflow.com/questions/1883160/qsignalmapper-and-original-sender1QSignalMapper and original Sender()Martin Beckett2009-12-10T18:49:50Z2009-12-11T12:53:56Z
<p>I have a bunch of qComboboxes in a table.<br>
So that I know which one was triggered I remap the signal to encode the table cell location (as described in <a href="http://stackoverflow.com/questions/1332110/selecting-qcombobox-in-qtablewidget">http://stackoverflow.com/questions/1332110/selecting-qcombobox-in-qtablewidget</a>)</p>
<p>(Why Qt doesn't just send the cell activated signal first so you can use the same currentRow/COlumn mechanism as any other cell edit I don't know)</p>
<p>But this removes all knowledge of the original sender widget.<br>
Calling "QComboBox* combo = (QComboBox* )sender()" in the slot fails, presumably because sender() is now the QSignalMapper?</p>
<p>I can use the encoded row/column to lookup the QCombobox in the Tablewidget but that seems wrong.<br>
Is there a more correct way to do it?</p>
<p>eg </p>
<pre><code>// in table creator
_signalMapper = new QSignalMapper(this);
// for each cell
QComboBox* combo = new QComboBox();
connect(combo, SIGNAL(currentIndexChanged(int)), _signalMapper, SLOT(map()));
_signalMapper->setMapping(combo, row);
// and finally
connect(_signalMapper, SIGNAL(mapped(int)),this, SLOT(changedType(int)));
// slot
void myDlg::changedType(int row)
{
QComboBox* combo = (QComboBox* )sender(); // this doesn't work !!
}
</code></pre>
http://stackoverflow.com/questions/1884316/cross-platform-oop-in-c/1884357#18843571Answer by Martin Beckett for Cross-platform OOP in C++Martin Beckett2009-12-10T21:57:37Z2009-12-10T21:57:37Z<p>Ideally you would concentrate the differences at the lowest level possible.<br>
So your top level code calls Foo() and only Foo() needs to care internally what OS it is calling.</p>
<p>ps. Take a look at 'boost' it contains a lot of stuff to handle cross platform network filesystems etc</p>
http://stackoverflow.com/questions/1878257/how-can-i-draw-a-cylinder-that-connects-two-points-in-opengl/1878276#18782760Answer by Martin Beckett for How can I draw a cylinder that connects two points in OpenGLMartin Beckett2009-12-10T02:23:45Z2009-12-10T02:23:45Z<p>If you cant use gluCylinder() from the GLU library (eg if you ae on OpenGL-ES)</p>
<p>Or you have to make the sides of the cylinder from small flat segments,<br>
<a href="http://stackoverflow.com/questions/1056504/how-do-you-draw-a-cylinder-with-opengles">http://stackoverflow.com/questions/1056504/how-do-you-draw-a-cylinder-with-opengles</a></p>
http://stackoverflow.com/questions/1877840/using-assert-with-pointers-in-c/1877904#18779040Answer by Martin Beckett for Using "assert" with pointers in C++Martin Beckett2009-12-10T00:28:54Z2009-12-10T00:53:14Z<p>I would use an ASSERT where a null pointer wouldn't immediately cause a crash but might lead to somethign wrong later that's hard to spot.<br>
eg: </p>
<pre><code>ASSERT(p);
strcpy(p, "hello");
</code></pre>
<p>Is a little unnecessary, it simply replaces a fatal exception with a fatal assert!<br>
But in more complex code, particulalrly things like smart pointers, it might be useful to know check if the pointer is what you thing it is.</p>
<p>Remember ASSERTs only run in debug builds, they dissapear in the release.</p>
http://stackoverflow.com/questions/1332110/selecting-qcombobox-in-qtablewidget/1877621#18776210Answer by Martin Beckett for Selecting QComboBox in QTableWidgetMartin Beckett2009-12-09T23:15:16Z2009-12-09T23:15:16Z<p>@Bill - Shouldn't that be: </p>
<p>connect(signalMapper, SIGNAL(mapped(const QString &)),this, <strong>SLOT</strong>(changed(const QString &)));</p>
<p>Doesn't format correctly as a comment - sorry,</p>
http://stackoverflow.com/questions/1875783/is-mpi-good-for-high-volume-soft-realtime-ipc/1875836#18758361Answer by Martin Beckett for Is MPI good for high-volume soft-realtime IPC ? Martin Beckett2009-12-09T18:27:54Z2009-12-09T18:56:23Z<p>MPI is pretty efficient, it was built for high performance applications.<br>
You can even use it for communications between CPUs on the same mboard very well.</p>
<p>I'm not sure about broadcasts, the system I used years ago didn't but I can't remember if that was a limitation of our interconnect or of MPICH.</p>
<p>ps. We used MPICH because at the time it worked best on Windows and we needed that flexibility, I haven't used MPICH2 or OpenMPI.</p>
http://stackoverflow.com/questions/1875167/performance-profiling-on-linux/1875203#18752030Answer by Martin Beckett for Performance profiling on LinuxMartin Beckett2009-12-09T16:48:36Z2009-12-09T16:48:36Z<p>Description of using -gp and gproff here <a href="http://www.ibm.com/developerworks/library/l-gnuprof.html" rel="nofollow">http://www.ibm.com/developerworks/library/l-gnuprof.html</a></p>
http://stackoverflow.com/questions/1870857/restart-a-career-for-ex-c-programmer/1870892#18708921Answer by Martin Beckett for Restart a career for ex-C programmerMartin Beckett2009-12-09T00:38:14Z2009-12-09T00:38:14Z<p>Java is rather on the decline except for a few enterprise jobs, and they all want senior people with N years of J2EE/EJB.</p>
<p>Have you considered C#? If you don't object to working on Windows, it's easy to pick up and most of the jobs are c#->SQL type gigs. People with any real database experience are rare.</p>
<p>The other option is mobile development = big opportunities.</p>
http://stackoverflow.com/questions/1870816/good-code-smells/1870830#18708302Answer by Martin Beckett for Good Code Smells?Martin Beckett2009-12-09T00:23:11Z2009-12-09T00:23:11Z<p>It's like pornography - I can't define it, but know it when I see it!</p>
http://stackoverflow.com/questions/1870230/development-for-unstable-versions-of-chrome/1870655#18706551Answer by Martin Beckett for Development for unstable versions of Chrome?Martin Beckett2009-12-08T23:38:05Z2009-12-08T23:38:05Z<p>Code against the standard, if you code it right the browsers will move toward you - rather than you constantly playing catchup.</p>
http://stackoverflow.com/questions/1500342/h264-decoder-source-code/1500938#15009381Answer by Martin Beckett for H264 decoder source code.Martin Beckett2009-09-30T22:15:45Z2009-12-08T20:35:27Z<p>Videolan contains an implementation of <a href="http://www.videolan.org/developers/x264.html" rel="nofollow">h264 encoder</a> (sorry - It uses ffmpeg to play back h264) </p>
<p>It's under the GPL and is a clean room implementation from the specs. Depending on your country there might also be patents on the decoder.</p>
http://stackoverflow.com/questions/1869062/histogram-generating-function/1869104#18691040Answer by Martin Beckett for Histogram generating functionMartin Beckett2009-12-08T18:57:58Z2009-12-08T18:57:58Z<p>If 'in' is the input string then *in++ is taking each character in the string and looking up the entry in the ascii list sym[] corrsponding to that character value.</p>
<p>So if the string starts with 'A' then (*in) is 65 and it is referencing sym[65]</p>
<p>edit: sym[k].symbol is a bit redundant you can jsut have an array of 256 integers to represent the ascii chart, since sym[n] must be for symbol numbered 'n'</p>
http://stackoverflow.com/questions/1591994/is-the-amazon-kindle-suitable-for-programming-books/1867969#18679690Answer by Martin Beckett for Is the Amazon Kindle suitable for programming books?Martin Beckett2009-12-08T16:09:37Z2009-12-08T16:09:37Z<p>Most programming books are available as PDF from O'Reilly safari, Manning Early Access program and Apress.
I don't know how many are available in Kindle format and the Kindle's handling of PDFs is limited.
And if color catches on (as in SAMS unleashed WPF books) the Kindle is going to have a harder time.</p>
<p>I think I would get a netbook, if you are using this for programming books then you are probably going to be near power at least some of the time and the battery life of a SSD netbook should be good enough.</p>
http://stackoverflow.com/questions/1864373/what-common-application-types-are-created-with-visual-c/1864411#18644114Answer by Martin Beckett for What common application types are created with Visual C++?Martin Beckett2009-12-08T03:37:26Z2009-12-08T03:37:26Z<p>Where you need your app to run on more than just .Net<br>
or you need to use existing libraries other than .Net<br>
or you care about performance<br>
or you don't want to rewrite your app for the next 'big thing'</p>
http://stackoverflow.com/questions/1860796/your-thoughts-on-large-scale-c-software-design/1860880#18608803Answer by Martin Beckett for Your thoughts on "Large Scale C++ Software Design"Martin Beckett2009-12-07T15:55:31Z2009-12-07T16:02:21Z<p>It's a little out of date (in fact it was out of date when it was written).<br>
IIRC a lot of it was about reducing dependancies which you would probably do now with templates.</p>
<p>Although that's probably one of the lessons to learn on large scale projects, you aren't usually using cutting edge features and tools.</p>
http://stackoverflow.com/questions/1857296/can-gcc-on-ubuntu-on-a-64-bit-machine-generate-an-executable-where-long-is-32-bit/1857352#18573521Answer by Martin Beckett for Can gcc on Ubuntu on a 64-bit machine generate an executable where long is 32-bits?Martin Beckett2009-12-07T01:49:53Z2009-12-07T04:42:43Z<p>Looks like it's possible (at least for AMD)</p>
<blockquote>
<p>-m32<br>
-m64<br>
Generate code for a 32-bit or 64-bit environment. The 32-bit
environment sets int, long and pointer
to 32 bits and generates code that
runs on any i386 system. The 64-bit
environment sets int to 32 bits and
long and pointer to 64 bits and
generates code for AMD's x86-64
architecture.</p>
</blockquote>
http://stackoverflow.com/questions/1840968/storing-two-shorts-in-one-short/1842813#18428130Answer by Martin Beckett for storing two shorts in one shortMartin Beckett2009-12-03T20:47:15Z2009-12-07T01:57:30Z<p>Using structs/objects isn't necessarily the best or clearest approach.</p>
<p>Suppose you have a set of simple integer data points but they can be deleted or marked invalid, if you simply use the MSB to flag as 'don't use' then all you need to add to the algorithm is a </p>
<pre><code>if ( item > 0 )
item += blah
</code></pre>
<p>But if you have a struct then every bit of arithmatic now needs a member access </p>
<pre><code>if ( item.valid() )
item.setValue(item.getValue() + blah);
</code></pre>
http://stackoverflow.com/questions/1856307/to-iterate-or-to-use-a-counter-that-is-the-question/1857368#18573680Answer by Martin Beckett for To iterate or to use a counter, that is the questionMartin Beckett2009-12-07T01:55:27Z2009-12-07T01:55:27Z<p>Always in two minds about this. To the computer it doesn't matter, the compiler is big enough to look after itself and will end up generating equally good code for either case.</p>
<p>But what about the programmer?</p>
<p>Seeing <code>for(int i=0;i<blah.size();i++)</code> my eye immediately reads this as "loop over all elements".<br>
While seeing:</p>
<pre><code>typedef std::vector<int> MyIndexes;
MyIndexes indexes;
for (Something::iterator iter = indexes.begin(); iter != indexes.end(); ++iter);
</code></pre>
<p>I have to careful read each line to check that you aren't doing something tricky. </p>
<p>On the other hand seeing the for() loop makes me worry that the code is written by a C programmer who knows nothing about the STL and is going to be horribly designed.</p>
http://stackoverflow.com/questions/1844336/compilers-for-dos32/1845176#18451761Answer by Martin Beckett for Compilers for DOS32?Martin Beckett2009-12-04T06:10:58Z2009-12-04T06:10:58Z<p><a href="http://www.digitalmars.com/" rel="nofollow">http://www.digitalmars.com/</a> is what was once Zortech, the original 32bit flat memory model DOS compiler.</p>
<p>You can also use GCC either under cygwin or mingw.<br>
The last MSVC to build DOS executables was IIRC 1.52 it's a free download if you have MSDN.</p>
http://stackoverflow.com/questions/1823874/embedded-app-and-wearing-out-flash-disks/1824117#18241174Answer by Martin Beckett for Embedded app and wearing out flash disksMartin Beckett2009-12-01T05:11:20Z2009-12-02T16:19:01Z<p>As Nils says, commercial compact flash cards, and drive replacements (NAND) have wear levelling.
If you are using cheap onboard (NOR) flash you might have to do this yourself. </p>
<p>The best way is some sort of ring buffer where you are only appending data and then overwriting a full drive. Remember flash can only erase a full block (page) but can then append individual bytes to existing data in that page.</p>
<p>Also can you buffer a page in RAM and then write once or do you have to have individual bytes committed at all times?</p>
<p>Most app sheets for embedded processors will have examples of this.</p>
http://stackoverflow.com/questions/1597022/how-do-i-see-the-contents-of-qt-objects-during-debugging/1828777#18287772Answer by Martin Beckett for How do I see the contents of Qt objects during debugging?Martin Beckett2009-12-01T20:41:10Z2009-12-01T20:48:28Z<p>This might help <a href="http://daniel-albuschat.blogspot.com/2008/02/qt-debugging-with-visual-studio-2005.html" rel="nofollow">http://daniel-albuschat.blogspot.com/2008/02/qt-debugging-with-visual-studio-2005.html</a></p>
<p>IIRC the install of Qt for Windows includes an autoexp.dat file -<br>
Correction, it's part of the the <a href="http://qt.nokia.com/downloads/visual-studio-add-in" rel="nofollow">qt-vs-addin</a></p>
http://stackoverflow.com/questions/1823314/very-long-data-acquisition-and-storage-preservation/1823331#18233313Answer by Martin Beckett for very long data acquisition and storage/preservation.Martin Beckett2009-12-01T00:35:33Z2009-12-01T00:35:33Z<p>If it's clay tablets - a, it's been done and b, I think IBM still has a patent</p>
http://stackoverflow.com/questions/1822553/can-an-mit-licensed-program-be-relicensed-as-gpl/1822574#18225746Answer by Martin Beckett for Can an MIT-licensed program be relicensed as GPL?Martin Beckett2009-11-30T21:36:53Z2009-11-30T21:46:54Z<p>Basically Yes - see <a href="http://www.fsf.org/licensing/licenses/index%5Fhtml" rel="nofollow">http://www.fsf.org/licensing/licenses/index%5Fhtml</a></p>
<p>In case there are any hair splitting pedants on this site (really!) there isn't really any such thing as the MIT license - see above link.<br>
The only difference between the 'MIT' license and the BSD license is that some versions of the BSD license had had restrictions on using the name of the institution, others required you to advertise this!
In modern version (the two clause) this has all been sorted out.</p>
<p>For a simpler introduction see <a href="http://en.wikipedia.org/wiki/Mit%5Flicense" rel="nofollow">http://en.wikipedia.org/wiki/Mit%5Flicense</a></p>
<p>edit. As Daniel syas - you can't relicense code you didn't write (or weren't granted the right to do) however you can REDISTRIBUTE 'MIT' code under the GPL which is probably what you are actualy asking.</p>
http://stackoverflow.com/questions/1821279/mfc-just-need-some-directions/1821339#18213390Answer by Martin Beckett for MFC, just need some directionsMartin Beckett2009-11-30T17:56:46Z2009-11-30T21:26:19Z<p>You are missing some MFC libs (either MSFT or some third party) that implment the control you are trying to use.</p>
<p>Try installing the redistributable spackage <a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=32bc1bee-a3f9-4c13-9c99-220b62a191ee&displaylang=en" rel="nofollow">http://www.microsoft.com/Downloads/details.aspx?FamilyID=32bc1bee-a3f9-4c13-9c99-220b62a191ee&displaylang=en</a></p>
<p>edit: <a href="http://stackoverflow.com/questions/362560/how-do-i-detect-the-dlls-required-by-an-application">this question</a> might help work out which lib you need</p>
http://stackoverflow.com/questions/1820704/weird-scanf-issue/1820715#18207150Answer by Martin Beckett for Weird Scanf IssueMartin Beckett2009-11-30T16:04:39Z2009-11-30T16:26:43Z<p>You don't need "&mystring", "mystring" is already the address of the array.</p>
<p>It would be better to use gets or getline.</p>
<p>You are reading the search string into mystring, but then you are also reading the file contents into mystring.</p>
http://stackoverflow.com/questions/1817442/how-to-recognize-rectangles-in-this-image/1817548#18175482Answer by Martin Beckett for How to recognize rectangles in this image?Martin Beckett2009-11-30T02:06:53Z2009-11-30T02:06:53Z<p>Assuming it's a reasonably noise free image (not a video of a screen) then one of the simple floodfill algorithms should work. You might need to run a dilate/erode on the image to close up the gaps.</p>
<p>The normal way to find lines is a Hough transform ( then find lines at right angles)
Opencv is the easiest way.</p>
<p>Take a look at this question <a href="http://stackoverflow.com/questions/279410/opencv-object-detection-center-point">http://stackoverflow.com/questions/279410/opencv-object-detection-center-point</a></p>
http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/545920#545920Comment by Martin Beckett on Biggest performance improvement you've had with the smallest change?Martin Beckett2009-12-12T03:21:32Z2009-12-12T03:21:32ZHad ones of those - worse it was n^2 with the number of rows. Somehow the toolkit rescanned the table from the top for each new formatting element added.http://stackoverflow.com/questions/1891742/dual-bandwidth-agile-team/1891751#1891751Comment by Martin Beckett on Dual bandwidth agile team?Martin Beckett2009-12-12T01:19:40Z2009-12-12T01:19:40ZBut thats a decision only they can make - if doing the contract work means they can make payroll! It's not upto the dev team.
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238508#238508Comment by Martin Beckett on Worst UI You've Ever UsedMartin Beckett2009-12-11T22:43:14Z2009-12-11T22:43:14Z@Judah - yes but if you click 'I'm feeling lucky' in a 3d animation tool what should it do? Other than make Lara Croft appear in your bedroom!
http://stackoverflow.com/questions/1883160/qsignalmapper-and-original-sender/1886940#1886940Comment by Martin Beckett on QSignalMapper and original Sender()Martin Beckett2009-12-11T20:04:30Z2009-12-11T20:04:30ZIIRC qobject_cast does the same thing as a regular cast, it just has a few internal checks.http://stackoverflow.com/questions/1883160/qsignalmapper-and-original-sender/1887025#1887025Comment by Martin Beckett on QSignalMapper and original Sender()Martin Beckett2009-12-11T16:55:38Z2009-12-11T16:55:38Z2 - I think the second one is what I wanted thank you
http://stackoverflow.com/questions/1883160/qsignalmapper-and-original-sender/1887025#1887025Comment by Martin Beckett on QSignalMapper and original Sender()Martin Beckett2009-12-11T16:55:02Z2009-12-11T16:55:02Z1 - Because then I can get a pointer to the actual combobox - but I don't know which table cell it was in, so I don't know which record to change.
http://stackoverflow.com/questions/1332110/selecting-qcombobox-in-qtablewidget/1334903#1334903Comment by Martin Beckett on Selecting QComboBox in QTableWidgetMartin Beckett2009-12-09T23:17:06Z2009-12-09T23:17:06Zconnect(signalMapper, SIGNAL(mapped(const QString &)),this, SLOT(changed(const QString &)));
http://stackoverflow.com/questions/1875863/should-you-include-a-much-requested-feature-that-is-fundamentally-wrongComment by Martin Beckett on Should you include a much-requested feature that is fundamentally wrong?Martin Beckett2009-12-09T18:59:38Z2009-12-09T18:59:38Z@Jeff in fogbugz it was the ability to report fixes/developer/time - which turns it from a bug tracker into a HR toolhttp://stackoverflow.com/questions/1870969/what-to-do-if-i-want-to-be-a-it-securit-professionalComment by Martin Beckett on what to do ...if i want to be a IT securit professional....Martin Beckett2009-12-09T00:58:02Z2009-12-09T00:58:02Zi thought that was l33t among da yoof these days?
http://stackoverflow.com/questions/1870955/does-p-equal-np/1870971#1870971Comment by Martin Beckett on Does P equal NP?Martin Beckett2009-12-09T00:56:54Z2009-12-09T00:56:54ZI got -6 votes for the same joke on another question!
http://stackoverflow.com/questions/1870857/restart-a-career-for-ex-c-programmer/1870892#1870892Comment by Martin Beckett on Restart a career for ex-C programmerMartin Beckett2009-12-09T00:55:46Z2009-12-09T00:55:46ZTrue like C++ there is a large installed base - but projects that would have automatically been Java 5years ago are now automatically C#http://stackoverflow.com/questions/712117/have-you-found-it-harder-to-hire-in-a-down-market/712138#712138Comment by Martin Beckett on Have you found it harder to hire in a down market?Martin Beckett2009-12-09T00:40:59Z2009-12-09T00:40:59ZThat's nothing - it's when they edit your CV to add/remove stuff and don't tell you when you go for the interview.
http://stackoverflow.com/questions/1870816/good-code-smells/1870830#1870830Comment by Martin Beckett on Good Code Smells?Martin Beckett2009-12-09T00:32:28Z2009-12-09T00:32:28ZThat's why you can't define the differencehttp://stackoverflow.com/questions/1869970/c-switch-wont-compile-with-externally-defined-variable-used-as-case/1870163#1870163Comment by Martin Beckett on C++ Switch won't compile with externally defined variable used as caseMartin Beckett2009-12-08T22:46:58Z2009-12-08T22:46:58Zmodules have to be individually compile (not link) time visible. try including test2.cpp in test.cpp like the OP and it should work.http://stackoverflow.com/questions/1869970/c-switch-wont-compile-with-externally-defined-variable-used-as-caseComment by Martin Beckett on C++ Switch won't compile with externally defined variable used as caseMartin Beckett2009-12-08T22:45:27Z2009-12-08T22:45:27ZI think a certain flinty eyed steeliness and familiarity with guns is required to go up against the C++ standard.