User mdec - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:33:33Zhttp://stackoverflow.com/feeds/user/15534http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1537031/developing-a-non-x86-operating-system6Developing a non-x86 Operating systemmdec2009-10-08T10:48:22Z2009-11-06T09:06:19Z
<p>I have to choose a thesis topic soon and I was considering implementing an operating system for an architecture that is not x86 (I'm leaning towards ARM or AVR). The reason I am avoiding x86 is because I would like to gain some experience with embedded platforms and I (possibly incorrectly) believe that the task may be easier when carried out on a smaller scale. Does anyone have any pointers to websites or resources where there are some examples of this. I have read through most if not all of the OSDev questions on stack overflow, and I am also aware of AvrFreaks and OSDev. Additionally if anyone has had experience in this area and wanted to offer some advice in regards to approach or platform it would be much appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1315182/how-can-i-fix-the-float-value-in-output-in-c-language/1315193#13151936Answer by mdec for How can I Fix the float value in output in C languagemdec2009-08-22T05:13:06Z2009-08-22T05:33:45Z<pre><code>printf("%010.4f", val);
</code></pre>
<p>Should do it for you, where val is each value. For more info see <a href="http://en.wikipedia.org/wiki/Printf#printf%5Fformat%5Fplaceholders" rel="nofollow">here</a></p>
<p>Edit: Thanks Barry.</p>
http://stackoverflow.com/questions/1298544/recommended-os-for-programmers/1298550#12985500Answer by mdec for Recommended OS for Programmersmdec2009-08-19T08:41:21Z2009-08-19T08:41:21Z<p>This is horribly subjective, but I would have to say it's the one that allows you to be most productive.</p>
http://stackoverflow.com/questions/1248864/simple-php-isset-test/1248932#12489320Answer by mdec for Simple PHP isset testmdec2009-08-08T13:56:49Z2009-08-08T13:56:49Z<p>From your reply to Philippe I think you need to have a look at the differences between <a href="http://us3.php.net/manual/en/function.empty.php" rel="nofollow">empty</a> and <a href="http://us3.php.net/manual/en/function.isset.php" rel="nofollow">isset</a>. </p>
<p>To summarise isset() will return boolean TRUE if the variable exists. Hence, if you were to do </p>
<pre><code>$fid = $_GET['friendid'] = "";
$exists = isset($fid);
</code></pre>
<p>$exists will be TRUE as $_GET['friendid'] exists. If this is not what you want I suggest you look into empty. Empty will return TRUE on the empty string (""), which seems to be what you are expecting. If you do use empty, PLEASE refer to the documentation I linked to, there are other cases where empty will return true where you may not expect it, these cases are explicitly documented at the above link.</p>
<p>HTH.</p>
http://stackoverflow.com/questions/114659/any-experience-with-unusual-technologies/114680#1146800Answer by mdec for Any experience with unusual technologies ?mdec2008-09-22T12:51:40Z2009-07-23T04:33:34Z<p>I haven't worked with any unusual technologies but I believe Ada is still very much alive within the defence/aerospace/high reliability circles. It's something I would like to pick up one day.</p>
http://stackoverflow.com/questions/81832/what-is-the-best-resource-for-learning-about-safety-critical-systems-development4What is the best resource for learning about Safety Critical Systems Development (C/C++)mdec2008-09-17T10:29:13Z2009-07-06T16:02:14Z
<p>I'm looking to locate a good resource (book or otherwise) on safety critical systems development techniques/methodologies, especially something that will cover both hardware and software . I have a sound working knowledge of C/C++, so even if it is just code on SourceForge etc I would still appreciate a link to it to have a browse.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/994958/search-for-kernel-source-code-of-hid-c-v-2-6-27-14/994977#9949770Answer by mdec for Search for kernel source code of HID.c v 2.6.27.14mdec2009-06-15T08:07:49Z2009-06-15T08:07:49Z<p>All of the 2.6 sources can be found here</p>
<p><a href="http://www.kernel.org/pub/linux/kernel/v2.6/" rel="nofollow">http://www.kernel.org/pub/linux/kernel/v2.6/</a></p>
http://stackoverflow.com/questions/968288/best-laptop-features-for-studying-cs-in-college/968327#9683270Answer by mdec for best laptop features for studying CS in college?mdec2009-06-09T05:37:42Z2009-06-09T05:37:42Z<p>I personally have a MacBook 2.4GHz, 4GB RAM and it works like a charm</p>
<ol>
<li>Lightweight and sturdy</li>
<li>Unix based. If you install the developer tools you'll get all the compilers and so forth</li>
<li>If the developer tools doesn't contain it, theres always macports or fink</li>
<li>Failing that, VMWare Fusion or boot camp</li>
<li>13" LED Screen</li>
<li>Backlit keyboard</li>
<li>Multitouch trackpad</li>
</ol>
<p>And more.</p>
<p>If you aren't looking to do much gaming then I would suggest you look into getting a mac. Also look into using an education discount to save some $$</p>
http://stackoverflow.com/questions/938038/assembly-mod-algorithm-on-processor-with-no-division-operator/938093#9380933Answer by mdec for Assembly mod algorithm on processor with no division operatormdec2009-06-02T06:06:18Z2009-06-02T06:06:18Z<p>This doesn't answer your question directly but is an interesting case nonetheless. If the number is being modulo'd by a power of two the operation can be performed as</p>
<pre><code>x % 2^n = x & (2^n - 1)
</code></pre>
<p>Which uses a single AND operation, which <strong>usually</strong> is a one or two cycle operation.</p>
<p>More information <a href="http://en.wikipedia.org/wiki/Modulo%5Foperation#Performance%5Fissues" rel="nofollow">At Wikipedia</a></p>
http://stackoverflow.com/questions/887188/c-array-problem/887254#8872542Answer by mdec for C++ array problem mdec2009-05-20T10:45:46Z2009-05-20T10:51:48Z<p>Have a look at the <a href="http://www.cplusplus.com/reference/algorithm/find/" rel="nofollow" title="find">find</a> function. The advantage is that it will work on all STL containers. If you don't wish to use STL the example listed shows usage on a standard array.</p>
<p>If I am reading your question right you need to create a program that takes six numbers. One to search for and the other 5 to search in. The straightforward way to do this would be to read the haystack numbers into a container(array, vector, etc) and then use find to test whether they are in the haystack. Alternatively simply iterate through all the values as Ben suggested.</p>
<p>Be careful to read the documentation that I linked to. Specifically what happens when the element is not in the list. Best of luck!</p>
http://stackoverflow.com/questions/887174/cms-engine/887266#8872661Answer by mdec for CMS Engine?mdec2009-05-20T10:49:43Z2009-05-20T10:49:43Z<p>I've personally used Drupal and Joomla and both have their respective pros and cons. What I suggest is to go to <a href="http://www.opensourcecms.com" rel="nofollow">OpenSourceCMS</a> and have a play around with the vanilla installs that they have there. Find one that intrigues you and then head over to its website to investigate it some more.</p>
http://stackoverflow.com/questions/857962/qt-qimage-pixel-manipulation-problems1QT QImage pixel manipulation problemsmdec2009-05-13T13:32:33Z2009-05-13T13:42:18Z
<p>Hi.</p>
<p>I'm currently in the process of writing a steganography application with QT. I am trying to hide my message bits in the least significant bit of the blue colour of the pixel </p>
<p>From debugging I can tell that this section is working as it should. However after hiding my bits in the message I then save the image and then reopen it. This is where the problem develops.</p>
<p>When I read in the (reopened) image the scanLines that I read in are not the same as the ones I wrote previously, and I can't figure out why. Maybe it's just me being stupid, or maybe I'm missing something. Any help would be much appreciated.</p>
<p>The code I have so far is as follows</p>
<pre><code>void MainWindow::Encrypt(QImage image, QString message) {
if(image.isNull()) {
qDebug() << "PROBLEM";
}
image = image.convertToFormat(QImage::Format_ARGB32);
QVector<bool> bvec;
QByteArray bytes = message.toAscii();
char mask;
QRgb tempPix;
for(int i = 0; i < bytes.size(); i++) {
for(int j = 0; j < 8; j++) {
mask = (0x01 << j);
bvec.push_back((bytes[i] & mask) == mask);
}
}
if(image.height() < bvec.size()) {
qDebug() << "Not enough space in image";
}
for(int j = 0; j < bvec.size(); j++) {
QRgb *pixel = (QRgb *)image.scanLine(j);
tempPix = *pixel;
int blue = qBlue(tempPix);
blue &= 0xFE;
blue |= (bvec[j] == 1) ? 0x01 : 0x00;
*pixel = qRgba(qRed(tempPix), qGreen(tempPix), blue, qAlpha(tempPix));
}
if(image.save(filename) != true) {
emit addToStatusLog("Did not save. Error");
}
}
void MainWindow::Decrypt(QImage image) {
char temp = 0x00;
qint8 mask = 0x01;
QVector<bool> bvec;
QRgb *pixel;
int blue;
image = image.convertToFormat(QImage::Format_ARGB32);
for(int i = 0; i < image.height(); i++) {
pixel = (QRgb *)image.scanLine(i);
blue = qBlue(*pixel);
bvec.push_back((blue & mask) == mask);
}
for(int j = 0; j < bvec.size(); j++) {
if(j % 8 == 0 && j != 0) {
qDebug() << temp;
temp = 0x00;
}
temp |= (bvec[j]) ? (0x01 << (j%8)) : 0x00;
}
qDebug() << temp;
}
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/844623/qt-signals-inheritance-question/844703#8447030Answer by mdec for qt signals & inheritance questionmdec2009-05-10T04:50:25Z2009-05-10T13:27:07Z<p>Incorrect -> see comments.</p>
<p>I'm using Qtopia at Uni and I believe I recall someone saying something about spacing in the SIGNAL and SLOT parameters for connect.</p>
<p>Try using</p>
<pre><code>QObject::connect(this, SIGNAL(rotationChanged(double,double,double)),
this, SLOT(myRotationChanged(double,double,double)));
</code></pre>
<p>I know it doesn't seem intuitive, as C++ isn't sensitive to whitespace, however I believe it has something to do with some of the magic that Qtopia/QT uses when connecting signals and slots. This may only apply to Qtopia, or I may have heard wrong, but give it a try. Additionally are the signals public or protected and have you included the appropriate header files?</p>
http://stackoverflow.com/questions/844677/gemone-terminal-how-to-start-in-a-different-directory/844711#8447113Answer by mdec for Gemone-Terminal, how to start in a different directory?mdec2009-05-10T04:55:43Z2009-05-10T04:55:43Z<p>Add the following to your ~/.bashrc</p>
<p>cd ~/myfolder</p>
http://stackoverflow.com/questions/144985/programming-on-a-nintendo-ds18Programming on a Nintendo DSmdec2008-09-28T02:02:49Z2009-04-27T20:23:35Z
<p>I was reading <a href="http://stackoverflow.com/questions/144735/best-way-to-get-started-with-programming-other-things-than-your-computer#144843">this</a> answer previously and it got me interested in purchasing a Nintendo DS Lite for learning to program embedded devices. Before I go out and splurge on a DS I had a few questions:</p>
<ol>
<li><p>Are there any restrictions on what you can program? The post I indicated earlier seemed to say there weren't, but clarification would be nice.</p></li>
<li><p>Would I be better off buying an arduino (or similar) and going that route? I like the DS because it already has a lot of hardware built in.</p></li>
<li><p>I'm thinking of getting a CycloDS Evo card, is there a better option for homebrew? </p></li>
<li><p>What are the best resources to learn about DS development?</p></li>
</ol>
<p>Thanks for your time, If you have a DS and program on it, I'd love you hear your opinion, or alternatively if you have a better idea, I'd like to hear it too.</p>
<p>Thanks =]</p>
http://stackoverflow.com/questions/764631/how-to-hide-console-window-in-python/764654#7646543Answer by mdec for How to hide console window in python ?mdec2009-04-19T01:51:12Z2009-04-19T01:51:12Z<p>Simply save it with a .pyw extension. This will prevent the console window from opening.</p>
<p><a href="http://docs.python.org/tutorial/interpreter.html" rel="nofollow">Explanation at the bottom of section 2.2.2</a></p>
http://stackoverflow.com/questions/193344/starting-compsci-uni-next-week-whats-the-best-advice-you-can-muster/763350#7633500Answer by mdec for Starting CompSci Uni next week, what's the best advice you can muster?mdec2009-04-18T12:19:58Z2009-04-18T12:19:58Z<p>Learn how to use a debugger. I cannot remember how many times I have been saved by GDB. Additionally, learning to go to the documentation when you have a problem is a good skill, it's quicker then waiting for the teaching staff, and better for you. </p>
http://stackoverflow.com/questions/88626/best-platform-for-learning-embedded-programming7Best platform for learning embedded programming?mdec2008-09-17T23:19:25Z2009-04-08T07:04:28Z
<p>Hi, </p>
<p>I'm looking to learn about embedded programming (in C mainly, but I hope to brush up on my ASM as well) and I was wondering what the best platform would be. I have some experience in using Atmel AVR's and programming them with the stk500 and found that to be relatively easy. I especially like AVR Studio and the debugger that lets you view that state of registers.</p>
<p>However, If I was to take the time to learn, I would rather learn about something that is prevalent in industry. I am thinking ARM, that is unless someone has a better suggestion. </p>
<p>I would also be looking for some reference material, I have found the books section on the ARM website and if one is a technically better book than another I would appreciate a heads up.</p>
<p>The last thing I would be looking for is a prototyping/programming board like the STK500 that has some buttons and so forth.</p>
<p>Thanks =]</p>
http://stackoverflow.com/questions/215099/using-a-mac-for-cross-platform-development16Using a Mac for cross platform development?mdec2008-10-18T14:25:17Z2009-02-27T16:40:56Z
<p>Hi all,</p>
<p>I was wondering if there was anyone out there using their Mac for cross platform development, by cross platform I essentially mean you can compile to target windows or *nix (not necessarily both at the same time). I understand that this also has a lot to do with writing portable code, but I am more interested in people's experience with OS X to develop software.</p>
<p>I understand that there are a range of IDEs to choose from, I would probably use Eclipse (I like the gcc toolchain) however XCode seems to be quite popular. Could it be used as described above? At a pinch I could always virtualise with virtualbox or vmware or parallels to use visual studio (or dual boot for that matter). Having said that I am open to any other suggested compilers (with preferably an IDE that uses gcc)</p>
<p>Also with the range of Macs available, which one would you recommend? I would prefer a laptop (as I already have a desktop) but am unsure of reasonable specs.</p>
<p>If you are currently using a Mac to do development, I would love to hear what you develop on your mac and what you like and don't like about it. </p>
<p>I would primarily be developing in C/C++/Java. I am also looking to experiment with boost and Qt, so I'm interested in hearing about any (potential) compatibility issues.</p>
<p>If you have any other tips I'd love you hear what you have to say.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/540232/how-do-i-set-up-one-time-password-authentication/540273#5402730Answer by mdec for How do I set up one time password authentication?mdec2009-02-12T06:32:52Z2009-02-12T06:40:27Z<p>As an addendum to renegadeMind's post one way to do this would be to have a program on both ends that generates a sequence of random numbers. A property of Pseudo-random number generators (PRNGs) is that if you start them with the same seed, they will continue to generate the same sequence of random numbers. So depending on your experience (or availability of technology) you could set your network up to generate a new password every x minutes. Then you could carry around a piece of software that would run on a phone or other embedded hardware that calculates what step in the sequence the PRNG is up to and then list the current password for you.</p>
<p>Having said that the security of your system would be limited to the seed you choose and the time you choose that each key is valid for. </p>
<p>In addition to this there is probably a software solution that will do this for you. IMHO it's better to take the existing implementation then reinventing the wheel.</p>
<p>Edit: Wikipedia has a good article <a href="http://en.wikipedia.org/wiki/One_time_password" rel="nofollow">here</a>. The part on specific OTP technologies will probably be the most relevant.</p>
<p>Good luck though!</p>
<p><a href="http://en.wikipedia.org/wiki/Pseudorandom_number_generator" rel="nofollow">wiki article on PRNG</a></p>
http://stackoverflow.com/questions/404825/i-need-help-lists-and-python/404874#4048742Answer by mdec for I need help--lists and Pythonmdec2009-01-01T11:26:36Z2009-01-01T11:26:36Z<p>As Andrew commented, you will receive better answers if you show us the code you are currently using. Also if you could state what version of Python you are using that would be great.</p>
<p>There are a few ways you can return a list. Say for example we have a function called retlist.</p>
<pre><code>def retlist():
return []
</code></pre>
<p>will return the empty list</p>
<pre><code>def retlist():
a = list()
a.append(5)
return a
</code></pre>
<p>will return [5].</p>
<p>You can also use list comprehension to return a list</p>
<pre><code>def retlist():
return [x*x for x in range(10)]
</code></pre>
<p>There are plenty of ways to return a list. But basically it involves return .</p>
<p>If you are after a more detailed response, comment for what you need.</p>
<p>Good Luck</p>
http://stackoverflow.com/questions/384076/how-can-i-make-the-python-logging-output-to-be-colored/384116#3841160Answer by mdec for How can I make the Python logging output to be colored?mdec2008-12-21T05:05:47Z2008-12-21T05:05:47Z<p>I believe (as David has alluded to) that you need to look into escape characters. There seems to be a pretty good tutorial <a href="http://linuxgazette.net/issue65/padala.html" rel="nofollow">here</a> with an example (in C) but the concept should be the same. But a general google for terminal escape characters should point you in the right direction.</p>
http://stackoverflow.com/questions/367480/are-there-any-single-letter-programming-language-names-left/367487#3674875Answer by mdec for Are there any single-letter programming language names left?mdec2008-12-15T04:38:11Z2008-12-15T06:41:32Z<p>Try checking <a href="http://en.wikipedia.org/wiki/List_of_programming_languages" rel="nofollow">Wikipedia</a> and <a href="http://www.reddit.com/r/programming/comments/7dhqd/letters_of_the_alphabet_not_yet_named_after_a/" rel="nofollow">Reddit</a> out. The first one is a list of all programming languages, and the second is a discussion on reddit about it.</p>
<p><em>Added</em></p>
<p>From the Wikipedia page, it appears that you could create:</p>
<ul>
<li>A</li>
<li>G</li>
<li>H</li>
<li>I</li>
<li><del>M</del> <em>Per comment: should update Wikipedia so left-hand knows what the right is doing, and vice versa.</em></li>
<li>N</li>
<li>O</li>
<li>P</li>
<li>U</li>
<li>W</li>
<li>X</li>
</ul>
<p>Of course, it depends slightly on your definition of a 'one-letter' language; does 'M4' count as one letter (and one digit)?</p>
http://stackoverflow.com/questions/210616/c-constructor/210630#2106307Answer by mdec for C++ Constructormdec2008-10-16T23:26:55Z2008-12-01T01:04:46Z<p>:: Actually means contains (see comments for clarification), however the _someMethods and so forth is what's called an <a href="http://www.cprogramming.com/tutorial/initialization-lists-c++.html" rel="nofollow">initialisation list</a>. There is plenty of info at the link =]</p>
<p>EDIT: Sorry, my first sentence is incorrect - see the comments.</p>
http://stackoverflow.com/questions/294343/read-and-write-rtf-files-with-c-qt/294782#2947820Answer by mdec for Read (and write) RTF files with C++ / Qtmdec2008-11-17T02:53:56Z2008-11-17T02:53:56Z<p>I know you were looking for a library, but there seems to be some excellent documentation <a href="http://doc.trolltech.com/4.4/richtext.html" rel="nofollow">here</a>. Good luck</p>
http://stackoverflow.com/questions/275255/whats-the-smallest-device-i-can-program-on/275407#2754073Answer by mdec for What's the smallest device I can program on?mdec2008-11-09T00:18:01Z2008-11-09T00:18:01Z<p>If you are looking for a microcontroller or similar my advice to you would be to check out either an AVR, PIC, <a href="http://arduino.cc/" rel="nofollow">Arduino, or <a href="http://beagleboard.org/" rel="nofollow">BeagleBoard</a>.</p>
<p>All are relatively cheap and easy to program (the first three more so). AVR's and PIC's are types of microcontrollers that you can program with C or ASM, however you will need some type of prototyping board or similar to achieve anything. An Arduino is an AVR chip sitting on a board, so it is much easier to achieve something in a small amount of time. In addition to this they are quite popular and you can find many projects that have been done at Hackaday</a>. Lastly BeagleBoard is a much gruntier board that will run embedded linux. </p>
<p>My recommendation is for the Arduino.</p>
<p>There are many more suggestions <a href="http://stackoverflow.com/questions/88626/best-platform-for-learning-embedded-programming">here</a>.</p>
<p>However, If you are looking for a small laptop device to program you have plenty of options. An Asus EEE pc, HP 2133 (I believe thats the correct model), MSI Wind, MacBook Air etc etc. As other people have suggested check out some netbooks. There are also various PDA's or mobile phones that you could program, such as an Android phone or an OpenMoko phone. There are plenty of options, I suggest you find out what size you are looking for specifically and that will narrow down your choices.</p>
<p>Good Luck.</p>
http://stackoverflow.com/questions/273177/do-you-have-advice-for-a-computer-science-graduate-looking-to-get-into-hardware/274489#2744890Answer by mdec for Do you have advice for a Computer Science Graduate looking to get into Hardware?mdec2008-11-08T07:15:37Z2008-11-08T07:15:37Z<p>I'd suggest something along the lines of EE or CE (computer engineering) or anything that involves digital systems courses. EE courses will probably give you a better background than straight digital systems courses but depending on what you intend to achieve in the end the choice is up to you. Check out some uni websites and see what the courses entail. I'd probably recommend EE though.</p>
<p>If you want to have a mess around with some hardware play around with an Arduino, it's a good way to get into basic hardware</p>
http://stackoverflow.com/questions/256807/check-if-array-index-exists/256814#2568143Answer by mdec for Check if array index existsmdec2008-11-02T12:00:56Z2008-11-02T12:00:56Z<p>My personal vote is for using a vector. They will resize dynamically, and as long as you don't do something stupid (like try and access an element that doesn't exist) they are quite friendly to use.</p>
<p>As for tutorials the best thing I could point you towards is a <a href="http://www.google.com.au/search?q=C%2B%2B+vector+tutorial" rel="nofollow">google search</a></p>
http://stackoverflow.com/questions/248398/please-recommend-an-open-source-project-with-quality-comments-in-good-english/248955#2489550Answer by mdec for Please recommend an open source project with quality comments in good englishmdec2008-10-30T00:55:46Z2008-10-30T00:55:46Z<p><a href="https://gforge.cs.vu.nl/plugins/scmsvn/viewcvs.php/?root=minix" rel="nofollow">Minix</a> is quite well commented. They can be a bit terse in some places but the comments are very helpful.</p>
http://stackoverflow.com/questions/245800/oop-problems-to-use-for-coding-tests-during-interviews/245833#2458330Answer by mdec for OOP Problems to use for Coding Tests during interviewsmdec2008-10-29T04:53:15Z2008-10-29T05:00:15Z<p>These aren't specifically OO Questions, but check out the other questions tagged <a href="http://stackoverflow.com/questions/tagged/interview-questions">interview-questions</a></p>
<p>Edit: What about implementing some <a href="http://en.wikipedia.org/wiki/Software_design_pattern" rel="nofollow">design patterns</a>? I don't have the best knowledge in the area but it seems as if you would be getting two questions for the price of one. You can test for both OO and Design pattens in the one question. </p>
http://stackoverflow.com/questions/1537031/developing-a-non-x86-operating-system/1537124#1537124Comment by mdec on Developing a non-x86 Operating systemmdec2009-10-08T11:14:59Z2009-10-08T11:14:59ZThanks for the reference, It's currently sitting on my bookshelf, it was the reference text for my Operating Systems Architecture subject last year =]http://stackoverflow.com/questions/1263581/has-anyone-successfully-mocked-the-socket-class-in-cComment by mdec on Has anyone successfully mocked the Socket class in C#?mdec2009-08-11T23:52:22Z2009-08-11T23:52:22ZDoes "You call that a Socket?" count? =]http://stackoverflow.com/questions/1159100/put-a-string-in-a-ifstream-methodComment by mdec on Put A String In A ifstream Methodmdec2009-07-21T13:23:13Z2009-07-21T13:23:13ZHave you included the correct headers?http://stackoverflow.com/questions/1135467/does-anyone-have-a-php-snippet-of-code-for-grabbing-the-first-sentence-in-a-str/1135474#1135474Comment by mdec on Does anyone have a PHP snippet of code for grabbing the first "sentence" in a string?mdec2009-07-16T05:10:26Z2009-07-16T05:10:26Z+1 to this response. It should be noted though that this will explode on all .'s (i.e. the period character). So if the sentence contains abbreviations such as 'i.e.' or 'e.g.' you will run into problems. Apart from that it's the easiest option.http://stackoverflow.com/questions/1023499/good-computer-science-thesisComment by mdec on Good Computer Science Thesismdec2009-06-21T09:31:35Z2009-06-21T09:31:35ZThere are numerous questions like this already. Try searchinghttp://stackoverflow.com/questions/913941/what-is-nor-logical-operator/913950#913950Comment by mdec on What is NOR logical operator?mdec2009-05-27T04:43:21Z2009-05-27T04:43:21Z+1 for linking to documentationhttp://stackoverflow.com/questions/857962/qt-qimage-pixel-manipulation-problems/858013#858013Comment by mdec on QT QImage pixel manipulation problemsmdec2009-05-13T13:49:36Z2009-05-13T13:49:36ZThank you so very much, saving it as a PNG fixes the problem. =]http://stackoverflow.com/questions/844623/qt-signals-inheritance-question/844703#844703Comment by mdec on qt signals & inheritance questionmdec2009-05-10T13:26:47Z2009-05-10T13:26:47ZThanks for the clarification =]http://stackoverflow.com/questions/844623/qt-signals-inheritance-question/844703#844703Comment by mdec on qt signals & inheritance questionmdec2009-05-10T05:44:12Z2009-05-10T05:44:12ZWhen you declare the signals, do not declare a name for the parameter, only the types. That is
public:
signals:
void rotationChanged(double, double, double);
Hopefully that should fix your error.http://stackoverflow.com/questions/500748/what-is-staticcase-operator-in-cComment by mdec on What is static_case operator in C++?mdec2009-02-01T13:25:46Z2009-02-01T13:25:46Z@Atklin: Somebody please correct the typo in the question topic and source codehttp://stackoverflow.com/questions/489999/python-convert-list-of-ints-to-one-number/490020#490020Comment by mdec on Python: Convert list of ints to one number?mdec2009-01-29T05:12:53Z2009-01-29T05:12:53Z+1 for the different versionshttp://stackoverflow.com/questions/483208/help-how-to-stop-a-python-script-without-error-messages-on-the-shell/483243#483243Comment by mdec on Help -- how to stop a Python script without error messages on the shell ???mdec2009-01-27T12:53:57Z2009-01-27T12:53:57Z+1 for deciphering the question =]http://stackoverflow.com/questions/170284/examples-of-programmers-being-stupid/170291#170291Comment by mdec on Examples of programmers being stupidmdec2009-01-27T06:17:15Z2009-01-27T06:17:15Z@tinkertim: There is no need for an if statement. You can just do a return conditionhttp://stackoverflow.com/questions/463722/doing-arp-and-inverse-arp-on-linux-2-6-21-glibc-2-3-5/463736#463736Comment by mdec on Doing ARP and Inverse ARP on Linux 2.6.21 (glibc 2.3.5)mdec2009-01-21T01:10:51Z2009-01-21T01:10:51ZUpmodded for the first paragraph.http://stackoverflow.com/questions/432230/why-can-i-assign-an-existing-reference-to-a-literal-value-in-cComment by mdec on Why can I assign an existing reference to a literal value in C++?mdec2009-01-11T05:21:29Z2009-01-11T05:21:29ZEveryone makes mistakes. I wouldn't worry about it