active questions tagged language - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:13:29Z http://stackoverflow.com/feeds/tag/language http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1854465/appropriate-operators-for-assignment-semantics-in-a-non-pure-declarative-language 0 Appropriate operators for assignment semantics in a non-pure declarative language Steve 2009-12-06T05:38:23Z 2009-12-06T08:50:30Z <p>I'm designing a declarative language for defining signal networks. I want to use variable bindings to represent groups of nodes in the network. It occurred to me that there are two types of "assignment" I wish to do for these variables.</p> <p>On the one hand, a variable should represent the <em>output</em> of a specific group of signal operators. This output can then be attached to another input. This is important for directing different outputs to different places, for example:</p> <pre><code>a, b, c = (SignalA with three outputs) (SignalB a) (SignalC c) (SignalD a) </code></pre> <p>In this case there would be a SignalA with three outputs, where the first and third outputs get linked to SignalB and SignalC respectively, and SignalD also gets linked to the first output of SignalA. There is only <em>one</em> instance of SignalA.</p> <p>On the other hand, a variable should represent a common pattern of signal operations, so that it's easy to reproduce a common configuration:</p> <pre><code>a = (SignalA (SignalB)) (SignalC a) (SignalD a) </code></pre> <p>In this case, I'd like <code>a</code> to represent the composition of SignalA and SignalB, and this is <em>reproduced</em> as the input for SignalC and SignalD. There are <em>two</em> instances of SignalA here.</p> <p>So my question is, in functional/declarative programming, are there common terms for these two assignment semantics? And in my language, which one should get '=', and what would be a common operator for the other? (perhaps := ?)</p> <p>I realized of course that if each Signal really represented a <em>pure</em> function, then both of these would be the same, but in my case it's possible for side effects to occur when the signal is processed, so I need to differentiate these two cases.</p> http://stackoverflow.com/questions/1105779/how-do-you-normalize-a-finite-state-machine 7 How do you normalize a finite state machine? kunjaan 2009-07-09T18:44:50Z 2009-12-06T02:38:15Z <ol> <li>How do you find the minimal Deterministic FSM? </li> <li>Is there a way to normalize non-deterministic FSMs? </li> <li>Is there a linear time bound algorithm to find the minimal FSM for a given machine?</li> <li>Is there a way to see if two FSMs are equivalent?</li> </ol> <p>This is not a homework question. I was watching <a href="http://www.aduni.org/courses/theory/index.php?view=cw" rel="nofollow">this lecture series</a> and just got curious.</p> http://stackoverflow.com/questions/1852597/what-is-a-good-programming-language-for-music-software 1 what is a good programming language for music software? serdar karatekin 2009-12-05T16:15:32Z 2009-12-05T16:29:36Z <p>i want to write a music software that can play music, can detect pitch of the sound taken from the computer's microphone(with an algorithm that uses sound filters to filter out frequencies), and enables a good user interface. something similar to smartmusic: <a href="http://smartmusic.com" rel="nofollow">http://smartmusic.com</a></p> <p>any suggestions for what might be the most appropriate language to write this kind of software ? does anyone know what language smartmusic was coded in?</p> <p>thanks</p> http://stackoverflow.com/questions/1795520/are-there-any-good-summarizers-for-a-web-page 1 Are there any good summarizers for a web-page? alex 2009-11-25T08:52:31Z 2009-12-04T00:04:17Z <p>Suppose I give you a URL...can you analyze the words and spit out the "keywords" of that page? (besides using meta-tags)</p> <p>Are there good open-source summarizers out there? (preferably Python)</p> http://stackoverflow.com/questions/1836175/c-protected-members-accessed-via-base-class-variable 3 C# protected members accessed via base class variable Roman 2009-12-02T22:06:23Z 2009-12-03T18:27:31Z <p>Hello. It may seems rather newbie question, but can you explain why method Der.B() cannot access protected Foo via Base class variable? This looks weird to me:</p> <pre><code>public class Base { protected int Foo; } public class Der : Base { private void B(Base b) { Foo = b.Foo; } // Error: Cannot access protected member private void D(Der d) { Foo = d.Foo; } // OK } </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/1790749/jsp-el-expression-language-causing-problems-in-eclipse 0 JSP EL (Expression Language) causing problems in Eclipse jackocnr 2009-11-24T15:20:24Z 2009-12-03T16:40:31Z <p>My system: Ubuntu 9.10. Eclipse 3.5.1 with Java EE 1.2.1 (manual install - NOT from synaptic). Web Developer Tools 3.1.1</p> <p>I've recently adopted someone else's code (a Dynamic Web Project), and run into lots of errors, warnings and incorrect syntax highlighting in Eclipse. I've narrowed it down to these 4 lines of code (create a new Dynamic Web Project, and then a new JSP page, and put this in the body):</p> <pre><code>${(1&lt;2)? "" : "no"} &lt;%for (int i = 0; i &lt; 5; i++) {%&gt; &lt;div&gt;${5}&lt;/div&gt; &lt;%}%&gt; </code></pre> <p><strong>Errors / Warnings / Incorrect syntax highlighting</strong></p> <blockquote> <p>line1: yellow warning line under '&lt;': Invalid character used in text string (${(1&lt;2)? "yes" : "no"}).</p> <p>line2: red error line under 'f': Multiple annotations found at this line: 1) Syntax error, insert "Finally" to complete TryStatement. 2) Syntax error, insert "}" to complete ClassBody</p> <p>line2: red error line under ')': Syntax error on token ")", try expected after this token</p> <p>line3: yellow warning line under 'div': No end tag (/div).</p> <p>line3: yellow warning line under '&lt;' of closing div: Multiple annotations found at this line: 1) Invalid character used in text string (${5} &lt;%}%>). 2) Invalid character used in text string (${5} &lt;%}%>).</p> <p>line3: '/div' is black and purple (for scriptlet code?) instead of green for HTML code</p> <p>line4: The opening and closing scriplet tags '&lt;%' and '%>' are black instead of orange</p> </blockquote> <p>The page works as expected in a browser: you get '5' five times. If you change the empty quotes on line 1 to "yes" then save, close the file in the editor, r click it in the project explorer > validate, then re-open it: all errors / warnings / incorrect syntax highlighting disappear, except the first one (invalid character). This is incredibly irritating. Any thoughts would be greatly appreciated.</p> http://stackoverflow.com/questions/1803207/visual-studio-2008-debug-output-in-english 0 Visual Studio 2008 debug output in english? Mat 2009-11-26T11:41:48Z 2009-12-03T15:26:28Z <p>Hi!</p> <p>I've got Visual Studio 2008 Professional german version. In the settings -> Environment -> international... is only German available.</p> <p>That's fine - there's just one thing that bothers me. All the debug output is in german too, which makes it much more difficult to search the web for solutions.</p> <p>Is there any way to change the language of the debug output to english without installing another version of Visual Studio?</p> <p>Thanks!</p> http://stackoverflow.com/questions/126853/how-do-i-set-the-ui-language-in-vim 4 How do I set the UI language in vim? Daren Thomas 2008-09-24T12:30:32Z 2009-12-02T08:33:35Z <p>I saw <a href="http://www.gnegg.ch/2008/09/automatic-language-detection/" rel="nofollow">this</a> on reddit, and it reminded me of one of my vim gripes: It shows the UI in <em>German</em>. Damn you, vim! I want <em>English</em>, but since my OS is set up in German (the standard at our office), I guess vim is actually trying to be helpfull.</p> <p>What magic incantations must I perform to get vim to switch the UI language? I have tried googling on various occasions, but can't seem to find an answer (No, Google, you're my friend *pat*, *pat*, but I allready know how to change the syntax highlighting, thank you!)...</p> http://stackoverflow.com/questions/1829907/limit-user-input-through-text-i-o-68k-assembly 0 Limit user input through Text I/O (68k Assembly) Chris 2009-12-02T00:22:22Z 2009-12-02T00:29:35Z <p>I'm writing a program in Assembly (68k) and I'm using Easy68k.</p> <p>I am trying to prompt a user to input a string of characters. However, I must limit the amount of characters accepted. I was told I could do that using task #5, through text I/O, but I could really use an example Thanks!</p> http://stackoverflow.com/questions/1450237/better-to-use-multiple-language-files-or-1 2 Better to use multiple language files or 1? jasondavis 2009-09-20T03:34:00Z 2009-11-30T23:31:02Z <p>From your experience, is it better to use 1 language file or multiple smaller langauge files for each language in a PHP project using the gettext extension? I am not even sure if it is possible to use multiple files, it is hard for me to test since the server caches the language files. </p> <p>I am doing multiple languages on a social network site, so far just the signup page which is about 1 out of 200 pages to go and it has 35 text strings to translate, at this pace the language file for each language wold be really large so I was thinking maybe it would be better to do different language files for differnt pages or perhaps sections like forums section and blogs section but if it makes no difference then I would ratther not waste my time in making multiple smaller files for each language. </p> <p>I realize every situation is different and the only real answer is to test it but I am hoping to avoid that this time and just get some oppinions of people more experienced, this is my first time using gettext, thanks</p> http://stackoverflow.com/questions/1328420/the-best-way-to-make-codeigniter-website-multi-language-calling-from-lang-arrays 1 the best way to make codeigniter website multi-language. calling from lang arrays depends on lang session? artmania 2009-08-25T13:52:51Z 2009-11-30T23:16:32Z <p>Hi friends,</p> <p>I'm researching hours and hours, but I could not find any clear, efficient way to make it :/</p> <p>I have a codeigniter base website in English and I have to add a Polish language now. What is the best way to make my site in 2 language depending visitor selection?</p> <p>is there any way to create array files for each language and call them in view files depends on Session from lang selection? I don't wanna use database. </p> <p>Appreciate helps! I'm running out of deadline :/ thanks!!</p> http://stackoverflow.com/questions/1822578/any-language-counts -7 Any language counts? [closed] g.genexus 2009-11-30T21:37:39Z 2009-11-30T21:40:21Z <p>Cualquier idioma en que haga las preguntas será contestada con igual velocidad?</p> <p>O piensan que algún idioma pueda ser contestado más rápidamente?</p> <p>Quisiera preguntar sobre GeneXus.</p> <p>I want ask about GeneXus.</p> <p>g.g.</p> http://stackoverflow.com/questions/1822379/idioma-de-las-preguntas-languages-of-questions 0 Idioma de las preguntas, Languages of questions. [closed] gxsoft 2009-11-30T21:03:34Z 2009-11-30T21:05:20Z <p>Cualquier idioma en que haga las preguntas será contestada con igual velocidad?</p> <p>O piensan que algún idioma pueda ser contestado más rápidamente? </p> <p>Any language that ask questions will be answered with equal speed? </p> <p>Or you believe that any language can be answered more quickly? </p> <p>Regards, gab</p> http://stackoverflow.com/questions/1815224/asp-net-mvc-what-would-cause-a-partial-view-to-suddenly-not-be-found 0 [ASP.NET MVC] What would cause a partial view to suddenly not be found? Chad 2009-11-29T10:49:23Z 2009-11-29T11:57:36Z <p>I'm baffled. My site <strong>randomly</strong> throws the following error:</p> <pre><code>System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---&gt; System.InvalidOperationException: The partial view '/SiteUserMenu' could not be found. The following locations were searched: /SiteUserMenu at System.Web.Mvc.HtmlHelper.FindPartialView(ViewContext viewContext, String partialViewName, ViewEngineCollection viewEngineCollection) at System.Web.Mvc.HtmlHelper.RenderPartialInternal(String partialViewName, ViewDataDictionary viewData, Object model, ViewEngineCollection viewEngineCollection) at System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper htmlHelper, String partialViewName) at ASP.views_shared_site_master.__Render__control1(HtmlTextWriter __w, Control parameterContainer) </code></pre> <p>Most of the time, the site runs fine... sometimes it throws the above error, which makes no sense to me. If the partial view wasn't found, why would it not be able to find it sometimes?</p> <p>The partial view is saved in a folder named "en" under the Shared folder (inside of the views folder). Here's how I render the view:</p> <pre><code>&lt;% Html.RenderPartial(ViewData["lang"] + "/SiteUserMenu"); %&gt; </code></pre> <p>ViewData["lang"] is set in my base controller, in the OnActionExecuting action, like so:</p> <pre><code>var l = (RouteData.Values["language"] != null) ? RouteData.Values["language"].ToString() : string.Empty; if (string.IsNullOrEmpty(l)) l = "en"; if (l.Contains("en")) { IsEnglish = true; l = "en"; } else l = "ja"; ViewData["lang"] = l.ToLower(); Language = l.ToLower(); </code></pre> <p>Language and IsEnglish are properties of the base controller. The whole site uses them to maintain language selection and to make appropriate choices based on language. If language is not set, it will be set to "en". So ViewData["lang"] should always be available to my views.</p> <p><strong>Any reason why a partial view couldn't be found somtimes, while most of the time (I'm talking 90% of the time) it works fine?</strong></p> http://stackoverflow.com/questions/1797640/disadvantages-of-first-class-functions 3 Disadvantages of First-class functions Learner 2009-11-25T15:21:20Z 2009-11-28T15:56:09Z <p>Are there any disadvantages to having <a href="http://en.wikipedia.org/wiki/First-class%5Ffunction" rel="nofollow">first class functions</a> in a language? </p> <p>Joel in this <a href="http://www.joelonsoftware.com/items/2006/08/01.html" rel="nofollow">entry</a> says</p> <pre><code>"Object-oriented programming languages aren't completely convinced that you should be allowed to do anything with functions." </code></pre> <p>I might be naïve here, but why don’t all languages support first class functions if there aren’t much issues </p> http://stackoverflow.com/questions/1805405/find-vista-language-using-wix 1 Find Vista Language using WIX Nocturnal 2009-11-26T19:51:11Z 2009-11-26T21:32:14Z <p>I am working on an installer which will be installed on multiple versions of XP/Vista with different languages. In the installer, I need to find out the language of the OS installed. I know how to get the OS version by using "<strong>VersionNT</strong>" and/or "<strong>VersionNT64</strong>", is there any similar way to get <strong>OS language</strong> also?</p> <p>I need to add different registry entries and some files depending on language.</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/1803813/want-to-remove-frame-of-google-translator 0 Want to Remove Frame of google translator Neerav Chauhan 2009-11-26T13:57:45Z 2009-11-26T13:57:45Z <p>I want to remove top frame using google Language Translation link ( <a href="http://translate.google.com/translate?hl=en&amp;ie=UTF-8&amp;sl=es&amp;tl=en&amp;u=http%3A//www.yahoo.com/" rel="nofollow">http://translate.google.com/translate?hl=en&amp;ie=UTF-8&amp;sl=es&amp;tl=en&amp;u=http%3A//www.yahoo.com/</a> ).... after inserting site name and language option (Translate from:.. Translate INTO:)</p> http://stackoverflow.com/questions/1803152/detect-the-language-of-input 1 detect the language of input? assaqqaf 2009-11-26T11:31:05Z 2009-11-26T12:13:07Z <p>I have an input in my form, I wanna find a solution to determine which language is typed in..( is it English, french, arabic, or Hebrew ..)...</p> <p>in PHP script, also I use UTF-8 encode.</p> http://stackoverflow.com/questions/1741044/loading-data-from-a-flat-file-to-table-using-informatica-having-both-english-and 0 loading data from a flat file to table using informatica, having both english and foreign language characters like chinese Manish 2009-11-16T09:28:03Z 2009-11-26T08:33:38Z <p>I am loading data from a flat file to table using informatica, the file has both english and foreign language characters like chinese, and others. The foreign language characters are not getting displayed properly after loading. How can this problem be solved ? I could solve it by using code page UTF - 16 Encoding of Unicode Platform Endian, earlier i was using different code page UTF-8.</p> http://stackoverflow.com/questions/375542/are-there-any-programming-languages-targeting-php-besides-haxe 4 Are there any programming languages targeting PHP, besides haXe? stesch 2008-12-17T18:28:21Z 2009-11-23T17:52:21Z <p>PHP doesn't get much love but is still a winner at easy deployment (for cheap hosting).</p> <p>Are there any programming languages (besides <a href="http://haxe.org/" rel="nofollow">haXe</a>) that target PHP? Writing applications in this language and then translating it into PHP, like some languages target C as an intermediate language?</p> <ul> <li>The <a href="http://en.wikipedia.org/wiki/Scheme_(programming_language)" rel="nofollow">Scheme</a> implementation <a href="http://www.call-with-current-continuation.org/" rel="nofollow">Chicken</a> compiles into <a href="http://en.wikipedia.org/wiki/C_programming_language" rel="nofollow">C</a>. </li> <li><a href="http://macroexpand.org/doku.php/txl:projects:java2tcl:start" rel="nofollow">XOTcl</a> converts <a href="http://en.wikipedia.org/wiki/Java_(programming_language)" rel="nofollow">Java</a> code into <a href="http://www.tcl.tk/" rel="nofollow">Tcl</a> code</li> <li><a href="http://tinyurl.com/5dgu6p" rel="nofollow">LINJ</a> was(?) a tool to convert Lisp into nice looking Java code</li> <li>…</li> </ul> <p>+ a lot of ways to produce <a href="http://en.wikipedia.org/wiki/Javascript" rel="nofollow">JavaScript</a> without touching JavaScript.</p> http://stackoverflow.com/questions/1779924/is-there-a-high-level-language-with-an-interpreter-dynamic-compiler-and-static-c 1 Is there a high level language with an interpreter, dynamic compiler and static compiler(e.g. like the c++ compiler) along with a multimedia library? Soup 2009-11-22T20:39:29Z 2009-11-22T22:14:14Z <p>The interpreter and dynamic compiler would be for testing/prototyping and when im done testing i use the static compiler.</p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes 79 Computer Language puns and jokes Mark Harrison 2008-08-20T07:27:48Z 2009-11-22T17:42:21Z <p>I'm looking for some funny jokes and puns that occur in computer languages. I'll post an oldie to kick things off... What are some others?</p> <p>update: Especially looking for code-related jokes... the ones that only make sense to programmers reading code. </p> http://stackoverflow.com/questions/1773687/google-translate-set-default-language 0 Google Translate set default language tdurham 2009-11-20T22:44:34Z 2009-11-21T03:58:42Z <p>Maybe this has an obvious solution that I'm overlooking, but I can't seem to find the correct parameter to put in to make this happen. Using the Google Translate widget on a site, I need to set the default language that the user sees when entering the site, even though the site is english.</p> <p>function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: 'en' }, 'google_translate_element'); }</p> <p>I've tried adding: defaultLanguage: 'fr' and tried: targetLanguage: 'fr'</p> <p>I did find some nice jQuery solutions, but didn't want to bypass this if it was an easy fix.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/10936/projects-for-learning-a-new-language 14 "Projects" for learning a new language Thomas Owens 2008-08-14T12:42:14Z 2009-11-20T21:03:37Z <p>When you are learning a new programming language, what are some good projects that can be done across a spectrum of languages?</p> <p>I'm familiar with <a href="http://projecteuler.net/" rel="nofollow">programming puzzles</a> and <a href="http://beta.stackoverflow.com/questions/10583/what-do-you-do-when-youre-learning-a-new-programming-language" rel="nofollow">read the other related question</a>, but as I think about how I learn a language, I go through stages. First, I learn the basic syntax, then I learn the more advanced (and often language specific features), finally I learn how to manage a project in that language. Programming puzzles are OK for learning the basic syntax and, from my experience, very good for learning the more advanced features of the language, I'm looking for ideas that go from the very basics of the language to the most advanced aspects.</p> http://stackoverflow.com/questions/1770982/looking-for-perfect-programing-language-framework -4 Looking for perfect Programing Language/Framework [closed] sebtm 2009-11-20T14:58:44Z 2009-11-20T15:01:12Z <p>I'm looking for a programming language/framework with these features:</p> <ul> <li>no-waste-your-time (no C, C++, ecc.)</li> <li>don-t-repeat-your-self (no C, C++ that repeat same code twice in .h and .c/.cpp. Computers should save time!)</li> <li>less-code (no C, C++, ecc.)</li> <li>elegant-sintax</li> <li>real-compilation (no Java, C#, VB.net, Ruby, Python, Perl)</li> <li>no-runtime (no Java, .NET)</li> <li>write-once-compile-many</li> <li>batteries-included (like Python, Ruby)</li> <li>widgets-respect-native-os-look</li> <li>object-oriented (like C#)</li> <li>fast-very-fast (like C, C++)</li> <li>decent-debugger (no D)</li> <li>wide-community-supported (like Python, Ruby, C#)</li> <li>open-source</li> </ul> <p>Probably on this planet does not exist yet ...</p> <p>Humans do not yet have the skills to write a language with these qualities.</p> http://stackoverflow.com/questions/1769622/whats-your-preferred-method-of-learning-a-new-language 1 What’s your preferred method of learning a new language? [closed] LittleBoy 2009-11-20T10:33:22Z 2009-11-20T12:09:43Z <blockquote> <p><strong>Possible Duplicates:</strong><br> <a href="http://stackoverflow.com/questions/468753/how-do-you-start-learning-a-new-programming-language">How do you start learning a new programming language?</a><br> <a href="http://stackoverflow.com/questions/385573/what-languages-have-you-learned-and-how">What language(s) have you learned, and how?</a> </p> </blockquote> <p>When learning a new programming language, what do you do? </p> http://stackoverflow.com/questions/1762869/c-syntactic-errors 0 [C] Syntactic errors Tool 2009-11-19T12:11:37Z 2009-11-19T12:29:26Z <p>I'm writing code for the exercise 1-24, K&amp;R2, which asks to write a basic syntactic debugger.</p> <p>I made a parser with states normal, dquote, squote etc...</p> <p>So I'm wondering if a code snippet like</p> <pre><code>/" text " </code></pre> <p>is allowed in the code? Should I report this as an error? (The problem is my parser goes into comment_entry state after <code>/</code> and ignores the <code>"</code>.)</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages 35 Factorial Algorithms in different languages Brad Gilbert 2008-08-23T03:46:32Z 2009-11-18T23:24:43Z <p>I want to see all the different ways you can come up with, for a factorial subroutine, or program. The hope is that anyone can come here and see if they might want to learn a new language.</p> <h2>Ideas:</h2> <ul> <li>Procedural</li> <li>Functional</li> <li>Object Oriented</li> <li>One liners</li> <li>Obfuscated</li> <li>Oddball</li> <li>Bad Code</li> <li><a href="http://en.wikipedia.org/wiki/Polyglot_%28computing%29" rel="nofollow">Polyglot</a></li> </ul> <p>Basically I want to see an example, of different ways of writing an algorithm, and what they would look like in different languages.</p> <p>Please limit it to one example per entry. I will allow you to have more than one example per answer, if you are trying to highlight a specific style, language, or just a well thought out idea that lends itself to being in one post.</p> <p>The only real requirement is it must find the factorial of a given argument, in all languages represented.</p> <h1>Be Creative!</h1> <h2>Recommended Guideline:</h2> <pre> # Language Name: Optional Style type - Optional bullet points Code Goes Here Other informational text goes here </pre> <p>I will ocasionally go along and edit any answer that does not have decent formatting.</p> http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language 16 Is there a human readable programming language? Scuffia 2008-10-14T20:51:13Z 2009-11-18T23:18:20Z <p>I mean, is there a coded language with human style coding? For example:</p> <pre><code>Create an object called MyVar and initialize it to 10; Take MyVar and call MyMethod() with parameters. . . </code></pre> <p>I know it's not so useful, but it can be interesting to create such a grammar.</p>