User Toby Allen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T12:07:13Zhttp://stackoverflow.com/feeds/user/6244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930702/php-memory-overflow/1930720#1930720-1Answer by Toby Allen for PHP Memory Overflow?Toby Allen2009-12-18T21:14:06Z2009-12-18T21:14:06Z<p>My understanding is that as you have written it you would get 10 arrays each 1MB.</p>
<p>If you us & to either pass in a by-reference variable and return a pointer or use & in front of the function name to return a by reference return value you may be able to do what you want.</p>
http://stackoverflow.com/questions/1895955/gmail-facebook-without-username-password-php-login-header-problem/1895969#1895969-1Answer by Toby Allen for Gmail/Facebook without username/password - PHP Login Header ProblemToby Allen2009-12-13T09:08:16Z2009-12-13T09:08:16Z<p>This is not necessarily feasible, Gmail and Facebook may be doing very simple checks to see who the referer is and when it comes from your site rather than their own login page refuses to login. This is basic security checks.</p>
<p>You would need to look at their api to see if you can do anything, or possibly you could use javascript and a firefox plugin to write your username and password to the webform then submit the form, a bit of a hack but might do what you want.</p>
http://stackoverflow.com/questions/1895920/ignoreuserabort-and-redirect-in-php/1895940#1895940-1Answer by Toby Allen for ignore_user_abort and redirect in php?Toby Allen2009-12-13T08:40:25Z2009-12-13T08:40:25Z<p>Why not try the header approach and see what happens? You could also try a call to php header method and see if this does the trick. I would work on trial and error to see what will solve your problem. </p>
http://stackoverflow.com/questions/1895926/integrating-authentication-for-different-web-applications/1895933#18959330Answer by Toby Allen for Integrating Authentication For Different Web ApplicationsToby Allen2009-12-13T08:37:27Z2009-12-13T08:37:27Z<p>Possible yes. Worth the effort? I'm not sure. I would look at one of the open authentication systems such as OpenID to get this kind of thing to work.</p>
http://stackoverflow.com/questions/1880398/what-would-be-a-good-version-control-system-for-a-small-delphi-team/1882812#18828120Answer by Toby Allen for What would be a good version control system for a small Delphi team?Toby Allen2009-12-10T17:56:11Z2009-12-10T17:56:11Z<p>If you are willing to spend money, <a href="http://www.perforce.com" rel="nofollow">perforce</a> is well worth the money (about $800 a user) it is fast, works well over a network and after a bit of learning is very effective.</p>
<p>There is a good Delphi integration <a href="http://www.epocalipse.com/scx.htm" rel="nofollow">SourceConnexion</a> </p>
http://stackoverflow.com/questions/1854794/wiki-database-is-there-one/1856190#18561900Answer by Toby Allen for Wiki Database, is there one?Toby Allen2009-12-06T18:41:01Z2009-12-06T18:41:01Z<p>I like this idea. I have heard of some sites that are trying to pull together large datasets for various things for open consumption, but none that would allow a wiki feel.</p>
<p>You could start with something as simple as an installation of myphpadmin with a known password that would allow people to log in, create a database, edit data and query from any other site on the web.</p>
<p>It might suffer from more accuracy problems than wikipedia though.</p>
http://stackoverflow.com/questions/1828225/how-can-i-cache-a-dynamic-page-to-a-flat-file-in-php/1828888#1828888-2Answer by Toby Allen for How can I cache a dynamic page to a flat file in PHP?Toby Allen2009-12-01T20:59:32Z2009-12-01T20:59:32Z<p>Why not use one of the php cacheing options <a href="http://www.google.co.uk/search?hl=en&q=php+cache&meta=" rel="nofollow">out there</a>? PHP Accelerator or PHP:APC? These provide a ready rolled solution for what you want.</p>
http://stackoverflow.com/questions/530052/looking-for-a-pdf-file-parser1Looking for a PDF file parser.Toby Allen2009-02-09T21:28:43Z2009-12-01T07:33:11Z
<p>Does anyone know of a PDF file parser that I could use to pull out sections of text from the plaintext pdf file? Specifially I want a way to be able to reliably pull out the section of text specific to annotations?</p>
<p>Delphi, C# RegEx I dont mind.</p>
http://stackoverflow.com/questions/1808386/sql-query-problem/1808408#18084080Answer by Toby Allen for SQL query problemToby Allen2009-11-27T12:12:12Z2009-11-27T12:12:12Z<p>what you are looking for is an outer join (other can correct my syntax)</p>
<pre><code>Select * from emp Right outer join address on emp.empno = address.empno
</code></pre>
<p>Any row that has A NULL in the fields for the Address table is a row where no address exists.</p>
http://stackoverflow.com/questions/1807961/how-to-bind-text-value-to-sqlite3-database-in-iphone/1808388#18083880Answer by Toby Allen for How to bind text value to sqlite3 database in iphoneToby Allen2009-11-27T12:08:45Z2009-11-27T12:08:45Z<p>In my limited Iphone experience when something runs once and then crashes on the next iteration, generally you are releasing memory you shouldnt be or not releasing memory you should be. Try looking at your memory allocations for problems.</p>
http://stackoverflow.com/questions/1798304/where-do-you-set-executablename-in-xcode/1798422#1798422-1Answer by Toby Allen for Where do you set ${EXECUTABLE_NAME} in XCode?Toby Allen2009-11-25T17:08:42Z2009-11-25T17:08:42Z<p>This question is a duplicate of quite a few questions already on stackoverflow. I had this problem and this question helped me finally figure it out.</p>
<p><a href="http://stackoverflow.com/questions/238980/how-to-change-the-name-of-an-iphone-app">http://stackoverflow.com/questions/238980/how-to-change-the-name-of-an-iphone-app</a></p>
http://stackoverflow.com/questions/1769431/iphone-file-upload-control/1769461#17694610Answer by Toby Allen for iPhone + file upload controlToby Allen2009-11-20T09:55:14Z2009-11-20T09:55:14Z<p>I think you want to use an ImagePickerController that is the system component to allow a user to choose a photo.</p>
http://stackoverflow.com/questions/1546000/caption-update-on-button-causing-iphone-app-to-crash0Caption update on button causing IPhone app to crashToby Allen2009-10-09T20:54:15Z2009-11-20T07:32:31Z
<p>Hello,</p>
<p>I'm currently teaching myself Objective-C and Iphone Development using the very good 'Begining IPhone Development'. I have been playing around with one of the sample applications and I am trying to update one button with text from a text field when another button is pressed. I have set up my Actions and links and all that jazz. The code of the single method/function/call is below</p>
<pre><code>-(IBAction)updateButtonPressed
{
NSString *newCaption = [[NSString alloc] initWithString:@"."];
newCaption = tfUpdateText.text;
[btnPressMe setTitle:newCaption forState:UIControlStateNormal];
[newCaption release];
}
</code></pre>
<p>It works perfectly the first time I press the button and maybe for two or three times after then crashes. I'm obviously doing something really stupid but I cant see it. This is all I added (as well as declarations, property - synthesize etc). Can someone point out my obvious memory leak.</p>
<p><strong>Update:</strong></p>
<p>If I change to this</p>
<pre><code>-(IBAction)updateButtonPressed
{
[btnPressMe setTitle:tfUpdateText.text forState:UIControlStateNormal];
}
</code></pre>
<p>It works fine but could someone explain to me what mistake I was making?</p>
http://stackoverflow.com/questions/1739442/whats-a-good-example-of-really-clean-and-clear-r-code-for-pedagogical-purpose/1739494#17394940Answer by Toby Allen for What's a good example of really clean and clear [R] code, for pedagogical purposes?Toby Allen2009-11-16T00:38:50Z2009-11-16T00:38:50Z<p>Not strictly related, but make sure you get them used to using Source Control (perforce, subversion, git, rcs, etc) as quickly as possible. That reduces the learning pains.</p>
http://stackoverflow.com/questions/1737414/how-to-get-the-direct-download-link-from-the-url-of-video-sharing-web-sites/1737445#17374450Answer by Toby Allen for How to get the direct download link from the url of video sharing web sites?Toby Allen2009-11-15T12:41:07Z2009-11-15T12:41:07Z<p>There will not be one specific way that you can generate correct URLs for multiple websites, each website has its own way of generating URLS. Neither is there necessarily any way to directly download a video from the site, many Videos can only be streamed which means that there is no file to download. Then the ones that are streamed can only be read by the specific player they are designed for. </p>
<p>Basically I'm afraid what you wish to do is not really feasible in any language.</p>
http://stackoverflow.com/questions/1733761/how-can-i-able-to-get-all-the-extensions-in-a-directory/1733768#17337680Answer by Toby Allen for How can I able to get all the extensions in a Directory.?Toby Allen2009-11-14T09:13:30Z2009-11-14T09:13:30Z<p>If you loop through all the files in a directory and take the extension of each file. Check if it doesn't already exist in your list and if not add it. by the time you go through all the files you will have your list. </p>
<p>There isn't a single method to do this.</p>
http://stackoverflow.com/questions/1698947/how-to-block-all-input-on-iphone-appfor-jailbroken-devices/1702409#17024092Answer by Toby Allen for How to block all input on iPhone app(for jailbroken devices) ?Toby Allen2009-11-09T17:13:50Z2009-11-09T17:13:50Z<p>Even with a Jailbroken device I dont think there is anyway to prevent the home button from quitting your app. Its a bit like ctrl-alt-delete on windows.</p>
http://stackoverflow.com/questions/234056/nice-bit-of-code-to-format-an-xml-string4Nice bit of code to format an xml stringToby Allen2008-10-24T15:38:03Z2009-11-08T03:08:05Z
<p>hi</p>
<p>Anyone got a ready made function that will take an XML string and return a correctly indented string?</p>
<p>eg</p>
<pre><code><XML><TAG1>A</TAG1><TAG2><Tag3></Tag3></TAG2></XML>
</code></pre>
<p>and will return nicely formatted String in return after inserting linebreaks and tabs or spaces?</p>
<p>Yes I know the code is easy to write but I'm sure someone else has already written it.</p>
<p>Update: Thanks to Bruce McGee and all the others that answered. Bruce's suggestion was just what I was after thanks.</p>
http://stackoverflow.com/questions/1692468/is-this-code-equivalent1Is this code EquivalentToby Allen2009-11-07T08:52:19Z2009-11-07T17:12:32Z
<p>I am not a fan of the following construction</p>
<pre><code> if (self = [super init])
{
//do something with self assuming it has been created
}
</code></pre>
<p>Is the following equivalent?</p>
<pre><code>self = [super init];
if (self != nil)
{
//Do something with Self
}
</code></pre>
http://stackoverflow.com/questions/1693184/how-to-receive-a-batch-of-checkbox-data-in-php/1693283#16932830Answer by Toby Allen for How to receive a batch of checkbox data in PHP?Toby Allen2009-11-07T14:50:07Z2009-11-07T14:50:07Z<p>Name your checkboxes so you can easily identify them.
eg</p>
<pre><code> $CheckBoxHTML = "<input type='checkbox' name='check_$row[id]' value='YES'>Check This";
</code></pre>
<p>then in your recieving php file you can find all checkboxes by </p>
<pre><code>foreach ($_POST as $key => $value)
{
if (strpos($key,'check_') !== false)
{
list($tmp, $ID) = split('_', $key);
$CheckedValues[] = $ID;
}
}
</code></pre>
<p>That will pull out all your checked ids.</p>
http://stackoverflow.com/questions/1646230/how-do-i-import-a-com-object-namespace-enumeration-in-python/1692413#16924130Answer by Toby Allen for How do I import a COM object namespace/enumeration in Python?Toby Allen2009-11-07T08:21:05Z2009-11-07T08:21:05Z<p>As a general rule I find it really useful to pre-write any code in the vba ide in Excel. This way you can find out all the values of constants etc that you need to use within your python code. You can also make sure stuff will work from within a more controlled environment.</p>
http://stackoverflow.com/questions/1688452/tell-from-where-a-php-file-has-been-included/1688669#16886691Answer by Toby Allen for Tell from where a .php file has been included?Toby Allen2009-11-06T16:23:22Z2009-11-06T16:23:22Z<p>No.</p>
<p>There isnt really any reason why you should need to do this though. Either you should have very differnt php files being called as css or js files or you should pass get parameters. They way you layout your code should make this unambiguous.</p>
http://stackoverflow.com/questions/1688564/php-directory-list-from-remote-server/1688643#16886430Answer by Toby Allen for PHP directory list from remote serverToby Allen2009-11-06T16:20:17Z2009-11-06T16:20:17Z<p>Assuming you have the ftp extension loaded for php on your server, you should be able to use <a href="http://www.php.net/manual/en/book.ftp.php" rel="nofollow">phps ftp functions</a></p>
http://stackoverflow.com/questions/1687724/delphi-loging-all-http-request/1687868#16878680Answer by Toby Allen for Delphi - loging all HTTP requestToby Allen2009-11-06T14:13:33Z2009-11-06T14:13:33Z<p>Do you have to write a Delphi app to do it? Could you use an application like <a href="http://www.ethereal.com/" rel="nofollow">ethereal</a>?</p>
http://stackoverflow.com/questions/1687739/what-are-dispinterface-declarations-used-for/1687839#16878393Answer by Toby Allen for What are dispinterface declarations used for?Toby Allen2009-11-06T14:09:14Z2009-11-06T14:09:14Z<p>COM is like VOODOO you should only get involved if you are willing to be consumed by its power!</p>
<p>COM really is an enormously complicated subject when you get down to the nitty gritty. However on the surface an implementation like Delphis gives you all the tools you need to use it very simply. However if you are interested in getting down and dirty there are some very good books on COM including (from a Delphi perspective) <a href="http://rads.stackoverflow.com/amzn/click/1578702216" rel="nofollow">Delphi Com Programming</a>.</p>
<p>To really simplify and try to answer your questions.</p>
<ol>
<li>VB was not able to deal with IUnknown due to limitations in its use of pointers (or something like that) so Microsoft added dispatch or disp interaces which allowed VB to interact with COM objects. These dispinterfaces then became the basis of Ole Automation objects (a branch of COM).</li>
<li>To Let VB work with COM</li>
<li>Let Delphi do that for you.</li>
</ol>
http://stackoverflow.com/questions/167152/avoiding-code-change-with-microsoft-sqlserver-and-unicode0Avoiding code change with Microsoft SQLServer and UnicodeToby Allen2008-10-03T14:31:38Z2009-11-04T23:01:53Z
<p>How can you get MSSQL server to accept Unicode data by default into a VARCHAR or NVARCHAR column?</p>
<p>I know that you can do it by placing a N in front of the string to be placed in the field but to by quite honest this seems a bit archaic in 2008 and particuarily with using SQL Server 2005.</p>
http://stackoverflow.com/questions/1675471/is-it-possible-to-set-permissions-in-perforce-such-that-a-user-cannot-integrate-i/1676999#16769992Answer by Toby Allen for Is it possible to set permissions in Perforce such that a user cannot integrate into a certain area of the depot?Toby Allen2009-11-04T22:06:51Z2009-11-04T22:06:51Z<p>If you set explicit permissions on each subbranch in your stable area you should be able to give users full access to existing branches/projects you have created, but they will be unable to create new brances/projects</p>
<p>eg. In your permissions file (I dont know the syntax and dont have perforce on this machine)</p>
<pre><code># Do not give any permissions for //depot/stable
write user_group * * //depot/stable/stable_Branch_1/...
write user_group * * //depot/stable/stable_Branch_2/...
write user_group * * //depot/stable/stable_Branch_3/...
</code></pre>
<p>etc</p>
<p>Your users should now not be able to create any new branches/projects/folders at the //depot/stable/... level but have full permissions above. You cant prevent them from integrating into the existing branches though. That I'm afraid involves user education!</p>
http://stackoverflow.com/questions/1660095/totaling-figures-in-csv-files-using-excel/1660155#16601550Answer by Toby Allen for Totaling figures in .csv files using ExcelToby Allen2009-11-02T09:10:57Z2009-11-02T09:10:57Z<p>You should be able to do this easily using an excel VBA macro but it might take quite some time if it needs to load and convert a 50MB csv file.</p>
<p>JScript (a microsoft form of JavaScript) is generally available on all machines and runs under the windows scripting host. Just create a file with a .js extension and try to run with a double click. Or you can use vbscript with a .vbs extension.</p>
<p>I think your easiest solution would be to write an excel macro (as you will have the IDE for excel vba as limited as it is).</p>
http://stackoverflow.com/questions/1648658/how-to-fully-justify-texts-programmatically-delphi/1654722#16547220Answer by Toby Allen for How to fully justify texts programmatically (Delphi)?Toby Allen2009-10-31T15:32:52Z2009-10-31T15:32:52Z<p>As has been pointed out in other answers Word does full justification by stretching the existing spaces often by very small amounts. This is only possible if you have full control over how your text is drawn on the screen (which word - or any other windows program has). </p>
<p>You only real option in this regard would be to implement your own text viewer on the platform you are targeting. Eg you would need to draw the text on the screen yourself (any platform that allows games should allow you to draw on the screen). However this seems like an awful lot of trouble to get justified text. </p>
<p>Sorry couldn't be of more help.</p>
http://stackoverflow.com/questions/1654470/when-building-an-app-how-do-you-make-sure-an-os-update-wouldnt-affect-your-app/1654526#16545260Answer by Toby Allen for When building an app, how do you make sure an OS update wouldn't affect your app?Toby Allen2009-10-31T14:25:10Z2009-10-31T14:25:10Z<p>Test your software!</p>
<p>If you have a product that works on XP and you know Windows 7 is coming out and some of your clients are going to use it, you need to test your software against it an release a new version if it does not.</p>
<p>Avoiding undocumented or deprecated APIs will help but it is no gaurantee.</p>
http://stackoverflow.com/questions/1930702/php-memory-overflow/1930720#1930720Comment by Toby Allen on PHP Memory Overflow?Toby Allen2009-12-18T21:16:43Z2009-12-18T21:16:43Zi may be wrong. Try editing the array you get back and see if it changes in your other references that would tell you if its referenced.http://stackoverflow.com/questions/1926261/how-to-protect-the-source-of-a-delphi-appComment by Toby Allen on How to protect the source of a delphi app?Toby Allen2009-12-18T07:05:48Z2009-12-18T07:05:48ZCan I ask why you wish to do this?http://stackoverflow.com/questions/1894983/why-use-exception-handling-in-apparently-safe-code/1895016#1895016Comment by Toby Allen on Why use exception handling in apparently "safe" code?Toby Allen2009-12-13T09:13:01Z2009-12-13T09:13:01ZDelphi User Code exception very rarely result in the entire application being killed. http://stackoverflow.com/questions/1895936/microsoft-visual-studio-cannot-find-one-or-more-components-please-reinstall-theComment by Toby Allen on Microsoft Visual Studio cannot find one or more components. Please reinstall the application. After update to Paint.NET 3.5.1.Toby Allen2009-12-13T09:09:09Z2009-12-13T09:09:09ZBelongs on Superuser I thinkhttp://stackoverflow.com/questions/948609/can-a-javascript-debugger-do-when-this-variable-is-read-break-point-there/948614#948614Comment by Toby Allen on can a Javascript debugger do "when this variable is read", break point there?Toby Allen2009-12-13T08:24:22Z2009-12-13T08:24:22ZWhy not explain your answer OrbManhttp://stackoverflow.com/questions/1808629/sqlite3-database-array-handlingComment by Toby Allen on sqlite3 database array handlingToby Allen2009-12-13T08:10:41Z2009-12-13T08:10:41Zhi you will need to give some code sampleshttp://stackoverflow.com/questions/1880398/what-would-be-a-good-version-control-system-for-a-small-delphi-team/1882812#1882812Comment by Toby Allen on What would be a good version control system for a small Delphi team?Toby Allen2009-12-10T19:26:45Z2009-12-10T19:26:45ZI dont understand how using a high quality, robust, efficient, fast, simple SCC system could ever be overkill even for 1 person.http://stackoverflow.com/questions/1129757/optimisation-techniques-for-sqlite-database/1204843#1204843Comment by Toby Allen on Optimisation techniques for sqlite databaseToby Allen2009-12-06T18:21:00Z2009-12-06T18:21:00ZLiron, you should add details of your utility to your user profile.http://stackoverflow.com/questions/1808365/difference-between-php-and/1808371#1808371Comment by Toby Allen on Difference between <?php and <?Toby Allen2009-11-27T12:06:57Z2009-11-27T12:06:57ZCould you elaborate?http://stackoverflow.com/questions/321924/designing-an-sql-table-and-getting-it-right-the-first-time/1808354#1808354Comment by Toby Allen on Designing an SQL Table and getting it right the first timeToby Allen2009-11-27T12:06:09Z2009-11-27T12:06:09ZWhat article, you dont provide a linkhttp://stackoverflow.com/questions/1804810/wordpress-plugin-without-any-hostComment by Toby Allen on Wordpress Plugin without any HostToby Allen2009-11-26T17:08:25Z2009-11-26T17:08:25ZTry asking this question on superuser.com instead - you might find a better target audience.http://stackoverflow.com/questions/1781440/checking-if-a-nsstring-matches-another-stringComment by Toby Allen on Checking if a nsstring matches another stringToby Allen2009-11-23T09:44:50Z2009-11-23T09:44:50Zhi Shyam, this isnt a site where you can give thanx in advance, when someone answers your question make sure you come back and give them an upvote and if appropriate mark it as the answer.http://stackoverflow.com/questions/883208/how-to-change-background-color-of-uialertviewComment by Toby Allen on how to change background color of UIAlertView ?Toby Allen2009-11-19T20:04:52Z2009-11-19T20:04:52ZYes but this question is clearer.http://stackoverflow.com/questions/822599/launch-safari-from-iphone-app/822764#822764Comment by Toby Allen on launch safari from iphone appToby Allen2009-11-17T10:56:59Z2009-11-17T10:56:59ZYour code is right in principle but wrong in practice, see surtyaarthoughts answer.http://stackoverflow.com/questions/1747420/i-need-to-print-20-000-word-documents-is-there-a-3rd-party-tool-that-will-help-m/1747446#1747446Comment by Toby Allen on I need to print 20,000 Word documents, is there a 3rd party tool that will help me do this or do I need to write custom code?Toby Allen2009-11-17T09:06:07Z2009-11-17T09:06:07ZNot very robust.