active questions tagged converter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:41:19Z http://stackoverflow.com/feeds/tag/converter http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1842487/ppt-pptx-converter-to-html-or-other-format 1 ppt/pptx converter to html or other format Andres 2009-12-03T19:57:29Z 2009-12-03T21:52:50Z <p>I'm just wandering if anybody know an open source project devoted to convert ppt (or pptx) file to an easy to render format - html, jpg or other picture type, pdf...</p> <p>I've developed some code to start reading an office file (I'm talking about the Compound Binary File) and now I've started to crack on the internal ppt streams like Picture and PowerPoint document. But each stream, as many of you know, it's huge, and write code to render it is a massive job. So, if anybody knows an Open Source project that reads and export it to an easier file to render, (must be in C++ or C - could be in C#, java since it doesn't use any API/lib facility)</p> <p>Please, don't ask me why I'm doing this :-).</p> <p>I really appreciate. </p> http://stackoverflow.com/questions/1341719/custom-javascriptconverter-for-datetime 0 Custom JavaScriptConverter for DateTime ?? nickfranceschina 2009-08-27T15:10:09Z 2009-12-02T03:24:42Z <p>I have an object, it has a DateTime property... I want to pass that object from an .ashx handler back to a webpage via AJAX/JSON... I don't want to use 3rd party controls... </p> <p>when I do this:</p> <pre><code> new JavaScriptSerializer().Serialize(DateTime.Now); </code></pre> <p>I get this:</p> <pre><code> "\/Date(1251385232334)\/" </code></pre> <p>but I want "8/26/2009" (nevermind localization... my app is very localized, so my date formatting assumptions are not up for debate in this question). If I make/register a custom converter</p> <pre><code>public class DateTimeConverter : JavaScriptConverter { public override IEnumerable&lt;Type&gt; SupportedTypes { get { return new List&lt;Type&gt;() { typeof(DateTime), typeof(DateTime?) }; } } public override IDictionary&lt;string, object&gt; Serialize(object obj, JavaScriptSerializer serializer) { Dictionary&lt;string, object&gt; result = new Dictionary&lt;string, object&gt;(); if (obj == null) return result; result["DateTime"] = ((DateTime)obj).ToShortDateString(); return result; } public override object Deserialize(IDictionary&lt;string, object&gt; dictionary, Type type, JavaScriptSerializer serializer) { if (dictionary.ContainsKey("DateTime")) return new DateTime(long.Parse(dictionary["DateTime"].ToString()), DateTimeKind.Unspecified); return null; } } </code></pre> <p>then I get this result (since the return value of the custom serialize method is a dictionary):</p> <pre><code>{"DateTime":"8/27/2009"} </code></pre> <p>so now in my Javascript, instead of doing</p> <pre><code>somePerson.Birthday </code></pre> <p>I have to do</p> <pre><code>somePerson.Birthday.DateTime or somePerson.Birthday["DateTime"] </code></pre> <p>how can I make the custom converter return a direct string so that I can have clean Javascript?</p> http://stackoverflow.com/questions/613721/how-to-convert-a-pdf-to-doc 0 How to convert a pdf to doc? Big Boss 2009-03-05T05:59:10Z 2009-11-29T18:00:03Z <p>I have found many solutions on googling to convert pdf to doc, but none of them retain the same formatting as that of the pdf. Is there any solution to retain the exact formatting of the pdf, while converting to doc.</p> http://stackoverflow.com/questions/967262/is-there-a-good-haml-erb-html-converter 1 Is there a good HAML -> ERB/HTML converter? Karlas Furecz 2009-06-08T22:08:16Z 2009-11-27T19:38:55Z <p>I'm looking for a reliable way to convert a HAML template to an equivalent ERB/HTML template?</p> <p>Has anyone come across one?</p> http://stackoverflow.com/questions/1748812/j2me-to-winmo-converters 0 J2ME to WinMo Converters Jeff 2009-11-17T13:19:06Z 2009-11-17T14:01:33Z <p>I am interested in a J2ME to native WinMo converter (6.x, optionally 5.x). I have a working LWUIT application, using the following J2ME APIS:</p> <p>MIDP 2.0, CLDC 1.1, Optional (=runs also if JSR not supported, dynamic discovery): JSR 179 Location Personal Information Management (75) FileConnection (75) Wireless Messaging API (120), Mobile Media API (JSR-135)</p> <p>Has anyone experience with a converter, like <a href="http://innaworks.com" rel="nofollow">http://innaworks.com</a> for example, how they compare to potential competitiors, things that work, things that don't etc?</p> <p>Thanks guys!</p> http://stackoverflow.com/questions/1726871/how-to-convert-ampamp3737-in-html-page-to-normal-string 1 How to Convert &amp;&amp;++&#37;&#37 in html page to normal string? sxingfeng 2009-11-13T03:04:40Z 2009-11-13T06:48:18Z <p>I working in MFC and get the following code in html :</p> <pre><code>&amp;amp;&amp;amp;++&amp;#37;&amp;#37 actually it is &amp;&amp;++%% </code></pre> <p>here is a table of specialcharacters, is there any API's to convert this special character string into normal ones?</p> <p><a href="http://www.degraeve.com/reference/specialcharacters.php" rel="nofollow">http://www.degraeve.com/reference/specialcharacters.php</a></p> <p>Writting such code myself seems not safe enough. I thinks there must be some APIs</p> <p>Is there any exist API in MFC or ATL? Many thanks!</p> http://stackoverflow.com/questions/1719334/wpf-binding-with-explicit-conversion 0 WPF binding with explicit conversion. Tri Q 2009-11-12T01:41:10Z 2009-11-12T01:55:44Z <p>Hello everyone,</p> <p>My question may be a repeat of other conversion question but I feel mine is different.</p> <p>Here goes... [simplified example].</p> <pre><code>public class DataWrapper&lt;T&gt; { public T DataValue{ get; set; } public DataWrapper(T value) { DataValue = value; } public static explicit operator DataWrapper&lt;T&gt; (T value) { return new DataWrapper&lt;T&gt;(value); } public static implicit operator T(DataWrapper&lt;T&gt; data) { return data.DataValue; } } </code></pre> <p>Now, in my ViewModel:</p> <pre><code>public class ViewModel { public DataWrapper&lt;string&gt; FirstName { get;set; } public DataWrapper&lt;string&gt; LastName { get; set; } } </code></pre> <p>And in XAML:</p> <pre><code>&lt;TextBlock Text="{Binding FirstName}" /&gt; &lt;TextBlock Text="{Binding LastName}" /&gt; </code></pre> <p>My question is, will this work? Will WPF binding call the <code>Implicit</code> and <code>Explicit</code> converter in my <code>DataWrapper&lt;T&gt;</code> class instead of needing to implement a <code>IValueConverter</code> for each <code>TextBlock</code>.</p> http://stackoverflow.com/questions/1679970/silverlight-3-progressbar-template 0 Silverlight 3 ProgressBar Template Mark Cooper 2009-11-05T11:33:08Z 2009-11-05T15:19:36Z <p>Hi All,</p> <p>I am trying to retemplate a Silverlight3 progress bar, to show the "Value" in a TextBlock within the <em>ProgressBarIndicator</em>, and the "Maximum" in another textblock in the <em>ProgressBarTrack</em>.</p> <p>I think that using TemplateBinding on the <em>Value</em> and <em>Maximum</em> properties would do this, but it isn't working. </p> <p>FYI the template I have so far is:</p> <pre><code> &lt;Style x:Key="ProgressBarStyle1" TargetType="ProgressBar"&gt; &lt;Setter Property="Foreground" Value="#FF027DB8"/&gt; &lt;Setter Property="Background" Value="#FFD2D5D8"/&gt; &lt;Setter Property="BorderThickness" Value="0"/&gt; &lt;Setter Property="Maximum" Value="100"/&gt; &lt;Setter Property="Value" Value="50"/&gt; &lt;Setter Property="IsTabStop" Value="False"/&gt; &lt;Setter Property="BorderBrush"&gt; &lt;Setter.Value&gt; &lt;LinearGradientBrush EndPoint=".5,1" StartPoint=".5,0"&gt; &lt;GradientStop Color="#FFAEB7BF" Offset="0"/&gt; &lt;GradientStop Color="#FF919EA7" Offset="0.35"/&gt; &lt;GradientStop Color="#FF7A8A99" Offset="0.35"/&gt; &lt;GradientStop Color="#FF647480" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="ProgressBar"&gt; &lt;Grid x:Name="Root"&gt; &lt;VisualStateManager.VisualStateGroups&gt; &lt;VisualStateGroup x:Name="CommonStates"&gt; &lt;VisualState x:Name="Determinate"/&gt; &lt;VisualState x:Name="Indeterminate"&gt; &lt;Storyboard RepeatBehavior="Forever"&gt; &lt;ObjectAnimationUsingKeyFrames Duration="00:00:00" Storyboard.TargetName="IndeterminateRoot" Storyboard.TargetProperty="(UIElement.Visibility)"&gt; &lt;DiscreteObjectKeyFrame KeyTime="00:00:00"&gt; &lt;DiscreteObjectKeyFrame.Value&gt; &lt;Visibility&gt;Visible&lt;/Visibility&gt; &lt;/DiscreteObjectKeyFrame.Value&gt; &lt;/DiscreteObjectKeyFrame&gt; &lt;/ObjectAnimationUsingKeyFrames&gt; &lt;ObjectAnimationUsingKeyFrames Duration="00:00:00" Storyboard.TargetName="DeterminateRoot" Storyboard.TargetProperty="(UIElement.Visibility)"&gt; &lt;DiscreteObjectKeyFrame KeyTime="00:00:00"&gt; &lt;DiscreteObjectKeyFrame.Value&gt; &lt;Visibility&gt;Collapsed&lt;/Visibility&gt; &lt;/DiscreteObjectKeyFrame.Value&gt; &lt;/DiscreteObjectKeyFrame&gt; &lt;/ObjectAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/VisualState&gt; &lt;/VisualStateGroup&gt; &lt;/VisualStateManager.VisualStateGroups&gt; &lt;Border x:Name="ProgressBarTrack" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="3" ToolTipService.ToolTip="{TemplateBinding Maximum}"&gt; &lt;Border.Effect&gt; &lt;DropShadowEffect Color="#FF626262" Opacity="0.8"/&gt; &lt;/Border.Effect&gt; &lt;TextBlock HorizontalAlignment="Right" VerticalAlignment="Center" Text="{TemplateBinding Maximum}" TextWrapping="NoWrap" Foreground="White" Margin="0,0,2,0"/&gt; &lt;/Border&gt; &lt;Grid x:Name="ProgressBarRootGrid"&gt; &lt;Rectangle x:Name="ProgressBarRootGradient" RadiusX="1.5" RadiusY="1.5" Margin="{TemplateBinding BorderThickness}" Canvas.ZIndex="1" Stroke="Black"&gt; &lt;Rectangle.Fill&gt; &lt;LinearGradientBrush EndPoint=".7,1" StartPoint=".7,0"&gt; &lt;GradientStop Color="#B2FFFFFF" Offset="0"/&gt; &lt;GradientStop Color="#0CFFFFFF" Offset="0.198"/&gt; &lt;GradientStop Color="#91FFFFFF" Offset="0.336"/&gt; &lt;GradientStop Color="#0CFFFFFF" Offset="1"/&gt; &lt;/LinearGradientBrush&gt; &lt;/Rectangle.Fill&gt; &lt;/Rectangle&gt; &lt;Grid x:Name="IndeterminateRoot" Visibility="Collapsed"&gt; &lt;Rectangle x:Name="IndeterminateSolidFill" Fill="{TemplateBinding Foreground}" Stroke="#FF448DCA" StrokeThickness="0" RadiusX="2" RadiusY="2" Margin="{TemplateBinding BorderThickness}" Opacity="1" RenderTransformOrigin="0.5,0.5"/&gt; &lt;/Grid&gt; &lt;Grid x:Name="DeterminateRoot" Margin="1"&gt; &lt;Grid x:Name="ProgressBarIndicator" Margin="0" HorizontalAlignment="Left" ToolTipService.ToolTip="{TemplateBinding Value}"&gt; &lt;Rectangle x:Name="ProgressBarIndicator1" Fill="{TemplateBinding Foreground}" StrokeThickness="0" RadiusX="1.5" RadiusY="1.5" Margin="0"/&gt; &lt;TextBlock HorizontalAlignment="Right" Margin="0,0,2,0" VerticalAlignment="Center" TextWrapping="Wrap" Foreground="White" Text="{TemplateBinding Value}"/&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>And I am referencing this via local UserControl.Resources as follows:</p> <pre><code> &lt;ProgressBar x:Name="availableHoursProgress" Margin="2" Foreground="#FF42B802" Background="Red" Style="{StaticResource ProgressBarStyle1}" BorderThickness="0" BorderBrush="{x:Null}" Value="2" Maximum="7.5" HorizontalAlignment="Stretch" /&gt; </code></pre> <p>Thanks in advance for any help you can offer,</p> <p>Mark</p> <p><strong>==== UPDATE ====</strong></p> <p>OK, this issue is because the object I am binding too is of type <strong>Double</strong>, and <strong>Textblock.Text</strong> is expecting a <strong>string</strong>.</p> <p>So my new problem is how to apply a converter to the TemplateBinding, or alternatively expose a string property on ProgressBar:</p> <pre><code>public string ValueString{ get { return Value.ToString(); } } </code></pre> http://stackoverflow.com/questions/1542208/convert-downgrade-linq-to-normal-c-net-2-0-for-domainname-parser-codes-that-use 1 Convert downgrade Linq to normal C# .NET 2.0 for domainname-parser codes that use publicsuffix.org CallMeLaNN 2009-10-09T06:57:34Z 2009-11-03T01:37:37Z <p>Hi,</p> <p>Based on this answer <a href="http://stackoverflow.com/questions/288810/get-the-subdomain-from-a-url">http://stackoverflow.com/questions/288810/get-the-subdomain-from-a-url</a>, I am trying to use code.google.com/p/domainname-parser/ that will use Public Suffix List from publicsuffix.org to get subdomain and domain for managing my cookie collection.</p> <p>In the current moment, Domainname-parser is the only .NET code I found in the internet that implement list from publicsuffix.org.</p> <p>In order to use Domainname-parser I want to make a changes to the source code so that it would be able to:</p> <ol> <li>Use in .NET 2.0</li> <li>Accept Uri object to parse the Host into subdomain, domain and TLD.</li> <li>Will auto download the latest list from the publicsuffix.org by using WebRequest and WebResponse if LastModified is changed.</li> </ol> <p>So it will become more usable and always updated. (2) and (3) would not be a problem but (1) is my focus now.</p> <p>The current Domainname-parser is v1.0, build to use .NET 3.5 that using Linq in the code. To make it compatible to .NET 2.0, I need to convert the Linq codes to non-Linq and it makes me to understand the Public Suffix List rules. That is Normal, Wildcard and Exception rule. However I don't have knowledge about Linq and how it can be converted back to the normal way.</p> <p>Converter tools might be useful but the better is I review and modify it line by line.</p> <p>Now my question is how can I convert it? Eg codes from FindMatchingTLDRule method in DomainNames class:</p> <pre><code>// Try to match an wildcard rule: var wildcardresults = from test in TLDRulesCache.Instance.TLDRuleList where test.Name.Equals(checkAgainst, StringComparison.InvariantCultureIgnoreCase) &amp;&amp; test.Type == TLDRule.RuleType.Wildcard select test; </code></pre> <p>and also this:</p> <pre><code> var results = from match in ruleMatches orderby match.Name.Length descending select match; </code></pre> <p>What is the simple guide line to follow? or any free tools to convert this one sentence above to the normal C# codes in .NET 2.0.?</p> <p>I believe that no database involved, just in the way they deals with collections.</p> <p>I also trying to contact the domainname-parser owner to improve the codes and help me to solve this.</p> <p>Thanks</p> <p>CallMeLaNN</p> http://stackoverflow.com/questions/1045857/java-parse-html-css-and-convert-the-output-to-different-lang 0 java parse html + css and convert the output to different lang unknown (google) 2009-06-25T19:47:57Z 2009-10-25T13:34:33Z <p>Hello all i need to understand html + css files and convert it to somthing like rtf layot in java now i understand i need somekind of html parser but what i need to do from there ? how can i implement html-css convertor ? is there somekind of patern or method for such jobs?</p> http://stackoverflow.com/questions/1597452/silverlight-xaml-binding-decimal-to-double 0 Silverlight XAML Binding -- Decimal to Double Overhed 2009-10-20T21:32:32Z 2009-10-21T12:24:02Z <p>I've got some Columns in a DataGridView that have their Binding property set to something like the following:</p> <pre><code>Binding="{Binding NetPrice}" </code></pre> <p>The problem is that this NetPrice field is a Decimal type and I would like to convert it to Double inside the DataGrid. </p> <p>Is there some way to do this?</p> http://stackoverflow.com/questions/176235/are-there-any-recent-lua-to-javascript-converters-or-interpreters-somewhere 5 Are there any recent Lua to JavaScript converters or interpreters somewhere? Kevlar 2008-10-06T21:18:46Z 2009-10-21T04:18:04Z <p>I need to find a good Lua to JavaScript converter; lua2js on luaforge.org is out of date (3 or so years old and looks like it doesn't work on Lua 5.1) and I haven't yet found anything on Google.</p> <p>Does anyone have any experience with any other converters out there? It should work on Lua 5.1 and preferably be .NET based, but .NET is not a requirement. A javascript lua interpreter would work as well.</p> http://stackoverflow.com/questions/1594357/wpf-how-to-use-2-converters-in-1-binding 0 WPF: how to use 2 converters in 1 binding? Natrium 2009-10-20T12:46:57Z 2009-10-20T14:28:14Z <p>I have a control that I want to show/hide, depending on the value of a boolean.</p> <p>I have a NegatedBooleanConverter (switches true to false and vice versa) and I need to run this converter first. I have a BooleanToVisibilityConverter and I need to run this converter after the NegatedBoolConverter.</p> <p>How can I fix this problem? I want to do this in XAML.</p> <p><s>edit: <a href="http://stackoverflow.com/questions/211319/wpf-databinding-and-cascading-converters">this is a possible solution.</a></s></p> <p>That doesn't seem to work. It first converts the value with the seperate converters and then does something with the converted values.</p> <p>What I need is:</p> <ul> <li>Convert the value with the first converter (this gives convertedValue). </li> <li>Convert convertedValue with the second converter and it's this result that I need.</li> </ul> http://stackoverflow.com/questions/1425859/need-customizable-currency-converter 0 Need Customizable Currency converter Aayushi 2009-09-15T08:20:30Z 2009-10-18T07:00:04Z <p>Hi Everyone, I want to add "currency converter" to my web site.</p> <p>I have used javascript form currency-converter.com. </p> <p>But I want a converter whose layout can be customizable.</p> <p>Anybody help???</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/220838/convert-javacript-code-to-vbscript-code 2 Convert Javacript code to VBScript code? Mrgreen 2008-10-21T05:13:10Z 2009-10-13T15:55:24Z <p>I have been given a task to convert code that is written in JavaScript over to VBScript. It is actually quite basic code and it is really just the syntax that needs to be converted.</p> <p>For example</p> <pre><code> if (str == "string text") { foo = "foo"; } else { foo2 = "foo2"; } </code></pre> <p>becomes</p> <pre><code> If (str = "string text") Then foo = "foo" Else foo2 = "foo2" End If </code></pre> <p>I was wondering if a tool existed to convert from JavaScript to VBScript?</p> http://stackoverflow.com/questions/1554872/tool-to-help-write-excel-formulas-and-if-statements 1 Tool to help write Excel formulas and IF statements? Jeremy Rudd 2009-10-12T14:19:19Z 2009-10-12T17:02:27Z <p>This is an Excel formula with nested IF statements:</p> <pre><code>=IF((B2="East"),4,IF((B2="West"),3,IF((B2="North"),2,IF((B2="South"),1,"")))) </code></pre> <p>To essentially accomplish this:</p> <pre><code>If cell B2 = "East" return "4" ElseIf cell B2 = "West" return "3" ElseIf cell B2 = "North" return "2" ElseIf cell B2 = "South" return "1" Else return "" </code></pre> <p>Can Excel formulas be written in such a "more readable" manner and converted to the official syntax? Is there any tool to help write Excel formulas?</p> <p>This may be a "superuser" question ... but only programmers might know the answer!</p> http://stackoverflow.com/questions/1530324/ruby-xml-to-json-converter 1 Ruby XML to JSON Converter? viatropos 2009-10-07T08:42:54Z 2009-10-07T10:00:31Z <p>Is there a library to convert xml to json in ruby?</p> http://stackoverflow.com/questions/1497391/what-tool-can-i-use-to-convert-c-3-to-vb-net-9-net-3-5 0 What tool can I use to convert C# 3 to VB.Net 9 .Net 3.5? Alexandre Brisebois 2009-09-30T10:54:10Z 2009-09-30T14:39:22Z <p>What tool can I use to convert C# 3 to VB.Net 9 .Net 3.5?</p> http://stackoverflow.com/questions/1491018/video-format-analyzer 1 Video Format Analyzer KenC 2009-09-29T07:07:31Z 2009-09-29T08:57:42Z <p>Hi,</p> <p>I have a video file I don't know what format it is.</p> <p>Is there a software can analyze what kind of video container / compression format it uses?</p> <p>I tried Gspot, but it doesn't work (Show "Unknown format")</p> <p>I am sure the file is using some kind of public standard codec because I can use a media converter convert it to avi or mpg4 file.</p> <p>Thanks in advance.</p> <p>Here is the picture of Gspot, but it doesn't show anything: <img src="http://img19.imageshack.us/img19/2675/gspota.png" alt="alt text" /></p> <p>When I press [1], it says DShow reports error.</p> http://stackoverflow.com/questions/1477482/wpf-data-binding-using-imultivalueconverter-and-casting-errors 0 Wpf Data Binding using IMultiValueConverter and casting errors Berryl 2009-09-25T14:05:49Z 2009-09-25T14:21:27Z <p>As part of learning WPF I just finished working through an MS Lab Exercise called "Using Data Binding in WPF" (<a href="http://windowsclient.net/downloads/folders/hands-on-labs/entry3729.aspx" rel="nofollow">http://windowsclient.net/downloads/folders/hands-on-labs/entry3729.aspx</a>).</p> <p>To illustrate using an IMultiValueConverter, there is a pre-coded implementation of one where the boolean result is used to determine whether the data binding is relevant for the current user. Here is the code for the convert operation:</p> <pre><code>public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture) { // var rating = int.Parse(values[0].ToString()); var rating = (int)(values[0]); var date = (DateTime)(values[1]); // if the user has a good rating (10+) and has been a member for more than a year, special features are available return _hasGoodRating(rating) &amp;&amp; _isLongTimeMember(date); } </code></pre> <p>And here is the wiring to use this in the XAML:</p> <pre><code>&lt;ComboBox.IsEnabled&gt; &lt;MultiBinding Converter="{StaticResource specialFeaturesConverter}"&gt; &lt;Binding Path="CurrentUser.Rating" Source="{x:Static Application.Current}"/&gt; &lt;Binding Path="CurrentUser.MemberSince" Source="{x:Static Application.Current}"/&gt; &lt;/MultiBinding&gt; &lt;/ComboBox.IsEnabled&gt; </code></pre> <p>The code runs fine, but the XAML designer will not load with a "Specified cast not valid." error. I tried a couple of ways to not use a cast, one of which I left uncommented in the code above. The funny thing is a finished lab exercise provided by MS also has the error.</p> <p>Does anyone know how to fix it to make the designer happy?</p> <p>Cheers,<br /> Berryl</p> http://stackoverflow.com/questions/1438030/infix-to-postfix-converter 0 infix to postfix converter CasperT 2009-09-17T10:43:52Z 2009-09-22T19:22:36Z <p>Hi.</p> <p>I have been working on this infix to postfix/polis notation converter. Although, I do not feel the solution is adequate. Specifically the j (EDIT: Now called index) variable is bugging me.</p> <p>Do you guys have any suggestions? Or perhaps there is a much better way to accomplish it? Or do I just worry too much?</p> <pre><code>public static string[] InfixToPostfix(string[] infixArray) { var stack = new Stack&lt;string&gt;(); var postfix = new string[infixArray.Length]; int index = 0; string st; for (int i = 0; i &lt; infixArray.Length; i++) { if (!(MyMath.MathOperators.Contains(infixArray[i]))) { postfix[index] = infixArray[i]; index++; } else { if (infixArray[i].Equals("(")) { stack.Push("("); } else if (infixArray[i].Equals(")")) { st = stack.Pop(); while (!(st.Equals("("))) { postfix[index] = st; index++; st = stack.Pop(); } } else { while (stack.Count &gt; 0) { st = stack.Pop(); if (RegnePrioritet(st) &gt;= RegnePrioritet(infixArray[i])) { postfix[index] = st; index++; } else { stack.Push(st); break; } } stack.Push(infixArray[i]); } } } while (stack.Count &gt; 0) { postfix[index] = stack.Pop(); index++; } return postfix.TakeWhile(item =&gt; item != null).ToArray(); } </code></pre> http://stackoverflow.com/questions/662859/convert-csv-xls-to-json 0 convert csv/xls to json mkoryak 2009-03-19T16:10:28Z 2009-09-19T03:25:11Z <p>Does anyone know if there is application that will let you covert preferably xls to JSON. ill also settle for a converter from csv since thats what ill probably end up having to write myself if there is nothing around. </p> http://stackoverflow.com/questions/1422321/convert-from-sql-server-to-oracle-sql 0 Convert from SQL Server to Oracle SQL Nancy 2009-09-14T15:34:48Z 2009-09-14T21:16:30Z <p>I have 3 very large stored procedure I need convert from SQL Server to Oracle, is that a converter out there that anyone has tried that would work for this? I really don't want to have to do this manually if there is another option.</p> http://stackoverflow.com/questions/1114789/how-can-i-convert-perl-to-c 2 How can I convert Perl to C? joe 2009-07-11T22:16:01Z 2009-09-09T03:18:45Z <p>Is there a tool available which will convert source code in Perl to source code in C? Any platform is fine.</p> http://stackoverflow.com/questions/119647/british-english-to-american-english-and-vice-versa-converter 3 British English to American English (and vice versa) Converter Graphain 2008-09-23T07:45:18Z 2009-09-08T22:34:46Z <p>Hi,</p> <p>Does anyone know of a library or bit of code that converts British English to American English and vice versa?</p> <p>I don't imagine there's too many differences (some examples that come to mind are doughnut/donut, colour/color, grey/gray, localised/localized) but it would be nice to be able to provide localised site content.</p> http://stackoverflow.com/questions/1202726/how-to-embed-a-png-in-a-swf-to-show-in-flash-app-diy-map 0 How to embed a .png in a .swf to show in flash app (DIY map) Javed Ahamed 2009-07-29T20:08:45Z 2009-09-07T00:27:36Z <p>Hey guys,</p> <p>I am using the cool map making program DIY map and i want to keep my points as images. However, you can only set .swfs and jpgs as image points. The author of the program says quote:</p> <blockquote> <p>Unfortunately, Flash can not load GIF’s or PNG’s dynamically, but you can embed these into an SWF. PNG’s embedded into an SWF will also display their alpha channel nicely. My default info icon is a PNG with a little transparent shadow. Note, bitmap images tend to show up a little crunchy when scaled in Flash so avoid fine borders and detail.</p> </blockquote> <p>However I am wondering how i actually get my .png in a .swf to use it. Sorry if this is a noob question, I know nothing about flash.</p> <p>For example, I want to keep this as a .swf with the transparency: <img src="http://www.onecool.com/images/icons/server.png" alt="alt text" /></p> <p>EDIT: this is the programs website: <a href="http://backspace.com/mapapp/" rel="nofollow">http://backspace.com/mapapp/</a></p> http://stackoverflow.com/questions/1362009/string-to-image-wpf-converter 0 String to Image WPF Converter Nadeem 2009-09-01T11:40:49Z 2009-09-01T11:51:58Z <p>How to code a converter in WPF to display four status icons in WPF, In my project I am planning to display following four status based on certain conditions 1) Red Dot icon - Unsaved data 2) Green Dot icon - Save successful 3) White Dot icon OR No icon - window has Initialized successfully and there is no unsaved data. 4) Error icon - There were errors while saving data.</p> <p>Any help would be highly appreciated, thanks in advance.</p> http://stackoverflow.com/questions/783617/how-do-i-write-a-custom-converter-in-spring-web-flow-2 0 How do I write a custom converter in Spring Web Flow 2? Wolfram 2009-04-23T21:32:05Z 2009-08-27T14:57:19Z <p>Hello. I am using Web Flow 2.0.7 with Spring MVC and Hibernate.</p> <p>My problem is about custom converters for my custom types and database connection from within my converter.</p> <p>Let's say I have a type <em>Person</em> and the <em>Person</em> has a field of my custom type <em>Title</em>, and all <em>Titles</em> are already in my database. Now I have an html form, in which a user can populate a <em>Person</em> instance, including selecting the <em>Title</em> in a select drop-down box.</p> <p>In the flow definition I get all <em>Titles</em> from the database and they are shown in the dropdown box using a custom converter, converting <em>Title</em> to <em>String</em> and later back to <em>Title</em>.</p> <p>My question is about the process of converting back from <em>String</em> (which is the database ID, which I set as value on the element) to the correct <em>Title</em> object from my database. Basically: How to do it?</p> <p>So far, I was unable to get a titleManager injected into my converter to get access to the database. This scenario was commented on in the <a href="http://forum.springsource.org/showpost.php?p=218316&amp;postcount=20" rel="nofollow">Spring Web Flow Forum</a>. Another solution might be to cache the <em>Titles</em> before rendering the view and somehow get the in-memory <em>Title</em> after the form was POSTed.</p> <p>I would really appreciate it, if someone could enlighten me, how to handle this kind of data binding. I was unable to get it working so far and thus, I get minimal use out of the otherwise awesome webflows.</p> <p>I already posted <a href="http://forum.springsource.org/showthread.php?t=70536" rel="nofollow">a thread on the Web Flow Board</a>, but still missing a best-pratice, which I am unable to find by myself.</p> <p>Thank you so much!</p> <p>Wolfram</p> http://stackoverflow.com/questions/1322396/convert-mht-files-to-images 0 convert MHT files to images Stranger 2009-08-24T13:25:36Z 2009-08-24T18:28:38Z <p>Hi, Are there any libraries or APIs available to convert MHT files to images? Can we use Universal Document Converter software to do this? Appreciate any thoughts.</p> http://stackoverflow.com/questions/1322036/what-programming-language-do-people-code-image-files-with 1 What programming language do people code image files with? hatorade 2009-08-24T12:21:20Z 2009-08-24T13:24:06Z <p>I'm trying to do some image file work, specifically convert one image file format to another. Does anyone know of any examples/guides for how one might accomplish this? What kinds of programming languages is this generally done with?</p> <p><strong>Edit:</strong> Apparently I know so little about this I don't even know the important info to tell you :)</p> <p>So I'm only useful with C++, Java, Python, and the web design languages (HTML, CSS, Javascript/JQuery). </p> <p>Specifically, I have an image file that is 5 dimensional (X, Y, Z, Time, Channel) and arranges the values of pixels in each coordinate of the 5d matrix in 1 chunk according to an algorithm that increments channel 1x, then every X for the same Y, Z, Time, then every X for the next Y but same Z, Time, etc. What I want to do is reorder that raw data for each pixel so that it is in a .tiff format, which is defined by IFDs, where each IFD would correspond to the X,Y data and there would be Z*Time*Channel IFDs.</p> <p>Essentially, I just want to reorder the binary values found at each pixel in the image. For example, some image types have a number between 0-255 for grayscale defined at each pixel coordinate (X, Y, Z, Time, Channel). In that scenario, I just want to grab the hex-value at the coordinate, and put it in the correct order according to the .tif designation above.</p> <p>Also, this would run in windows and mac for now. Would it be possible to do it in Python?</p>