User Shahin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T02:43:59Zhttp://stackoverflow.com/feeds/user/29445http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812710/farseer-physics-xna-geom-tripping0Farseer Physics XNA Geom 'Tripping'Shahin2009-11-28T15:02:02Z2009-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-authorization4ASP.NET MVC AuthorizationShahin2008-12-01T00:10:47Z2009-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-game0XNA Matrix Camera Scale Issue in 2D GameShahin2009-11-13T09:41:11Z2009-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#17339970Answer by Shahin for XNA Matrix Camera Scale Issue in 2D GameShahin2009-11-14T11:34:49Z2009-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-image2Render HTML as an ImageShahin2008-12-02T16:19:00Z2009-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-alone0PNRP Global_ stuck on AloneShahin2009-09-20T12:01:36Z2009-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#14483140Answer by Shahin for PHP echo Question?Shahin2009-09-19T10:49:38Z2009-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#144210310Answer by Shahin for Should we deprecate the "Remember Me" checkbox and start assuming?Shahin2009-09-18T00:52:00Z2009-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#14419570Answer by Shahin for Flash Video automatically starts downloading (don't want them to)Shahin2009-09-18T00:02:55Z2009-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-peer3XNA Peer-to-PeerShahin2009-09-15T10:23:22Z2009-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#13446820Answer by Shahin for How do you clear your mind after 8-10 hours per day of coding?Shahin2009-08-28T02:10:05Z2009-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#13446270Answer by Shahin for Max length of query string in an AJAX GET request?Shahin2009-08-28T01:46:37Z2009-08-28T01:46:37Z<p>Max length for a GET is 2,048 characters =]</p>
http://stackoverflow.com/questions/1323902/windows-authentication-in-asp-net0Windows Authentication in ASP.NETShahin2009-08-24T18:16:04Z2009-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-serialization0C# (.NET) handling Javascript Array/SerializationShahin2009-08-20T13:31:59Z2009-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[]=&pages[]=21&pages[]=23&pages[]=34&pages[]=37&pages[]=40&pages[]=43&pages[]=46&pages[]=49&pages[]=31&pages[]=50&pages[]=51&pages[]=52&pages[]=53&pages[]=54&pages[]=55&pages[]=56&pages[]=57&pages[]=58&pages[]=61&pages[]=65&pages[]=70&pages[]=74&pages[]=77&pages[]=78&pages[]=79&pages[]=82&pages[]=85&pages[]=88&pages[]=91&pages[]=94&pages[]=97&pages[]=100&pages[]=103&pages[]=106&pages[]=109&pages[]=112&pages[]=115&pages[]=119&pages[]=122&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-interaction7Neural Networks or Human-computer interactionShahin2008-10-19T21:52:02Z2009-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-cache1iPhone WebApp cacheShahin2009-03-31T13:55:14Z2009-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><!DOCTYPE HTML>
<html manifest="cache-manifest">
</code></pre>
http://stackoverflow.com/questions/701087/iphone-webapp-cache/701806#7018062Answer by Shahin for iPhone WebApp cacheShahin2009-03-31T16:13:37Z2009-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-view1ASP.NET MVC: How do I pass a list (from a class in Model) to a repeater in a View?Shahin2008-11-24T18:11:21Z2009-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-administration1ASP.NET Membership Web-Based AdministrationShahin2009-01-23T16:09:07Z2009-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#4535890Answer by Shahin for Are you a MIT person or a Berkeley person?Shahin2009-01-17T16:58:26Z2009-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-issue0Subsonic Join issueShahin2008-11-18T12:18:58Z2009-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<TblNewsCollection>();
</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<TblNewsCollection>();
</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#3914582Answer by Shahin for Make <div> resizeableShahin2008-12-24T13:56:39Z2008-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#3906670Answer by Shahin for ASP.Net application slow to load - VS2008Shahin2008-12-24T03:08:18Z2008-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#3831841Answer by Shahin for Good web hosting solutionShahin2008-12-20T10:42:02Z2008-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#3664700Answer by Shahin for Is programming for the elite or can everybody learn to programShahin2008-12-14T12:14:39Z2008-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#3366470Answer by Shahin for Tool for comparing web.config filesShahin2008-12-03T09:38:35Z2008-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#3364842Answer by Shahin for FileUpload Using Ajax In ASP.NET With C#Shahin2008-12-03T08:15:58Z2008-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#3359390Answer by Shahin for What's the best way to raise an exception in C#?Shahin2008-12-03T00:48:23Z2008-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#3358141Answer by Shahin for When you start thinking about a programming project what do you do first?Shahin2008-12-02T23:30:31Z2008-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#3356033Answer by Shahin for Even column heights without using a TABLEShahin2008-12-02T21:53:52Z2008-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><html>
<head>
<style>
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;
}
</style>
</head>
<body>
<div id="container">
<div id="colOne">
this is something</div>
<div id="colTwo">
this is also something</div>
<div style="clear: both;">
</div>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1812710/farseer-physics-xna-geom-trippingComment by Shahin on Farseer Physics XNA Geom 'Tripping'Shahin2009-11-28T22:58:29Z2009-11-28T22:58:29ZHi 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#1441957Comment by Shahin on Flash Video automatically starts downloading (don't want them to)Shahin2009-09-18T23:03:06Z2009-09-18T23:03:06Zwell you know me.. I try.. ;)http://stackoverflow.com/questions/1433622/how-to-write-a-terms-of-reference/1433715#1433715Comment by Shahin on How to write a terms of referenceShahin2009-09-16T15:58:12Z2009-09-16T15:58:12Zit's for my final year project which is why it seems quite largehttp://stackoverflow.com/questions/1433622/how-to-write-a-terms-of-referenceComment by Shahin on How to write a terms of referenceShahin2009-09-16T15:19:15Z2009-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 wikipediahttp://stackoverflow.com/questions/1433622/how-to-write-a-terms-of-referenceComment by Shahin on How to write a terms of referenceShahin2009-09-16T15:16:04Z2009-09-16T15:16:04Zseems to be a computing related question but already 2 close requests?http://stackoverflow.com/questions/1426314/xna-peer-to-peer/1426661#1426661Comment by Shahin on XNA Peer-to-PeerShahin2009-09-15T12:37:08Z2009-09-15T12:37:08Zand windows 7 I guess?http://stackoverflow.com/questions/1426314/xna-peer-to-peer/1426379#1426379Comment by Shahin on XNA Peer-to-PeerShahin2009-09-15T10:43:14Z2009-09-15T10:43:14Zoff-line profiles only allow local multiplayer, you need XBox gold membership for remote multiplayerhttp://stackoverflow.com/questions/1344616/max-length-of-query-string-in-an-ajax-get-request/1344641#1344641Comment by Shahin on Max length of query string in an AJAX GET request?Shahin2009-08-28T01:52:44Z2009-08-28T01:52:44ZIsn't it browser based?http://stackoverflow.com/questions/1306211/c-net-handling-javascript-array-serialization/1306765#1306765Comment by Shahin on C# (.NET) handling Javascript Array/SerializationShahin2009-08-20T15:08:40Z2009-08-20T15:08:40ZI like the look of this solution, thanks I'm going to give this a go nowhttp://stackoverflow.com/questions/1306211/c-net-handling-javascript-array-serialization/1306306#1306306Comment by Shahin on C# (.NET) handling Javascript Array/SerializationShahin2009-08-20T13:49:26Z2009-08-20T13:49:26ZI'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#474212Comment by Shahin on ASP.NET Membership Web-Based AdministrationShahin2009-01-26T09:50:55Z2009-01-26T09:50:55ZSeems that's what I'm going to have to do.http://stackoverflow.com/questions/390659/asp-net-application-slow-to-load-vs2008/390667#390667Comment by Shahin on ASP.Net application slow to load - VS2008Shahin2009-01-21T20:43:42Z2009-01-21T20:43:42ZThanks for the tip I'll definitely give it a go at work tomorrowhttp://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234152#234152Comment by Shahin on What is your best programmer joke?Shahin2009-01-13T00:13:14Z2009-01-13T00:13:14Zouch ffpf, bitter!http://stackoverflow.com/questions/357167/what-is-the-origin-of-your-so-usernameComment by Shahin on What is the origin of your SO username?Shahin2009-01-13T00:04:39Z2009-01-13T00:04:39ZCan't tell whether I'm on this topics comments or on an IRC channelhttp://stackoverflow.com/questions/395923/java-2d-game-programming-newbie-questions/395942#395942Comment by Shahin on Java 2D game programming - Newbie questionsShahin2008-12-28T14:36:48Z2008-12-28T14:36:48ZShould be using 'sprite sheets', many related sprites in one image