User Shahin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T02:43:59Z http://stackoverflow.com/feeds/user/29445 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1812710/farseer-physics-xna-geom-tripping 0 Farseer Physics XNA Geom 'Tripping' Shahin 2009-11-28T15:02:02Z 2009-11-29T01:01:29Z <p>Hello, I have an issue similar to <a href="http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364" rel="nofollow">http://farseerphysics.codeplex.com/Thread/View.aspx?ThreadId=72364</a></p> <p>I have a rectangle player geom, and many rectangle tile geoms lined up next to each other.</p> <p>Occasionally when the player geom is crossing between them he seems to clip onto the corners of the tile geom and as a result rotate over.</p> <p>Even when switching the moment of inertia to infinity which prevents rotation, the player geom "hops" when it clips the edge.</p> <p>Here is a screenshot of the geoms <img src="http://notspike.com/PrototypeG/trip.png" alt="tripping image"></p> <p>Is there any fix for this? I've tried the Farseer forums but it seems pretty inactive</p> <p>Here is a link to a video using a circle geom for the player</p> <p><a href="http://www.notspike.com/PrototypeG/trip.avi" rel="nofollow">http://www.notspike.com/PrototypeG/trip.avi</a></p> http://stackoverflow.com/questions/329658/asp-net-mvc-authorization 4 ASP.NET MVC Authorization Shahin 2008-12-01T00:10:47Z 2009-11-18T20:05:37Z <p>How do I do authorization with MVC asp.net?</p> http://stackoverflow.com/questions/1728207/xna-matrix-camera-scale-issue-in-2d-game 0 XNA Matrix Camera Scale Issue in 2D Game Shahin 2009-11-13T09:41:11Z 2009-11-14T11:34:49Z <p>Hi, I followed the tutorial on <a href="http://www.david-amador.com/2009/10/xna-camera-2d-with-zoom-and-rotation/" rel="nofollow">http://www.david-amador.com/2009/10/xna-camera-2d-with-zoom-and-rotation/</a> to achieve a camera that follows my player sprite with zoom in/out functionality.</p> <p>however, when I zoom in/out the camera seems to either slowly move away from the sprite whilst moving, I don't think I'm setting the position right, but I can't seem to figure out what it needs to be.</p> <p>Here's some snippets if it helps</p> <pre><code> if (cam.Follow) { RectangleF temp = playerBoundingBox; cam.Pos = new Vector2( (temp.X + temp.Width / 2)*cam.Zoom, temp.Y + temp.Height / 2) * cam.Zoom; } public Matrix get_transformation(GraphicsDevice graphicsDevice) { _transform = // Add Zoom Matrix.CreateScale( new Vector3((_zoom * _zoom * _zoom), (_zoom * _zoom * _zoom), 0)) // Add Camera Rotation * Matrix.CreateRotationZ(_rotation) // Add Camera Position * Matrix.CreateTranslation( new Vector3((graphicsDevice.Viewport.Width * 0.5f) - _pos.X, (graphicsDevice.Viewport.Height * 0.5f) - _pos.Y, 0)); return _transform; } </code></pre> <p>thank you in advance.</p> http://stackoverflow.com/questions/1728207/xna-matrix-camera-scale-issue-in-2d-game/1733997#1733997 0 Answer by Shahin for XNA Matrix Camera Scale Issue in 2D Game Shahin 2009-11-14T11:34:49Z 2009-11-14T11:34:49Z <p>I found the answer through <a href="http://xnachat.com/" rel="nofollow">http://xnachat.com/</a></p> <p>Position = Vector2.Zero; ScreenPosition = new Vector2(GraphicsDevice.ViewPort.Width / 2, GraphicsDevice.ViewPort.Height / 2); Zoom = Vector2.Zero; Rotation = 0; public virtual Matrix ViewTransformationMatrix() { Vector3 matrixRotOrigin = new Vector3(Position, 0); Vector3 matrixScreenPos = new Vector3(ScreenPosition, 0.0f); </p> <pre><code> return Matrix.CreateTranslation(-matrixRotOrigin) * Matrix.CreateScale(Zoom.X, Zoom.Y, 1.0f) * Matrix.CreateRotationZ(Rotation) * Matrix.CreateTranslation(matrixScreenPos); } </code></pre> <p>would have been the correct matrix to use, for some reason the matrix I posted in my original post cubes the zoom value</p> http://stackoverflow.com/questions/334532/render-html-as-an-image 2 Render HTML as an Image Shahin 2008-12-02T16:19:00Z 2009-10-05T17:19:10Z <p>I'm generating a coupon based on dynamic input and a cropped image, and I'm displaying the coupon using ntml and css right now, the problem is, printing this has become an issue because of how backgrounds disappear when printing and other problems, so I think the best solution would be to be able to generate an image based on the html, or set up some kind of template that takes in strings and an image, and generates an image using the image fed in as a background and puts the coupon information on top.</p> <p>Is there anything that does this already?</p> <p>This is for an ASP.NET 3.5 C# website!</p> <p>Thanks in advance.</p> <p>edit: It'd be great if the output could be based on the HTML input, as the coupon is designed by manipulating the DOM using jQuery and dragging stuff around, it all works fine, it's just when it comes to the printing (to paper) it has z-indexing issues.</p> http://stackoverflow.com/questions/1450880/pnrp-global-stuck-on-alone 0 PNRP Global_ stuck on Alone Shahin 2009-09-20T12:01:36Z 2009-09-20T12:01:36Z <p>Hi, I have two installations of Windows 7. a 64bit version on my hard disk, and a 32bit version installed as a bootable VHD.</p> <p>on my the 64bit version, I can't get my PNRP Global_ cloud out of Alone state.</p> <p>on my the 32bit version, I can get it in Active state by registering a peer however I can't resolve a friends peer, maybe I misunderstood how it's done?</p> <p>However, my 64bit version is what I use for development so I need to get PNRP working under that. Any help?</p> http://stackoverflow.com/questions/1448294/php-echo-question/1448314#1448314 0 Answer by Shahin for PHP echo Question? Shahin 2009-09-19T10:49:38Z 2009-09-19T10:49:38Z <p>If all you want to do is store that one string in a variable and re-use it, it would be something like this (may not be correct php)</p> <p>$errorMsg = 'Please enter your last name!';</p> <p>then wherever you want to use it</p> <p>echo $errorMsg;</p> <p>but I recommend doing what the above person said if you have more than one string you wish to re-use.</p> http://stackoverflow.com/questions/1442098/should-we-deprecate-the-remember-me-checkbox-and-start-assuming/1442103#1442103 10 Answer by Shahin for Should we deprecate the "Remember Me" checkbox and start assuming? Shahin 2009-09-18T00:52:00Z 2009-09-18T00:52:00Z <p>I don't really think it's safe to assume anything about the end-user.</p> <p>Plus, it's easier for a user to just close the browser rather than to log out of every website, so providing a remember me checkbox defaulted to false is user friendly and less hassle for them over-all.</p> http://stackoverflow.com/questions/1441872/flash-video-automatically-starts-downloading-dont-want-them-to/1441957#1441957 0 Answer by Shahin for Flash Video automatically starts downloading (don't want them to) Shahin 2009-09-18T00:02:55Z 2009-09-18T00:02:55Z <p>Hey, use JavaScript. Have an image with a play button on it, when the image is clicked, have it insert the flash video. That way, only the same image is loaded for each video until play is clicked, only then is the video inserted into the DOM.</p> <p><a href="http://robertnyman.com/2007/04/19/flashreplace-a-light-weight-javascript-to-insert-flash-movies-into-your-web-page/" rel="nofollow">http://robertnyman.com/2007/04/19/flashreplace-a-light-weight-javascript-to-insert-flash-movies-into-your-web-page/</a></p> <p>here's some documentation on a class that does it</p> <p><a href="http://code.google.com/p/flashreplace/" rel="nofollow">http://code.google.com/p/flashreplace/</a></p> <p>and there's the code hosted on google.</p> http://stackoverflow.com/questions/1426314/xna-peer-to-peer 3 XNA Peer-to-Peer Shahin 2009-09-15T10:23:22Z 2009-09-15T12:02:30Z <p>Hi, what is the best way for writing an XNA Peer-to-Peer game <strong>without having to use the Windows Live stuff that requires that both players of the game have an XBOX Gold membership</strong></p> <p>I also need some client/server functionality but that isn't as critical yet!</p> <p>Thank you.</p> <p>edit: what does everyone think of this <a href="http://msdn.microsoft.com/en-us/library/system.net.peertopeer.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.net.peertopeer.aspx</a></p> http://stackoverflow.com/questions/784461/how-do-you-clear-your-mind-after-8-10-hours-per-day-of-coding/1344682#1344682 0 Answer by Shahin for How do you clear your mind after 8-10 hours per day of coding? Shahin 2009-08-28T02:10:05Z 2009-08-28T02:10:05Z <p>Unfortunately for me, if I'm feeling down after work, I just drink until I can't feel feelings any more =[</p> http://stackoverflow.com/questions/1344616/max-length-of-query-string-in-an-ajax-get-request/1344627#1344627 0 Answer by Shahin for Max length of query string in an AJAX GET request? Shahin 2009-08-28T01:46:37Z 2009-08-28T01:46:37Z <p>Max length for a GET is 2,048 characters =]</p> http://stackoverflow.com/questions/1323902/windows-authentication-in-asp-net 0 Windows Authentication in ASP.NET Shahin 2009-08-24T18:16:04Z 2009-08-24T18:17:34Z <p>Hi, is there any way to use windows authentication in ASP.NET without needing a windows account? I need a virtual directory to be passworded using the browser authentication prompt.</p> http://stackoverflow.com/questions/1306211/c-net-handling-javascript-array-serialization 0 C# (.NET) handling Javascript Array/Serialization Shahin 2009-08-20T13:31:59Z 2009-08-20T15:11:33Z <p>I'm using tableDnD to re-order table rows, and then serialize them using "$.tableDnD.serialize()"</p> <p>I want to send this to C# for processing, what's the best of doing so?</p> <p>The below is an example of the serialization</p> <pre><code>pages[]=&amp;pages[]=21&amp;pages[]=23&amp;pages[]=34&amp;pages[]=37&amp;pages[]=40&amp;pages[]=43&amp;pages[]=46&amp;pages[]=49&amp;pages[]=31&amp;pages[]=50&amp;pages[]=51&amp;pages[]=52&amp;pages[]=53&amp;pages[]=54&amp;pages[]=55&amp;pages[]=56&amp;pages[]=57&amp;pages[]=58&amp;pages[]=61&amp;pages[]=65&amp;pages[]=70&amp;pages[]=74&amp;pages[]=77&amp;pages[]=78&amp;pages[]=79&amp;pages[]=82&amp;pages[]=85&amp;pages[]=88&amp;pages[]=91&amp;pages[]=94&amp;pages[]=97&amp;pages[]=100&amp;pages[]=103&amp;pages[]=106&amp;pages[]=109&amp;pages[]=112&amp;pages[]=115&amp;pages[]=119&amp;pages[]=122&amp;pages[]=123 </code></pre> <p>Important Information <strong>I tagged this as MVC but forgot to mention it. I'm using ASP.NET MVC</strong></p> http://stackoverflow.com/questions/217034/neural-networks-or-human-computer-interaction 7 Neural Networks or Human-computer interaction Shahin 2008-10-19T21:52:02Z 2009-07-19T05:05:07Z <p>I will be entering my third year of university in my next academic year, once I've finished my placement year as a web developer, and I would like to hear some opinions on the two modules in the Title.</p> <p>I'm interested in both, however I want to pick one that will be relevant to my career and that I can apply to systems I develop.</p> <p>I'm doing an Internet Computing degree, it covers web development, networking, database work and programming. Though I have had myself set on becoming a web developer I'm not so sure about that any more so am trying not to limit myself to that area of development.</p> <p>I know HCI would help me as a web developer, but do you think it's worth it? Do you think Neural Network knowledge could help me realistically in a system I write in the future?</p> <p>Thanks.</p> http://stackoverflow.com/questions/701087/iphone-webapp-cache 1 iPhone WebApp cache Shahin 2009-03-31T13:55:14Z 2009-06-18T23:19:51Z <p>Hi, I've made a simple Web Application for the iPhone, it's just 6 pages each with an image on it and I use the Cube transition to switch between them, all static content.</p> <p>I need this to work on an iPod Touch offline, i.e. visit it once, disconnect from WiFi, and then be able to browse the static site.</p> <p>I'm trying to do this using the HTML5 manifest feature, but I'm clearly doing it wrong?</p> <p>My Manifest file:</p> <pre><code>CACHE MANIFEST index.html main.css main.js Images/Appointments_Page.png Images/backgroundStripes.png Images/button.png Images/button1.png Images/button1_clicked.png Images/button2.png Images/button2_clicked.png Images/button3.png Images/button3_clicked.png Images/button_clicked.png Images/CloseIcon.png Images/CloseIcon_pressed.png Images/Efficacy_Page.png Images/EfficacyGraph_Page.png Images/Graph_Icon.png Images/GraphIcon.png Images/GraphIcon_pressed.png Images/Home_Page.png Images/Tolerability_Page.png Images/TolerabilityTable_Page.png Images/WebClipIcon.png Parts/ButtonHandler.js Parts/PushButton.js Parts/setup.js Parts/StackLayout.js Parts/Transitions.css Parts/Transitions.js Parts/utilities.js </code></pre> <p>top of my HTML file</p> <pre><code>&lt;!DOCTYPE HTML&gt; &lt;html manifest="cache-manifest"&gt; </code></pre> http://stackoverflow.com/questions/701087/iphone-webapp-cache/701806#701806 2 Answer by Shahin for iPhone WebApp cache Shahin 2009-03-31T16:13:37Z 2009-03-31T16:13:37Z <p>Hey I figured it out, leaving answer here in case it helps anyone else.</p> <p>The problem I was having was that our server (IIS6) was refusing to serve my manifest file.</p> <p>I had to add the MIME type ".manifest" using "text/cache-manifest".</p> <p>Since then it's been caching fine, all 40+ files ranging from 1kb to 200kb.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/314933/asp-net-mvc-how-do-i-pass-a-list-from-a-class-in-model-to-a-repeater-in-a-view 1 ASP.NET MVC: How do I pass a list (from a class in Model) to a repeater in a View? Shahin 2008-11-24T18:11:21Z 2009-03-19T10:34:34Z <p>How do I do the above? I've started using MVC and I'm having issues passing data around.</p> <p>My specific problem is to do with a list of objects I have in my Model which I need to access in a View and iterate through.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/473474/asp-net-membership-web-based-administration 1 ASP.NET Membership Web-Based Administration Shahin 2009-01-23T16:09:07Z 2009-01-23T21:12:32Z <p>Hi,</p> <p>Does anyone know if there's a way to manage users/roles in the asp.net membership database using a web-based interface you can access remotely?</p> <p>I need one which doesn't require installation to the Default Website.</p> <p>Thanks</p> http://stackoverflow.com/questions/453340/are-you-a-mit-person-or-a-berkeley-person/453589#453589 0 Answer by Shahin for Are you a MIT person or a Berkeley person? Shahin 2009-01-17T16:58:26Z 2009-01-17T16:58:26Z <p>Isn't the whole point to create a solution to a problem, which best suites the end user? I'd have no problem making my code absolute dirt (only if I had to) if it improves the user experience.</p> http://stackoverflow.com/questions/298580/subsonic-join-issue 0 Subsonic Join issue Shahin 2008-11-18T12:18:58Z 2009-01-16T06:25:47Z <p>For those of you who are decent with subsonic!</p> <pre><code> TblNewsCollection col = new Select().From(Tables.TblNews) .InnerJoin(Tables.TblContent) .Paged(currentPage, pageSize) .OrderDesc(TblContent.Columns.PubDate) .ExecuteAsCollection&lt;TblNewsCollection&gt;(); </code></pre> <p>The above works, no problem, but when I try to add a where clause</p> <pre><code> TblNewsCollection col = new Select().From(Tables.TblNews) .InnerJoin(Tables.TblContent) .Where(TblContent.Columns.UserFK) .IsEqualTo(guidUserFK) .Paged(currentPage, pageSize) .OrderDesc(TblContent.Columns.PubDate) .ExecuteAsCollection&lt;TblNewsCollection&gt;(); </code></pre> <p>I get this message</p> <p>System.InvalidCastException: Object must implement IConvertible. at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider) at System.Data.SqlClient.SqlParameter.CoerceValue(Object value, MetaType destinationType) System.InvalidCastException: Failed to convert parameter value from a Guid to a String.</p> <p>I've tried it from other fields, for example a bit field in a database it says it can't convert from bool to bit!</p> <p>Seems to only be an issue on where statements after joins</p> <p>Thanks for help in advance</p> http://stackoverflow.com/questions/391440/make-div-resizeable/391458#391458 2 Answer by Shahin for Make <div> resizeable Shahin 2008-12-24T13:56:39Z 2008-12-24T13:56:39Z <p><a href="http://docs.jquery.com/UI/Resizables" rel="nofollow">http://docs.jquery.com/UI/Resizables</a></p> <p>some of their documentation appears to be down at the moment so for working examples check here</p> <p><a href="http://batiste.dosimple.ch/blog/posts/2008-05-18-1/jquery-drag-and-drop-and-resize-event-delegation.html" rel="nofollow">http://batiste.dosimple.ch/blog/posts/2008-05-18-1/jquery-drag-and-drop-and-resize-event-delegation.html</a></p> http://stackoverflow.com/questions/390659/asp-net-application-slow-to-load-vs2008/390667#390667 0 Answer by Shahin for ASP.Net application slow to load - VS2008 Shahin 2008-12-24T03:08:18Z 2008-12-24T03:08:18Z <p>What browser are you using? For me, if I use Firefox with firebug all my web apps load very slow, all the time! If you're using Firefox, try IE or Chrome to check if that's the case.</p> http://stackoverflow.com/questions/383159/good-web-hosting-solution/383184#383184 1 Answer by Shahin for Good web hosting solution Shahin 2008-12-20T10:42:02Z 2008-12-20T10:42:02Z <p>Hey, I think I posted about this a while back, give it a look.</p> <p><a href="http://stackoverflow.com/questions/303579/affordable-windows-host">http://stackoverflow.com/questions/303579/affordable-windows-host</a></p> http://stackoverflow.com/questions/366295/is-programming-for-the-elite-or-can-everybody-learn-to-program/366470#366470 0 Answer by Shahin for Is programming for the elite or can everybody learn to program Shahin 2008-12-14T12:14:39Z 2008-12-14T12:14:39Z <p>With time and motivation on your side achieving anything is possible, so I don't think programming is for the elite, some are 'naturally' better than others whatever that means, but that's just a bonus for them not a con for you.</p> http://stackoverflow.com/questions/336595/tool-for-comparing-web-config-files/336647#336647 0 Answer by Shahin for Tool for comparing web.config files Shahin 2008-12-03T09:38:35Z 2008-12-03T09:38:35Z <p>In my experience, Araxis merge is the best tool for comparing any documents:</p> <p><a href="http://www.araxis.com/merge/index.html" rel="nofollow">http://www.araxis.com/merge/index.html</a></p> <p>Use it myself at work.</p> http://stackoverflow.com/questions/336446/fileupload-using-ajax-in-asp-net-with-c/336484#336484 2 Answer by Shahin for FileUpload Using Ajax In ASP.NET With C# Shahin 2008-12-03T08:15:58Z 2008-12-03T08:15:58Z <p>SWFUpload</p> <p><a href="http://demo.swfupload.org/v220beta3/simpledemo/index.php" rel="nofollow">http://demo.swfupload.org/v220beta3/simpledemo/index.php</a></p> <p><a href="http://swfupload.org/" rel="nofollow">http://swfupload.org/</a></p> <p>Javascript and Flash, there's no post-back :) and there's .NET implementations available on the site.</p> http://stackoverflow.com/questions/335933/whats-the-best-way-to-raise-an-exception-in-c/335939#335939 0 Answer by Shahin for What's the best way to raise an exception in C#? Shahin 2008-12-03T00:48:23Z 2008-12-03T00:48:23Z <p>throw exceptionhere;</p> <p>Isn't it?</p> <p>Example I found was</p> <pre><code> if (args.Length == 0) { throw new ArgumentException("A start-up parameter is required."); } </code></pre> http://stackoverflow.com/questions/335802/when-you-start-thinking-about-a-programming-project-what-do-you-do-first/335814#335814 1 Answer by Shahin for When you start thinking about a programming project what do you do first? Shahin 2008-12-02T23:30:31Z 2008-12-02T23:30:31Z <p>I write down a feature list, then go into it with a bit of detail, then I start some scribbling of my objects and how they'll interact with each other, kind of a half-arsed DFD.. all my drawings are a mess!</p> http://stackoverflow.com/questions/335546/even-column-heights-without-using-a-table/335603#335603 3 Answer by Shahin for Even column heights without using a TABLE Shahin 2008-12-02T21:53:52Z 2008-12-02T23:14:52Z <p><a href="http://www.xs4all.nl/~peterned/examples/csslayout1.html" rel="nofollow">http://www.xs4all.nl/~peterned/examples/csslayout1.html</a></p> <p>this is the kind of thing you want, give them both a height of 100% (using this css trick) and they'll stretch out to the height of the containing div!</p> <p>edit: forgot to mention, put them in a container div!</p> <p>Edit: </p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style&gt; html, body { margin: 0; padding: 0; height: 100%; /* needed for container min-height */ } #container { background-color: #333333; width: 500px; height: auto !important; /* real browsers */ height: 100%; /* IE6: treaded as min-height*/ min-height: 100%; /* real browsers */ } #colOne, #colTwo { width: 250px; float: left; height: auto !important; /* real browsers */ height: 100%; /* IE6: treaded as min-height*/ min-height: 100%; /* real browsers */ } #colOne { background-color: #cccccc; } #colTwo { background-color: #f4f5f3; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="container"&gt; &lt;div id="colOne"&gt; this is something&lt;/div&gt; &lt;div id="colTwo"&gt; this is also something&lt;/div&gt; &lt;div style="clear: both;"&gt; &lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1812710/farseer-physics-xna-geom-tripping Comment by Shahin on Farseer Physics XNA Geom 'Tripping' Shahin 2009-11-28T22:58:29Z 2009-11-28T22:58:29Z Hi Martin, I tried using a circle for it and it still trips, I can't figure out why. http://stackoverflow.com/questions/1441872/flash-video-automatically-starts-downloading-dont-want-them-to/1441957#1441957 Comment by Shahin on Flash Video automatically starts downloading (don't want them to) Shahin 2009-09-18T23:03:06Z 2009-09-18T23:03:06Z well you know me.. I try.. ;) http://stackoverflow.com/questions/1433622/how-to-write-a-terms-of-reference/1433715#1433715 Comment by Shahin on How to write a terms of reference Shahin 2009-09-16T15:58:12Z 2009-09-16T15:58:12Z it's for my final year project which is why it seems quite large http://stackoverflow.com/questions/1433622/how-to-write-a-terms-of-reference Comment by Shahin on How to write a terms of reference Shahin 2009-09-16T15:19:15Z 2009-09-16T15:19:15Z <a href="http://en.wikipedia.org/wiki/Terms_of_reference" rel="nofollow">en.wikipedia.org/wiki/Terms_of_reference</a> here's what i could find on wikipedia http://stackoverflow.com/questions/1433622/how-to-write-a-terms-of-reference Comment by Shahin on How to write a terms of reference Shahin 2009-09-16T15:16:04Z 2009-09-16T15:16:04Z seems to be a computing related question but already 2 close requests? http://stackoverflow.com/questions/1426314/xna-peer-to-peer/1426661#1426661 Comment by Shahin on XNA Peer-to-Peer Shahin 2009-09-15T12:37:08Z 2009-09-15T12:37:08Z and windows 7 I guess? http://stackoverflow.com/questions/1426314/xna-peer-to-peer/1426379#1426379 Comment by Shahin on XNA Peer-to-Peer Shahin 2009-09-15T10:43:14Z 2009-09-15T10:43:14Z off-line profiles only allow local multiplayer, you need XBox gold membership for remote multiplayer http://stackoverflow.com/questions/1344616/max-length-of-query-string-in-an-ajax-get-request/1344641#1344641 Comment by Shahin on Max length of query string in an AJAX GET request? Shahin 2009-08-28T01:52:44Z 2009-08-28T01:52:44Z Isn't it browser based? http://stackoverflow.com/questions/1306211/c-net-handling-javascript-array-serialization/1306765#1306765 Comment by Shahin on C# (.NET) handling Javascript Array/Serialization Shahin 2009-08-20T15:08:40Z 2009-08-20T15:08:40Z I like the look of this solution, thanks I'm going to give this a go now http://stackoverflow.com/questions/1306211/c-net-handling-javascript-array-serialization/1306306#1306306 Comment by Shahin on C# (.NET) handling Javascript Array/Serialization Shahin 2009-08-20T13:49:26Z 2009-08-20T13:49:26Z I'm simply posting it, I can receive that string in C#, what I'm wondering is if there's a way to interpret it as an array in c# like you can do in PHP like for example <a href="http://www.isocra.com/articles/ajaxTest_php.html" rel="nofollow">isocra.com/articles/ajaxTest_php.html</a> http://stackoverflow.com/questions/473474/asp-net-membership-web-based-administration/474212#474212 Comment by Shahin on ASP.NET Membership Web-Based Administration Shahin 2009-01-26T09:50:55Z 2009-01-26T09:50:55Z Seems that's what I'm going to have to do. http://stackoverflow.com/questions/390659/asp-net-application-slow-to-load-vs2008/390667#390667 Comment by Shahin on ASP.Net application slow to load - VS2008 Shahin 2009-01-21T20:43:42Z 2009-01-21T20:43:42Z Thanks for the tip I'll definitely give it a go at work tomorrow http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234152#234152 Comment by Shahin on What is your best programmer joke? Shahin 2009-01-13T00:13:14Z 2009-01-13T00:13:14Z ouch ffpf, bitter! http://stackoverflow.com/questions/357167/what-is-the-origin-of-your-so-username Comment by Shahin on What is the origin of your SO username? Shahin 2009-01-13T00:04:39Z 2009-01-13T00:04:39Z Can't tell whether I'm on this topics comments or on an IRC channel http://stackoverflow.com/questions/395923/java-2d-game-programming-newbie-questions/395942#395942 Comment by Shahin on Java 2D game programming - Newbie questions Shahin 2008-12-28T14:36:48Z 2008-12-28T14:36:48Z Should be using 'sprite sheets', many related sprites in one image