active questions tagged programming - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:14:39Z http://stackoverflow.com/feeds/tag/programming http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810675/tabbar-like-controller 0 TabBar like controller Granny 2009-11-27T21:21:24Z 2009-11-27T21:36:18Z <p>Hy,</p> <p>I'm creating a UITabBar like controller. It has a bottom image with buttons, and a UIViewController to manage views. I'm using URLs to navigate between them. The problem is, when I navigate into another view the whole view flows away, and i can't find a way to have the bottom image stay while just the upper viewcontroller flows. What is the solution?</p> http://stackoverflow.com/questions/1810339/starter-project-to-learn-a-new-language 1 Starter project to learn a new language ? [closed] zlack 2009-11-27T19:33:11Z 2009-11-27T19:49:16Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language">&ldquo;Projects&rdquo; for learning a new language</a><br> <a href="http://stackoverflow.com/questions/15747/what-are-your-favorite-learning-projects-and-why">What are your favorite &ldquo;learning&rdquo; projects, and why?</a> </p> </blockquote> <p>DUPLICATES: </p> <p><a href="http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language">http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language</a></p> <p><a href="http://stackoverflow.com/questions/1031926/standard-programming-problems-for-learning-a-new-language">http://stackoverflow.com/questions/1031926/standard-programming-problems-for-learning-a-new-language</a></p> <p><a href="http://stackoverflow.com/questions/949509/simple-excercises-for-learning-a-new-language">http://stackoverflow.com/questions/949509/simple-excercises-for-learning-a-new-language</a></p> <p>...</p> <p><hr></p> <p>When learning a new programming language, I like to create a simple applications to do file IO, argument parsing etc etc.</p> <p>What is your favorite starter "project" ?</p> http://stackoverflow.com/questions/1801209/programming-excel-to-parse-a-cell-with-comma-delimited-text-and-decoding-the-resu 0 Programming excel to parse a cell with comma delimited text and decoding the result... milesmeow 2009-11-26T02:15:27Z 2009-11-27T19:42:43Z <p>I have an excel spreadsheet (using Excel Office 2008) with a lookup table that maps values such as:</p> <ul> <li>U1 -> $100</li> <li>U2 -> $125</li> <li>A1 -> $100</li> <li>A2 -> $200</li> <li>...</li> </ul> <p>I then have other cells that has, for example, "U1, A1" or "U2" or "U1, U2, A2" (any combination). I basically want to calculate what U1 and A1 decodes to...ex: 100 + 100 in this case. How would I go about doing this?</p> <p>In pseudocode I want to do this:</p> <ol> <li>parse comma delimited list</li> <li>for each item in list <ul> <li>lookup table value</li> <li>add to running total</li> </ul></li> </ol> <p>(I have other ideas of getting the same results which would require that I restructure the spreadsheet, but I thought that I would ask before I go and redo the whole spreadsheet.)</p> http://stackoverflow.com/questions/273299/how-do-you-pull-yourself-out-of-a-programming-slump 51 How do you pull yourself out of a programming 'slump'? DaveK 2008-11-07T19:24:47Z 2009-11-27T16:44:51Z <p>I've been programming professionally for about 8 years now. I started back in the 2001 working in c# and .net development. The past few months, I've found myself in what I would describe as a slump or rut. I'm having a hard time working up the level of passion I used to have for programming. Instead of wanting to stay up late figuring out a problem, I'd rather just go to bed. I have a hard time staying motivated at work even when presented with the opportunity to work in new technologies (WPF, Silverlight, etc). I really do love programming, and would be seriously depressed if I've somehow lost my spark. </p> <p>Has anyone else been in this situation? Any pointers for pulling myself out?</p> http://stackoverflow.com/questions/607648/studying-standard-library-sources 2 Studying standard library sources Maleev 2009-03-03T18:59:17Z 2009-11-27T15:54:31Z <p>How does one study open-source libraries code, particularly standard libraries? The code base is often vast and hard to navigate. How to find some function or class definition?</p> <p>Do I search through downloaded source files? Do I need cvs/svn for that? Maybe web-search? Should I just know the structure of the standard library? Is there any reference on it? Or do some IDEs have such features? Or some other tools? How to do it effectively without one? What are the best practices of doing this in any open-source libraries? Is there any convention of how are sources manipulated on Linux/Unix systems? What are the differences for specific programming languages?</p> <p>Broad presentation of the subject is highly encouraged. I mark this 'community wiki' so everyone can rephrase and expand my awkward formulations!</p> <p><strong>Update</strong>: Probably didn't express the problem clear enough. What I want to, is to view just the <em>source code</em> of some specific library class or function. And the problem is mostly about work organization and usability - how do I navigate in the huge pile of sources to find the thing, maybe there are specific tools or approaches? It feels like there should've long existed some solution(s) for that.</p> http://stackoverflow.com/questions/1806915/how-to-pause-a-form-in-visual-c-until-another-form-is-closed 0 How to pause a form in Visual C# until another form is closed Phenom 2009-11-27T05:29:52Z 2009-11-27T06:51:15Z <p>In my program I will press a button, and it will load form2. I do not want the program in form1 to continue running until the user closes form2. Then program execution continues in form1 right after the line that loads form2. </p> http://stackoverflow.com/questions/1805202/interacting-with-iphone-while-in-sleep-mode 0 Interacting with IPhone while in sleep mode Zensursula 2009-11-26T19:01:14Z 2009-11-27T05:23:14Z <p>I want my app to keep running and interacting with the user, even if the user presses the sleep button.<br> So far I have learned, that my app can stay alive with the following code:</p> <p><code> NSTimer *timer = [NSTimer timerWithTimeInterval:0.5 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES];<br> [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];<br> </code></p> <p>This succeeds. The method <br> <code>- (void)timerFireMethod:(NSTimer*)theTimer<br> </code> will be called every 0.5s even if I am in sleep mode.</p> <p>So know my problem is: How can I interact with my Application in sleep mode? I simply need a trigger to start playing a custom audio file. Therefore I need a trigger event, something like detecting:<br> -a touch at the display<br> -an acceleration activity<br> -a MotionShake Event<br></p> <p>But after getting the <code>applicationWillResignActive</code>-Event, nothing of the above is working. My accelerometer stops delivery of acceleration events. And I am unable to start them again. MotionShake Event will not be delivered and I don't know, if it is possible to catch a touch event while sleeping.</p> <p><b>Update</b><br> I expect the user to use my app for lets say 5hours. If it is idle for some time, it will go to sleep on its own. I probably misinterpreted what I mean with sleep mode. The Iphone should be up and running all the time, but I do not need the display and the background light to be on all the time (these are the most power consuming parts). I know that while playing a noiseless sound every 10 seconds, the iphone is not going to sleep. And I know that the IPod application is able to run in that mode and the user can interact with it by shaking the device. So isn't there any official way for an app to do the same? <br><b>---</b></p> <p>Has anyone any idea? </p> <p>Thanks Zensursula</p> http://stackoverflow.com/questions/1798552/staying-relevant-as-a-programmer 3 Staying Relevant As a Programmer [closed] surfrbum 2009-11-25T17:25:08Z 2009-11-27T01:51:57Z <p>I am interested in hearing how various people remain in the Software Engineering industry for so long in their careers. I am at a crossroads myself as I have worked with Network Engineering, Communications, VoIP, Parking, Government Contracting, and Military related projects.</p> <ol> <li><p>Do you bounce between pure Software Tester, Integration, and back to straight coding? </p></li> <li><p>How do you prevent being a one-hit wonder in this economy? </p></li> <li><p>How do you find your passion ?</p></li> </ol> http://stackoverflow.com/questions/1806363/how-to-highlight-lines-of-code-in-visual-c 0 How to highlight lines of code in Visual C# Phenom 2009-11-27T01:15:06Z 2009-11-27T01:20:38Z <p>I'm trying to debug a Visual C# program, and it would be helpful if I could highlight lines or do something similar to make them stand out. Is there a way to do that?</p> http://stackoverflow.com/questions/1805575/i-want-to-give-a-string-a-value-of-one 0 I want to give a string a value of one. John 2009-11-26T20:46:10Z 2009-11-26T23:29:35Z <p>I'm entering team names into a soccer league.</p> <p>I have an array set up so that the league can take at most 4 teams,</p> <p>I also have an array that states that the number of teams in the league is exactly 4 teams.</p> <p>So I want to set up a counter which stops me from entering too many team names. </p> <p>This is a small chunk of my code </p> <p>str teamName</p> <pre><code>for(int i = 0; i &lt; leagueSize; i++) cout &lt;&lt; "Enter a Team Name"&lt;&lt;endl' cin &gt;&gt; teamName; </code></pre> <p>so is there a way for me to give a team name a value of 1 so that each time I enter a team name it decrements the number in the array until I can't add any more teams? </p> <p>I am new at c++ and haven't been learning for that long so I might be totally off here.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1806031/can-i-send-a-text-message-from-my-computer-to-a-cell-phone 2 Can I Send a Text Message from My Computer to a Cell Phone? viatropos 2009-11-26T22:57:42Z 2009-11-26T23:00:56Z <p>Is it possible to send a text message from a computer to a cell phone? I'd like to be able to do this with Ruby, not quite sure what it entails. After seeing GrandCentral and Google Voice, it seems like it's not that bad.</p> <p>Is it possible? How do I get started!</p> http://stackoverflow.com/questions/1761659/please-explain-this-line-of-code -1 please explain this line of code rover12 2009-11-19T08:04:30Z 2009-11-26T20:36:49Z <p>please explain whats happening in this line of code . specialy what is args[0].tocharArray</p> <pre><code>char[] password = args[0].toCharArray(); </code></pre> http://stackoverflow.com/questions/1805160/getting-the-original-secretkey-from-hex-format 1 Getting the original secretkey from hex format rover12 2009-11-26T18:50:06Z 2009-11-26T19:35:34Z <p>This is the hex format of a secret key used for AES encryption</p> <pre><code>00010203050607080A0B0C0D0F101112 </code></pre> <p>Can i generate the original SecretKey format or byte array from this?</p> <p>If so how?</p> http://stackoverflow.com/questions/1659045/usbcell-can-anyone-program-this 0 USBCELL - Can anyone program this? CheeseConQueso 2009-11-02T01:35:34Z 2009-11-26T19:14:37Z <p><a href="http://www.usbcell.com/" rel="nofollow">USBCELL</a> rechareable batteries - charged using the USB port<hr></p> <p>These came out a while back and are worth the money, in my opinion.</p> <p>I searched around for software specifically made to monitor the battery level of USBCELL batteries and got nothing. There are some USB port monitor programs out there which might tie in somehow, but they could be unrelated also.</p> <p>Anyway..</p> <p>Is it possible to write a program that tells you the battery level of the USBCELL when its plugged in and is charging? <hr> <b>EDIT</b><br> If it makes any difference, the batteries have status lights that turn on when plugged in.<br> There is nothing to install (optional or required) to get these to work. </p> http://stackoverflow.com/questions/1804916/c-optimizing-overloaded-operators 0 C# optimizing overloaded operators MandoMando 2009-11-26T17:33:48Z 2009-11-26T19:07:24Z <p>Returning a new object on overloaded operators seems the only thing to do. Right?</p> <ul> <li>If you have a class (X) that contains a large buffer</li> <li>Part of the buffer contains content, rest is free.</li> <li>You have overloaded the binary + operator to merge two objects (of same type) by creating a new object containing the appended contents of both operands.</li> </ul> <p>In other words:</p> <pre><code>z = x + y // z is a new object containing the appended data from x and y. </code></pre> <p>This is obviously good because we don't want to mangle x or y during the operation. However, C# language specs 7.2.2 say: </p> <p><strong>When a binary operator is overloaded, the corresponding assignment operator (if any) is also implicitly overloaded.</strong></p> <p>this means that:</p> <pre><code>x += y; // will create a new x, copy contents of old x merged with y // and the old x will be garbage collected at some point </code></pre> <p>This is painful, because it could be much faster to just copy the contents of y in the free portion of x. That way we don't copy a large object and leave a mess for the nice garbage collector person.</p> <p>I realize that this could be done with a simple x.Add(y). I am curious if there is a way to do it using operators. for example to figure out we are inside the assignment operator and perform the optimized routine.</p> http://stackoverflow.com/questions/1804966/which-linux-softwares-do-you-recommend-for-c-programming 0 Which linux softwares do you recommend for C++ programming? unknown (google) 2009-11-25T23:43:32Z 2009-11-26T18:35:50Z <p>I would like to learn to program using Linux environment, any suggestions for Editors/ IDE's ?</p> http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code 1 What language will protect my source code? Hansel 2009-11-25T22:43:28Z 2009-11-26T18:14:17Z <p>I wish to create shareware software that contains a registration algorithm. I am looking for a programming language, that cannot be easily decompiled into readable code. For example, C# can be decompiled into readable code.</p> <p>What are my options?</p> <p>Edit: I'm looking for something that can be only decompiled into assembly. Delphi, for example, cannot be decompiled like C# or Java, but from what I've heard, Delphi is dying.</p> http://stackoverflow.com/questions/2134/do-sealed-classes-really-offer-performance-benefits 6 Do sealed classes really offer performance Benefits? Vaibhav 2008-08-05T12:00:28Z 2009-11-26T17:58:10Z <p>I have come across a lot of optimization tips which say that you should mark your classes as sealed to get extra performance benefits.</p> <p>I ran some tests to check the performance differential and found none. Am I doing something wrong? Am I missing the case where sealed classes will give better results?</p> <p>Has anyone run tests and seen a difference?</p> <p>Help me learn :) </p> http://stackoverflow.com/questions/1804348/when-did-you-programmed-best-in-your-programming-life -1 When did you programmed best in your programming life? [closed] DKSRathore 2009-11-26T15:32:57Z 2009-11-26T15:32:57Z <p>I am a programmer, but I don't do good programming daily? But some day I do very good which when I see that code later gives me a great feeling. I call that day as my Programming day.</p> <p>Which day is your programming day?</p> http://stackoverflow.com/questions/204476/what-should-main-return-in-c-c 9 What should main() return in C/C++? Joel 2008-10-15T12:13:48Z 2009-11-26T13:52:57Z <p>What way is the most efficient and why? int main()? void main()? return 1? return 0? </p> http://stackoverflow.com/questions/1769587/how-activex-components-are-connecting-to-devices 0 How ActiveX components are connecting to devices? AKN 2009-11-20T10:25:30Z 2009-11-26T12:39:25Z <p>Hi All, I have heard of applications that relies on ActiveX components for connecting to devices.. With the help of it, it is able to send &amp; receive messages and perform accordingly.</p> <p>What is the logic behind this setup..? How ActiveX components are designed for some electronics devices?</p> <p>Also, Is this method reliable? How they are able to upgrade those components in case of changes in the devices (in terms of additional features or facilities.. etc..)</p> <p>Please give me some idea about it..</p> http://stackoverflow.com/questions/1803079/what-is-the-advantage-of-using-initializers-for-a-constructor-in-c 1 What is the advantage of using initializers for a constructor in C++? Brandon 2009-11-26T11:14:56Z 2009-11-26T12:00:48Z <pre><code>Sphere() : theRadius(1.0) { } </code></pre> <p>Why is it preferable to have a constructor written with initializers (above) than a constructor that initializes the data members within its body (below)?</p> <pre><code>Sphere() { theRadius = 1.0; } </code></pre> http://stackoverflow.com/questions/1802782/couldnt-understand-this-method-summary-at-apache-commons-api-documentation 0 Couldn't understand this method summary at Apache commons API documentation rover12 2009-11-26T10:11:53Z 2009-11-26T10:57:09Z <p>I've found this method summary from Apace Commons APIDOC but I don't understand how to use it.</p> <pre><code>byte[] decode(String pArray) Decodes a String containing containing characters in the Base64 alphabet. </code></pre> <p>Can you give the example of the syntax. I couldn't find the syntax in APIDOCs.</p> <p>PS : this is from base64 decoding part. I understand the concept but want to use this method. I am looking for example code.</p> http://stackoverflow.com/questions/1408874/speech-recognition-programming 2 Speech Recognition & Programming Sean Ochoa 2009-09-11T03:46:28Z 2009-11-26T10:19:48Z <p>Has anyone had success with Dragon Naturally Speaking voice recognition software when it comes to programming?</p> <p>I am wondering because I think it would be a lot faster than me typing by hand, and easier on my carpol-tunnel. </p> <p>I program from day to day in visual basic 6 ide, visual studio 2008 ide + team explorer, writing emails, and chatting over Windows Live IM. </p> <p>I have a need for a command-based interface where I can bind voice commands to keystrokes, switch between spelling / saying words / saying words without spaces, etc.</p> <p>Any comments are much appreciated.</p> http://stackoverflow.com/questions/1802553/java-base64-string-in-and-out-of-a-text 0 Java - Base64 string in and out of a text rover12 2009-11-26T09:23:25Z 2009-11-26T09:40:20Z <p>I need to write string containing base64 encoded text to a text file and then later read that string back from the text file to a string variable.</p> <p>How can i do it so that there is no data loss due to encoding issues?</p> http://stackoverflow.com/questions/1801842/how-to-encode-the-ciphertext 0 how to encode the ciphertext rover12 2009-11-26T06:17:25Z 2009-11-26T06:46:27Z <p>the file abc.txt has several lines of ciphertext. i want to encode the line of ciphertext into hex encode or base64 before putting in string srr . is there any way i can do it ?</p> <pre><code>bufferedReader = new BufferedReader(new FileReader("abc.txt")); String srr = null; srr = bufferedReader.readLine() </code></pre> http://stackoverflow.com/questions/379128/how-do-you-program-differently-in-dynamic-languages 16 How do you program differently in dynamic languages? John D. Cook 2008-12-18T20:24:22Z 2009-11-26T04:55:20Z <p>How would someone who really knows how to take advantage of dynamic programming languages approach programming differently than someone working in a static language? </p> <p>I'm familiar with the whole debate over static versus dynamic typing, but that's not what I'm getting at. I'd like to discuss problem solving techniques that are practical in dynamic languages but not in static languages. </p> <p>Most of the code I've seen written in dynamic programming languages isn't very different than code written in static programming languages. As the saying goes, you can write FORTRAN in any language, and many people do. But some people use dynamic programming languages to solve problems in a way that wouldn't easily translate into, for example, C++. What are some of their techniques?</p> <p>What are some good resources that discuss how to use dynamic programming languages? Not books on language syntax or API reference, but resources on problem solving approaches that take advantage of dynamic language capabilities.</p> <p>EDIT (1/5/2009): I appreciate the answers below, but they don't seem to account for the huge increases in productivity that dynamic language advocates say they experience. </p> http://stackoverflow.com/questions/1169298/getting-contents-of-propertygrid 1 Getting Contents of PropertyGrid? Ben 2009-07-23T02:37:02Z 2009-11-26T04:31:18Z <p>Hi Guys,</p> <p>I'm new to C#, long time C++ programmer, im just wondering once initalising a propertygrid using .selectedObjects. Is there a way to get contents of the current values in the propertygrid.</p> <p>Ben</p> http://stackoverflow.com/questions/1785035/when-programming-for-an-hourly-rate-should-you-keep-the-timer-running-while-proc 3 When programming for an hourly rate, should you keep the timer running while processing code automatically in the background? Tom 2009-11-23T18:23:59Z 2009-11-26T03:32:26Z <p>This is probably subjective as it is a dilemma between what is good for you and what is good for your customer, but I as a programmer, would really like to know what is the commonly accepted way of doing this. I will keep these answers to my question in mind for future projects.</p> <p>I've personally never sold any of my work using a set rate per hour as I treat each project individually. However, if I do decide to set a price for every hour of work, would processing code (for example: compiling, downloading, uploading, auto-correcting/modifying) while walking with the dog or enjoying a cup of coffee count as "working"?</p> <p>This example assumes that you can only continue working on the project when the processing has completed. Is it fair to keep the timer running during these hours of "work"? Absolutely not? Or is there a balance to be found somewhere?</p> http://stackoverflow.com/questions/1800912/i-have-a-c-exersise-that-i-have-done 0 I have a c++ exersise that I have done... John 2009-11-26T00:27:14Z 2009-11-26T02:13:39Z <p>It's a c++ exercise, I will copy and paste it below with the code that I came up with. The code seems to be getting stuck in a loop and the texts scrolls across my screen so fast that I have no idea what to do and its hard to stop it. I have no idea where I'm going wrong so if someone could look at it for me please I'd be really greatful.</p> <p>This is the exercise</p> <p>(1) set up a league table with the number of teams (say 4 for simplicity) set up the struct league set up a dynamic array of numTeams for the league write a function to enter all the team names and set all the other variables to 0</p> <p>(2) set up a composite struct called e.g. TeamsPlayedOrNot set up an array of size numTeams you will enter each team and the corresponding information for the teams they will play and whether they have played or not. This team information will be got from the league table teams. You should try to do this automatically. Set playedOrNot to false This information will be used to decide what teams have played against each other. See part 3</p> <p>(3) Its now time to play a match!!!!!!! Look up a main team and a team they must play against. Ensure that a team hasn’t played a match. You can print out the teams that hav’nt played for the given team and the position in the inner array. You need to set playedOrNot to true.</p> <p>Collect the information required for the league match and update these details into the league for each corresponding teams. Also enter these details into the TeamsPlayedOrNot array for the second team</p> <p>(4) It is now time to sort the league table in order from the highest score to the lowest score. You can use a selection sort/bubble sort- some simple sort</p> <p>and the following link is a PasteBay link to the code that I have prepared.</p> <p><a href="http://pastebay.com/72378" rel="nofollow">http://pastebay.com/72378</a></p> <p>I hope you can help, thanks.</p>