User Smashery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:15:52Z http://stackoverflow.com/feeds/user/14902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1449935/getting-svn-revision-number-into-a-program-automatically 2 Getting SVN revision number into a program automatically Smashery 2009-09-20T00:33:45Z 2009-11-28T10:06:25Z <p>I have a python project under SVN, and I'm wanting to display the version number when it is run. Is there any way of doing this (such as automatically running a short script on commit which could update a version file, or querying an SVN repository in Python?)</p> http://stackoverflow.com/questions/1806669/vertical-scrollbar-in-clistctrl 0 Vertical Scrollbar in CListCtrl Smashery 2009-11-27T04:05:20Z 2009-11-27T09:59:50Z <p>I'm using a CListCtrl in Icon view, but it scrolls horizontally:</p> <pre><code>1 3 5 7 --&gt; 2 4 6 8 --&gt; </code></pre> <p>I'd rather it scroll horizontally:</p> <pre><code>1 2 3 4 5 6 | | V V </code></pre> <p>Is there a way to do this?</p> http://stackoverflow.com/questions/1794446/what-is-binary-save-and-load/1794475#1794475 1 Answer by Smashery for what is binary save and load??? Smashery 2009-11-25T03:44:08Z 2009-11-25T03:44:08Z <p>Binary saving and loading is a way of saving files. The other way is Text saving and loading. Text saving is what you might be familiar with - the files that you save are made up of letters and numbers (normal text). Binary saving and loading is storing data that is not human-readable like letters and numbers, but it's a more "native" representation of data like numbers (i.e. rather than saving "7" for the number 7, it might store 00000111, which is the <em>binary</em> representation of the number 7).</p> <p>For your Bank System homework, you might want to use binary saving and loading for storing how much money someone has.</p> http://stackoverflow.com/questions/1794460/how-can-i-save-an-object-in-the-file/1794465#1794465 1 Answer by Smashery for how can I save an object in the file??? Smashery 2009-11-25T03:40:24Z 2009-11-25T03:40:24Z <p>You may be after <a href="http://java.sun.com/developer/technicalArticles/Programming/serialization/" rel="nofollow">serialization</a>.</p> http://stackoverflow.com/questions/1753626/integer-parsing/1753638#1753638 3 Answer by Smashery for Integer parsing Smashery 2009-11-18T04:27:21Z 2009-11-18T04:35:32Z <p>Integers are stored using 32 bits, so you only have 32 bits with which to represent your data; 31 once you take into account negative numbers. So numbers that are larger than <code>2^31 - 1</code> cannot be represented as integers. That number is 2147483647. So since 78987162789 > 2147483648, it cannot convert it to an integer.</p> <p>Try using a <code>long</code> instead. </p> <p><strong>Edit:</strong></p> <p>Of course, <code>long</code> only works up to 9,223,372,036,854,775,807 (2 ^ 63 - 1), so you may end up in the same problem. So, as other people have suggested, use Int32.TryParse - if that fails, you can assume it's not a number, or it's bigger than your limit.</p> http://stackoverflow.com/questions/1753232/python-functions-can-be-given-new-attributes-from-outside-the-scope/1753261#1753261 3 Answer by Smashery for Python functions can be given new attributes from outside the scope? Smashery 2009-11-18T02:34:11Z 2009-11-18T02:34:11Z <p>In python, a namespace is just a dictionary object, mapping variable name as a string (in this case, 'guest') to a value (in this case, 'Harry'). So as long as you have access to an object, and it's mutable, you can change anything about its namespace.</p> <p>On small projects, it's not a huge problem, and lets you hack things together faster, but incredibly confusing on larger projects, where your data could be modified from anywhere.</p> <p>There are ways of making attributes of classes "more private", such as <a href="http://docs.python.org/reference/expressions.html#atom-identifiers" rel="nofollow">Name Mangling</a>.</p> http://stackoverflow.com/questions/1745693/get-text-width-in-mfc 1 Get text width in MFC Smashery 2009-11-16T23:59:38Z 2009-11-17T10:40:01Z <p>I'm wanting to dynamically resize a CButton to the width of the text within it. Is there either a built-in way to do this in MFC, or a way of calculating the pixel width of some specified text (so that I can use <code>CWnd::SetWindowPos</code>)?</p> http://stackoverflow.com/questions/1727124/print-possible-strings-created-from-a-number/1727144#1727144 0 Answer by Smashery for Print possible strings created from a Number Smashery 2009-11-13T04:34:38Z 2009-11-13T04:41:38Z <p>I think a recursive solution would be good for this one. So something like:</p> <pre><code>def PossibleWords(numberInput, cumulative, results): if len(numberInput) == 0: results.append(cumulative) else: num = numberInput[0] rest = numberInput[1:] possibilities = mapping[num] if len(possibilities) == 0: PossibleWords(rest, cumulative, results) else: for p in possibilities: PossibleWords(rest, cumulative + p, results) result = [] PossibleWords('1243543', '', result) </code></pre> http://stackoverflow.com/questions/1712546/is-c-good-for-any-projects-beyond-the-command-line-and-learning/1712582#1712582 0 Answer by Smashery for Is C good for any projects beyond the command-line and learning? Smashery 2009-11-11T02:16:41Z 2009-11-11T02:16:41Z <p><a href="http://www.libsdl.org/" rel="nofollow">SDL</a> is a good library for graphics and sound, and I've seen some cool stuff done with it. If you do it in C, it'll take longer to make, but from a performance point of view, it'll be much better.</p> http://stackoverflow.com/questions/1712510/dividing-a-timeval-by-an-integer-in-c/1712552#1712552 1 Answer by Smashery for Dividing a timeval by an integer in C Smashery 2009-11-11T02:08:59Z 2009-11-11T02:08:59Z <p>As this may be a homework question, I won't give you any code, but I'll give you the explanation as to why it's not working, and the approach to use to make it work.</p> <p>When you're working with plain old data types (integers, doubles), you can divide. However, a timeval is not a plain old data type - it's a combination of two in a struct. timevals structs don't know how to be divided by integers (that's what it means when it says <code>invalid operands to binary / (have ‘struct timeval’ and ‘int’)</code>). </p> <p>So you have to do this manually - divide the number of seconds (tv_sec), and then divide the number of nanoseconds (tv_usec), and insert the results of these divisions back into your <code>my_time_quotient</code> timeval. Handling fractions of seconds is left as an exercise to the reader - but the approach suggested by Heath is one approach.</p> http://stackoverflow.com/questions/1691179/is-tcp-guaranteed-to-arrive-in-order 2 Is TCP Guaranteed to arrive in order? Smashery 2009-11-06T23:16:50Z 2009-11-07T00:17:30Z <p>If I send two TCP messages, do I need to handle the case where the latter arrives before the former? Or is it guaranteed to arrive in the order I send it? I assume that this is not a Twisted-specific example, because it should conform to the TCP standard, but if anyone familiar with Twisted could provide a Twisted-specific answer for my own peace of mind, that'd be appreciated :-)</p> http://stackoverflow.com/questions/1685943/catching-enter-keypress-from-a-ccombobox 0 Catching Enter Keypress from a CComboBox Smashery 2009-11-06T07:17:32Z 2009-11-06T09:24:27Z <p>Once a user types something in to my CComboBox (within a CDialog subclass) and presses Enter, I would like to add what they've written to the list of options, and do some other handling. How do you do that in MFC?</p> http://stackoverflow.com/questions/1678249/c-array-of-buttons/1678268#1678268 0 Answer by Smashery for C# Array of Buttons. Smashery 2009-11-05T04:03:23Z 2009-11-05T04:03:23Z <p>Buttons, like all GUI elements, are objects just like any other (that also happen to be displayable). So yes, you can have arrays, lists, dictionaries - whatever you want containing buttons. Taylor L's <a href="http://stackoverflow.com/questions/1678249/c-array-of-buttons/1678261#1678261">response</a> has some sample code.</p> http://stackoverflow.com/questions/1678205/in-java-why-must-equals-and-hashcode-be-consistent/1678256#1678256 1 Answer by Smashery for In Java, why must equals() and hashCode() be consistent? Smashery 2009-11-05T04:00:00Z 2009-11-05T04:00:00Z <p>Containers like HashSet rely on the hash function to determine where to put it, and where to get it from when asked for it. If <code>A.equals(B)</code>, then a HashSet is expecting A to be in the same place as <code>B</code>. If you put <code>A</code> in with value <code>V</code>, and look up <code>B</code>, you should expect to get <code>V</code> back (since you've said <code>A.equals(B)</code>). But if A.hashcode() != B.hashcode(), then the hashset may not find where you put it. </p> http://stackoverflow.com/questions/698910/catching-when-user-selects-an-item-from-a-ccombobox/1671076#1671076 0 Answer by Smashery for Catching when user selects an item from a CComboBox Smashery 2009-11-04T00:43:35Z 2009-11-04T01:56:09Z <p>Unfortunately, it seems that all messages (even <code>SELEND_OK</code>) for combo box changing are sent <em>before</em> the text has actually changed, so DoDataExchange will give you the previous text in the CComboBox. I have used the following method, <a href="http://msdn.microsoft.com/en-us/library/12h9x0ch%28VS.80%29.aspx" rel="nofollow">as suggested by MSDN</a>:</p> <pre><code>void MyDialog::DoDataExchange(CDataExchange* pDX) { DDX_Text(pDX, IDC_COMBO_LOCATION, m_sLocation); CDialog::DoDataExchange(pDX); } BEGIN_MESSAGE_MAP(MyDialog, CDialog) ON_CBN_SELENDOK(IDC_COMBO1, &amp;MyDialog::OnComboChanged) ON_CBN_EDITUPDATE(IDC_COMBO1, &amp;MyDialog::OnComboEdited) // This one updates immediately END_MESSAGE_MAP() ... void MyDialog::OnComboChanged() { m_myCombo.GetLBText(m_myCombo.GetCurSel(), m_sSomeString); } void MyDialog::OnComboEdited() { UpdateData(); } </code></pre> <p>It seems to work quite nicely.</p> http://stackoverflow.com/questions/1665724/colon-asterisk-as-a-filename-delimiter 1 Colon/Asterisk as a filename delimiter? Smashery 2009-11-03T07:17:02Z 2009-11-03T09:38:00Z <p>I'm looking for a character to use a filename delimiter (I'm storing multiple filenames in a plaintext string). Windows seems not to allow <code>:</code>, <code>?</code>, <code>*</code>, <code>&lt;</code>, <code>&gt;</code>, <code>"</code>, <code>|</code>, <code>/</code> and <code>\</code> in filenames. Obviously, <code>\</code> and <code>/</code> can't be used, since they mean something within a path. Is there any reason why any of those others shouldn't be used? I'm just thinking that, similar to <code>/</code> or <code>\</code>, those other disallowed characters may have special meaning that I shouldn't assume won't be in path names. Of those other 7 characters, are any definitely safe or definitely unsafe to use for this purpose?</p> http://stackoverflow.com/questions/1665588/access-is-denied-for-registry 0 Access is Denied for registry Smashery 2009-11-03T06:30:53Z 2009-11-03T08:00:27Z <p>I am playing with the registry programmatically for the first time, and it's not working that well (but at least I haven't destroyed my computer). Specifically, I keep getting back Error 5 (Access is Denied) from RegCreateKeyEx and RegSetValueEx. The thing that is strangest to me is that when <code>HKEY_CURRENT_USER\Software\dir1\Sub Directory</code> already exists, RegCreateKeyEx fails with Error 5, but when it doesn't already exist, it creates it successfully; and then fails on the RegSetValueEx. </p> <p>Am I doing anything wrong in this code?</p> <pre><code>BOOL MyDialog::SaveLocationsToRegistry() { HKEY hkey; DWORD dwDisposition; DWORD dwType, dwSize; LONG result = RegCreateKeyEx(HKEY_CURRENT_USER, TEXT("Software\\dir1\\Sub Directory"), 0, NULL, 0, 0, NULL, &amp;hkey, &amp;dwDisposition); if(result == ERROR_SUCCESS) { LPCTSTR szLastFolder = "C:\\Documents and Settings\\user\\My Documents\\Copy of item\0"; dwType = REG_SZ; dwSize = strlen(szLastFolder)+1; LONG setResult = RegSetValueEx(hkey, TEXT("LastFolder"), 0, dwType, (PBYTE)&amp;szLastFolder, dwSize); RegCloseKey(hkey); return setResult == ERROR_SUCCESS; } else { return false; } } </code></pre> <p>Note: The absolute path is only there temporarily. Baby steps ;-)</p> http://stackoverflow.com/questions/1665459/pushfront-method-for-an-array-c/1665475#1665475 4 Answer by Smashery for PushFront method for an array C++ Smashery 2009-11-03T05:48:01Z 2009-11-03T06:32:42Z <p>Firstly, I'm not sure why you have the line <code>else if ( count &lt;= 0 )</code> - the count of items in your stack should never be below 0.</p> <p>Usually, you would implement a stack not by pushing to the front, but pushing and popping from the back. So rather than moving everything along, as it looks like you're doing, just store a pointer to where the <em>last</em> element is, and insert just after that, and pop from there. When you push, just increment that pointer, and when you pop, decrement it (you don't even have to delete it). If that pointer is at the end of your array, you're full (so you don't even have to store a count value). And if it's at the start, then it's empty.</p> <h2>Edit</h2> <p>If you're after a queue, look into <a href="http://en.wikipedia.org/wiki/Circular%5Fqueue" rel="nofollow">Circular Queues</a>. That's typically how you'd implement one in an array. Alternatively, rather than using an array, try a <a href="http://en.wikipedia.org/wiki/Linked%5FList" rel="nofollow">Linked List</a> - that lets it be arbitrarily big (the only limit is your computer's memory).</p> http://stackoverflow.com/questions/1642021/resources-in-a-static-lib-file-mfc 0 Resources in a static lib file - MFC Smashery 2009-10-29T06:55:09Z 2009-10-30T09:23:58Z <p>MFC is failing to launch my dialog boxes, it seems, because it can't find the resource identifiers. The dialog boxes are in a separate .lib file (so it has a separate .rc file, which, I'm assuming, somehow conflicts with the one in my .exe file). How should I be handling this situation?</p> http://stackoverflow.com/questions/1646887/code-golf-spider-webs/1647073#1647073 3 Answer by Smashery for Code Golf: Spider webs Smashery 2009-10-29T22:59:28Z 2009-10-30T01:47:11Z <h1>Python: 240 Characters</h1> <p>Nothing too tricky here; just printing line by line - <strike>298 280 271 266 265 261 260 254</strike> 240 characters (ignore the last 2 line breaks)</p> <pre><code>u,b,f,s,a='_\/ |' m=input()+1 print'\n'.join([(m-x)*s+x*' /'+b+(m-x)*u+a+(m-x)*u+f+x*'\ 'for x in range(0,m)]+['_/'*m+s*3+'\_'*m+'\n'+(s+b)*m+u*3+'/ '*m]+[x*s+(m-x)* ' \\'+f+x*u+a+x*u+b+(m-x)*'/ 'for x in range(1,m)] + [s*m+f+s*m+a+s*m+b]) </code></pre> http://stackoverflow.com/questions/1642021/resources-in-a-static-lib-file-mfc/1642125#1642125 3 Answer by Smashery for Resources in a static lib file - MFC Smashery 2009-10-29T07:32:57Z 2009-10-29T07:32:57Z <p>In the .rc file for the .exe file, add a line like this:</p> <pre><code>#include "YourLibResourceFile.rc" </code></pre> <p>Then, in the .exe's project settings, add an additional include directory to where YourLibResourceFile.rc is, in Resources/Additional Include Directories.</p> http://stackoverflow.com/questions/1634773/freeing-memory-allocated-in-a-different-dll 0 Freeing memory allocated in a different dll Smashery 2009-10-28T02:01:40Z 2009-10-28T04:45:29Z <p>I have an exe using a dll which is using another dll. This situation has arisen:</p> <p>In dll1:</p> <pre><code>class abc { static bool FindSubFolders(const std::string &amp; sFolderToCheck, std::vector&lt; std::string &gt; &amp; vecSubFoldersFound); } </code></pre> <p>In dll2:</p> <pre><code>void aFunction() { std::vector&lt;std::string&gt; folders; std::string sLocation; ... abc::FindSubFolders(sLocation, folders) } </code></pre> <p>In release mode, everything works fine. But in debug mode, I come up with an assertion failure in the destructor of one of the std::strings in the folders vector (when folders goes out of scope at the end of aFunction):</p> <p><code>dbgheap.c : line 1274</code></p> <pre><code>/* * If this ASSERT fails, a bad pointer has been passed in. It may be * totally bogus, or it may have been allocated from another heap. * The pointer MUST come from the 'local' heap. */ _ASSERTE(_CrtIsValidHeapPointer(pUserData)); </code></pre> <p>I assume this is because the memory has been allocated on dll1's heap, but is being freed in dll2.</p> <p>The comment in <code>dbgheap.c</code> seems pretty insistent that this is a problem. </p> <p>Why is this such a problem, when it seems to work fine if I just ignore it? Is there a non-assertion-failing way of doing this?</p> http://stackoverflow.com/questions/1622546/constructor-abort-constructing/1622575#1622575 -1 Answer by Smashery for Constructor abort constructing Smashery 2009-10-26T00:12:24Z 2009-10-26T00:12:24Z <p>If you'd rather not use exceptions (although admittedly, I do in this situation), you could make a static method of the class in which you ask "Can I construct an object with these parameters?" and require that that method be called before you construct. So effectively, your constructor would become</p> <pre><code>CudaObj::CudaObj(InsertionSim *theSim) { // Setup ASSERT(cublasInit() == CUBLAS_STATUS_NOT_INITIALIZED) ... } </code></pre> <p>And then you'd need</p> <pre><code>BOOL CudaObj::CanConstruct(InsertionSim *theSim) { // Check if we can construct return TRUE; // Or FALSE } </code></pre> <p>So your code would be</p> <pre><code>if (CudaObj::CanConstruct(pSim)) { pObj = new CudaObj(pSim); } else { // Handle invalid parameter ... } </code></pre> <p>You could also provide a convenience method to do both (using OUT arguments, for instance).</p> http://stackoverflow.com/questions/1597764/is-there-a-better-pythonic-way-to-do-this/1597796#1597796 1 Answer by Smashery for Is there a better, pythonic way to do this? Smashery 2009-10-20T23:07:59Z 2009-10-20T23:07:59Z <p>The only changes I'd make are extracting multiple elements from the reader at once, and using string formatting for print statements.</p> <pre><code>import csv adDict = {} reader = csv.reader(open("some.csv"), delimiter=' ') # Can extract multiple elements from a list in the iteration statement: for adId, userId in reader: if ( adId in adDict ): adDict[adId].add(userId) else: adDict[adId] = set(userId) for key, value in adDict.items(): # I believe this gives you more control over how things are formatted: print ("%s, %d" % (key, len(value))) </code></pre> http://stackoverflow.com/questions/1593946/what-is-afinet-and-why-do-i-need-it 2 What is AF_INET, and why do I need it? Smashery 2009-10-20T11:28:43Z 2009-10-20T12:11:30Z <p>So I'm getting started on socket programming, and I keep seeing this <code>AF_INET</code>. Yet, I've never seen anything else used in its place. My lecturers are not that helpful, and just say "You just need it". So my questions:</p> <ul> <li>What is the purpose of <code>AF_INET</code>? </li> <li>Is anything else ever used instead of it? <ul> <li>If not, why is it there? For possible changes in the future?</li> <li>If so, what and why?</li> </ul></li> </ul> http://stackoverflow.com/questions/1570217/mfc-open-folder-dialog 0 MFC Open Folder Dialog Smashery 2009-10-15T03:59:10Z 2009-10-15T15:20:47Z <p>In MFC, is there an Open Folder Dialog? That is, rather than choosing a filename, it chooses a folder name? Ideally, I'd like it to be the way Visual Studio does it when navigating for a "Project Location" (when creating a new project), which looks very much like a normal file dialog. But I could make do with one of the <a href="http://www.experts-exchange.com/images/150159/folder.PNG" rel="nofollow">vertical tree</a> sort of interfaces if the former doesn't exist.</p> http://stackoverflow.com/questions/1569778/c-interview-preparation/1569795#1569795 1 Answer by Smashery for C++ interview preparation Smashery 2009-10-15T01:03:04Z 2009-10-15T01:03:04Z <p>Besides the obvious parts of the language, I've found that employers will want to see if you fully understand pointers, references, how copy-constructors come into everything, probably STL, and of course the basics of classes.</p> http://stackoverflow.com/questions/1563765/use-of-public-in-a-derived-class-declaration/1563779#1563779 0 Answer by Smashery for Use of "Public" in a derived class declaration? Smashery 2009-10-14T01:13:42Z 2009-10-14T01:13:42Z <p>In C++, inheritance is private by default. However, to any code using the Manager class, there appears to be almost no difference, since they have the same methods. </p> <p>You won't be able to cast the Manager object to an Employee, though. You also won't be able to access the <code>employees</code> variable from within the Manager class.</p> http://stackoverflow.com/questions/1563553/when-do-you-want-to-use-pointers-vs-values-in-c/1563572#1563572 2 Answer by Smashery for When do you want to use pointers vs values in C++? Smashery 2009-10-13T23:51:05Z 2009-10-13T23:59:03Z <p>There are two different issues at play here: Creating objects, and referring to them.</p> <h2>Creating</h2> <p>There are two places that objects are created: the stack and the heap. If you use the syntax you described:</p> <pre><code>Employee boss("Frank"); </code></pre> <p>Will create it on the stack. If you write this:</p> <pre><code>Employee* boss = new Employee("Frank"); </code></pre> <p>It will create it on the heap. If you're not familiar with the concepts of stack and heap, it is vitally important to being a good C++ coder, so learn about it!</p> <h2>Referring</h2> <p>Referring to objects is somewhat different. Regardless of how an object is created, it can be referred to using a pointer or a reference (or just a standard variable). Using references and pointers in C/C++ is actually very much the same thing, though there are important differences. </p> <p>When using pointers or references, a copy of the object is <em>not</em> made.</p> <pre><code>// No copies made: Employee&amp; frank = boss; // Using References Employee* frank = &amp;boss; // Using a Pointer </code></pre> <p>A copy is made when you use neither.</p> <pre><code>// Copy is made: Employee frank = boss; </code></pre> <p>So when would you use pointers, and when would you use references? I find that a good practise is to only use pointers when it is meaningful for it to be <code>null</code>. If something should not be null, make it a reference.</p> http://stackoverflow.com/questions/1558106/windows-explorer-add-ons 0 Windows Explorer add-ons Smashery 2009-10-13T03:48:21Z 2009-10-13T15:28:46Z <p>How do tools like SVN and Git attach themselves to Windows Explorer, such that they add options to the right-click menu as well as adding the tick/exclamation mark based on whether a file has been edited?</p> <p>(I'm not after Git or SVN-specific information - I just used them as examples)</p> http://stackoverflow.com/questions/1806711/wierd-c-constructor-copy-constructor-issues-in-g Comment by Smashery on wierd C++ constructor/copy constructor issues in g++ Smashery 2009-11-27T04:33:08Z 2009-11-27T04:33:08Z You can't just say &quot;But after a while, it started calling this copy cons. and now works!!&quot; - you must have changed something. http://stackoverflow.com/questions/1806390/does-a-boolean-condition-in-a-for-loop-that-is-always-false-get-optimized-away/1806413#1806413 Comment by Smashery on Does a boolean condition in a for loop that is always false get optimized away? Smashery 2009-11-27T02:07:21Z 2009-11-27T02:07:21Z Yeah, I was thinking about something like this - but I'd also wonder whether the extra effort of calling functions makes it not worth it http://stackoverflow.com/questions/1806390/does-a-boolean-condition-in-a-for-loop-that-is-always-false-get-optimized-away Comment by Smashery on Does a boolean condition in a for loop that is always false get optimized away? Smashery 2009-11-27T01:32:37Z 2009-11-27T01:32:37Z I'm sure you can find other things to optimise than a single if statement. http://stackoverflow.com/questions/1801363/c-c-any-way-to-get-reflective-enums Comment by Smashery on C/C++: any way to get reflective enums? Smashery 2009-11-26T04:09:03Z 2009-11-26T04:09:03Z @Mark: I was just thinking that myself =P http://stackoverflow.com/questions/1727124/print-possible-strings-created-from-a-number/1727144#1727144 Comment by Smashery on Print possible strings created from a Number Smashery 2009-11-13T04:43:15Z 2009-11-13T04:43:15Z @Suppressingfire - Thanks! Yeah, there were a few problems with the initial code. I've tested it now, and all seems to work well. http://stackoverflow.com/questions/1727124/print-possible-strings-created-from-a-number/1727144#1727144 Comment by Smashery on Print possible strings created from a Number Smashery 2009-11-13T04:39:21Z 2009-11-13T04:39:21Z You only asked for a good solution to this problem. Why would you need a specific example in c or c++ if this isn't a homework question? Python is as close as you'll get to pseudocode. I recommend working it out yourself. http://stackoverflow.com/questions/1712510/dividing-a-timeval-by-an-integer-in-c/1712552#1712552 Comment by Smashery on Dividing a timeval by an integer in C Smashery 2009-11-11T02:27:22Z 2009-11-11T02:27:22Z I direct your attention to the note &quot;Handling fractions of seconds is left as an exercise to the reader - but the approach suggested by Heath is one approach.&quot; I'm not claiming you'd divide the long int by the divisor to get the number of seconds. I'm claiming that you need to handle the division yourself in whatever method, yours being a correct approach. http://stackoverflow.com/questions/1712546/is-c-good-for-any-projects-beyond-the-command-line-and-learning/1712571#1712571 Comment by Smashery on Is C good for any projects beyond the command-line and learning? Smashery 2009-11-11T02:19:34Z 2009-11-11T02:19:34Z &quot;Learning the basic C++ should be easy&quot; - from a language point of view, yes - but using objects properly is a completely different kettle of fish. http://stackoverflow.com/questions/1712546/is-c-good-for-any-projects-beyond-the-command-line-and-learning/1712582#1712582 Comment by Smashery on Is C good for any projects beyond the command-line and learning? Smashery 2009-11-11T02:18:00Z 2009-11-11T02:18:00Z But if you're not worried about performance, aren't worried about people judging you for using a &quot;lesser&quot; language, and just want to make cool stuff, I would recommend trying a different language. I've worked a lot in Python using the Pygame library (which is actually just a wrapper on SDL); it's very easy to use and get used to, and you can make some very cool stuff with it. It's not going to be as fast as pure C, but if that's not a concern, my opinion is: why bother? http://stackoverflow.com/questions/1699117/access-variable-from-scope-of-another-function Comment by Smashery on Access variable from scope of another function? Smashery 2009-11-09T05:46:11Z 2009-11-09T05:46:11Z The whole point of defining a variable within a particular scope is to limit access so that it's <b>not</b> accessible outside of that scope. So no, it's not possible. If you want to do this, then don't define it in local scope - use a class or global scope. http://stackoverflow.com/questions/1691179/is-tcp-guaranteed-to-arrive-in-order/1691194#1691194 Comment by Smashery on Is TCP Guaranteed to arrive in order? Smashery 2009-11-06T23:25:55Z 2009-11-06T23:25:55Z Re: terms - Yep, of course. However, Twisted abstracts this into distinct messages (so interpreting them as messages is not up to me) http://stackoverflow.com/questions/1570217/mfc-open-folder-dialog/1573047#1573047 Comment by Smashery on MFC Open Folder Dialog Smashery 2009-11-05T01:37:20Z 2009-11-05T01:37:20Z It's not quite what I'm after, but it's what I'll have to use - doesn't look like an alternative exists without too much work. http://stackoverflow.com/questions/1642021/resources-in-a-static-lib-file-mfc/1648783#1648783 Comment by Smashery on Resources in a static lib file - MFC Smashery 2009-11-05T01:01:19Z 2009-11-05T01:01:19Z Yeah, I discovered this accidentally by myself =P Thanks for your answer! +1 http://stackoverflow.com/questions/1665724/colon-asterisk-as-a-filename-delimiter/1666086#1666086 Comment by Smashery on Colon/Asterisk as a filename delimiter? Smashery 2009-11-03T23:04:16Z 2009-11-03T23:04:16Z Strange, though, that I can create files with semicolons in them. http://stackoverflow.com/questions/1665724/colon-asterisk-as-a-filename-delimiter/1665745#1665745 Comment by Smashery on Colon/Asterisk as a filename delimiter? Smashery 2009-11-03T07:23:46Z 2009-11-03T07:23:46Z If you try to rename a file in Windows Explorer, it comes up with that list, and stops you from doing it. I just assumed that it was like that at a fundamental level - but you're saying it's not so?