active questions tagged general - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T21:14:38Z http://stackoverflow.com/feeds/tag/general http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1788971/toolbar-scanning-my-viewing-history 0 Toolbar scanning my viewing history? [closed] Nai 2009-11-24T09:34:58Z 2009-12-02T20:06:47Z <p>I just downloaded this toolbar <a href="http://www.onecause.com/" rel="nofollow">here</a>. There's an option that allows you to contribute X% to a charity of your choosing from the list of merchants they are working with. </p> <p>One of the features on this tool bar is that is has a coupon/voucher button that appears when I'm surfing certain merchant sites. Now this is great and all but my question is: how does it know what website I am on? Is it reading my cookies? Is this even legal?</p> <p>I am working as a junior DBA so I don't really know what goes on behind the hood so it would be great if someone could shed some light on this!</p> http://stackoverflow.com/questions/432167/common-truisms-that-need-correcting-the-most 16 Common "Truisms" that need correcting the most. Charles Bretana 2009-01-11T02:00:21Z 2009-12-02T19:47:47Z <p>In addition to his "I never met a man I didn't like.", Will Rogers had another great little ditty I've always remembered. It went </p> <p>"It's not what you don't know that'll hurt you, it's what you do know that ain't so."</p> <p>We all know or subscribe to, many IT "truisms" that mostly, have a strong basis in fact, in something in our professional careers, or something we learned from others, lessons learned the hard way by ourselves, or by others who came before us. </p> <p>Unfortuntely, as these truisms spread throughout the community, the details of why they came about, and/or the caveats that affect when they are actually true and when they don't matter, tend to not spread along with them... </p> <p>We all have a tendency to look for, and latch on to, small "rules" or principles that we can use to avoid doing a complete exhaustive analysis for every decision we make. But even though they are correct 90% of the time, when we misapply them in the other 10%, we pay a penalty we might avoid if we also understood the details behind them.</p> <p>For example, when User defined functions were first introduced in SQL Server, within a year or so it became "common knowledge" that this feature had extremely bad performance (because it required a re-compilation for each time it ran), and be avoided. This "trusim" still increases many database developers' aversion to using UDFs, even though Microsoft's introduction of InLine UDFs, which do not suffer from this issue at all, mitigates this issue substantially. In recent years I have run into numerous DBAs who still believe you should "never" use UDFs, because of this.</p> <p>What other common not-so-"trusims" do you know of, that many developers believe in, that are not quite as universally true as is commonly understood, and which the developer community would benefit from being better educated about? </p> <ul> <li>Please include why it was "true" to start off with, and why/when it's not true... </li> </ul> <p>EDIT: Please try to limit responses to issues that are technical, where the "common" application of a "rule or principle" is in fact correct most of the time, or was correct back when it was first elucidated, but when, in the edge cases, or because of not understanding the principle thoroughly, or because technology has changed since it first spread, applying the rule today, without understanding the details behind the rule, can easily backfire or cause the opposite effect from what is intended. </p> http://stackoverflow.com/questions/1711335/how-do-you-normally-make-a-program-look-beautiful 7 How do you normally make a program look beautiful? Papuccino1 2009-11-10T21:28:33Z 2009-12-02T16:01:06Z <p>How can I make an Application look nice and not like an amateur pulled it together?</p> <p>I mean graphic-wise.</p> <p>Is there some sort of book you can read regarding beautiful program layouts, etc?</p> <p>I put this in Community Wiki so please feel free to leave your opinions that way we can all learn. :D</p> <p>Edit: Oh my god. I completely forgot to mention what <strong>kind</strong> of program. I mean desktop applications. Not web applications. :D</p> http://stackoverflow.com/questions/1786231/programming-languages-that-allow-unicode-in-the-names-of-functions-variables-clas 2 Programming languages that allow Unicode in the names of functions/variables/classes? psihodelia 2009-11-23T21:45:37Z 2009-12-02T11:43:24Z <p>What programming languages allow you to define names of variables, classes and functions using Unicode symbols?</p> http://stackoverflow.com/questions/1826159/swapping-two-variable-value-without-using-3rd-variable 3 Swapping two variable value without using 3rd variable Muhammad Akhtar 2009-12-01T13:22:21Z 2009-12-02T10:04:00Z <p>One of the very tricky question asked in an interview...</p> <p>we need to swap the values of two variables like a=10 and b=15</p> <p>Generaly to swap two variables values, we need 3rd variable like..</p> <pre><code>temp=a a=b b=temp </code></pre> <p>Now the requirement is, swaping value of two variable values without using 3rd variable?</p> <p>How can be accopmplish this?</p> http://stackoverflow.com/questions/1825198/2009-in-retrospect 3 2009 in retrospect [closed] Vijay Mathew 2009-12-01T10:02:14Z 2009-12-01T10:11:26Z <p>What were the major innovations, contributions of 2009 with respect to Programming languages? How the programming landscape has changed/evolved during this year? What can we look forward for in 2010?</p> http://stackoverflow.com/questions/459016/ui-databinding-alternatives-and-future 6 UI Databinding: alternatives and future pointernil 2009-01-19T20:15:03Z 2009-12-01T00:06:35Z <p>UI Databinding aka transfer of information/data from the biz-layer/datamodel of an application to the UI and from the UI back to the datamodel, seams to be ignored a little by language and framework designers. </p> <p>Almost all information processed by software systems today has to be presented at some point of the processing chain to human users, still the support we get from our programming systems to present info to users mostly consists of hard to maintain transfer methods, some systems using reflection with no compiletime verification ("propertychanged" anyone?), or propritiary code generators.</p> <p>I mean Erik Meijer, Anders Hejlsberg and their teams f.e. have put huge efforts to solve the impedance mismatch between DBs, XMLs and the code... but left out UI mostly. (well yes .net has databinding, but try to use it and then let's talk about a real solution) The point is: what is the rational behind NOT treating databinding specially as first class feature of a language f.e? Why is there only so limited (or none) support for MVC/MVP patterns in our tools today?</p> <p>Please provide comments, hints and pointers to alternative concepts available and maybe even work in progress in this field. Is there even any new creative and fresh ideas? Any helpful frameworks, language concepts supporting databinding, and maybe tools which help you to handle databinding in your apps or systems?</p> http://stackoverflow.com/questions/1819953/javascript-disabled-short-questions 1 Javascript disabled, short questions... camran 2009-11-30T13:53:37Z 2009-11-30T14:07:00Z <p>Just some short Q regarding javascript and websites.</p> <p>1- By javascript enabled, does it mean to have 'sun java' installed and enabled in the browser settings? Or does every browser have javascript enabled always?</p> <p>2- If javascript is disabled, my website for example wouldn't work at all, so what does major developers do in these situations, if the only way to achieve their goal is to use javascript?</p> <p>3- Is ajax also disabled if javascript is disabled? Also, same for Jquery because its a javascript library ?</p> <p>Thanks guys</p> http://stackoverflow.com/questions/1816392/how-to-search-in-google 0 how to search in google ? [closed] noob 2009-11-29T18:51:34Z 2009-11-29T18:52:44Z <p>hello all </p> <p>how can i search for specific data in footer of page </p> <p>example </p> <blockquote> <p>powered by mykeyword</p> </blockquote> <p>i want to get all urls that have above footer.</p> <p>and one more thing ,is it possible to search in source of page </p> <p>exaple i want to search <code>&lt;p&gt;my key word &lt;/p&gt;</code></p> <p>thanks in advance </p> http://stackoverflow.com/questions/165038/which-terminal-emulator-do-you-use-why 3 Which terminal emulator do you use? Why? jmissao 2008-10-02T23:29:38Z 2009-11-29T04:37:18Z <p>I use Rxvt-unicode, only because I don't use a DE (just xmonad). It works fine with what I need (screen, irssi and vim), and it is fairly light. Previously I used eterm, but I found it a bit heavy.</p> <p>So, What's your preference when it comes to terminal emulators? Gnome-terminal? xterm? Why?</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/1803491/how-can-i-ensure-that-the-question-that-i-ask-is-read-by-the-concerned-expert-in 0 How can I ensure that the question that I ask is read by the concerned expert in STACKOVERFLOW [closed] AKN 2009-11-26T12:46:50Z 2009-11-26T12:46:50Z <p>This site gives me an good opportunity to clarify my doubts.</p> <p>But how can I ensure that the expertise in the field has read my question.. So I can get relevant answers if they happen to come across my question... :)</p> <p>Does it merely depends on luck.. or Is there a way for it here in Stackoverflow..</p> <p>Please let me know.. Thanks</p> http://stackoverflow.com/questions/1794546/most-useful-additional-python-libraries -2 Most useful additional Python libraries? [closed] psihodelia 2009-11-25T04:08:31Z 2009-11-25T05:47:00Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1764878/favorite-3rd-party-python-libraries">Favorite 3rd-party Python Libraries?</a> </p> </blockquote> <p>What are some of the most useful Python libraries not included into the standard library?</p> http://stackoverflow.com/questions/1777011/which-programming-language-has-very-short-context-free-grammar-in-its-formal-spec 2 Which programming language has very short context-free Grammar in its formal specification? psihodelia 2009-11-21T22:32:01Z 2009-11-22T00:23:53Z <p>What programming language has short and beautiful grammars (in EBNF)?</p> <p>Some languages are easer to be parsed. Some time ago I have created a simple VHDL parser, but it was very slow. Not because it is implemented completely in Python, but because VHDL grammar (in EBNF) is huge. The EBNF of Python is beautiful but it is not very short.</p> <p>I suggest that many functional programming languages like LISP have short simple grammars, but I am interested in a more popular simple imperative language like C or Bash.</p> http://stackoverflow.com/questions/1775174/which-podcast-do-you-listen-to-technology-or-science-related -1 Which podcast do you listen to? (Technology or Science related) [closed] chutsu 2009-11-21T11:07:17Z 2009-11-21T11:09:56Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there">What good technology podcasts are out there?</a> </p> </blockquote> <p>Just wondering what podcasts you listen to... Apart from Digg, and stackoverflow!</p> http://stackoverflow.com/questions/577516/4d-is-it-any-good 1 4D - is it any good? Pies 2009-02-23T12:44:29Z 2009-11-21T02:27:58Z <p>Recently I found out that the company a friend of mine co-owns uses 4D, which I've never heard of before. They swear by it, but they're non-technical and what they say about it sounds like memorized marketing blurb. Unfortunately the <a href="http://www.4d.com/" rel="nofollow">4D website</a> also seems devoid of any actual information and is filled with words like "comprehensive", "solution", "platform" and "integrated" instead.</p> <p>Since that thing is rather expensive and uses a custom language that I don't have much inclination to learn just for one project, I'm cautious about it and I'm wondering if anyone had any experience with it? Would you recommend it? What is it good for? What competitive advantage would I gain by learning it as a programmer, or using it as a company?</p> http://stackoverflow.com/questions/1761662/easiest-way-to-remove-all-whitespace-from-a-code-file 2 Easiest way to remove all whitespace from a code file? Click Upvote 2009-11-19T08:05:29Z 2009-11-19T11:09:48Z <p>So I'm participating in one of the <a href="http://codegolf.com" rel="nofollow">Code Golf</a> competitions where the smaller your file size is, the better.</p> <p>Rather than manually removing all whitespace etc, I'm looking for a program or website which will take a file, remove all whitespace (including new lines) and return a compact version of the file. any ideas?</p> http://stackoverflow.com/questions/1759227/installing-a-cab-file-in-vista-home 0 Installing a .Cab file in Vista Home [closed] Dwayne 2009-11-18T21:32:44Z 2009-11-18T21:35:41Z <p>Im having a bit of a problem installing a .CAB. Does anyone here know how to?</p> http://stackoverflow.com/questions/1751792/why-were-cubicles-so-despised 5 Why Were Cubicles So Despised? [closed] daveslab 2009-11-17T21:07:11Z 2009-11-17T21:18:40Z <p>I'm a 23-year old developer whose just starting out on his career. I've only been writing code professionally full time for about a year. At the two places I have worked and every single software/IT company I have ever seen, the standard desk configuration is a bunch of them close together in an open space. I probably don't need to describe this because if you're at StackOverflow, you know what I'm talking about.</p> <p>I, like Joel, despise this setup very much. In my current setup, I have people passing behind me every one or two minutes and if I turn my head from left to right I count about 18 monitors in my field of vision. I long for the days of having a tiny space, with at least 3 walls, and an iota of privacy. </p> <p>Which makes me wonder: why were cubicles so despised? Was it because we didn't have pervasive methods of instant communication? Was it the size of them? The smell? Or did we just not see the future of programmer grazing ranges yet and thought the situation was the worst it could be?</p> <p>What is it about office culture that makes cubicles the default office hellhole?</p> http://stackoverflow.com/questions/1750415/how-to-keep-track-of-time 0 How to keep track of time. [closed] The Digital Ninja 2009-11-17T17:23:04Z 2009-11-17T17:23:04Z <p>This is just a general question. I started working from home a few months ago and i find the hardest part is trying to keep track of what I'm working on and how much time was spent. I do both programming and network admin work. Is there any software packages (free) out there that some of you use? </p> http://stackoverflow.com/questions/1722373/how-can-you-be-a-quality-programmer-in-a-programming-team 18 How can you be a quality programmer in a programming team? xxmrlnxx 2009-11-12T14:01:05Z 2009-11-17T15:14:04Z <p>How can you be a quality programmer in a programming team? Despite office politics and social indifferences and unrealistic timeframes.</p> http://stackoverflow.com/questions/1737889/site-structure-in-php-with-examples-please 0 Site structure in PHP, with examples...Please unknown (yahoo) 2009-11-15T15:47:36Z 2009-11-15T16:12:34Z <p>I've been reading about site structure in PHP, but whenever I read or ask questions about site structure, I get something like this</p> <pre><code> /application /config application.ini /controllers /views /models bootstrap.php /var /log /tests /controllers /views /models /libraries /mylib /myframework /web_root /media /js /css index.php .htaccess </code></pre> <p>Now this is a good answer, but I still dont fully comprehend. It would help a lot more if I could get some examples of good site structures with actual files in place (and what they do), or at least with explanations on what each folder is meant to hold explicitly.</p> <p>Thank you</p> http://stackoverflow.com/questions/1735806/how-to-get-database-of-all-peoples-names-or-at-least-english-common-ones 1 how to get database of all people's names (or at least English common ones)? Tam 2009-11-14T22:23:42Z 2009-11-14T22:36:42Z <p>Hi,</p> <p>I'm designing an application that need to extract people's names from short texts.</p> <p>What is the best way to do that? is there a database of names where I can test to know where is the name? the fact that the text is short it might not be as intensive in terms of processing needs.</p> <p>Any ideas?</p> <p>Thanks,</p> <p>Tam</p> http://stackoverflow.com/questions/1734015/what-to-do-when-co-workers-code-badly 3 What to do when co-workers code badly? Tim 2009-11-14T11:46:28Z 2009-11-14T18:35:48Z <p>I am working part time in a small software company to raise some money. Without sounding arrogant: some of my co-workers I am working with in a team are writing horrible code. Both syntax- and algorithmic wise. Sure there are moments in the shadow of a deadline where things get a bit hacky but they do it all the time. Every time I have to read code like this it hurts. I want to be able to stand behind the product we are developing. But I can't do that with the knowledge of crap under the hood. Besides when their code surprisingly results in failures I'm the assignee of those issues. So I guess the project manager thinks it's my fault (ok maybe my ego speaking here just a tiny bit, too).</p> <p><strong>So to finally get to my question:</strong> What should I do? I am just the part time college student at the bottom end of the hierachy. Am I "<em>allowed</em>" to stand up and tell them their stuff just sucks? Or should I just keep silently fixing their code if I have enough time? In general the job is pretty great. I doubt I could get that much responsibility and involvement in another student job (it is badly paid though).</p> http://stackoverflow.com/questions/1725926/creating-an-application-to-move-files-around-am-i-looking-for-a-service-bus 2 Creating an application to move files around ... am I looking for a service bus? Boden 2009-11-12T22:41:08Z 2009-11-12T23:58:05Z <p>We do a lot of document scanning, and I find myself now with a bunch of simple scripts that watch incoming folders for files, and then route the files to their final destination (i.e. they might end up in a Sharepoint library, or be encrypted and stored in an archive folder, etc).</p> <p>I'm considering developing a rather simple application to consolidate this effort. Essentially it could be configured with inputs (i.e. folders to watch, mailboxes to check, etc), and then one or more actions that could be performed per input (i.e. copy to webdav folder, send to web service, send via email, etc).</p> <p>Now this isn't a terribly difficult application to whip out, but I'm curious... I heard a podcast or something about "Mule", I believe, which is an ESB. And I don't know much about service buses, but it sounds to me like what I'm considering doing is at least similar. Is it?</p> <p>Is there a lightweight framework / library / application that I can use to accomplish my task without a gigantic learning curve? Preferably Java-based, but C#/.Net isn't out of the question.</p> <p>(P.S. I considered this for ServerFault, but it seems appropriate here...)</p> http://stackoverflow.com/questions/1716948/initialize-object-properties-in-one-line-of-code 1 Initialize Object Properties in One Line of Code regex 2009-11-11T17:52:28Z 2009-11-11T19:22:21Z <h3>Question:</h3> <p>Hello All,</p> <p>Sorry that this is kind of a noob question. I just don't know how to word this process, so I'm not sure what to Google for. I'll put some C# code below that should explain what I'm trying to do. I just don't know how to do it in VB. Additionally, for future ref, if you could tell me what this process is called, it would be helpful to know. Thanks in advance for your help.</p> <pre><code>// Here is a simple class public class FullName { public string First { get; set; } public char MiddleInintial { get; set; } public string Last { get; set; } public FullName() { } } /* code snipped */ // in code below i set a variable equal to a new FullName // and set the values in the same line of code FullName fn = new FullName() { First = "John", MiddleInitial = 'J', Last = "Doe" }; Console.Write(fn.First); // prints "John" to console </code></pre> <p>As I mentioned earlier, I am drawing blanks on what to search for so sorry if this question is a repeat. I too hate reruns :) So, please link me somewhere else if you find something. <hr /></p> <h3>Solution:</h3> <p>So thanks to the help of one of our members, I have found that the keyword is <code>With</code>.</p> <pre><code>Dim fn As New FullName() With { .First = "John", .MiddleInitial = "J"c, .Last = "Doe" } Console.Write(fn.First) ' prints "John" to console </code></pre> http://stackoverflow.com/questions/1694894/multi-tier-in-php-the-right-way 3 Multi-Tier in PHP..the right way?? unknown (yahoo) 2009-11-08T00:21:04Z 2009-11-09T07:15:36Z <p>I have a specific question, that could use a general answer... When building Multi-Tier applications in PHP, does everything have to be done in the Business Logic layer, or can any layer do work... Example, Lets say I'm building an application that shows user information (from the database) on the presentation layer. Should I use the business layer to simply pass the data to the presentation layer, or just get the information from the database directly within the presentation layer. Should the presentation layer be used JUST for presenting the data, the accessor layer used JUST to get the data, and all the work be done in the business layer? </p> <p>Also, speaking of the different layers, is it best to do things procedurally, or using OOP ( like using includes to show the templates vs using a class to include the templates, validating data procedurally vs using a class, or functions vs classes for getting the data from the database, etc. )</p> <p>As you can see, I'm trying to understand how things work, and the best way to do things. That being said, if you have any advice, or any general tips on the subject... please leave them..</p> <p>Thanks</p> http://stackoverflow.com/questions/1695507/my-computer-is-infected-with-spyware-and-i-spent-8-hours-and-i-still-cant-fix-it 0 My computer is infected with spyware and i spent 8 hours and i still can't fix it [closed] CodingJoy 2009-11-08T05:46:30Z 2009-11-08T05:48:51Z <p>i try to do a google search and than i click on a line and i am redirected to this site or something similar. <a href="http://www.allthebrands.com/search-results.aspx?q=remover+spyware" rel="nofollow">http://www.allthebrands.com/search-results.aspx?q=remover+spyware</a></p> <p>in the past I when I ran into these things I have been able to install spywareblaster and other tools to solve the problems in dire situations I have used Hijack this from majorgeeks.com and been able to solve the problem and move on. today I am clueless I have spent over 8 hours trying to solve this problem. it opens up a Internet Explorer. I went to my Program/Features and wanted to Uninstall Internet Explorer and it didn't show up on my list of programs. Then i went ahead and INSTALLED IE 8. STILL NO SOLUTION IN F*<strong>***</strong> SIGHT there are a lot of bright minds here. please help</p> http://stackoverflow.com/questions/1686074/should-people-only-having-management-background-be-heading-software-engineering-p 1 Should people only having management background be heading software engineering projects / departments Bootcamp 2009-11-06T07:55:44Z 2009-11-07T04:37:16Z <p>Do you guys think that people with not technical background or people who have been into technical organizations but have not passed through technical ranks should be promoted and made heads of the technical project or teams. For example a person who has never been a software developer or a senior software developer should be made a project manger for a software project just because he has a management degree ! I have experiences where i have seen that software projects are being badly handled by the top tier just because they are not able to understand which things should be given priority and which not. For example they don't understand that they cannot pull the developer into 2 hour meetings everyday as he has to work and get the development work done.</p> <p>Also what is it with the managers that they like doing meeting ? Nothing comes out of these meetings and extra time is wasted. If the project manager is a person with strong software background, he will never have to call a status meeting. He would actually know what all of his team members are doing and where they will have problems, just because he has been through the same phase once in his career. </p> <p>Is this not an irony that people who don't know what baking is are made in charge for delivering a world class cake !! </p> <p>What do you guys think ?</p> http://stackoverflow.com/questions/1689485/what-is-the-funniest-question-asked-to-you-by-an-interviewer 0 What is the funniest question asked to you by an interviewer? [closed] Jebli 2009-11-06T18:41:01Z 2009-11-06T19:21:31Z <p>What is the funniest programming question asked to you by an interviewer when you were applying for a developer position?</p>