User Gary Willoughby - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T15:17:10Zhttp://stackoverflow.com/feeds/user/13227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1921539/using-boolean-values-in-c/1922279#19222791Answer by Gary Willoughby for Using boolean values in CGary Willoughby2009-12-17T14:54:39Z2009-12-17T14:54:39Z<p>If you are using a C99 compiler it has built-in support for bool types:</p>
<pre><code>#include <stdbool.h>
int main()
{
bool b = false;
b = true;
}
</code></pre>
<p><a href="http://en.wikipedia.org/wiki/Boolean%5Fdata%5Ftype#C99" rel="nofollow">http://en.wikipedia.org/wiki/Boolean_data_type#C99</a></p>
http://stackoverflow.com/questions/1897984/jquery-problem-getting-text-from-a-script-tag0Jquery problem getting text from a script tag?Gary Willoughby2009-12-13T22:15:48Z2009-12-13T22:50:53Z
<p>I have this small HTML document:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>HTML Test</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$("script").each(function()
{
if($(this).attr("type") == "code")
{
alert($(this).text());
}
});
});
</script>
</head>
<body>
<script type="code">
var Text = "Text";
</script>
</body>
</html>
</code></pre>
<p>When run using Firefox the alert displays the text contents of the <code><script type="code"></code> tag. When run in IE8 it displays nothing.</p>
<p>Do you know why? I'm stumped.</p>
http://stackoverflow.com/questions/1894773/best-way-to-add-missing-p-tags-to-text-in-html-while-disregarding-other-tags0Best way to add missing <p> tags to text in HTML while disregarding other tags?Gary Willoughby2009-12-12T21:34:39Z2009-12-12T23:01:36Z
<p>I'm currently writing a function for parsing some HTML and adding tags where necessary. Basically i have a piece of HTML like this:</p>
<pre><code>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse feugiat, nunc at vestibulum egestas.
<script type="c">
#include &lt;stdio.h&gt;
#define debug(var) printf(#var &quot; = %d\n&quot;, var)
int main(void)
{
int x = 12;
debug(x)
return 0;
}
</script>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse feugiat, nunc at vestibulum egestas.
<h3>Test Heading</h3>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras ultricies luctus metus ut cursus.
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras ultricies luctus metus ut cursus.
</code></pre>
<p>If you notice there are no <code><p></code> tags around the paragraphs. I would like to parse this HTML and add the correct tags to the different paragraphs of text. Also whatever parser is used, it cannot touch any of the other valid HTML. For example, the headings and list should not be altered.</p>
<p>I've hacked together a solution using PHP and although it works, it's not fast <em>or</em> pretty to look at.</p>
<p>What is the best way to accomplish this?<br>
Is there a nice PHP or Javascript based parser i could use for this?</p>
<p>I need to break the HTML down into elements, add tags and write the assembled HTML back to the page(?)</p>
http://stackoverflow.com/questions/1271317/what-is-the-best-way-to-map-windows-drives-using-python1What is the best way to map windows drives using Python?Gary Willoughby2009-08-13T11:09:36Z2009-12-07T18:27:01Z
<p>What is the best way to map a network share to a windows drive using Python?
This share also requires a username and password.</p>
http://stackoverflow.com/questions/1854033/complete-online-reference-for-the-c-standard-library3Complete online reference for the C standard library?Gary Willoughby2009-12-06T00:27:48Z2009-12-07T03:24:39Z
<p>Have any of you got a link to an online reference that completely decribes the C(99) standard library?</p>
<p>When i say describes, i mean something i can keep open and refer to when im coding.</p>
<p>I'm looking for something along the lines of <a href="http://www.devguru.com/Technologies/ecmascript/quickref/javascript%5Findex.html" rel="nofollow">DevGuru ECMA script Reference</a> but for the C standard library.</p>
http://stackoverflow.com/questions/1854033/complete-online-reference-for-the-c-standard-library/1856333#18563330Answer by Gary Willoughby for Complete online reference for the C standard library?Gary Willoughby2009-12-06T19:30:05Z2009-12-06T19:30:05Z<p>I found this one, which is C99. Look under the '<em>C Headers</em>' heading.</p>
<p><a href="http://www.dinkumware.com/manuals/" rel="nofollow">http://www.dinkumware.com/manuals/</a></p>
http://stackoverflow.com/questions/1849895/why-do-c-enumeration-constants-need-a-name0Why do C enumeration constants need a name?Gary Willoughby2009-12-04T21:53:31Z2009-12-04T22:04:25Z
<p>Why do C enumeration constants need a name? Because this:</p>
<pre><code>#include <stdio.h>
enum {NO, YES};
int main(void)
{
printf("%d\n", YES);
}
</code></pre>
<p>works just the same as this:</p>
<pre><code>#include <stdio.h>
enum boolean {NO, YES};
int main(void)
{
printf("%d\n", YES);
}
</code></pre>
http://stackoverflow.com/questions/1819221/learning-php-and-mysql/1821812#18218120Answer by Gary Willoughby for Learning PHP and MySQLGary Willoughby2009-11-30T19:17:57Z2009-11-30T19:17:57Z<p>I found this book invaluable while learning. I already had a grounding in PHP when i first read this book but this book covers the basics for complete PHP novices.</p>
<p><img src="http://www.apress.com/resource/bookcover/9781590598627?size=medium" alt="alt text"></p>
<p><a href="http://www.apress.com/book/view/1590598628" rel="nofollow">http://www.apress.com/book/view/1590598628</a></p>
http://stackoverflow.com/questions/1812329/anyone-has-an-alternative-to-using-static-methods-in-a-c-interface/1812506#18125060Answer by Gary Willoughby for Anyone has an alternative to using static methods in a C# interface?Gary Willoughby2009-11-28T13:18:54Z2009-11-28T13:27:51Z<p>Instead of using an array in your class to represent the collection, use a stack or list. Then you don't have empty indexes, they simply aren't there if they where removed.</p>
http://stackoverflow.com/questions/1793616/why-doesnt-getchar-recognise-return-as-eof-in-windows-console2Why doesn't getchar() recognise return as EOF in windows console?Gary Willoughby2009-11-24T23:15:39Z2009-11-25T01:03:31Z
<p>I have a small snippet of code below that i'm running using <a href="http://www.smorgasbordet.com/pellesc/" rel="nofollow">PellesC</a>.</p>
<p>When the code is executed and i've typed a few characters into the console, i press enter. </p>
<p>Can you explain to me why the <code>printf("%ld\n", nc);</code> line doesn't seem to get executed? As no output is written to the console.</p>
<pre><code>#include <stdio.h>
int main(void)
{
long nc = 0;
while(getchar() != EOF)
{
++nc;
}
printf("%ld\n", nc);
}
</code></pre>
<p>I've decided to learn C thoroughly using the K&R book and i'm embarrased to say this rather elementary example has me stumped.</p>
http://stackoverflow.com/questions/1392413/calculating-a-directory-size-using-python2Calculating a directory size using Python?Gary Willoughby2009-09-08T07:06:42Z2009-11-21T23:57:12Z
<p>Before i re-invent this particular wheel, has anybody got a nice routine for calculating the size of a directory using Python? It would be very nice if the routine would format the size nicely in Mb/Gb etc. Thanks.</p>
http://stackoverflow.com/questions/1758762/how-to-create-image-with-rounded-corners-in-c/1759073#17590731Answer by Gary Willoughby for How to create image with rounded corners in C#?Gary Willoughby2009-11-18T21:03:55Z2009-11-18T21:03:55Z<p>This function seems to do what you want. It can also easily be modified to return a Bitmap if needed. You'll also need to clean up any images you no longer want, etc.. Adapted from:
<a href="http://www.jigar.net/howdoi/viewhtmlcontent98.aspx" rel="nofollow">http://www.jigar.net/howdoi/viewhtmlcontent98.aspx</a></p>
<pre><code>using System.Drawing;
using System.Drawing.Drawing2D;
public Image RoundCorners(Image StartImage, int CornerRadius, Color BackgroundColor)
{
CornerRadius *= 2;
Bitmap RoundedImage = new Bitmap(StartImage.Width, StartImage.Height);
Graphics g = Graphics.FromImage(RoundedImage);
g.Clear(BackgroundColor);
g.SmoothingMode = SmoothingMode.AntiAlias;
Brush brush = new TextureBrush(StartImage);
GraphicsPath gp = new GraphicsPath();
gp.AddArc(0, 0, CornerRadius, CornerRadius, 180, 90);
gp.AddArc(0 + RoundedImage.Width - CornerRadius, 0, CornerRadius, CornerRadius, 270, 90);
gp.AddArc(0 + RoundedImage.Width - CornerRadius, 0 + RoundedImage.Height - CornerRadius, CornerRadius, CornerRadius, 0, 90);
gp.AddArc(0, 0 + RoundedImage.Height - CornerRadius, CornerRadius, CornerRadius, 90, 90);
g.FillPath(brush, gp);
return RoundedImage;
}
Image StartImage = Image.FromFile("YourImageFile.jpg");
Image RoundedImage = this.RoundCorners(StartImage, 25, Color.White);
//Use RoundedImage...
</code></pre>
http://stackoverflow.com/questions/1745316/c-coding-style-braces/1745329#17453294Answer by Gary Willoughby for C# coding style: bracesGary Willoughby2009-11-16T22:43:02Z2009-11-16T22:43:02Z<p>It's purely personal choice. However, when coding in a team you must use the style which has already been chosen.</p>
http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/657812#65781214Answer by Gary Willoughby for What software for your own personal use did you write?Gary Willoughby2009-03-18T11:10:27Z2009-11-11T19:02:38Z<p>After being fed up with people asking me to create a website for them, I wrote a program which can create and upload them automatically. I just select a template, enter the text they want to appear and select a few pictures. It then compiles everything and spits out a XHTML1/CSS2 compliant website straight to their webspace. Written in C# and .NET 2.0 with the templates in XHTML/CSS/etc. and all dynamic content handled using <a href="http://en.wikipedia.org/wiki/JSON" rel="nofollow">JSON</a>. I'm even thinking of marketing it.</p>
http://stackoverflow.com/questions/163628/making-email-addresses-safe-from-bots-on-a-webpage10Making email addresses safe from bots on a webpage?Gary Willoughby2008-10-02T17:45:04Z2009-11-06T12:46:21Z
<p>When placing email addresses on a webpage do you place them as text like this:</p>
<pre><code>joe.somebody@company.com
</code></pre>
<p>or use a clever trick to try and fool the email address harvester bots? For example:</p>
<p><strong>HTML Escape Characters:</strong></p>
<pre><code>&#106;&#111;&#101;&#46;&#115;&#111;&#109;&#101;&#98;&#111;&#100;&#121;&#64;&#99;&#111;&#109;&#112;&#97;&#110;&#121;&#46;&#99;&#111;&#109;
</code></pre>
<p><strong>Javascript Decrypter:</strong></p>
<pre><code>function XOR_Crypt(EmailAddress)
{
Result = new String();
for (var i = 0; i < EmailAddress.length; i++)
{
Result += String.fromCharCode(EmailAddress.charCodeAt(i) ^ 128);
}
document.write(Result);
}
XOR_Crypt("êïå®óïíåâïäùÀãïíðáîù®ãïí");
</code></pre>
<p><strong>Human Decode:</strong></p>
<pre><code>joe.somebodyNOSPAM@company.com
joe.somebody AT company.com
</code></pre>
<p>What do you use or do you even bother?</p>
http://stackoverflow.com/questions/1658299/how-to-resize-a-html-canvas-object-after-creating-using-createelement0How to resize a HTML Canvas object after creating using createElement()?Gary Willoughby2009-11-01T20:59:30Z2009-11-01T21:53:10Z
<p>I'm creating a HTML Canvas object using this javascript code: </p>
<pre><code>var Canvas = document.createElement("canvas");
Canvas.style.width = "500px";
</code></pre>
<p>and then i'm drawing text upon it.</p>
<p>When the canvas is displayed, the whole canvas has been scaled up (including content) to to match the 500px width, which results in ugly resampling. What i really want, is that the content stay the same size, only the canvas itself made bigger.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1620771/need-of-interfaces-in-c/1620833#16208330Answer by Gary Willoughby for Need of interfaces in c# Gary Willoughby2009-10-25T12:52:20Z2009-10-25T12:59:49Z<p>Think of Interfaces as contracts.</p>
<p>You create a contract that a class must follow. For example, if our Dog object must have a Walk method, it's defining class <em>must</em> implement this method.</p>
<p>In order to force every dog class (inherited or not) to implement this method, you must make them adhere to a contract i.e assign an interface which specifies that method.</p>
<p>An interface is a construct that enforces particular classes to follow strict rules of implementation.</p>
<p>The reason for this is that you end up with Dog objects (inherited or not) that now, by default, have a Walk method. This means you can pass these objects as parameters, safe in the knowledge that you can call the Walk method on any Dog class (inherited or not) and it will deffinately be implemented.</p>
http://stackoverflow.com/questions/145991/how-many-lines-of-debugged-code-do-you-produce-in-a-days-work4How many lines of debugged code do you produce in a day's work?Gary Willoughby2008-09-28T14:47:38Z2009-10-23T02:36:27Z
<p>How many lines of debugged code do you produce in a day's work and what language would that be?</p>
<p>I know some languages are a little more difficult to work with but on average, how many?</p>
http://stackoverflow.com/questions/1609668/controlling-tab-space-in-a-pre-using-css0Controlling tab space in a <pre> using CSS?Gary Willoughby2009-10-22T20:10:26Z2009-10-22T20:36:18Z
<p>Is it possible to specify how many pixels, etc. the tab space occupies in a <code><pre></code> using CSS?</p>
<p>for example, say i have a piece of code appearing in a <code><pre></code> on a web page:</p>
<pre><code>function Image()
{
this.Write = function()
{
document.write(this.ToString());
return this;
};
...
}
Image.prototype = new Properties();
...
</code></pre>
<p>is it possible to specify a different amount of space the tab indents the line using CSS?</p>
<p>If not, is there any workarounds?</p>
http://stackoverflow.com/questions/184310/do-you-ever-feel-confident-in-your-skills13Do you ever feel confident in your skills?Gary Willoughby2008-10-08T18:56:41Z2009-10-18T16:32:28Z
<p>As a self taught developer i always find myself questioning my skill and knowledge and always feel like i am falling behind in using new technology. Over a period of nearly 9 years i've studied most mainstream languages (especially C based ones), used lots of different OSes, read and absorbed many books and even written one myself. But i still feel i'm usless!</p>
<p>Do professional developers ever get to the stage where they feel confident that they know what they are doing and are confident when submitting solutions/code?</p>
<p>When do you know you're <em>good</em> enough?</p>
http://stackoverflow.com/questions/1577703/converting-tickboxes-in-a-form-to-any-array-in-post1Converting tickboxes in a form to any array in $_POSTGary Willoughby2009-10-16T12:14:09Z2009-10-16T14:17:54Z
<p>What's the best way to collect data from a form using checkboxes so it's nicely grouped into one array from the $_POST array in the receiving page.</p>
<p>For example, in my form i'll have HTML which looks like this (x = ticked):</p>
<pre><code>[x] Option One
[ ] Option Two
[x] Option Three
</code></pre>
<p>which i want to translated into an array from the $_POST array:</p>
<pre><code>Array
(
[a] => "Option One"
[b] => "Option Three"
)
</code></pre>
<p>Is there a nice shortcut to doing this?</p>
http://stackoverflow.com/questions/1571459/how-to-verify-a-mail-has-been-sent-when-using-zendmail2How to verify a mail has been sent when using Zend_Mail?Gary Willoughby2009-10-15T10:14:21Z2009-10-15T13:43:29Z
<p>I am using the Zend framework to send mail. Once the config is done and the code written it all boils down to one call:</p>
<pre><code>$Mail->send($Transport)
</code></pre>
<p>How can i check that this mail has been sent correctly? I read somewhere that Zend Mail throws an exception but other people have said this is sometimes not the case.</p>
<p>What's the bulletproof programmatic way to ensure mail has been sent properly when using Zend_Mail?</p>
<p>EDIT: When i mean sent, i mean sent to the SMTP server.</p>
http://stackoverflow.com/questions/1543950/php-request-as-array/1544029#15440290Answer by Gary Willoughby for PHP $_REQUEST as arrayGary Willoughby2009-10-09T14:11:22Z2009-10-09T14:11:22Z<p>In your HTML form element you can assign the name to an array, like this:</p>
<pre><code><select id="MySelect" multiple="multiple" name="SearchTerms[]" class="MyClass">
...
</select>
</code></pre>
<p>then when you deal with the form after submittion you can do something like:</p>
<pre><code><?php
foreach($_REQUEST['SearchTerms'] as $SearchTerm)
{
Print("<span class=\"SearchTerm\">$SearchTerm</span>");
}
?>
</code></pre>
http://stackoverflow.com/questions/511991/what-are-the-things-c-got-right15What are the things C# got right?Gary Willoughby2009-02-04T16:01:25Z2009-10-08T19:29:58Z
<p>As a response to this thread:</p>
<p><a href="http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right">http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right</a></p>
<p>What are the things C# got right?</p>
<p>Please don't list the things C# did wrong, just right.</p>
http://stackoverflow.com/questions/1533568/what-is-the-correct-way-to-write-html-using-javascript17What is the correct way to write HTML using Javascript?Gary Willoughby2009-10-07T19:09:43Z2009-10-08T06:45:42Z
<p>I see in some posts that people frown upon using <code>document.write()</code> in javascript when writing dynamic HTML.</p>
<p>Why is this? and what is the <em>correct</em> way?</p>
http://stackoverflow.com/questions/1533113/calculate-the-size-to-a-base-64-encoded-message/1533137#15331371Answer by Gary Willoughby for Calculate the size to a Base 64 encoded messageGary Willoughby2009-10-07T17:45:06Z2009-10-07T17:56:50Z<p>The actual length of MIME-compliant base64-encoded binary data is usually about 137% of the original data length, though for very short messages the overhead can be a lot higher because of the overhead of the headers. Very roughly, the final size of base64-encoded binary data is equal to 1.37 times the original data size + 814 bytes (for headers).</p>
<p>In other words, you can approximate the size of the decoded data with this formula:</p>
<pre><code>BytesNeededForEncoding = (string_length(base_string) * 1.37) + 814;
BytesNeededForDecoding = (string_length(encoded_string) - 814) / 1.37;
</code></pre>
<p>Source: <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">http://en.wikipedia.org/wiki/Base64</a></p>
http://stackoverflow.com/questions/155393/is-there-any-one-website-which-contains-many-good-c-screencasts8Is there any one website which contains many good C# screencasts?Gary Willoughby2008-09-30T22:33:37Z2009-10-05T14:21:23Z
<p>Is there any one website which contains many good C# screencasts?</p>
http://stackoverflow.com/questions/1458847/python-is-there-a-way-around-os-listdir-returning-gibberish-for-bad-folder2Python - Is there a way around 'os.listdir()' returning gibberish for bad folder name?Gary Willoughby2009-09-22T08:45:30Z2009-09-22T09:19:42Z
<p>I have a simple script written in Python:</p>
<pre><code>import os
def Path(SourcePath):
for Folder in os.listdir(SourcePath):
print "TESTING: %s" % Folder
Path("\\\\192.168.0.36\\PDFs")
</code></pre>
<p>When i run this it recurses through a remote share on the LAN and just simply displays the names of the folders found. This share primarily contains folders.</p>
<p>The problem is that if a folder name has a space at the end of it's name, the above script lists jibberish.</p>
<p>For example, if i have the following folders in the above share:</p>
<ol>
<li>"6008386 HH - Walkers Crisps"</li>
<li>"6008157 CPP - Santas Chocolate "</li>
<li>"6007458 SCA - Morrisons Bananas"</li>
</ol>
<p>Notice that "6008157 CPP - Santas Chocolate " has a space at the end. This is the listing from the above script:</p>
<ol>
<li>"TESTING: 6008386 HH - Walkers Crisps"</li>
<li>"TESTING: 6EBA72~1"</li>
<li>"TESTING: 6007458 SCA - Morrisons Bananas"</li>
</ol>
<p>How can i avoid this while recursing the remote dir? I could fix the folder name if only it was returned properly by 'os.listdir()'.</p>
<p>Any ideas on how to tackle this?</p>
http://stackoverflow.com/questions/1427230/php-why-would-filetype-and-isfile-fail-reading-a-file-on-a-ftp-server0PHP: Why would 'filetype()' and 'is_file()' fail reading a file on a FTP server?Gary Willoughby2009-09-15T13:37:44Z2009-09-15T15:44:54Z
<p>I'm having a few problems while trying to check files on a FTP server.</p>
<p>I installed a FTP server (filezilla) on a test machine where i could interact with it from another webserver running on the LAN. I used PHP to walk through the directories on the FTP server over the LAN. Within my app i had calls to 'filetype()' and more recently 'is_file()' to check file types etc.</p>
<p>Now i've deployed the app to another place and setup a FTP share on a NAS and run my app on a separate webserver connected to the LAN and here's where the problems start. My app now fails in the 'filetype()' and 'is_file()' calls. I have set the FTP share on the NAS to read/write.</p>
<blockquote>
<p>'is_file()' = Silent, no error
reported.</p>
<p>'filetype()' = Warning: filetype()
[function.filetype]: Lstat failed for
<code>ftp://192.168.0.36/PDFs/6008300/6008386/v1/6008386.pdf</code>
in C:\Program Files\Apache Software
Foundation\Apache2.2\htdocs\app\app.php
on line 326</p>
</blockquote>
<p>Any thoughts?</p>
<p>I can work around this error by not using the above functions but that lessens the safety of this script.</p>
<p>EDIT:</p>
<p>PHP is version 5.2.4</p>
<p>The FTP server doesn't require any login username or password.</p>
http://stackoverflow.com/questions/415075/have-recruitment-agencies-ever-held-back-your-career5Have recruitment agencies ever held back your career?Gary Willoughby2009-01-06T00:53:59Z2009-09-04T22:44:09Z
<p>Over the last few months i have been looking to change career from graphic artist to web developer. I used to be a senior web developer during the dot com boom, overseeing a few juniors but decided to follow graphics a little more and left software behind as a career.</p>
<p>Now it seems looking for a new career in web development, i need 'n' amount of years of commercial experience. I realize things are a little different now from when i used to develop sites 8-9 years ago but i never stopped programming and have many projects i could use to show a potential employer as a portfolio. I consider myself a better programmer than i have ever been and i can analyze, design and develop projects with a much greater scope than ever before. I have also written a book on software development (although application/games development) which doesn't seem to stand me in good stead either.</p>
<p>I have always used the standard web dev tools (PHP, MySQL, Python, Javascript, X/HTML, etc) i've even made sure i have experience using the latest frameworks and approaches such as jQuery and Ajax, etc and have lots of beautiful sites coded from scratch by hand (using only a text editor) that validate correctly to w3c standards.</p>
<p>When i speak to recruiters they dismiss everthing and say i need the <em>commercial</em> experience. Is there any way i can combat this attitude? I will continue to pursue my choosen profession, but i would be grateful of any advice.</p>
<p>After 5 months of looking to join the software development industry i have had only one interview. It went well and i was offered the job there and then, but declined gracefully because of a lot of travel which i didn't realize was part of the job.</p>
<p>How can i get more interviews? Do i need to start putting my foot down with the recruitment agencies and demanding they at least give me the benfit of the doubt? Would this even get me anywhere? or have the opposite effect?</p>
http://stackoverflow.com/questions/1919718/pass-by-reference-in-cComment by Gary Willoughby on Pass by reference in CGary Willoughby2009-12-17T15:11:19Z2009-12-17T15:11:19ZPure semantics, Pass by reference is the method of passing an address, not the nitty gritty of how the language deals with it.http://stackoverflow.com/questions/1897984/jquery-problem-getting-text-from-a-script-tagComment by Gary Willoughby on Jquery problem getting text from a script tag?Gary Willoughby2009-12-14T11:56:14Z2009-12-14T11:56:14ZThe thing is it's source code i want to present on the page. So the script tag is appropriate. I've written a syntax highlighting engine similar to alexgorbatchev.com/wiki/SyntaxHighlighter and replace the script tags with nicely formatted tables using jQuery. If i use other tags to contain the source code, it is parsed as html and can alter the code.http://stackoverflow.com/questions/1897984/jquery-problem-getting-text-from-a-script-tag/1898080#1898080Comment by Gary Willoughby on Jquery problem getting text from a script tag?Gary Willoughby2009-12-13T23:39:43Z2009-12-13T23:39:43Z.html() works great, thanks.http://stackoverflow.com/questions/1897984/jquery-problem-getting-text-from-a-script-tagComment by Gary Willoughby on Jquery problem getting text from a script tag?Gary Willoughby2009-12-13T23:38:50Z2009-12-13T23:38:50ZYeah Darko is right, i'm writing a script to grab source code from a <script> tag and reformat it into a table. So i'm not really using the <script> to embed any executable code on the html page.http://stackoverflow.com/questions/1894773/best-way-to-add-missing-p-tags-to-text-in-html-while-disregarding-other-tags/1894915#1894915Comment by Gary Willoughby on Best way to add missing <p> tags to text in HTML while disregarding other tags?Gary Willoughby2009-12-13T02:37:11Z2009-12-13T02:37:11ZNot a bad idea but using the 'text' element in the find method also returns the code from inside the script tag. You can't get the tag name from the returned code. I need to differentiate each element in order to only apply the p tag to plain text.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408158#408158Comment by Gary Willoughby on What's your most controversial programming opinion?Gary Willoughby2009-12-09T20:49:22Z2009-12-09T20:49:22ZIn all fields of endeavour, those ahead of the curve have always put in more time than those that haven't.http://stackoverflow.com/questions/1849895/why-do-c-enumeration-constants-need-a-nameComment by Gary Willoughby on Why do C enumeration constants need a name?Gary Willoughby2009-12-04T22:09:15Z2009-12-04T22:09:15Zheh e, you're too fast with the answers! ;phttp://stackoverflow.com/questions/1812355/regular-expression-in-php/1812374#1812374Comment by Gary Willoughby on Regular Expression In PHPGary Willoughby2009-11-28T12:58:22Z2009-11-28T12:58:22ZAwesome, i've never seen this before.http://stackoverflow.com/questions/1793616/why-doesnt-getchar-recognise-return-as-eof-in-windows-console/1793631#1793631Comment by Gary Willoughby on Why doesn't getchar() recognise return as EOF in windows console?Gary Willoughby2009-11-24T23:24:53Z2009-11-24T23:24:53ZI am indeed using Windows and Ctrl+Z is correct. Thanks, i never new that.http://stackoverflow.com/questions/1766513/javascript-validate-date/1766552#1766552Comment by Gary Willoughby on JavaScript - Validate DateGary Willoughby2009-11-19T21:10:43Z2009-11-19T21:10:43ZSorry to be PITA, but if everyone was told to google it, there would be no need for this site. This site is for people to offer advice and code, not to just say google it!http://stackoverflow.com/questions/1724954/will-any-scripting-languages-other-than-javascript-ever-make-it-to-the-browser/1724978#1724978Comment by Gary Willoughby on Will any scripting languages other than JavaScript ever make it to the browser?Gary Willoughby2009-11-12T21:27:58Z2009-11-12T21:27:58ZThe point is to answer his two questions: 'I've often wondered why JavaScript is the only scripting language standardized across browsers.?' and 'Are there any plans in the future of browsers like Firefox, IE, Chrome to support other options for scripting in something like Ruby, Python, etc?'http://stackoverflow.com/questions/1658299/how-to-resize-a-html-canvas-object-after-creating-using-createelement/1658349#1658349Comment by Gary Willoughby on How to resize a HTML Canvas object after creating using createElement()?Gary Willoughby2009-11-01T21:49:20Z2009-11-01T21:49:20ZThanks, i need to read the api reference...http://stackoverflow.com/questions/1627018/most-difficult-programming-explanationComment by Gary Willoughby on Most difficult programming explanationGary Willoughby2009-10-26T21:16:20Z2009-10-26T21:16:20Z"If you can't explain it to a six year old, you don't understand it yourself."
— Albert Einstein :o)http://stackoverflow.com/questions/1620771/need-of-interfaces-in-c/1620833#1620833Comment by Gary Willoughby on Need of interfaces in c# Gary Willoughby2009-10-26T09:24:02Z2009-10-26T09:24:02ZTrue, but that doesn't affect my answer.http://stackoverflow.com/questions/1577703/converting-tickboxes-in-a-form-to-any-array-in-postComment by Gary Willoughby on Converting tickboxes in a form to any array in $_POSTGary Willoughby2009-10-16T16:56:21Z2009-10-16T16:56:21ZI disagree. links of dupes?