User Mark Biek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T20:31:39Zhttp://stackoverflow.com/feeds/user/305http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/28085#280851Answer by Mark Biek for Where can I learn jQuery? Is it worth it?Mark Biek2008-08-26T13:53:27Z2009-12-12T12:38:58Z<p>I have yet to see a convincing argument for picking jQuery over Prototype or vice-versa.</p>
<p>Just pick one of the two and learn it. It will make writing JavaScript code fun again.</p>
http://stackoverflow.com/questions/1867278/php-determining-the-current-url/1867298#18672986Answer by Mark Biek for PHP Determining the current urlMark Biek2009-12-08T14:26:09Z2009-12-08T14:26:09Z<p>Take a look at <code>$_SERVER['REQUEST_URI']</code> or <code>$_SERVER['SCRIPT_NAME']</code></p>
<p>(From the <a href="http://php.net/manual/en/reserved.variables.server.php" rel="nofollow"><code>$_SERVER</code></a> manual entry)</p>
http://stackoverflow.com/questions/1708498/problem-positioning-a-logo-and-a-banner-in-firefox-using-css/1708612#17086120Answer by Mark Biek for Problem positioning a logo and a banner in Firefox using CSSMark Biek2009-11-10T15:02:50Z2009-11-10T15:02:50Z<p>I'd do the markup like this:</p>
<pre><code><div id="Header">
<div id="Banner"></div>
<div id="logo"></div>
<div style="clear: both;"></div>
</div> <!-- /Header -->
</code></pre>
<p>And the CSS like this.</p>
<pre><code>#Header {
width: 1120px;
}
#logo {
position: relative;
float: left;
width: 250px;
height: 200px;
margin: 0;
border: 1px solid blue;
}
#Banner {
position: relative;
float: right;
width: 850px;
height: 250px;
margin: 0;
border: 1px solid red;
}
</code></pre>
http://stackoverflow.com/questions/1708151/how-to-pass-embed-code-in-javascript/1708295#17082952Answer by Mark Biek for how to pass embed code in javascriptMark Biek2009-11-10T14:17:15Z2009-11-10T14:26:23Z<p>I've also run into situations with Smarty where it tries to evaluate Javascript as Smarty template code.</p>
<p>In that case, you need to surround the Javascript with <a href="http://www.smarty.net/manual/en/language.function.literal.php" rel="nofollow"><code>{literal}{/literal}</code></a> tags.</p>
<p><hr></p>
<p>However, in your case, I think you're missing a single-quote at the beginning of <code>select_item(</code> and a double-quote at the end of the <code>onClick</code> event:</p>
<pre><code><a href="" onClick="return select_item('<embed src=\"player.swf\" allowfullscreen=\"true\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" FlashVars=\"id=&flv=1257568908_.flv\" type=\"application/x-shockwave-flash\" width=\"450\" height=\"371\"></embed>')">
</code></pre>
<p>I'm not 100% sure if you really need to backslash-escape the double-quotes that are part of the <code><embed</code> HTML.</p>
<p>For that amount of markup, I find it easier to read and debug if you <strong>don't</strong> do it inline as part of the <code>onClick</code> event. I use PrototypeJS so I'd handle it like this</p>
<pre><code><a href="#" id="doSelectItem">Click Here</a>
//Handle the click event of the above a tag
Event.observe($('doSelectItem'), 'click', function(event) {
var markup = '<embed src=\"player.swf\" allowfullscreen=\"true\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" FlashVars=\"id=&flv=1257568908_.flv\" type=\"application/x-shockwave-flash\" width=\"450\" height=\"371\"></embed>';
if( select_item(markup) ) {
//select_item returns true, so let the click event continue
}else {
//select_item returned false so cancel the click event.
Event.stop(event);
}
});
</code></pre>
http://stackoverflow.com/questions/1702966/url-mod-rewrite/1702984#17029841Answer by Mark Biek for URL Mod-RewriteMark Biek2009-11-09T18:52:40Z2009-11-09T18:52:40Z<p>An <code>.htaccess</code> file with something like this should do it.</p>
<pre><code>Options +FollowSymLinks
RewriteEngine On
RewriteRule security-services/(.*)/? security-services.php?service=$1 [L]
</code></pre>
<p>The part that says <code>security-services/(.*)/?</code> matches the URL in the browser and rewrites it to <code>security-services.php</code>. </p>
<p>The key part is the <code>(.*)</code> which captures that portion of the URL and passes it to the PHP script as a GET value.</p>
http://stackoverflow.com/questions/244110/strange-error-when-creating-excel-files-with-spreadsheetexcelwriter1Strange error when creating Excel files with Spreadsheet_Excel_WriterMark Biek2008-10-28T17:14:08Z2009-11-02T11:40:43Z
<p>Here's the code. Not much to it. </p>
<pre><code><?php
include("Spreadsheet/Excel/Writer.php");
$xls = new Spreadsheet_Excel_Writer();
$sheet = $xls->addWorksheet('At a Glance');
$colNames = array('Foo', 'Bar');
$sheet->writeRow(0, 0, $colNames, $colHeadingFormat);
for($i=1; $i<=10; $i++)
{
$row = array( "foo $i", "bar $i");
$sheet->writeRow($rowNumber++, 0, $row);
}
header ("Expires: " . gmdate("D,d M Y H:i:s") . " GMT");
header ("Last-Modified: " . gmdate("D,d M Y H:i:s") . " GMT");
header ("Cache-Control: no-cache, must-revalidate");
header ("Pragma: no-cache");
$xls->send("test.xls");
$xls->close();
?>
</code></pre>
<p>The issue is that I get the following error when I actually open the file with Excel:</p>
<pre><code>File error: data may have been lost.
</code></pre>
<p>Even stranger is the fact that, despite the error, the file seems fine. Any data I happen to be writing is there.</p>
<p>Any ideas on how to get rid of this error?</p>
<p><hr /></p>
<h3>Edit</h3>
<p>I've modified the code sample to better illustrate the problem. I don't think the first sample was a legit test.</p>
http://stackoverflow.com/questions/1650534/is-the-form-tag-necessary/1650583#165058310Answer by Mark Biek for Is the form tag necessary?Mark Biek2009-10-30T15:40:00Z2009-10-30T15:40:00Z<p>My preferred method is to leave the <code><form></code> tag but catch the <code>onsubmit</code> event of the form and just <code>return false</code>.</p>
<pre><code><form name="foo" id="foo" action="" method="post">
<input type="text" name="bar" id="bar" />
</form>
</code></pre>
<p>Here's some rough PrototypeJS code that illustrates the approach.</p>
<pre><code><script type="text/javascript">
//Handle the window onload event
Event.observe(window, 'load', function() {
//Handle the form submit event
Event.observe($('foo'), 'submit', function(event) {
//Stop the event so the form doesn't actually submit
Event.stop(event);
});
});
</script>
</code></pre>
http://stackoverflow.com/questions/1630701/layout-problems-in-ie7/1630723#16307231Answer by Mark Biek for Layout problems in IE7Mark Biek2009-10-27T13:14:45Z2009-10-27T13:14:45Z<p>You have a few places where your markup is invalid (one or more <code><div></code> tags aren't closed properly) that could, potentially affect the layout. FireFox tends to be a bit more forgiving about that sort of thing than IE.</p>
<p><img src="http://imgur.com/np22L.png" alt="alt text" /></p>
<p>Other things to check are that your content area & sidebar have explicit widths set and that they aren't too wide for the container they're in.</p>
http://stackoverflow.com/questions/237079/how-to-get-file-creation-modification-date-times-in-python7How to get file creation & modification date/times in Python?Mark Biek2008-10-25T21:54:56Z2009-10-06T14:56:39Z
<p>I have a script that needs to do some stuff based on file creation & modification dates but has to run on Linux & Windows.</p>
<p>What's the best <strong>cross-platform</strong> way to get file creation & modification date/times in Python?</p>
http://stackoverflow.com/questions/1521528/regular-expression-for-removing-quotes-from-quoted-numbers-in-a-string1Regular expression for removing quotes from quoted numbers in a stringMark Biek2009-10-05T18:05:29Z2009-10-05T18:13:53Z
<p>Let's say I have a bunch of text like this (simplified example, but you get the idea):</p>
<pre><code>INSERT stuff(a,b,c) VALUES('1','a','1');
INSERT stuff(a,b,c) VALUES('2','b','1');
INSERT stuff(a,b,c) VALUES('3','c','2');
INSERT stuff(a,b,c) VALUES('4','d','2');
INSERT stuff(a,b,c) VALUES('5','e','3');
INSERT stuff(a,b,c) VALUES('6','f','3');
</code></pre>
<p>I'm looking for a regular expression that removes the <code>''</code> from around every number but leaves the number alone.</p>
<p>Here's the catch. <strong>You can't count on the quoted numbers being in the same position every time</strong>.</p>
<p>There might be cases where it actually looks like this:</p>
<pre><code>INSERT stuff(a,b,c) VALUES('6','3','f');
</code></pre>
<p>Something that would work with VBScript and the RegExp object would be nice.</p>
http://stackoverflow.com/questions/1444447/iterate-over-multiple-mysql-tables-export-1-table-from-each/1444493#14444933Answer by Mark Biek for Iterate over multiple MySQL tables, export 1 table from eachMark Biek2009-09-18T13:16:52Z2009-09-18T13:22:55Z<p>I'm sure there's a more compact way to do it but this should work.</p>
<pre><code>#!/bin/bash
mysql -B -e "show databases" | egrep -v "Database|information_schema" | while read db;
do
echo "$db";
mysqldump $db TableName > $db.sql
done
</code></pre>
<p>You may need to tweak the <code>mysql</code> and <code>mysqldump</code> calls depending on your connection information.</p>
http://stackoverflow.com/questions/1423777/how-can-i-check-if-a-radio-button-is-selected-in-javascript/1423783#14237837Answer by Mark Biek for How can i check if a radio button is selected in javascript?Mark Biek2009-09-14T20:37:56Z2009-09-14T20:53:41Z<p>Let's pretend you have HTML like this</p>
<pre><code><input type="radio" name="gender" id="gender_Male" value="Male" />
<input type="radio" name="gender" id="gender_Female" value="Female" />
</code></pre>
<p>For client-side validation, here's some Javascript to check which one is selected:</p>
<pre><code>if(document.getElementById('gender_Male').checked) {
//Male radio button is checked
}else if(document.getElementById('gender_Female').checked) {
//Female is checked
}
</code></pre>
<p>The above could be made more efficient depending on the exact nature of your markup but that should be enough to get you started.</p>
<p><hr /></p>
<p>If you're just looking to see if <strong>any</strong> radio button is selected <strong>anywhere</strong> on the page, <a href="http://www.prototypejs.org/" rel="nofollow">PrototypeJS</a> makes it very easy.</p>
<p>Here's a function that will return true if at least one radio button is selected somewhere on the page. Again, this might need to be tweaked depending on your specific HTML.</p>
<pre><code>function atLeastOneRadio() {
return ($$('input[type=radio]:checked').size() > 0);
}
</code></pre>
<p><hr /></p>
<p>For server-side validation <em>(remember, you can't depend entirely on Javascript for validation!)</em>, it would depend on your language of choice, but you'd but checking the <code>gender</code> value of the request string.</p>
http://stackoverflow.com/questions/1413703/recommendations-for-graphics-within-a-web-site/1413718#14137187Answer by Mark Biek for Recommendations for graphics within a web siteMark Biek2009-09-11T23:29:31Z2009-09-11T23:29:31Z<p>This series of blog entries from the Yahoo User Interface Blog is an great source for dealing with images on a website:</p>
<h3><a href="http://yuiblog.com/blog/2008/10/29/imageopt-1/" rel="nofollow">Image Optimization Part 1: The Importance of Images</a></h3>
<h3><a href="http://yuiblog.com/blog/2008/11/04/imageopt-2/" rel="nofollow">Image Optimization Part 2: Selecting the Right File Format</a></h3>
<h3><a href="http://yuiblog.com/blog/2008/11/14/imageopt-3/" rel="nofollow">Image Optimization Part 3: Four Steps to File Size Reduction</a></h3>
<h3><a href="http://yuiblog.com/blog/2008/12/05/imageopt-4/" rel="nofollow">Image Optimization Part 4: Progressive JPEG…Hot or Not?</a></h3>
<p>Another nice one is</p>
<h3><a href="http://notjustahatrack.com/posts/image-usage-for-developers/" rel="nofollow">Image Usage for Developers</a></h3>
http://stackoverflow.com/questions/1401941/script-to-connect-to-a-web-page/1401954#14019546Answer by Mark Biek for Script to connect to a web pageMark Biek2009-09-09T20:39:36Z2009-09-09T20:39:36Z<p><a href="http://docs.python.org/library/urllib2.html" rel="nofollow">urllib2</a> will do what you want and it's pretty simple to use.</p>
<pre><code>import urllib
import urllib2
params = {'param1': 'value1'}
req = urllib2.Request("http://someurl", urllib.urlencode(params))
res = urllib2.urlopen(req)
data = res.read()
</code></pre>
<p>It's also nice because it's easy to modify the above code to do all sorts of other things like POST requests, Basic Authentication, etc.</p>
http://stackoverflow.com/questions/1401387/bad-practice-in-php/1401399#14013991Answer by Mark Biek for Bad practice in php?Mark Biek2009-09-09T18:47:52Z2009-09-09T18:47:52Z<p>I like to put that sort of thing in a function (or class) rather than an include.</p>
<p>I find that makes it a bit more flexible (especially if you need to start passing arguments to it) and easier to re-use in other places.</p>
http://stackoverflow.com/questions/1401354/masters-degree-or-self-study/1401381#14013811Answer by Mark Biek for Masters degree or Self-Study?Mark Biek2009-09-09T18:45:13Z2009-09-09T18:45:13Z<ul>
<li><a href="http://stackoverflow.com/questions/93668/did-your-masters-degree-help-you-as-a-programmer">http://stackoverflow.com/questions/93668/did-your-masters-degree-help-you-as-a-programmer</a></li>
<li><a href="http://stackoverflow.com/questions/280203/will-a-masters-degree-increase-my-chances-of-getting-a-good-development-job">http://stackoverflow.com/questions/280203/will-a-masters-degree-increase-my-chances-of-getting-a-good-development-job</a></li>
<li><a href="http://stackoverflow.com/questions/641996/is-it-the-right-time-to-get-a-masters-degree">http://stackoverflow.com/questions/641996/is-it-the-right-time-to-get-a-masters-degree</a></li>
<li><a href="http://stackoverflow.com/questions/1401354/masters-degree-or-self-study">http://stackoverflow.com/questions/1401354/masters-degree-or-self-study</a></li>
<li><a href="http://stackoverflow.com/questions/25620/is-a-masters-degree-overkill">http://stackoverflow.com/questions/25620/is-a-masters-degree-overkill</a></li>
</ul>
http://stackoverflow.com/questions/1395316/parameters-on-php-files-run-via-cron/1395335#13953355Answer by Mark Biek for Parameters on php files run via cronMark Biek2009-09-08T17:50:03Z2009-09-08T17:50:03Z<p><code>-q</code> refers to <em>quiet mode</em> where header information isn't displayed. This is now on by default but <code>-q</code> is still supported for backward compatability.</p>
<pre><code>Usage: php [options] [-f] <file> [--] [args...]
php [options] -r <code> [--] [args...]
php [options] [-B <begin_code>] -R <code> [-E <end_code>] [--] [args...]
php [options] [-B <begin_code>] -F <file> [-E <end_code>] [--] [args...]
php [options] -- [args...]
php [options] -a
-a Run as interactive shell
-c <path>|<file> Look for php.ini file in this directory
-n No php.ini file will be used
-d foo[=bar] Define INI entry foo with value 'bar'
-e Generate extended information for debugger/profiler
-f <file> Parse and execute <file>.
-h This help
-i PHP information
-l Syntax check only (lint)
-m Show compiled in modules
-r <code> Run PHP <code> without using script tags <?..?>
-B <begin_code> Run PHP <begin_code> before processing input lines
-R <code> Run PHP <code> for every input line
-F <file> Parse and execute <file> for every input line
-E <end_code> Run PHP <end_code> after processing all input lines
-H Hide any passed arguments from external tools.
-s Display colour syntax highlighted source.
-v Version number
-w Display source with stripped comments and whitespace.
-z <file> Load Zend extension <file>.
args... Arguments passed to script. Use -- args when first argument
starts with - or script is read from stdin
--ini Show configuration file names
--rf <name> Show information about function <name>.
--rc <name> Show information about class <name>.
--re <name> Show information about extension <name>.
--ri <name> Show configuration for extension <name>.
</code></pre>
<p><code>php -l</code> is the one I use the most. It's nice, when editing, to be able to run a quick syntax check on a file (in vim, <code>:! php -l %</code>)</p>
http://stackoverflow.com/questions/1381205/easy-login-script-without-database/1381269#13812690Answer by Mark Biek for Easy login script without databaseMark Biek2009-09-04T19:59:43Z2009-09-04T19:59:43Z<p>It's not an ideal solution but here's a quick and dirty example that shows how you could store login info in the PHP code:</p>
<pre><code><?php
session_start();
$userinfo = array(
'user1'=>'password1',
'user2'=>'password2'
);
if(isset($_GET['logout'])) {
$_SESSION['username'] = '';
header('Location: ' . $_SERVER['PHP_SELF']);
}
if(isset($_POST['username'])) {
if($userinfo[$_POST['username']] == $_POST['password']) {
$_SESSION['username'] = $_POST['username'];
}else {
//Invalid Login
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Login</title>
</head>
<body>
<?php if($_SESSION['username']): ?>
<p>You are logged in as <?=$_SESSION['username']?></p>
<p><a href="?logout=1">Logout</a></p>
<?php endif; ?>
<form name="login" action="" method="post">
Username: <input type="text" name="username" value="" /><br />
Password: <input type="password" name="password" value="" /><br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1379339/consume-webservice-with-php/1379378#13793784Answer by Mark Biek for Consume WebService with phpMark Biek2009-09-04T13:46:36Z2009-09-04T13:56:12Z<p>Here's a simple example which uses curl and the GET interface. </p>
<pre><code>$zip = 97219;
$url = "http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip=$zip";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
$xmlobj = simplexml_load_string($result);
</code></pre>
<p>The <code>$result</code> variable contains XML which looks like this</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<NewDataSet>
<Table>
<CITY>Portland</CITY>
<STATE>OR</STATE>
<ZIP>97219</ZIP>
<AREA_CODE>503</AREA_CODE>
<TIME_ZONE>P</TIME_ZONE>
</Table>
</NewDataSet>
</code></pre>
<p>Once the XML is parsed into a SimpleXML object, you can get at the various nodes like this:</p>
<pre><code>print $xmlobj->Table->CITY;
</code></pre>
<p><hr /></p>
<p>If you want to get fancy, you could throw the whole thing into a class:</p>
<pre><code>class GetInfoByZIP {
public $zip;
public $xmlobj;
public function __construct($zip='') {
if($zip) {
$this->zip = $zip;
$this->load();
}
}
public function load() {
if($this->zip) {
$url = "http://www.webservicex.net/uszip.asmx/GetInfoByZIP?USZip={$this->zip}";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
$this->xmlobj = simplexml_load_string($result);
}
}
public function __get($name) {
return $this->xmlobj->Table->$name;
}
}
</code></pre>
<p>which can then be used like this:</p>
<pre><code>$zipInfo = new GetInfoByZIP(97219);
print $zipInfo->CITY;
</code></pre>
http://stackoverflow.com/questions/1376748/php-compression-options/1376767#13767672Answer by Mark Biek for PHP Compression OptionsMark Biek2009-09-04T01:08:08Z2009-09-04T01:21:48Z<p>I don't have any personal experience with them but there's a whole section in the docs on <a href="http://us3.php.net/manual/en/refs.compression.php" rel="nofollow">Compression and Archive Extensions</a></p>
<p>It looks like there are extensions for</p>
<ul>
<li><a href="http://us3.php.net/manual/en/book.bzip2.php" rel="nofollow">Bzip2</a></li>
<li><a href="http://us3.php.net/manual/en/book.lzf.php" rel="nofollow">LZF</a></li>
<li><a href="http://us3.php.net/manual/en/book.phar.php" rel="nofollow">Phar</a></li>
<li><a href="http://us3.php.net/manual/en/book.rar.php" rel="nofollow">Rar</a></li>
<li><a href="http://us3.php.net/manual/en/book.zip.php" rel="nofollow">Zip</a></li>
<li><a href="http://us3.php.net/manual/en/book.zlib.php" rel="nofollow">Zlib</a></li>
</ul>
<p>If you're working directly with files on the server, the <a href="http://us3.php.net/manual/en/class.ziparchive.php" rel="nofollow">ZipArchive</a> class (that comes with the Zip extension) looks like it might be the easiest to use.</p>
http://stackoverflow.com/questions/1215672/unable-to-communicate-with-javascript-from-flex-after-dymanically-loading-a-swf/1375630#13756300Answer by Mark Biek for Unable to communicate with Javascript from Flex after dymanically loading a swf.Mark Biek2009-09-03T19:59:57Z2009-09-03T19:59:57Z<p>I ran into this exact problem and got around it in this (slightly icky) way using the Prototype <code>PeriodicalExecuter</code>:</p>
<pre><code>Event.observe(window, 'load', function() {
//Check to see if the flash function is available once per second.
new PeriodicalExecuter( function(pe) {
var flash = $('flashObject');
if(typeof flash.myFlashFunc == 'function'){
//At this point, the flash function is available
pe.stop()
}
}, 1);
});
</code></pre>
<p>Updating to the latest version is probably the best way to go though. I'll have to try that on my end.</p>
http://stackoverflow.com/questions/1375039/javascript-if-else-onclick/1375053#13750531Answer by Mark Biek for Javascript if/else onclick?Mark Biek2009-09-03T18:17:01Z2009-09-03T18:17:01Z<p>First of all, you'll want to have IDs set on each <code><div></code> so you can get at them from Javascript.</p>
<pre><code><a href="" onclick="showThis('test1');return false;">Test 1</a>
<div id="test1"> <p>some content</p> </div>
<a href="" onclick="showThis('test2');return false;">Test 2</a>
<div id="test1"> <p>some content</p> </div>
<div id="content">
<!-- if clicked on Test 1, display some message.
And if clicked on Test 2, display some other message -->
</div>
</code></pre>
<p>If you don't want the <strong>test1</strong> and <strong>test2</strong> divs to be visible add <code>style="display: none;"</code> after the <code>id=""</code> part of each <code><div></code>.
<hr /></p>
<p>Now I'm assuming that you want to take the contents of <strong>test1</strong> or <strong>test2</strong> and put those contents into the <strong>content</strong> div. Here's a little function that'll do it:</p>
<pre><code>function showThis(id) {
document.getElementById('content').innerHTML = document.getElementById(id).innerHTML;
}
</code></pre>
http://stackoverflow.com/questions/1372446/what-firefox-extension-can-dump-http-responses/1374397#13743971Answer by Mark Biek for What Firefox extension can dump HTTP responses?Mark Biek2009-09-03T16:10:54Z2009-09-03T16:10:54Z<p><a href="https://addons.mozilla.org/en-US/firefox/addon/6647" rel="nofollow">HttpFox</a> is one of my favorites.</p>
http://stackoverflow.com/questions/1373006/how-can-i-display-this-alert-box-after-checking-if-my-array-of-checkbox-is-all-no/1373106#13731060Answer by Mark Biek for How can i display this alert box after checking if my array of checkbox is all not checkedMark Biek2009-09-03T12:28:32Z2009-09-03T12:35:05Z<p>I find that <a href="http://www.prototypejs.org" rel="nofollow">PrototypeJS</a> makes this sort of thing very easy using the <code>$$()</code> function with a CSS selector to get the controls you need.</p>
<p>This has the advantage of only looping over as many checkboxes are actually found so you don't have to worry about all of the loop edge conditions.</p>
<p>This function will display an alert if none of the checkboxes are checked (or if no checkboxes are found) and will also return true or false depending on what it finds.</p>
<pre><code>function checkstanddocument() {
var ret = false;
$$('#repo_document_form input[type="checkbox"][name="stands[]"]').each( function(checkbox) {
if(checkbox.checked) {
ret = true;
throw $break;
}
});
if(!ret) {
alert('Please select at least one stand.');
}
return ret;
}
</code></pre>
http://stackoverflow.com/questions/658939/python-equivalent-to-php-s4Python equivalent to "php -s"Mark Biek2009-03-18T16:10:57Z2009-08-27T12:08:56Z
<p>As you may or may not know, you can generate a color syntax-higlighted HTML file from a PHP source file using <strong>php -s</strong>.</p>
<p>I know about the <a href="http://code.google.com/p/syntaxhighlighter/" rel="nofollow">syntaxhighlighter</a> that Stackoverflow uses and that's not really what I'm looking for. I'm looking for something will generate HTML output without Javascript.</p>
Does anyone know of something equivalent to <strong><em>php</em></strong> -<strong><em>s</em></strong> for Python?
http://stackoverflow.com/questions/1305853/how-can-i-make-my-match-non-greedy4How can I make my match non greedy?Mark Biek2009-08-20T12:28:17Z2009-08-20T12:50:19Z
<p>I have a big HTML file that has lots of markup that looks like this:</p>
<pre><code><p class="MsoNormal" style="margin: 0in 0in 0pt;">
<span style="font-size: small; font-family: Times New Roman;">stuff here</span>
</p>
</code></pre>
<p>I'm trying to do a Vim search-and-replace to get rid of all <code>class=""</code> and <code>style=""</code> but I'm having trouble making the match ungreedy.</p>
<p>My first attempt was this</p>
<pre><code>%s/style=".*?"//g
</code></pre>
<p>but Vim doesn't seem to like the <code>?</code>. Unfortunately removing the <code>?</code> makes the match too greedy.</p>
<p>How can I make my match ungreedy?</p>
http://stackoverflow.com/questions/1293619/how-to-recognize-two-different-word-in-a-regex-without-grouping/1293648#12936481Answer by Mark Biek for How to recognize two different word in a regex without groupingMark Biek2009-08-18T12:55:25Z2009-08-18T12:55:25Z<p>I think this will do what you want. </p>
<p>This returns the <em>Foo-</em> and <em>-NNN</em> parts as separate groups:</p>
<pre><code>(Foo-ba[rz])(-\d+)
</code></pre>
<p>Getting the whole thing back as a single group can be done like this.</p>
<pre><code>(Foo-ba[rz]-\d+)
</code></pre>
http://stackoverflow.com/questions/1258176/how-can-i-poll-a-php-page-using-javascript/1260564#12605640Answer by Mark Biek for How can I poll a PHP page using javascript?Mark Biek2009-08-11T14:00:11Z2009-08-11T14:00:11Z<p><a href="http://www.prototypejs.org/" rel="nofollow">PrototypeJS</a> provides the very handy <a href="http://www.prototypejs.org/api/ajax" rel="nofollow">Ajax</a> and <a href="http://www.prototypejs.org/api/periodicalExecuter" rel="nofollow">PeriodicalExecuter</a> objects which do exactly what you want.</p>
<p>In this example, the Ajax request is executed every 10 seconds. You could also easily make the Ajax call from the <code>onchange</code> of your <code><select></code> element.</p>
<pre><code>function increment() {
new Ajax.Request( '/content.php', {
method: 'get',
parameters: {},
onSuccess: function(response, jsonHeader) {
//If you need to do something with a response, doe it here
},
onFailure: function() {
alert('Request failed because an error ocurred.');
}
});
}
new PeridodicalExecuter(function(pe) {
//Call pe.stop() to stop the timer;
increment();
}, 10);
</code></pre>
http://stackoverflow.com/questions/134099/are-pdo-prepared-statements-sufficient-to-prevent-sql-injection9Are PDO prepared statements sufficient to prevent SQL injection?Mark Biek2008-09-25T15:43:35Z2009-07-30T14:25:04Z
<p>Let's say I have code like this:</p>
<pre><code>$dbh = new PDO("blahblah");
$stmt = $dbh->prepare('SELECT * FROM users where username = :username');
$stmt->execute( array(':username' => $_REQUEST['username']) );
</code></pre>
<p>The PDO documentation says</p>
<blockquote>
<blockquote>
<blockquote>
<blockquote>
<p>The parameters to prepared statements don't need to be quoted; the driver handles it for you.</p>
</blockquote>
</blockquote>
</blockquote>
</blockquote>
<p><strong>Is that truly all I need to do to avoid SQL injections? Is it really that easy?</strong></p>
<p>You can assume MySQL if it makes a difference. Also, I'm really only curious about the use of prepared statements against SQL injection. In this context, I don't care about XSS or other possible vulnerabilities.</p>
http://stackoverflow.com/questions/6023/what-are-good-tools-for-creating-compiled-html-help-files-chm13What are good tools for creating compiled HTML help files (.chm)?Mark Biek2008-08-08T14:53:36Z2009-07-27T18:20:59Z
<p>I've seen a number of places recently that offer online HTML API documentation and also offer downloadable (usually .chm) help files.</p>
<p>I really love using .chm help files, mainly because of the index tree on the left.</p>
<p>What are the best tools for creating those types of files? Is there something that would allow me to have a bunch of HTML files that can be put online and also compiled into a .chm?</p>
<p><em>edit (expanding the scope of my original question)</em></p>
<p>All of the tools below look interesting, especially sandcastle which I'm downloading now.</p>
<p>Are there any command-line tools for Linux that do this?</p>
http://stackoverflow.com/questions/1930896/defining-a-classComment by Mark Biek on Defining a classMark Biek2009-12-18T21:58:15Z2009-12-18T21:58:15ZThis is pretty unspecific. You'll have better luck if you show us what you've tried and ask more specific questions. This feels like trying to get people to do your homework for you.http://stackoverflow.com/questions/1829851/good-programming-language-for-a-rabbitComment by Mark Biek on Good programming language for a rabbit?Mark Biek2009-12-02T00:14:39Z2009-12-02T00:14:39ZFWIW, I voted to close as "Not a real question".http://stackoverflow.com/questions/1791507/make-variables-available-outside-function-in-php/1791527#1791527Comment by Mark Biek on make variables available outside function in PHP ?Mark Biek2009-11-24T17:13:29Z2009-11-24T17:13:29ZAgreed. I'd recommend having the function return those values as an array rather than using globals.http://stackoverflow.com/questions/1710835/strange-ie7-printing-bugComment by Mark Biek on Strange IE7 Printing BugMark Biek2009-11-11T15:14:31Z2009-11-11T15:14:31ZHow about a screenshot?http://stackoverflow.com/questions/1708498/problem-positioning-a-logo-and-a-banner-in-firefox-using-css/1708612#1708612Comment by Mark Biek on Problem positioning a logo and a banner in Firefox using CSSMark Biek2009-11-10T15:03:49Z2009-11-10T15:03:49ZThe borders are there just to make it easier to see where the divs are when they don't have any content in them.http://stackoverflow.com/questions/1708051/replace-the-td-tag/1708066#1708066Comment by Mark Biek on Replace the TD tagMark Biek2009-11-10T13:46:53Z2009-11-10T13:46:53ZIn fact, there are certain cases where doing this kind of replacement can actually cause memory exceptions in IE.http://stackoverflow.com/questions/1702966/url-mod-rewrite/1702984#1702984Comment by Mark Biek on URL Mod-RewriteMark Biek2009-11-10T00:07:06Z2009-11-10T00:07:06ZLike MalphasWats says, $_GET['service'] should do the trick. You might add a print_r($_GET); just to see what the contents of $_GET actually are.http://stackoverflow.com/questions/1702966/url-mod-rewrite/1702984#1702984Comment by Mark Biek on URL Mod-RewriteMark Biek2009-11-09T21:41:09Z2009-11-09T21:41:09ZThe first group of () is $1, the second $2, and so on. So you can capture multiple things and then use them in the rewrite part of the rule.http://stackoverflow.com/questions/1701720/im-looking-for-a-perl-friendly-versioning-solution-that-i-can-run-on-windowsComment by Mark Biek on I'm looking for a Perl-friendly versioning solution that I can run on Windows.Mark Biek2009-11-09T15:25:55Z2009-11-09T15:25:55ZCheck out: VisualSVN <a href="http://stackoverflow.com/questions/218507/suggestions-please-for-a-home-version-control-system/218529#218529" rel="nofollow" title="suggestions please for a home version control system">stackoverflow.com/questions/218507/…</a>http://stackoverflow.com/questions/1683865/please-answer-my-queationComment by Mark Biek on please answer my queationMark Biek2009-11-05T21:46:02Z2009-11-05T21:46:02ZYou'll have better luck if you try something and ask specific questions about what's not working. People aren't going to do your work for you.http://stackoverflow.com/questions/1673741/persisting-more-than-one-object-in-delphi-7Comment by Mark Biek on Persisting more than one object in Delphi 7Mark Biek2009-11-04T14:44:59Z2009-11-04T14:44:59Z@Ken Good catch. I completely missed that. Voted to closehttp://stackoverflow.com/questions/1651919/which-approach-is-best-for-preventing-a-sql-injectionComment by Mark Biek on Which approach is best for preventing a SQL injection?Mark Biek2009-10-30T19:48:52Z2009-10-30T19:48:52ZDupe: <a href="http://stackoverflow.com/questions/60174/best-way-to-stop-sql-injection-in-php" rel="nofollow" title="best way to stop sql injection in php">stackoverflow.com/questions/60174/…</a>http://stackoverflow.com/questions/1650534/is-the-form-tag-necessary/1650583#1650583Comment by Mark Biek on Is the form tag necessary?Mark Biek2009-10-30T15:58:56Z2009-10-30T15:58:56Z@John, excellent point.http://stackoverflow.com/questions/1630701/layout-problems-in-ie7/1630723#1630723Comment by Mark Biek on Layout problems in IE7Mark Biek2009-10-27T20:49:35Z2009-10-27T20:49:35ZGlad to hear it :)http://stackoverflow.com/questions/1630701/layout-problems-in-ie7/1630723#1630723Comment by Mark Biek on Layout problems in IE7Mark Biek2009-10-27T18:37:45Z2009-10-27T18:37:45ZThere may be a better solution for your specific case but you could always use a Browser Conditional to just adjust the margins in IE: <a href="http://stackoverflow.com/questions/46124/is-there-a-list-of-browser-conditionals-for-use-including-stylesheets" rel="nofollow" title="is there a list of browser conditionals for use including stylesheets">stackoverflow.com/questions/46124/…</a>