User masfenix - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T20:12:05Z http://stackoverflow.com/feeds/user/50312 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/414852/reading-psd-file-format 6 Reading PSD file format. masfenix 2009-01-05T23:07:19Z 2009-11-21T07:18:17Z <p>I wonder if this is even possible. I have an application that adds a context menu when you right click a file. It all works fine but here is what I'd like to do:</p> <p>If the file is a PSD then I want the program to extract the image. Is this possible to do without having Photoshop installed?</p> <p>Basically I want the user to right click and click "image" which would save a .jpg of the file for them.</p> <p>edit: will be using c# Thanks</p> http://stackoverflow.com/questions/475305/any-good-asp-net-cms 2 any good asp.net CMS? masfenix 2009-01-24T01:40:37Z 2009-08-28T08:52:47Z <p>I've been trying to install dot net nuke for the last 3 hours with no luck. Can anyone recommend me a good and easy to install asp.net CMS? </p> <p>If there aren't any, can anyone recommend some PHP ones?</p> http://stackoverflow.com/questions/509733/win-api-and-c-desktops 1 win api and c# - desktops masfenix 2009-02-04T01:17:04Z 2009-08-22T03:23:45Z <p>Okay, so I found this class online that "creates" a second desktop which does not run anything (ie, explorer.exe is not called and so forth).</p> <p>However, this newly created desktop refuses to shutdown and go back to the orignal desktop. I have no idea whats going on. So if someone can try it on their machine, it would be very helpful.</p> <p>note: assume all win api headers have been declared and work.</p> <p>The class that "locks" the current dekstop:</p> <pre><code>namespace Locker { class CLocker { public static int DesktopHandle; // Hold desktop handle. public static int oldDesktopHandle; public static int DesktopInputID; // Hold desktop input id. public static int DesktopThreadID; // Hold desktop thread id. static string DesktopName = "DL.Locker.Desktop"; // Hold the name of new created desktop. static FileStream TaskMan; // Hold the file stream object to control task manager. static string FastSwitching = string.Empty; // Hold the original value of fast switching i.e. welcome screen static string ShutdownWithoutLogin = string.Empty; // Hold the original value of showinh the shutdown button on welcome screen. /// &lt;summary&gt; /// Enabled used to enable or disable the locker /// &lt;/summary&gt; public static bool Enabled { set { SetProcessPriorityHigh(); // Set the process priority to high. if (value) // Enable or disable the locker? { CreateNewDesktop(); // Creating new desktop. StartProcess(Application.ExecutablePath); // Starting the locker form, to allow the user to enter login info. } else { DestroyDesktop(); // Destroy the desktop. ExitProcess(0); // Exit the current process, if desktop attached with no process, default desktop will be activated. } } } public static bool NeedBootStrapping() { Console.WriteLine((GetDesktopName() != DesktopName).ToString()); return (GetDesktopName() != DesktopName); } static string GetDesktopName() { int DLength = 0, DHandle = GetThreadDesktop(GetCurrentThreadId()); StringBuilder DName = new StringBuilder(); GetUserObjectInformation(DHandle, UOI_NAME, DName, 0, ref DLength); if (DLength != 0) GetUserObjectInformation(DHandle, UOI_NAME, DName, DLength, ref DLength); Console.WriteLine(DName.ToString()); return (DName.ToString()); } static void CreateNewDesktop() { DesktopThreadID = GetThreadDesktop(GetCurrentThreadId()); DesktopInputID = OpenInputDesktop(0, false, DESKTOP_SWITCHDESKTOP); DesktopHandle = CreateDesktop(DesktopName, "", 0, 0, GENERIC_ALL, 0); if (DesktopHandle != 0) { SetThreadDesktop(DesktopHandle); SwitchDesktop(DesktopHandle); } } public static void DestroyDesktop() { SwitchDesktop(DesktopInputID); DesktopInputID = 0; SetThreadDesktop(DesktopInputID); DesktopThreadID = 0; CloseDesktop(DesktopHandle); DesktopHandle = 0; } static void StartProcess(string Path) { MessageBox.Show("Hello from startProcess"); DestroyDesktop(); } static void SetProcessPriorityHigh() { SetThreadPriority(GetCurrentThread(), THREAD_BASE_PRIORITY_MAX); SetPriorityClass(GetCurrentProcess(), REALTIME_PRIORITY_CLASS); } } } </code></pre> <p>And the main() function:</p> <pre><code>static void Main() { if (CLocker.NeedBootStrapping()) CLocker.Enabled = true; // Check if we need boot strapping or not, if true then a new desktop will created. else // Run application as usual. { MessageBox.Show("Hello, this is your new desktop"); CLocker.Enabled = false; } } </code></pre> <p><strong>Update:</strong> This code does not compile. It comes up with about 40 red squiggly lines underneath the words saying "Does not exists in current context".</p> http://stackoverflow.com/questions/1117396/looping-through-a-csv 0 looping through a csv masfenix 2009-07-13T01:19:55Z 2009-07-13T15:37:08Z <p>hey guys, </p> <p>just wondering if i could do this in powershell, or even a c#/vb.net command line program.</p> <p>I have data that looks like this:</p> <p><img src="http://www.kalleload.net/uploads/qubtqmuikowt.jpg" alt="alt text" /></p> <p>I have a Teams Table. It looks like this:</p> <p>| id | teamname | teamcity | </p> <p>so for example, C2 has the value "Atlanta Braves". I need to split this up into "Atlanta" and "Braves". Data is consistent. for example "New York Mets" is actually "NewYork Mets".</p> <p>So i need to go through column C and D and insert all the teams (no duplicates into the db).</p> http://stackoverflow.com/questions/1101351/simple-linq-query 0 simple LINQ query masfenix 2009-07-09T01:10:59Z 2009-07-09T01:41:52Z <p>Hi guys i am having trouble joinging tables on a LINQ query.</p> <p><img src="http://www.kalleload.net/uploads/qiscjknuhutn.jpg" alt="alt text" /></p> <p>As you can see there are three tables there. On my webpage, i want to display the following data in a List View.</p> <p>betid | bet.title | bet.description | match.location | match.begindate/enddate | teamone NAME | teamtwo Name.</p> <p>so let me explain this. I want 3 fields from the bets table. I want 2 fields from the match table (where the match.matchid = bet.matchid) I want 2 fields from the TEAM table (where match.teamone = team.teamid and match.teamtwo = team.teamid)</p> <p>i hope this makes sense.</p> <p>thankyou</p> http://stackoverflow.com/questions/636441/how-do-you-get-started-with-mono-curses 1 How do you get started with Mono curses? masfenix 2009-03-11T21:23:23Z 2009-03-12T01:06:24Z <p>Hi, I am trying to create an interactive command line program and it seems that <a href="http://www.mono-project.com/MonoCurses" rel="nofollow">Mono-Curses</a> is what i need. but I am very confused on how to use it. I have a couple of questions. What do i really need to create my project? Do I need mono or can i use the .net framework? Why is there a .c file in there and what do I do with it? </p> <p>If anyone could help me get setup with all the required assemblies it would be greatly appreciated.</p> http://stackoverflow.com/questions/636441/how-do-you-get-started-with-mono-curses/636973#636973 0 Answer by masfenix for How do you get started with Mono curses? masfenix 2009-03-12T00:46:23Z 2009-03-12T00:46:23Z <p>does anyone know of a library that can do this with .net?</p> <p>I don't mind using Mono as its just a personal project. I just need the steps to figure out what i need to download from mono to use the library.</p> <p>I will be developing locally on my machine which is vista.</p> http://stackoverflow.com/questions/501274/creating-iseries-like-programs 1 creating iSeries like programs. masfenix 2009-02-01T18:07:25Z 2009-03-11T17:52:41Z <p>Hi, my main language is vb/c#.net and I'd like to make a console program but with a menu system.</p> <p>If any of you have worked with "dos" like programs or iSeries from IBM then thats the style I am going for.</p> <p><img src="http://media.techtarget.com/digitalguide/images/Misc/qe_iseries.gif" alt="alt text" /> so, was wondering if anyone knows of a "winforms" library that will make my form look like this. I dont mind a "fake winforms look" or a console application but thats how I'd like.</p> http://stackoverflow.com/questions/578756/tell-me-any-good-site-for-talking-to-programmers/578787#578787 0 Answer by masfenix for Tell me any good site for talking to programmers masfenix 2009-02-23T18:42:35Z 2009-02-23T18:42:35Z <p>Stackoverflow is one of the most high traffic websites for programming i've seen :) but then again im new to the scene.</p> http://stackoverflow.com/questions/575440/url-encoding-using-c 1 Url Encoding using c# masfenix 2009-02-22T18:48:23Z 2009-02-22T21:29:28Z <p>I have an application which I've developed for a friend. What this application does is send a POST request to the vb forum software and logs someone in (with out setting cookies or anything). </p> <p>Once the user is logged in i create a variable that creates a path on their local machine.</p> <p>c:\tempfolder\date\username</p> <p>The problem is that some usernames are throwing "Illegal chars" exception. for example if my username was mas|fenix it would throw an exception.. </p> <pre><code>Path.Combine(Environment.GetFolderPath(System.Environment.SpecialFolder.CommonApplicationData), DateTime.Now.ToString("ddMMyyhhmm") + "-" + form1.username) </code></pre> <p>I dont want to remove it from the string, but a folder with their username is created through FTP on a server. ANd this leads to my second question. If i am creating a folder on the server can I leave the "illegal chars" in? I only ask this because the server is linux based, and I am not sure if linux accepts it or not..</p> <p><strong>EDIT: IT seems that URL encode is NOT what I want.. Heres What I want to do:</strong></p> <p>old username = mas|fenix new username = mas%xxfenix where %xx is the ascii value or any other value that would easily identify the character...</p> http://stackoverflow.com/questions/568087/how-do-you-compile-stacked 1 How do you compile Stacked? [closed] masfenix 2009-02-20T02:41:17Z 2009-02-20T03:01:05Z <p>I've checked out <strong>Stacked</strong> on <em>Google Code</em> using SVN and while the code is pretty easy for an intermediate like me it's not fully open source (at least I don't think).</p> <p>I can't even build the damn project because I don't have the assemblies.</p> <p>Does anyone know what to do and how to build the project? To my knowledge it uses "Active Record" and "Ra-Ajax" which I am presuming to be paid products? If so why is the project marked as open source? </p> <p>Here is a screenshot: <a href="http://www.kalleload.net/uploads/cexnaasaaemh.jpg" rel="nofollow">http://www.kalleload.net/uploads/cexnaasaaemh.jpg</a></p> <p>Can anyone tell me step by step how to have this install on a MSSQL 2005 server OR MySQL server, and have the project build successfully?</p> http://stackoverflow.com/questions/568087/how-do-you-compile-stacked/568110#568110 -1 Answer by masfenix for How do you compile Stacked? masfenix 2009-02-20T02:53:01Z 2009-02-20T02:53:01Z <p>Oh jeez, your right greg. I posted to early, they arein the trunk, but I can't seem to use ankhsvn to download them. </p> http://stackoverflow.com/questions/560073/strange-visual-studio-2008-behavior-when-pressing-keys/563336#563336 0 Answer by masfenix for Strange visual studio 2008 behavior when pressing keys masfenix 2009-02-18T23:26:47Z 2009-02-18T23:26:47Z <p>Like others have said, you can press ctrl-shift to "loop" through the settings. </p> http://stackoverflow.com/questions/559047/visual-studio-2008-intellisense-disappearing-after-1-second/559058#559058 0 Answer by masfenix for visual studio 2008 intellisense disappearing after 1 second masfenix 2009-02-17T22:42:01Z 2009-02-17T22:42:01Z <p>Aww this happens to me a lot.. damnit i forgot what i do.. I think as soon as it pops up, i scroll down to a random property/method and choose it. Then i delete it and press "." again and its back to normal.</p> http://stackoverflow.com/questions/473839/help-me-make-my-windows-cmd-exe-console-work-more-like-a-linux-terminal/535121#535121 -2 Answer by masfenix for Help me make my windows cmd.exe console work more like a Linux terminal masfenix 2009-02-11T01:47:55Z 2009-02-11T01:47:55Z <p>I think your looking for Powershell which I can argue is stronger then the linux bash or atleast has the same amount of power.</p> http://stackoverflow.com/questions/526573/fun-whats-the-craziest-code-youve-ever-written/534848#534848 0 Answer by masfenix for Fun: What's the Craziest Code You've Ever Written masfenix 2009-02-10T23:54:28Z 2009-02-10T23:54:28Z <p>I just started doing f# (with out a book so im still very new at it) but heres question 22 from the euler project:</p> <pre><code>let question22 name = let nfile = "c:/users/affan/desktop/names.txt" let nreader = new StreamReader(nfile) let nlines = nreader.ReadToEnd() let tsorted = nlines.Split ([|','|]) |&gt; Seq.map (fun value -&gt; value.Replace("\"", "")) |&gt; Seq.sort let tposition name = let position = tsorted |&gt; Seq.to_array |&gt; Array.find_index ((=) name) position + 1 let tcalculate name = name.ToString().ToLower().ToCharArray() |&gt; Array.map (fun char -&gt; Convert.ToInt32 char - 96) |&gt; Array.sum let tcalculate2 name = let Value (c:char) = (int c) - (int 'A') + 1 //get the ascii value let CalcValue name = name |&gt; Seq.sum_by Value //sum by goes through each member of seq and applies a funtion. CalcValue let nametotal name = let positionalValue = tposition name printfn "VALUE1: %A\n" positionalValue let numericalValue = tcalculate name printfn "VALUE2: %A\n" numericalValue let total = numericalValue * positionalValue total nametotal name </code></pre> http://stackoverflow.com/questions/533633/seq-unfold-explanation-in-f 2 Seq.unfold explanation in f# masfenix 2009-02-10T18:51:02Z 2009-02-10T23:51:19Z <p>Hi, I am trying to create a sequence lazily by using f#.</p> <p>The sequence is defined as follows:</p> <blockquote> <p>The nth term of the sequence of triangle numbers is given by, tn = ½n(n+1); so the first ten triangle numbers are:</p> <p>1, 3, 6, 10, 15, 21, 28, 36, 45, 55, ...</p> </blockquote> <p>Here is what I have so far but it dosn't seem to work:</p> <pre><code>let tri_seq = 1.0 |&gt; Seq.unfold (fun x -&gt; match x with | _ -&gt; Some (x, 0.5*x*(x + 1.0))) </code></pre> <p>Thankyou very much who can help me figure out how unfold works. Thanks</p> <p>edit: I marked the first answer as correct but it dosnt work, however i slightly modified it and it worked.</p> <pre><code>let tri_seq = 1.0 |&gt; Seq.unfold (fun x -&gt; Some (0.5 * x * (x + 1.0),x + 1.0)) </code></pre> http://stackoverflow.com/questions/524765/f-looping-through-array 1 f# - looping through array masfenix 2009-02-07T23:02:55Z 2009-02-09T18:56:38Z <p>Hi, I have decided to take up f# as my functional language. </p> <p>My problem: Give a bunch of 50digits in a file, get the first 10 digits of the sum of each line. (euler problem for those who know)</p> <p>for example (simplified): 1234567890</p> <p>The sum is 45<br /> The first "ten" digits or in our case the "first" digit is 4. </p> <p>Heres my problem, I read my file of numbers, I can split it using "\n" and now i have each line, and then I try to convert it to an char array, but the problem comes here. I can't access each element of that array. </p> <pre><code>let total = lines.Split([|'\n'|]) |&gt; Seq.map (fun line -&gt; line.ToCharArray()) |&gt; Seq.take 1 |&gt; Seq.to_list |&gt; Seq.length </code></pre> <p>I get each line, convert it to array, i take the first array (for testing only), and i try to convert it to list, and then get the length of the list. But this length is the length of how many arrays i have (ie, 1). It should be 50 as thats how many elements there are in the array.</p> <p>Does anyone know how to pipeline it to access each char?</p> http://stackoverflow.com/questions/526961/char-value-in-f 1 char value in f# masfenix 2009-02-09T02:11:37Z 2009-02-09T03:05:51Z <p>Hi all</p> <p>Lets say i have a string "COLIN". The numeric value of this string would is worth 3 + 15 + 12 + 9 + 14 = 53. </p> <p>So A = 1, B = 2, C = 3, and so on. </p> <p>I have no idea how to even start in f# for this.</p> <pre><code>let mutable nametotal = 0 let rec tcalculate name = name.ToString().ToCharArray() |&gt; Seq.length </code></pre> <p>Here is what I have so far. The seq.lenght is just there for testing to see if the toCharArray actually worked.</p> http://stackoverflow.com/questions/526961/char-value-in-f/526974#526974 1 Answer by masfenix for char value in f# masfenix 2009-02-09T02:22:43Z 2009-02-09T02:22:43Z <p>I've found a hackish way to do this using the ascii value of the character, and getting the number from there but i think there might be a better way.</p> <pre><code>let tcalculate name = name.ToString().ToLower().ToCharArray() |&gt; Seq.map (fun char -&gt; Convert.ToInt32 char - 96) |&gt; Seq.sum </code></pre> <p>work's beautifully and maybe even more efficient then "mapping" but I'd like to view the solution I asked for </p> <p>thanks all.</p> http://stackoverflow.com/questions/526930/f-naming-convention/526947#526947 1 Answer by masfenix for F# naming convention masfenix 2009-02-09T02:04:28Z 2009-02-09T02:04:28Z <p>From what I've seen from hubfs.com and other sources, its a mix from .net and OCaml. </p> <p>I hope they switch to either one and not have two different conventions and being Microsoft i am sure they will go with the dot net style. </p> http://stackoverflow.com/questions/526540/how-do-i-find-the-position-of-a-cursor-in-a-text-box-c/526594#526594 1 Answer by masfenix for How do I find the position of a cursor in a text box? C# masfenix 2009-02-08T22:56:12Z 2009-02-08T22:56:12Z <p>Your gonna have to keep the selectionstart property in a variable, and then when you press the button, shift the focus back to the textbox. Then set the selectionstart property tot he one in the variable.</p> http://stackoverflow.com/questions/524765/f-looping-through-array/524864#524864 4 Answer by masfenix for f# - looping through array masfenix 2009-02-08T00:35:13Z 2009-02-08T01:21:14Z <p>My final answer:</p> <pre><code>let total = lines.Split([|'\n'|]) |&gt; Seq.map (fun line -&gt; line.ToCharArray() |&gt; Array.to_seq) |&gt; Seq.map (fun eachSeq -&gt; eachSeq |&gt; Seq.take 50 //get rid of the \r |&gt; Seq.map (fun c -&gt; Double.Parse(c.ToString())) |&gt; Seq.skip 10 |&gt; Seq.sum ) |&gt; Seq.average </code></pre> <p>is what i got finally and it's working :).</p> <p>Bascially after I convert it to charArray, i make it a sequence. So now i have a sequence of sequence. Then I can loop through each seqquence.</p> http://stackoverflow.com/questions/522154/hide-form-at-launch/522220#522220 0 Answer by masfenix for Hide form at launch masfenix 2009-02-06T21:19:56Z 2009-02-06T21:19:56Z <p>You can also put this.hide = true in the form_shown event. I believe that event is fired once only and after the load event. You might see alittle flicker though if your form has a lot of controls and/or the computer is slow.</p> http://stackoverflow.com/questions/514564/run-c-3-app-without-net-framework-installed/514577#514577 0 Answer by masfenix for Run c# 3 app without .Net Framework installed???? masfenix 2009-02-05T04:28:22Z 2009-02-05T04:28:22Z <p>No, its not possible. Its not as simple as just copying the right dlls and shipping them with your application. </p> <p>That being said, if your application dosn't use a lot of the "new" features, you can use Mono to deploy your application. Mono is an open source and I am guessing has a smaller head then .net framework.</p> http://stackoverflow.com/questions/513084/how-to-ship-an-android-application-with-a-database/513093#513093 0 Answer by masfenix for How to ship an Android application with a database? masfenix 2009-02-04T20:14:43Z 2009-02-04T20:14:43Z <p>From what I've seen you should be be shipping a database that already has the tables setup and data. However if you want (and depending on the type of application you have) you can allow "upgrade database option". Then what you do is download the latest sqlite version, get the latest Insert/Create statements of a textfile hosted online, execute the statements and do a data transfer from the old db to the new one.</p> http://stackoverflow.com/questions/505820/what-are-some-resources-for-learning-msil/505830#505830 2 Answer by masfenix for What are some resources for learning MSIL? masfenix 2009-02-03T02:19:56Z 2009-02-03T02:19:56Z <p>Download reflector and look at the IL and the vb/c# code to see what is happening.</p> http://stackoverflow.com/questions/501194/c-is-string-in-array/501206#501206 0 Answer by masfenix for C# Is String in Array masfenix 2009-02-01T17:27:37Z 2009-02-01T17:27:37Z <p>You can also use LINQ to iterate over the array. or you can use the Find method which takes a delegate to search for it. However I think the find method is a bit more expensive then just looping through.</p> http://stackoverflow.com/questions/436294/running-async-operations-in-c-basic 0 running async operations in c#. - basic. masfenix 2009-01-12T17:44:33Z 2009-01-28T20:38:58Z <p>Consider the following snippet:</p> <pre><code>if(form1.isLoggedIn) { //Create a wait handle for the UI thread. //the "false" specifies that it is non-signalled //therefore a blocking on the waitone method. AutoResetEvent hold = new AutoResetEvent(false); filename = Path.Combine(Environment.GetFolderPath(System.Environment.SpecialFolder.CommonApplicationData), DateTime.Now.ToString("ddMMyyhhmm") + "-" + form1.username); Flow palm = new Flow(new FlowArguments(form1.username, filename), hold); System.Windows.Forms.NotifyIcon notifyIcon = new System.Windows.Forms.NotifyIcon(); System.Windows.Forms.ContextMenuStrip notificationIconContext = new System.Windows.Forms.ContextMenuStrip(); //Create a context menu strip ToolStripMenuItem contextAbout = new ToolStripMenuItem("About"); ToolStripMenuItem contextExit = new ToolStripMenuItem("Exit"); //properties of notifyicon that SO dosnt care for including a event handler for the mouse click events. //wait for the background thread to finish. hold.WaitOne(Timeout.Infinite); MessageBox.Show("Thankyou, exiting..."); form1.Dispose(); } </code></pre> <p>As you see <b> The FLOW class is pretty simple. It just has a Threading.Timer which is run. Therefore on the UI thread i have to call WaitHandle.WaitOne() method, because otherwise the UI thread finishes and therefore ending the application.. </b></p> <p>My goal: Since there's no GUI, i want to create a notify icon. It works and everything,except I can't click on it and its not responsive, this is because it is created on the UI thread. I can't put it in the flow class because the Flow class is also on the UI thread (the timer in the Flow class is in background thread). </p> <p>So how can I keep my notifyicon responsive while running the timer in the Flow class? I thought waithandle was my solution but since its a blocking method it doesn't work. </p> <p>Any other ideas/solutions?</p> <p>edit: response to Rich's answer: The Flow class is on the background thread and everything runs the way it should. But if I don't add the waithandle in the UI thread, the main() finishes on the UI thread therefore terminating the whole program. (even though the timer is enabled on the background thread). Is there another solution to waithandle? because I have to leave it in for the Flow class to do its thing. If I take it out, the program ends, if I leave it in it blocks the UI thread therefore my notifyicon dosnt work.</p> http://stackoverflow.com/questions/484620/discrimanant-taskkill-exe-for-excel-exe/484633#484633 0 Answer by masfenix for Discrimanant taskkill.exe for excel.exe masfenix 2009-01-27T18:34:31Z 2009-01-27T18:34:31Z <p>If your able to get the PID using code (which I think you can) you can use the pid switch rather then the /im switch. </p> http://stackoverflow.com/questions/1117396/looping-through-a-csv/1117417#1117417 Comment by masfenix on looping through a csv masfenix 2009-07-13T01:34:33Z 2009-07-13T01:34:33Z Is this an excel macro? would it be better to use C# so i can use the data classes to easily update my db? http://stackoverflow.com/questions/636441/how-do-you-get-started-with-mono-curses/637015#637015 Comment by masfenix on How do you get started with Mono curses? masfenix 2009-03-12T01:45:20Z 2009-03-12T01:45:20Z i dont get it? lol http://stackoverflow.com/questions/575440/url-encoding-using-c/575463#575463 Comment by masfenix on Url Encoding using c# masfenix 2009-02-22T19:15:38Z 2009-02-22T19:15:38Z Please read my edit. http://stackoverflow.com/questions/575440/url-encoding-using-c/575463#575463 Comment by masfenix on Url Encoding using c# masfenix 2009-02-22T19:02:43Z 2009-02-22T19:02:43Z Does it encode every character thats not part of the alphabet? http://stackoverflow.com/questions/568087/how-do-you-compile-stacked/568110#568110 Comment by masfenix on How do you compile Stacked? masfenix 2009-02-21T20:35:55Z 2009-02-21T20:35:55Z Why are you trolling? who cares if it was an answer or comment. The question was marked as an answer, I got my question answered .. everyone is happy. let the thread die already. http://stackoverflow.com/questions/568087/how-do-you-compile-stacked/568106#568106 Comment by masfenix on How do you compile Stacked? masfenix 2009-02-20T02:53:29Z 2009-02-20T02:53:29Z Thankyou. Your last line made me look in the trunk again and I found them :) http://stackoverflow.com/questions/538251/how-to-tell-if-invoke-is-required-for-a-property/538276#538276 Comment by masfenix on How to tell if Invoke is required for a property? masfenix 2009-02-11T19:09:50Z 2009-02-11T19:09:50Z +1, the method(or property?) your looking for is the invoke required http://stackoverflow.com/questions/533633/seq-unfold-explanation-in-f/534838#534838 Comment by masfenix on Seq.unfold explanation in f# masfenix 2009-02-10T23:56:09Z 2009-02-10T23:56:09Z Thankyou, but i have no idea what the &quot;Seq { }&quot; does, not &quot;yield&quot; keyword, and lets not talk about the &quot;!&quot;. If you can take some time to explain, it would be appreciated! http://stackoverflow.com/questions/533633/seq-unfold-explanation-in-f/533660#533660 Comment by masfenix on Seq.unfold explanation in f# masfenix 2009-02-10T19:05:09Z 2009-02-10T19:05:09Z let tri_seq = 1.0 |&gt; Seq.unfold (fun x -&gt; Some (0.5 * x * (x + 1.0),x + 1.0)) is what i needed. Thankyou very much. http://stackoverflow.com/questions/533633/seq-unfold-explanation-in-f/533660#533660 Comment by masfenix on Seq.unfold explanation in f# masfenix 2009-02-10T18:59:45Z 2009-02-10T18:59:45Z I tried that, but the sequence just returns one.. &gt; tri_seq;; val it : seq&lt;float&gt; = seq [1.0; 1.0; 1.0; 1.0; ...] http://stackoverflow.com/questions/526961/char-value-in-f/527040#527040 Comment by masfenix on char value in f# masfenix 2009-02-09T03:12:58Z 2009-02-09T03:12:58Z A question, what does the &quot;let dictionary = dict table&quot; mean.. specifically what does &quot;dict&quot; do in this context? http://stackoverflow.com/questions/526961/char-value-in-f/526998#526998 Comment by masfenix on char value in f# masfenix 2009-02-09T02:46:14Z 2009-02-09T02:46:14Z Thankyou, I guess i'll forget about &quot;mapping&quot; for now.. http://stackoverflow.com/questions/526961/char-value-in-f/526977#526977 Comment by masfenix on char value in f# masfenix 2009-02-09T02:31:19Z 2009-02-09T02:31:19Z Yea, thats what I came up with, but I am learning the language so I want to if there is a way to do a &quot;mapping&quot; http://stackoverflow.com/questions/524765/f-looping-through-array/524885#524885 Comment by masfenix on f# - looping through array masfenix 2009-02-08T01:20:48Z 2009-02-08T01:20:48Z Your way is okay now, but I don't need the length. I needed to work with the string thats pure digits and convert it to integers. http://stackoverflow.com/questions/524765/f-looping-through-array/524864#524864 Comment by masfenix on f# - looping through array masfenix 2009-02-08T01:19:37Z 2009-02-08T01:19:37Z Your way is okay now, but I don't need the length. I needed to work with the string thats pure digits and convert it to integers.