User iAn - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T19:17:51Zhttp://stackoverflow.com/feeds/user/4396http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1754289/using-string-substring-as-part-of-a-chain/1754330#17543300Answer by iAn for Using string.Substring() as part of a chainiAn2009-11-18T08:02:52Z2009-11-18T08:02:52Z<p>To further Konamiman's comment:</p>
<p>Just because PHP allows bizarre (and frankly dirty and dangerous) overloads and parameters such as negative starts and counts in SubString, it doesn't mean it's the right, correct or proper way of doing it.</p>
<p>Substring(0, mystring.Length - 1) is the <em>de facto</em> way of trimming off the last character of a string in a wide variety of languages.</p>
http://stackoverflow.com/questions/1708078/always-using-custom-data-types/1708108#17081086Answer by iAn for Always using custom data typesiAn2009-11-10T13:50:47Z2009-11-10T13:50:47Z<p>Yes, utter madness - to sum up your idea, and to Paraphrase Blackadder</p>
<blockquote>
<p>It's mad! It's mad. It's madder than Mad Jack McMad, the winner of this year's Mr Madman competition</p>
</blockquote>
http://stackoverflow.com/questions/1707906/how-do-i-learn-a-poorly-documented-open-source-framework/1707932#17079320Answer by iAn for How do I learn a poorly documented open source framework?iAn2009-11-10T13:21:30Z2009-11-10T13:21:30Z<p>If there is little or no documentation / examples, then yes, reading the source code is about your only way forward.</p>
<p>If you are new to the language or concepts behind the framework (e.g. the MVC pattern), I would recommend you try and find something with better documentation, as you will be faced with not only trying to understand the what the code is doing but also why it is doing it.</p>
<p>If you are familiar with the language then it's certainly worth working at it. If you are able to get the framework working, then at the very least blog about it so others in your position can get some help. You could also consider contributing to the project by writing the documentation....</p>
http://stackoverflow.com/questions/1707668/get-linq-to-preload-a-complete-table/1707684#17076840Answer by iAn for Get LINQ to preload a complete tableiAn2009-11-10T12:43:12Z2009-11-10T12:49:46Z<p>Short answer - you don't need to have the ToList() </p>
<p>Long answer - your ToList() call is totally rundant in the supplied example. When working with Linq, nothing it actually executed on your database server until you actually enumerate the IQueryable.</p>
<p>If you just want to get a single record by PK, then just need to work with the data-context directly:</p>
<pre><code>var theStore = dc.Stores.SingleOrDefault(p => p.Id == 124671);
</code></pre>
<p>If you actually want to get all of the records and iterate over them, the you can call ToList() on the table:</p>
<pre><code>var allStores = dc.Stores.ToList()
</code></pre>
<p>If all you want is a single record, performing </p>
<pre><code>var allStores = dc.Stores.ToList();
Store st = allStores.SingleOrDefault(p => p.Id == 124671);
</code></pre>
<p>is a complete failure. You are bringing all of the results into memory and then get .Net to filter the list, thus losing all benefits of indexes on your database etc.</p>
http://stackoverflow.com/questions/1707576/mysql-connection-can-i-leave-it-open/1707651#17076510Answer by iAn for MySql connection, can I leave it open?iAn2009-11-10T12:36:41Z2009-11-10T12:36:41Z<p>No, I don't see any reason why not to leave a connection open and re-use it: after all, this is the whole point behind the various connection-pool technologies that are about (although these are generally reserved for multi-threaded situations where works are all operating on the same data source).</p>
<p>But, to expand on the answer by bobince, - just beacause you are not closing the connection, don't assume that something else won't: the connection could timeout, there could be connection issues or a hundred and one other reasons why your connection dies. You need to assume that the connection may not be there, and add logic to code for this exception-case.</p>
http://stackoverflow.com/questions/1695796/where-to-put-the-validate-logic-in-service-or-repository/1695827#16958271Answer by iAn for where to put the validate logic? In Service or Repository?iAn2009-11-08T09:07:38Z2009-11-08T09:07:38Z<p>Service - Respository patterns can be a little subjective. Of course there are bad / completely wrong examples out there (this one <strong>isn't</strong> though), but more often than not, it's down to personal preference.</p>
<p>The pattern that I tend to follow is that the repository layer should be 99% dedicated to read-write-delete operations with your data source. The only validation that my repository layer performs is very low-level validation on the models: this is typically done via a Model.IsValid method. It checks only for required fields and the format/ basic content of those fields (e.g. a reg-ex check of a field that is supposed to hold and email). The repository layer does not attempt to make sense of these errors - if the model is not valid, then it throws an exception, and that ends it's handling.</p>
<p>Business Logic checks should be performed in the Service Layer. If User objects are allowed to be 'assigned' to a particular Model ("Joe owns record X"), the service layer should perform the checks to ensure that Joe is allowed to own that record etc. To be complete, my Service layer generally also checks the IsValid method on the model as well, in order to pre-empt data-layer exceptions.</p>
<p>My only comment with your example code is with the method name "Save" - this is too ambiguous. I prefer Create/Insert and Update - it is clear then that former will result in a new record being created (to the occasional extent that I overwrite the Id field of the object with a new value), whilst the latter should update a record, and thus would throw an exception if no Id value is passed.</p>
http://stackoverflow.com/questions/1686961/working-with-dates/1686999#16869990Answer by iAn for working with datesiAn2009-11-06T11:24:46Z2009-11-06T11:24:46Z<p>You need to do two steps: firstly convert the your input string into a datetime object PHP can work with, and secondly, extract the month from that dateime. </p>
<pre><code>$timestamp = strtotime($inputDate);
$month = strftime("%m", $timestamp);
</code></pre>
<p>This would give you the month as a two digit number. There are more options in the full <a href="http://www.php.net/manual/en/function.strftime.php" rel="nofollow">documentation for strftime</a></p>
<p>strtotime() should cope with the vast majority of date formats automatically. If it can't cope with your input then you need to use <a href="http://www.php.net/manual/en/function.strptime.php" rel="nofollow">strptime()</a> and pass in your exact format</p>
http://stackoverflow.com/questions/1676133/how-to-add-a-span-class-in-the-following-php/1676273#16762731Answer by iAn for How to add a span class in the following php?iAn2009-11-04T20:05:22Z2009-11-04T20:13:21Z<p>Easiest option is with a little bit of CCS magic. At the moment, I am assuming your template code (for the archive block) is along the lines of:</p>
<pre><code><ul>
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
</code></pre>
<p><strong>Firstly</strong>, add a class to your list:</p>
<pre><code><ul class="archiveList">
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
</code></pre>
<p><strong>Secondly</strong>, add some lines to your CSS to style the relevant bits</p>
<pre><code>.achiveList li {color: red;} /* This is the style for the post count */
.achiveList li a {color: blue;} /* This is the style for the link */
</code></pre>
<p>The Hard option is to set the "echo" parameter on wp_get_achives to 0/false. <strike>That way the method will return an array of data and leave it up to your to loop over it and print it out.</strike> <strong>Edit</strong> My mistake, it returns it just as a string, which means this is going to be quite tricky. Depends on how much styling you need to apply.</p>
http://stackoverflow.com/questions/1672503/adding-asp-net-control-to-page-using-jquery/1673308#16733082Answer by iAn for Adding ASP.NET control to page using jQueryiAn2009-11-04T11:48:08Z2009-11-04T11:48:08Z<p>No, you can't add a server-side asp.net control to a page that has already been rendered using client-side techniques (aka Javascript)</p>
<p>Two options:</p>
<ol>
<li>Firstly, switch to using a client-side colour picker. You can then have the data from this included in the post-back by dynamically adding hidden fields to your form.</li>
<li>Secondly, have a single editing panel which includes your colour picker. Users then select a row to edit, which updates the edit panel with current values etc. Values are stored in hidden fields created when you dynamicaly add rows to your table, and included in the post-back</li>
</ol>
<p>Without seeing your UI, I can't comment as to which would be best. The asp.net control might look nicer, but it might be difficult to work into your design. A pure client-side solution might fit your designer better, but might not look so good. You also need to consider what happens if / when a users adds <em>lots</em> of rows (this might be 10, 50 or 100 depending on your app /code). Lots of dynamically added controls (the first solution) might cripple the performance of the page.</p>
http://stackoverflow.com/questions/1673228/sending-variables-to-php-from-cocoa-touch-on-iphone-sdk/1673253#16732530Answer by iAn for Sending variables to php from Cocoa Touch on iPhone sdkiAn2009-11-04T11:36:44Z2009-11-04T11:36:44Z<p>trying swapping the %d for %s in your call to initWithFormat</p>
<pre><code>NSString *urlstr = [[NSString alloc] initWithFormat:@"http://XXX URL HERE XXX/ringtone_send.php?email=%s&character=%s&charname=%s", emailField.text, picFile, charName];
</code></pre>
http://stackoverflow.com/questions/1656350/php-check-process-id/1656417#16564170Answer by iAn for PHP Check Process IDiAn2009-11-01T04:44:15Z2009-11-01T04:44:15Z<p>As others have said, you cannot change the process id - it is assigned and entirely manged by the kernel of the OS. Additionally, you have not said if this is command-line or web-server based: if it's the latter you may not even be getting the pid of your script.</p>
<p>The <a href="http://php.net/manual/en/function.getmypid.php" rel="nofollow">manual page for getmypid()</a> contains some examples of "optimistic" locking. I use the word optimisitc as PHP is never ever going to approach the likes of an asp.net web application where you have a true threaded environment with shared/static classes and thus Singleton's to use/abuse. Basically you have the option of:</p>
<ul>
<li>Touching a "lock file" on the file-system somewhere. Your script then checks if that file exists: if it does, terminate, otherwise, touch that file and carry on processing</li>
<li>Setting a database based flag to say the script is running. As above, but use a db table/field to mark a script as running.</li>
</ul>
<p>Both of these rely on the script terminating correctly (as the last step would be to remove the lock file/db flag). If a script crashes for any reason (or the machine itself), you can be left with a manual tidy-up process to remove the flag. There is no easy solution for this, but one avenue to explore would be to then look at date-stamping the lock, with an arbitary "if older than X, the last run must have crashed" approach.</p>
http://stackoverflow.com/questions/1654250/in-asp-net-how-can-i-force-the-format-of-dates-in-a-dropdownlist-to-dd-mm-yyyy/1654286#16542860Answer by iAn for In ASP.NET, how can I force the format of dates in a DropDownList to "DD/MM/YYYY"?iAn2009-10-31T12:48:45Z2009-10-31T12:48:45Z<p>Just manually add the items to the DropDownList.Items collection instead of relying on DataBind(): </p>
<pre><code>DateTime date = DateTime.Now;
for (int i = 0; i < HISTORY_LENGTH; i++)
{
DropDownList.Items.Add(new ListItem(date.AddDays(-i).ToString("dd/MM/yyyy"), date.AddDays(-i)))
}
</code></pre>
http://stackoverflow.com/questions/1654101/data-storage-and-retrieval-in-the-database/1654265#16542651Answer by iAn for data storage and retrieval in the database iAn2009-10-31T12:39:02Z2009-10-31T12:39:02Z<p>Working with different character sets can get a bit tricky at times, especially when juggling data between the application and data layers. There are plenty of tutorials / blog posts to be found on the web - a quick google for "PHP MySQL UTF data" brings up a fair few results. But in summary:</p>
<p><strong>PHP</strong></p>
<p>PHP doesn't have <strike>native</strike> very good Unicode support <em>yet</em>: it's far better to utilise a third-part extension, of which <a href="http://php.net/manual/en/book.mbstring.php" rel="nofollow">MBString</a> is the best.</p>
<p><strong>MySQL</strong> </p>
<p>You need to make sure your tables/columns are correctly setup to support UTF character data. This is just a matter of creating/altering the columns in question to use a UTF character set:</p>
<pre><code>ALTER TABLE theTabel MODIFY formTextField VARCHAR(255) CHARACTER SET utf8
</code></pre>
<p><strong>HTML</strong></p>
<p>Finally, you need to make sure your HTML is being served with the correct headers </p>
<pre><code>Content-type: text/html; charset=utf-8
</code></pre>
http://stackoverflow.com/questions/1496335/mysql-subselect-alternative/1496413#14964130Answer by iAn for mysql subselect alternativeiAn2009-09-30T06:32:14Z2009-09-30T06:32:14Z<p>In my opinion, this is another case of "trying to get my rdbms to do everything for me". You have to accept that you can't optimise your database for some scenarios / queries, and no matter how many indexes you add, things like sub-queries are going to slow down the larger parent query.</p>
<p>You above example is a clear case of this: the data you are showing from the sub-query (the performance of a team in the previous season) is static data - it's historical and can't / won't change. You should query for this data separately, hold it in-memory in your application, and manually add it to the results of you main query as you loop over it.</p>
http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1470694#14706944Answer by iAn for What's the worst security hole you've ever seen?iAn2009-09-24T09:43:35Z2009-09-24T10:38:58Z<p>I inherited a client project to baby-sit: an ASP.NET project
(built back on 1.1) that was 50% compiled DLL's (with no
source) and 50% code-behind JIT compiled.</p>
<p>The entire site was supposed to be members only - except the
original developer had built a back-door: simply submit the
login form with a blank username and password, and you would
find yourself logged in as a secret super-admin: do
anything, see everything.</p>
<p>You guessed it: all of the authentication code was hidden
away in the pre-compiled DLL. The worst thing was when I
was informed "it was not on the list of bugs, and the client
won't pay, so leave it". So I did, and it's still live
today.</p>
http://stackoverflow.com/questions/1399173/php-round-numbers-add-decimal-numbers/1399195#13991951Answer by iAn for PHP round numbers, add decimal numbersiAn2009-09-09T11:43:34Z2009-09-09T11:43:34Z<p>You'll want to use printf() for formatted strings: </p>
<pre><code>printf("%01.2f", $start)
</code></pre>
<p>The full manual for (s)printf <a href="http://uk2.php.net/manual/en/function.sprintf.php" rel="nofollow">is here</a> </p>
http://stackoverflow.com/questions/1387944/whats-wrong-with-this-code/1387987#13879871Answer by iAn for Whats wrong with this code?iAn2009-09-07T07:19:32Z2009-09-07T07:19:32Z<p>As nickf correctly pointed out, you need to enclose the strings you are passing into you function in quotes.</p>
<p>You can also short-cut the manual strings by passing in the ID of the image:</p>
<pre><code>onmouseover="menuhover(this.id, 'over')"
</code></pre>
<p>You can take this a step further and use the Event object that is generated, and thus remove the need to hard-code the 'over' and 'out' parts. (Oh and take a look at the Switch statement to get rid of that nasty mess of if {} elseif {} else {} blocks)</p>
<p>And for a third option, if all you are doing is setting hover/out images, you can do all of this with CSS.</p>
http://stackoverflow.com/questions/1379009/how-to-make-next-step-of-a-string-c/1379267#13792670Answer by iAn for How to make next step of a string. C#iAn2009-09-04T13:29:21Z2009-09-04T13:54:24Z<p>You need to account for A) the fact that capital letters have a lower decimal value in the Ascii table than lower case ones. B) The table is not continuous A-Z-a-z - there are characters inbetween Z and a.</p>
<pre><code>public static string stepChar(string str)
{
return stepChar(str, str.Length - 1);
}
public static string stepChar(string str, int charPos)
{
return stepChar(Encoding.ASCII.GetBytes(str), charPos);
}
public static string stepChar(byte[] strBytes, int charPos)
{
//Escape case
if (charPos < 0)
{
//just prepend with a and return
return "a" + Encoding.ASCII.GetString(strBytes);
}
else
{
strBytes[charPos]++;
if (strBytes[charPos] == 91)
{
//Z -> a plus increment previous char
strBytes[charPos] = 97;
return stepChar(strBytes, charPos - 1); }
else
{
if (strBytes[charPos] == 123)
{
//z -> A
strBytes[charPos] = 65;
}
return Encoding.ASCII.GetString(strBytes);
}
}
}
</code></pre>
<p>You'll probably want some checking in place to ensure that the input string only contains chars A-Za-z</p>
<p><hr /></p>
<p><strong>Edit</strong> Tidied up code and added new overload to remove redundant byte[] -> string -> byte[] conversion</p>
<p><img src="http://geekcubed.org/random/strIncr.png" alt="Proof" /></p>
http://stackoverflow.com/questions/1373548/google-maps-stopped-working-suddenly-blank-map/1373594#13735942Answer by iAn for Google Maps Stopped working suddenly (Blank Map)iAn2009-09-03T14:05:46Z2009-09-03T14:05:46Z<p>The point you are trying to centre the map onto isn't a valid Lat/Lon pair: Latitude runs from +/-90 degrees: you're passing in +103.8</p>
<p>seems like you've got your parameters the wrong way around (Lat +1.37, Lon +103.8 puts you in Malaysia)</p>
http://stackoverflow.com/questions/1373525/mysql-union-query-w-left-join-order-by-error/1373552#13735520Answer by iAn for MySQL Union Query w/ Left Join - Order By Error ?iAn2009-09-03T13:57:14Z2009-09-03T13:57:14Z<p>The Orderby is being applied to the combined result-set - after the Union has taken place. At this point, there is only one table so to speak, so the reference to b.Info will be invalid.</p>
<pre><code>SELECT a.Name AS 'NameCol', b.Info AS 'InfoCol' FROM a LEFT JOIN b ON (a.ID = b.ID) WHERE
a.Name LIKE "a%" UNION SELECT a.Name AS 'Name', b.Info AS 'Info' FROM a LEFT JOIN b ON
(a.ID = b.ID) WHERE a.Name LIKE "b%" ORDER BY NameCol, InfoCol;
</code></pre>
<p>Be aware that this could be potentially very slow (with large result sets), as you are forcing MySQL to use a temporary table for the sorting operation.</p>
http://stackoverflow.com/questions/1334199/jquery-get-width-not-working-in-ie6-or-ie7/1334247#13342472Answer by iAn for Jquery Get width not working in IE6 or IE7iAn2009-08-26T12:07:30Z2009-08-26T12:07:30Z<p>the following css should automatically centre a div:</p>
<pre><code>display: block;
margin: 0 auto;
</code></pre>
http://stackoverflow.com/questions/1332385/postmaxsize-and-uploadmaxfilesize-on-a-case-by-case-basis/1333797#13337971Answer by iAn for post_max_size and upload_max_filesize on a case by case basisiAn2009-08-26T10:39:44Z2009-08-26T10:39:44Z<p>You should be able to do this via a .htaccess file. Say you want to allow 10Mb uploads for the admin area, and 2 for the public side. I'd set the default value (in php.ini) to be 2 Mb, and then in the admin area, add to a htaccess file:</p>
<pre><code>php_flag upload_max_filesize 10M
</code></pre>
<p><hr /></p>
<p><strong>Edit</strong><br />
This is intended to work on a directory level - I've assumed your admin pages all run from say mydomain.com/admin/ with a physical /admin folder in your webroot (where you put the .htaccess file)</p>
http://stackoverflow.com/questions/1333701/how-can-i-filter-blog-posts-by-author/1333758#13337581Answer by iAn for How can I filter blog posts by author?iAn2009-08-26T10:31:33Z2009-08-26T10:31:33Z<p>There are a few plug-ins which can do this for you - such <a href="http://www.dagondesign.com/articles/posts-by-author-plugin-for-wordpress/" rel="nofollow">as this one</a></p>
<p>If they don't quite what you want, they should serve as a good starting point for writing your own plugin (which isn't that scary or difficult)</p>
http://stackoverflow.com/questions/1332234/best-way-to-display-this-in-a-form/1333702#13337020Answer by iAn for Best way to display this in a form?iAn2009-08-26T10:18:59Z2009-08-26T10:18:59Z<p>As this is more about the UI of the application than anything else, I don't think there is going to be a single right answer, as it will come down to a combination of what works (which is difficult without being able to see / play with things) and your personal preferences.</p>
<p>A few progressions I would run through:</p>
<ul>
<li><strong>Visual feedback</strong> <br />
Make you table more interactive by providing visual feedback to the user. At the most basic level, try adding some colour to the cells - a colour for those that are checked. This will allow the user to quickly see which options are "in play". It may be the reverse of this works better (highlighting unchecked cells) - but this all depends what the form is doing / intending to indicate - i.e. if it's more important to make clear that the unchecked state is bad, you may want these to be red.</li>
</ul>
<p>The next level up is to add some dynamic highlighting. If the table is huge, you may want to highlight the row and column header cells that correspond the the cell under the cursor. You could also consider highlight the whole row / column (cross-hair style) to allow the user to examine 'companion' cells.</p>
<ul>
<li><p><strong>Dynamic table</strong> <br />
Slightly more involved would be to add some spice to you table. Instead of showing rows and columns of check-boxes, use graphical icons / images. They are a lot easier on the eye, and will probably allow you to have tighter control on the dimensions of the table. The entire UI could then be done via Javascript and on-click - which is pretty easy these days if you employ something like JQuery.</p></li>
<li><p><strong>Split the interface</strong> <br />
<em>This is based on the assumption that all combinations of Table A & Table B aren't setup in the pivot table to begin with - only when a user tries to relate A.item with B.item</em>
<br />Instead of showing all possible combinations, show only those which are active (have an entry in the pivot table). Then provide the user with a second form (probably of two drop-downs) that allows them to relate a record from the first table to the second.</p></li>
<li><p><strong>Filter the interface</strong> <br />
Provide the user with the ability to filter the interface - to show only the relationships between a single record from one of the tables. This would have the effect of restricting your table to a single column, making it a bit easier to accommodate in the design.</p></li>
</ul>
<p>However, I would still allow the user to get to the "big view" of all records, as, depending on what you are doing, such as view can be very useful to quickly cross reference lots of records.</p>
http://stackoverflow.com/questions/1332510/how-to-change-from-address-when-using-gmail-smtp-server/1332803#13328034Answer by iAn for How to change from-address when using gmail smtp serveriAn2009-08-26T06:55:11Z2009-08-26T06:55:11Z<p>The short answer - you can't.</p>
<p>Google rewrites the From and Reply-To headers in messages you send via it's SMTP service to values which relate to your gmail account. </p>
<p>The SMTP feature of gmail isn't intended to be an open or relay service. If it allowed any values for the From header, it would significantly dilute Google's standing with spam services, as there would be no way to verify the credentials of the sender.</p>
<p>You need to consider alternatives. How are you planning to host your script/application/website when it's finished: virtually every hosting solutions (shared/vps/dedicated server) will come pre-configured with an email transfer solution: be it sendmail or postfix on *nix, or IIS on Windows.</p>
<p>If you are intent on using gmail then you could:</p>
<ul>
<li>Setup a dedicated "myapp@gmail.com" account</li>
<li>If you own the domain you are supposedly sending from, use the <a href="http://www.google.com/a/" rel="nofollow">free gmail for domains</a>, and setup a "myapp@mydomain.com" account.</li>
</ul>
http://stackoverflow.com/questions/1298184/xbox-programming/1298305#12983051Answer by iAn for Xbox programmingiAn2009-08-19T07:27:51Z2009-08-19T07:27:51Z<p>Good to see some people getting enthusiastic about programming - and better still playing about with C. Starting out with C, even if it's to do basic "Hello World" style programmes, will give you a good basic understanding of concepts like memory management etc.</p>
<p>But as others have said - don't wait too long to jump over to C# and XNA: yes the frameworks are quite big and scary, but you'll be amazed at how quickly you can get things done once you get a basic grasp of the language.</p>
<p>A few points I'd like to point across:</p>
<ul>
<li><p>Firstly, do not be discouraged or disheartened when something doesn't work, or when something breaks, or if you receive negative feedback (the proverbial "it sucks" review). If you are confident in your idea and more importantly, if you are enjoying it, <em>keep going</em>.</p></li>
<li><p>Don't expect to be producing awesome graphics and FPS style games from day one: but don't let that worry you. For big budget games, the "media" side (3D models, artwork, audio) are at least a big a job as the actual game programming, if not more.</p></li>
<li><p>Start with a good idea and be confident in it. Don't worry about graphics: if the game is good people will enjoy it. Look at the vast majority of "market place" games (iPhone, Android Marketplace, XBox, Facebook): they all have fairly basic graphics but are based on good solid concepts. And some of them make money, lots of it.</p></li>
<li><p>If you stop enjoying a particular task / project, don't worry about parking it for a while and moving on. More often than not you'll have an "eureka moment" (probably at 3am if you are like me) and come back to it with renewed enthusiasm.</p></li>
</ul>
http://stackoverflow.com/questions/1293040/how-to-manage-single-javascript-file-in-asp-net-mvc-application/1293089#12930894Answer by iAn for How to manage single JavaScript file in ASP.NET MVC application?iAn2009-08-18T10:37:37Z2009-08-18T10:37:37Z<p>As I see it, I don't think your project / application is going to support that pattern of improving performance. Personally, if you have a lot of view-specific JavaScript going on (do X on View1, Y on View2), I think your view templates are the perfect place for them. I would:</p>
<ol>
<li>Reference third-party libraries from CDN's - google for JQuery etc.</li>
<li>Combine all of my helper / utility functions into a single JS file. Ensure this is suitably "minified" / compressed, and put a reference to it in your masterpage / common header file.</li>
<li>Implement page specific JavaScript as part of your view files. Just make sure they are clean and separated from the actual HTML. Regularly keep a check on what is in your view JavaScript, and if you are repeating functionality, abstract it out into your source file of common / utility methods.</li>
</ol>
http://stackoverflow.com/questions/1281713/whats-wrong-with-my-http-redirect/1281728#12817286Answer by iAn for What’s wrong with my HTTP redirect?iAn2009-08-15T11:39:17Z2009-08-15T11:39:17Z<p>You'll want to issue a HTTP Header to redirect the client:</p>
<pre><code>if ($redirect == true) {
//redirect
header("Location: http://www.mysite.com/noauth.php");
//And exit
exit;
}
</code></pre>
<p>See <a href="http://www.php.net/manual/en/function.header.php" rel="nofollow">PHP Manual on Headers</a>. You need to exercise some care when using headers: they have to be sent before any other output to the client. This includes any rogue white space you might have at the top of your php scripts, which will throw an error if you try and issue a new header.</p>
http://stackoverflow.com/questions/1281554/client-side-technology-for-a-web-based-game/1281597#12815972Answer by iAn for Client-side technology for a web-based game iAn2009-08-15T10:24:19Z2009-08-15T10:24:19Z<p>My 2 cents:</p>
<p><strong>Html/Css/Javascript (aka AJAX)</strong></p>
<ul>
<li>Plus: No client plugin required - "instant on", so you are open to a wider audience (No need to worry about flash versions etc.)</li>
<li>Plus: Depending on your skillset, you should be able to get something up and running much faster (assuming you are a web developer not a flash guru)</li>
<li>Plus: should be easier to maintain as wider number of people available to employ to help out.</li>
<li>Minus: You are going to be more restricted over the visual design</li>
<li>Minus: You are going to have to spend more time over cross-browser issues, specifically the design more than anything else</li>
</ul>
<p><strong>Flash / Flex</strong></p>
<ul>
<li>Plus: Gives you a much richer design environment in which to work</li>
<li>Plus: No real need to worry about cross-browser issues.</li>
<li>Minus: Might not be in your skillset, so will take you longer pickup</li>
<li>Minus: Requires a plugin (not really a big an issue as it used to be)</li>
<li>Minus: Bringing someone in to help / maintain could be more costly.</li>
</ul>
http://stackoverflow.com/questions/1253499/simple-calculations-for-working-with-lat-lon-km-distance/1253506#1253506-1Answer by iAn for Simple calculations for working with lat/lon + km distance?iAn2009-08-10T07:18:23Z2009-08-10T07:18:23Z<p>There are 42 pages of questions returned for a search of "lat" - have you looked at any of those? <a href="http://stackoverflow.com/search?q=lat">http://stackoverflow.com/search?q=lat</a> </p>
http://stackoverflow.com/questions/1807906/how-was-a-url-like-http-stackoverflow-com-posts-1807421-edit-created-in-phpComment by iAn on How was a URL like http://stackoverflow.com/posts/1807421/edit created in PHP?iAn2009-11-27T10:27:53Z2009-11-27T10:27:53ZGo look at virtually <i>any</i> php framework - they all do url routing in one form or anotherhttp://stackoverflow.com/questions/1804052/3-jquery-applications-together-problem-with-ie6Comment by iAn on 3 jQuery Applications Together - Problem With IE6 iAn2009-11-26T16:24:02Z2009-11-26T16:24:02ZStop supporting IE6 - for all our sakes.http://stackoverflow.com/questions/1769311/advantages-of-cakephp-over-other-frameworksComment by iAn on Advantages of CakePHP over other frameworks.iAn2009-11-20T11:37:14Z2009-11-20T11:37:14Zo_O - this question ranks #5 in a google search after only 2 hours?http://stackoverflow.com/questions/1754275/for-loop-in-while-loop/1754316#1754316Comment by iAn on For loop in while loopiAn2009-11-18T08:07:48Z2009-11-18T08:07:48Z+1 well spottedhttp://stackoverflow.com/questions/1740610/php-including-2-same-php-files-in-1-pageComment by iAn on PHP: including 2 same php files in 1 pageiAn2009-11-16T07:29:41Z2009-11-16T07:29:41ZAre you sure you are getting inside the conditional block to include it a second time? Try putting an echo "in here" after $toplvl=2; to make sure you are definitely hitting the includehttp://stackoverflow.com/questions/1732155/question-about-the-garbage-collector-in-net-memory-leak/1732168#1732168Comment by iAn on Question about the garbage collector in .NET (memory leak)iAn2009-11-13T22:11:41Z2009-11-13T22:11:41ZYou've obviously never worked with java apps: nothing beats seeing a GC run block every thread in your app for 15 seconds to free 100 Mb on a 2 Gb heap ...http://stackoverflow.com/questions/1721049/good-markup-for-writing-technical-design-documentation/1721057#1721057Comment by iAn on Good markup for writing technical design documentationiAn2009-11-12T09:45:44Z2009-11-12T09:45:44ZIf they are old-fashioned, then are they expecting a printed document? If so, a wiki is more than plausible : you can easily knock up a print style-sheet to correct format the contenthttp://stackoverflow.com/questions/1721053/c-visa-3d-secure-implementationComment by iAn on c# Visa 3d Secure ImplementationiAn2009-11-12T09:40:41Z2009-11-12T09:40:41ZThe implementation is going to depend wholey on the payment gateway you are using to authorise the credit-card transactions. Which service are you using?http://stackoverflow.com/questions/1708078/always-using-custom-data-types/1708114#1708114Comment by iAn on Always using custom data typesiAn2009-11-10T13:59:54Z2009-11-10T13:59:54ZSystem.Net.Mail.MailAddress for emails ;)http://stackoverflow.com/questions/1707806/static-classes-in-php/1707870#1707870Comment by iAn on Static classes in PHPiAn2009-11-10T13:15:42Z2009-11-10T13:15:42ZThis is the Singleton pattern, which is not the same as Statichttp://stackoverflow.com/questions/1707806/static-classes-in-phpComment by iAn on Static classes in PHPiAn2009-11-10T13:14:17Z2009-11-10T13:14:17Z@workmad3 - it gives you pseudo namespace support (which given the kludge that PHP namespaces have turned out to be, may be just as good as the proper thing)http://stackoverflow.com/questions/1707860/regular-expressionsComment by iAn on Regular expressions???iAn2009-11-10T13:12:22Z2009-11-10T13:12:22ZYour question doesn't make a whole lot of sense - what you are trying to use a reg-ex for?http://stackoverflow.com/questions/1707811/is-there-anything-in-asp-net-like-applet-in-java/1707843#1707843Comment by iAn on Is there anything in ASP.Net like applet in javaiAn2009-11-10T13:11:06Z2009-11-10T13:11:06ZNot really, as an applet is essientially stand-alone client-side application. User controls are 100% server-side components that have to be included in a larger application.http://stackoverflow.com/questions/1707569/is-file-exists-an-expensive-operation/1707643#1707643Comment by iAn on Is File.Exists an expensive operation?iAn2009-11-10T12:39:51Z2009-11-10T12:39:51ZThat's not really evidence that the operation is expensivehttp://stackoverflow.com/questions/1699699/php-load-10000-recordsComment by iAn on php load 10000 recordsiAn2009-11-09T08:40:05Z2009-11-09T08:40:05ZYou should be getting some error messages somewhere. Try putting ini_set('display_errors', E_ALL); as the first line of your script: you should then be able to see what's going on