User too much php - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:18:46Zhttp://stackoverflow.com/feeds/user/28835http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/322203/free-sound-editor-converter3Free sound editor / converter?too much php2008-11-26T21:19:14Z2009-12-15T17:58:25Z
<p>I'm looking for something like paint.net or Gimp, but for audio files, and runs on windows.</p>
http://stackoverflow.com/questions/369758/how-to-trim-whitespace-from-bash-variable3How to trim whitespace from bash variable?too much php2008-12-15T21:24:01Z2009-11-27T09:49:36Z
<p>I have a shell script with this code:</p>
<pre><code>var=`hg st -R "$path"`
if [ -n "$var" ]; then
echo $var
fi
</code></pre>
<p>But the conditional code always executes because <code>hg st</code> always prints at least one newline character.</p>
<ul>
<li>Is there a simple way to strip whitespace from <code>$var</code> (like <code>trim()</code> in php)?</li>
</ul>
<p>or</p>
<ul>
<li>Is there a standard way of dealing with this issue?</li>
</ul>
<p>I could use <code>sed</code> or <code>awk</code>, but I'd like to think there is a more elegant solution to this problem.</p>
http://stackoverflow.com/questions/1766336/call-a-function-in-vims-autocmd-command/1767638#17676381Answer by too much php for Call a function in Vim’s `autocmd` commandtoo much php2009-11-20T00:44:14Z2009-11-20T00:44:14Z<p>The alternative is to set <code>makeprg</code> using <code>&l:makeprg</code>:</p>
<pre><code>autocmd FileType tex let &l:makeprg = "rubber-info " . expand("%:t:r") . ".log"
</code></pre>
<p>See <code>:help let-&</code> if you want more information about settings options using <code>:let</code>.</p>
http://stackoverflow.com/questions/399624/programming-a-logitech-g15-using-python1Programming a Logitech G15 using pythontoo much php2008-12-30T06:14:00Z2009-11-08T12:58:07Z
<p>I'd like to be able to write apps for my G15 keyboard using python. There seems to be a few people out there who have done it in the past, but I'm not sure what packages I need to install or where I should start. Does anyone have any experience with this?</p>
http://stackoverflow.com/questions/339217/writing-a-compiler-for-a-dsl-in-python2Writing a compiler for a DSL in pythontoo much php2008-12-04T00:17:14Z2009-11-02T12:00:47Z
<p>I am writing a game in python and have decided to create a DSL for the map data files. I know I could write my own parser with regex, but I am wondering if there are existing python tools which can do this more easily, like re2c which is used in the PHP engine.</p>
<p>Some extra info:</p>
<ul>
<li>Yes, I <em>do</em> need a DSL, and even if I didn't I still want the experience of building and using one in a project.</li>
<li><p>The DSL contains only data (declarative?), it doesn't get "executed". Most lines look like:</p>
<p><code>SOMETHING: !abc @123 #xyz/123</code></p>
<p>I just need to read the tree of data.</p></li>
</ul>
http://stackoverflow.com/questions/1658824/is-it-possible-to-use-in-php-switch/1658839#16588390Answer by too much php for Is it possible to use || in PHP switch?too much php2009-11-01T23:56:14Z2009-11-01T23:56:14Z<p>No, if you wrote <code>case 3 || 5:</code>, then you might as well just write <code>case True:</code>, which is certainly not what you wanted. You can however put case statements directly underneath each other:</p>
<pre>
switch ($foo)
{
case 3:
case 5:
bar();
break;
case 2:
apple();
break;
}
</pre>
http://stackoverflow.com/questions/1562336/tab-vs-space-preferences-in-vim/1610732#16107322Answer by too much php for Tab Vs Space preferences in Vimtoo much php2009-10-23T00:09:03Z2009-10-23T00:09:03Z<p>Creating a <code>stab</code> option in Vim itself would not be easy, but I've whipped up this command/function that you can drop in your <code>.vimrc</code> (or a plugin file if you're super-organized). Use <code>:Stab</code> and you will be prompted for an indent level and whether or not to use <code>expandtab</code>. If you hit enter without giving it a new indent level, it will just print the current settings.</p>
<pre>
" put all this in your .vimrc or a plugin file
command! -nargs=* Stab call Stab()
function! Stab()
let l:tabstop = 1 * input('set shiftwidth=')
if l:tabstop > 0
" do we want expandtab as well?
let l:expandtab = confirm('set expandtab?', "&Yes\n&No\n&Cancel")
if l:expandtab == 3
" abort?
return
endif
let &l:sts = l:tabstop
let &l:ts = l:tabstop
let &l:sw = l:tabstop
if l:expandtab == 1
setlocal expandtab
else
setlocal noexpandtab
endif
endif
" show the selected options
try
echohl ModeMsg
echon 'set tabstop='
echohl Question
echon &l:ts
echohl ModeMsg
echon ' shiftwidth='
echohl Question
echon &l:sw
echohl ModeMsg
echon ' sts='
echohl Question
echon &l:sts . ' ' . (&l:et ? ' ' : 'no')
echohl ModeMsg
echon 'expandtab'
finally
echohl None
endtry
endfunction
</pre>
http://stackoverflow.com/questions/1599103/regex-match-a-string-with-spaces-use-quotes-in-an-if-statement/1599126#15991262Answer by too much php for Regex match a string with spaces (use quotes?) in an if statement too much php2009-10-21T06:52:42Z2009-10-21T06:52:42Z<p>You can use <code>\</code> before spaces.</p>
<pre><code>#!/bin/bash
text="This is just a test string"
if [[ "$text" =~ ^This\ is\ just ]]; then
echo "matched"
else
echo "not matched"
fi
</code></pre>
http://stackoverflow.com/questions/804045/preferred-method-to-store-php-arrays-jsonencode-vs-serialize/1598603#15986030Answer by too much php for Preferred method to store PHP arrays (json_encode vs serialize)too much php2009-10-21T03:34:54Z2009-10-21T03:34:54Z<p>Before you make your final decision, be aware that the JSON format is not safe for associative arrays - <code>json_decode()</code> will return them as objects instead:</p>
<pre><code>$config = array(
'Frodo' => 'hobbit',
'Gimli' => 'dwarf',
'Gandalf' => 'wizard',
);
print_r($config);
print_r(json_decode(json_encode($config)));
</code></pre>
<p>Output is:</p>
<pre><code>Array
(
[Frodo] => hobbit
[Gimli] => dwarf
[Gandalf] => wizard
)
stdClass Object
(
[Frodo] => hobbit
[Gimli] => dwarf
[Gandalf] => wizard
)
</code></pre>
http://stackoverflow.com/questions/1547696/php-type-hinting-array-supported-object-not/1592049#15920490Answer by too much php for PHP Type Hinting: array supported, object NOT?too much php2009-10-20T01:41:26Z2009-10-20T01:41:26Z<p>Why would you want to hint <code>object</code> when you can hint an actual class name instead - this would be much more useful. Also remember that you can't hint <code>int</code>,<code>float</code>, <code>bool</code>, <code>string</code> or <code>resource</code> either.</p>
http://stackoverflow.com/questions/1585763/vim-delete-display-lines-instead-of-physical-lines/1587041#15870412Answer by too much php for vim: delete display lines instead of physical linestoo much php2009-10-19T04:59:38Z2009-10-19T04:59:38Z<p>If you want <code>dd</code> and <code>yy</code> to only work on display lines, you would need to use the following mappings:</p>
<pre><code>:nnoremap dd dg$
:nnoremap yy yg$
:nnoremap D dg$
:nnoremap Y 0yg$
</code></pre>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/288797#28879737Answer by too much php for What are your favorite Vim tricks?too much php2008-11-13T23:49:40Z2009-10-18T04:59:37Z<p>Using the built-in regions to change text quickly:</p>
<pre><code>ci" -> Delete everything inside "" string and start insert mode
da[ -> Delete the [] region around your cursor
vi' -> Visual select everything inside '' string
ya( -> Yank all text from ( to )
</code></pre>
<p>The command and type of region can all be used interchangeably and don't require .vimrc editing. See <code>:help text-objects</code>.</p>
http://stackoverflow.com/questions/1562336/tab-vs-space-preferences-in-vim/1563633#15636330Answer by too much php for Tab Vs Space preferences in Vimtoo much php2009-10-14T00:09:40Z2009-10-15T23:31:12Z<p>Your understanding of <code>softtabstop</code> and <code>expandtab</code> is wrong - so the <code>stab</code> option you suggest wouldn't be very useful.</p>
<p><strong><code>expandtab</code></strong> is for when you want to use spaces instead of tabs for <em>everything</em>. If you set <code>expandtab</code>, then Vim ignores the <code>softtabstop</code> option and uses <code>tabstop</code> and <code>shiftwidth</code> to work out how many spaces to insert.</p>
<p><strong><code>softtabstop</code></strong> is only for when you would like to use a <strong>mix</strong> of tabs and spaces, allowing you to indent with fine control (2 or 4 spaces), while keeping tab width at a higher value (usually 8) so that text appears in the other applications. Setting <code>softtabstop=tabstop</code> doesn't accomplish anything because Vim will always use tabs for indenting.</p>
<p><strong>Update:</strong> As <a href="http://stackoverflow.com/users/137317/kaizer-se">kaizer.se</a> has pointed out, if you are using <code>expandtab</code>, then you still need to set <code>softtabstop</code> if you want Vim to backspace multiple spaces as though they are a tab.</p>
http://stackoverflow.com/questions/1562350/copy-and-paste-from-external-source/1563571#15635711Answer by too much php for Copy and paste from external sourcetoo much php2009-10-13T23:50:23Z2009-10-13T23:50:23Z<p>You could set up a mapping to ease your pain:</p>
<pre><code>:vmap <F5> "zxP
</code></pre>
<p>This will delete the visually selected text, but put it in a different register, so the clipboard isn't affected. Change <code><F5></code> to whatever is easiest for you.</p>
http://stackoverflow.com/questions/1562633/setting-vim-whitespace-preferences-by-filetype/1563552#15635521Answer by too much php for Setting Vim whitespace preferences by filetypetoo much php2009-10-13T23:43:57Z2009-10-13T23:43:57Z<p>Peter's answer is straightforward enough, but unfortunately the options aren't right. You need to use the following options instead:</p>
<pre><code>autocmd Filetype html setlocal ts=2 sw=2 expandtab
autocmd Filetype ruby setlocal ts=2 sw=2 expandtab
autocmd Filetype javascript setlocal ts=4 sw=4 sts=0 noexpandtab
</code></pre>
<p>Also note:</p>
<ul>
<li>You can make vim show tab characters by using <code>:set list</code>.</li>
<li>Once you have the tab/space options set correctly, you can make vim repair the file (replace spaces with tabs or vice versa) using the <code>:retab!</code> command.</li>
</ul>
http://stackoverflow.com/questions/1562928/mapping-of-ctrl-characters/1563513#15635132Answer by too much php for Mapping of <ctrl-#> characterstoo much php2009-10-13T23:30:28Z2009-10-13T23:30:28Z<p>Vim doesn't always support all the <code>ctrl-</code> key combinations, and they can also end up being transmitted as something else because of your terminal. The easiest way to enter these is to type <code>:map </code> literally, then press <kbd>CTRL+V</kbd>, and then press <kbd>CTRL+9</kbd> (or whatever number you want). If vim is able to recognize <code>ctrl+9</code> then the correct code for <code>ctrl+9</code> will be inserted.</p>
http://stackoverflow.com/questions/1557646/itunes-does-not-show-podcast-image1iTunes does not show podcast imagetoo much php2009-10-13T00:21:12Z2009-10-13T22:58:22Z
<p>I cannot seem to get iTunes to display the image for my podcast. To be precise, iTunes doesn't even try to <em>download</em> the image for my podcast. Apache logs show the podcast and first audio file being downloaded by iTunes, but it is completely ignoring the <code><image></code> and <code><itunes:image></code> sections (shown here):</p>
<pre><code><image>
<url><?php echo htmlentities($imageURL) ?></url>
<title>My Podcast</title>
<link>http://<?php echo $_SERVER['HTTP_HOST'] ?></link>
<width>300</width>
<height>300</height>
</image>
<itunes:image>
<url><?php echo $imageURL ?></url>
<title>My Podcast</title>
<link>http://<?php echo $_SERVER['HTTP_HOST'] ?></link>
</itunes:image>
</code></pre>
<p>I have also tried this slightly shorter alternative, with no luck.</p>
<pre><code><image>
<url><?php echo $imageURL ?></url>
<title>My Podcast</title>
<link>http://<?php echo $_SERVER['HTTP_HOST'] ?></link>
<width>300</width>
<height>300</height>
</image>
<itunes:image href="<?php echo $imageURL ?>" />
</code></pre>
<p>A few notes:</p>
<ul>
<li>Yes the image URL works, but keep in mind that iTunes doesn't even <strong>try</strong> to download the image.</li>
<li>This podcast is not listed in the iTunes Store.</li>
<li>My iTunes is not connected with the iTunes Store.</li>
</ul>
http://stackoverflow.com/questions/1557893/making-inserting-a-single-character-in-vim-an-atomic-operation/1558066#15580661Answer by too much php for Making inserting a single character in Vim an atomic operationtoo much php2009-10-13T03:30:25Z2009-10-13T03:30:25Z<p>Awesome! Michael's answer pointed me to the plugin I needed to finish my plugin, which can now do what you want - I had been trying to figure out how to do this for ages!</p>
<p><strong>1)</strong> Install <a href="http://www.vim.org/scripts/script.php?script%5Fid=2136" rel="nofollow">Tim Pope's plugin</a></p>
<p><strong>2)</strong> Install <a href="http://www.vim.org/scripts/script.php?script%5Fid=2810" rel="nofollow">my plugin</a></p>
<p><strong>3)</strong> Add a mapping to your <code>.vimrc</code>:</p>
<pre><code>nnoremap <space> :<C-U>call InsertChar#insert(v:count1)<CR>
</code></pre>
http://stackoverflow.com/questions/1557608/how-do-i-get-a-php-class-constructor-to-call-its-parents-parents-constructor/1557635#15576351Answer by too much php for How do I get a PHP class constructor to call its parent's parent's constructortoo much php2009-10-13T00:18:00Z2009-10-13T00:18:00Z<p>You must use <code>Grandpa::__construct()</code>, there's no other shortcut for it. Also, this ruins the encapsulation of the <code>Papa</code> class - when reading or working on <code>Papa</code>, it should be safe to assume that the <code>__construct()</code> method will be called during construction, but the <code>Kiddo</code> class does not do this.</p>
http://stackoverflow.com/questions/1552933/vim-count-determine-number-of-errors-in-quickfix/1553011#15530111Answer by too much php for VIM count / determine number of errors in quickfixtoo much php2009-10-12T06:26:42Z2009-10-12T06:26:42Z<p>You can just use the <code>getqflist()</code> function (see <code>:help getqflist()</code>):</p>
<pre><code>:echo printf("Have %d errors", len(getqflist()))
</code></pre>
http://stackoverflow.com/questions/1552455/alternative-conditional-syntax-if-else-failing-on-php-5-3-0-xampp/1552498#15524981Answer by too much php for Alternative conditional syntax (if-else) failing on PHP 5.3.0 (xampp)too much php2009-10-12T03:05:03Z2009-10-12T03:13:34Z<p>Although the if/else syntax hasn't changed in 5.3, many other parts of the syntax have. You should check the lines just before the else statement in question to see if one of the other new syntax features is confusing the parser.</p>
<p>If you can't figure out where the problem is, you can always just start systematically deleting lines of code until you're left with the following three lines:</p>
<pre><code><?php if(condition): ?>
<?php else: ?>
<?php endif ?>
</code></pre>
<p><strong>Update:</strong> You really should test your code with <code>short_open_tag</code> turned on, because the syntax error you see is what you would get if you had this code somewhere:</p>
<pre><code><? if(condition): ?>
<?php else: ?>
<?php endif ?>
</code></pre>
http://stackoverflow.com/questions/1552332/heredoc-this-php-html/1552347#15523471Answer by too much php for Heredoc this PHP-HTMLtoo much php2009-10-12T01:50:05Z2009-10-12T01:50:05Z<p>Inside the heredoc, you can use this syntax to specify the correct variable names:</p>
<pre><code><label>CMKS1{$CMKS1_CMKS2_space}CMKS2</label>
</code></pre>
<p>Unfortunately, there is no way to add the conditional statements inside heredoc syntax.</p>
http://stackoverflow.com/questions/1551231/vim-highlight-variable-under-cursor-like-in-netbeans/1552193#15521935Answer by too much php for VIM highlight variable under cursor like in netbeanstoo much php2009-10-12T00:25:22Z2009-10-12T00:25:22Z<p>This autocommand will do what you want:</p>
<pre><code>:autocmd CursorMoved * exe printf('match IncSearch /\<%s\>/', expand('<cword>'))
</code></pre>
<p><strong>Edit:</strong> I have used the <code>IncSearch</code> highlight group in my example, but you can find other colours to use by running this command:</p>
<pre><code>:so $VIMRUNTIME/syntax/hitest.vim
</code></pre>
http://stackoverflow.com/questions/1551993/copying-live-sites-to-local/1552174#15521740Answer by too much php for Copying live sites to localtoo much php2009-10-12T00:12:28Z2009-10-12T00:12:28Z<p>Ideally, you should have a line of code in your main config file which is able to determine what server the code is running on. I use something like the following:</p>
<pre><code>if(__FILE__ === '/home/peter/web_projects/my-project/config.php') {
// set up configuration for development environment
define('DEV', true);
[etc]
}
else {
// code is running on the live server
define('DEV', false);
[etc]
}
</code></pre>
<p>This allows me to have the same <code>config.php</code> on my development machine as well as live, and any other files can just check the <code>DEV</code> constant to know if they are local or live.</p>
http://stackoverflow.com/questions/1542418/php-error-logging-does-not-work-via-htaccess/1542449#15424493Answer by too much php for PHP error logging does not work via .htaccesstoo much php2009-10-09T07:59:04Z2009-10-09T07:59:04Z<p>Try adding the following test page to your web root:</p>
<pre><code><?php
// debug.php
echo "<pre>";
echo "log_errors = [", ini_get('log_errors'), "]\n";
echo "error_log = [", ini_get('error_log'), "]\n";
echo "writeable? ", is_writable(ini_get('error_log')) ? 'Yes' : 'No', "\n";
echo "</pre>";
error_log("Test from error_log()");
user_error("Test error from user_error()");
</code></pre>
<p>Browse to <code>/debug.php</code> and you should see the following output:</p>
<pre><code>log_errors = [1]
error_log = [/var/www/vhosts//logs/fo_errors.log]
Writeable? Yes
</code></pre>
<p>You should also see two messages appear in your log file each time you visit the page.</p>
http://stackoverflow.com/questions/1539816/make-gvim-7-2-background-black/1541576#15415760Answer by too much php for make gvim 7.2 background blacktoo much php2009-10-09T02:54:44Z2009-10-09T02:54:44Z<p>Depending on your colorscheme, the following command might work (it does depend on the colorscheme).</p>
<pre><code>:set background=dark
</code></pre>
http://stackoverflow.com/questions/1532456/finding-repetition-by-vims-regex-and-globbing/1536245#15362451Answer by too much php for Finding repetition by Vim's Regex and globbingtoo much php2009-10-08T07:50:24Z2009-10-08T07:56:32Z<p>First of all, to find your repeating numbers, you can use this simple search:</p>
<pre><code>/\(\d\{5\}\).\{-}\1
</code></pre>
<p>This search finds repetitions of 5 digits. Unfortunately, vim highlights from the start of the 5 digit number to the end of the repetition - <em>including every digit in between</em> - and this makes it hard to see what the 5 digit number is. Also, because your number sequence repeats so much, the whole thing is highlighted because there are repeats all the way through.</p>
<p>You will probably find it's more useful to use <code>:set incsearch</code> and type <code>/\(\d\{5\}\).\{-}\1</code> or <code>/\(\d\{5\}\)\ze.\{-}\1</code> <strong>without hitting enter</strong> so you can see what the digits are.</p>
<p>This command might be more useful to you:</p>
<pre><code>:syn region repeatSection matchgroup=Search start=/\z(\d\{30}\)/ matchgroup=Error end=/\z1/ oneline
</code></pre>
<p>This will highlight a sequence of 30 digits in yellow (first time it is seen) or red (when it is repeated). <strong>Note</strong> that this only works for a single line of text (multi-line isn't possible).</p>
http://stackoverflow.com/questions/1534835/how-do-i-close-all-buffers-that-arent-shown-in-a-window-in-vim/1536094#15360942Answer by too much php for How do I close all buffers that aren't shown in a window in vim?too much php2009-10-08T07:13:13Z2009-10-08T07:13:13Z<p>Here's an alternative solution you can drop in your <code>.vimrc</code>:</p>
<pre><code>function! Wipeout()
" list of *all* buffer numbers
let l:buffers = range(1, bufnr('$'))
" what tab page are we in?
let l:currentTab = tabpagenr()
try
" go through all tab pages
let l:tab = 0
while l:tab < tabpagenr('$')
let l:tab += 1
" go through all windows
let l:win = 0
while l:win < winnr('$')
let l:win += 1
" whatever buffer is in this window in this tab, remove it from
" l:buffers list
let l:thisbuf = winbufnr(l:win)
call remove(l:buffers, index(l:buffers, l:thisbuf))
endwhile
endwhile
" if there are any buffers left, delete them
if len(l:buffers)
execute 'bwipeout' join(l:buffers)
endif
finally
" go back to our original tab page
execute 'tabnext' l:currentTab
endtry
endfunction
</code></pre>
<p>Use <code>:call Wipeout()</code>.</p>
http://stackoverflow.com/questions/1535246/php-format-date-from-database/1535259#15352593Answer by too much php for PHP - Format date from database?too much php2009-10-08T02:11:31Z2009-10-08T02:16:25Z<p>Normally the code is just:</p>
<pre><code>echo date('F d, Y h:mA', strtotime('2009-10-14 19:00:00'));
</code></pre>
<p>Note that if <code>strtotime()</code> can't figure out the date, it returns the time as <a href="http://en.wikipedia.org/wiki/Unix%5Ftime" rel="nofollow">1/1/1970 00:00:00 GMT</a>.</p>
http://stackoverflow.com/questions/1535180/phps-magic-method-call-on-subclasses/1535202#15352020Answer by too much php for PHP's magic method __call on subclassestoo much php2009-10-08T01:50:53Z2009-10-08T01:50:53Z<p>It can't be done directly, but this is one possible alternative:</p>
<pre><code>class SubFoo { // does not extend
function __construct() {
$this->__foo = new Foo; // sub-object instead
}
function __call($func, $args) {
echo "intercepted $func()!\n";
call_user_func_array(array($this->__foo, $func), $args);
}
}
</code></pre>
<p>This sort of thing is good for debugging and testing, but you want to avoid <code>__call()</code> and friends as much as possible in production code as they are not very efficient.</p>
http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282574#282574Comment by too much php on What are five things you hate about your favorite language?too much php2009-11-02T23:35:19Z2009-11-02T23:35:19Z@Click Upvote: But Fatal errors are not the same as compile errors - if you have <code>null</code> instead of an object than trying to call a method results in a Fatal Error. Could you imagine trying to build a reliable Java program if the NullPointerException instantly crashed your program and there was no way to catch the exception?http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282574#282574Comment by too much php on What are five things you hate about your favorite language?too much php2009-11-02T00:25:37Z2009-11-02T00:25:37Z5.3 has fixed #2, and that is all. Custom error handlers still can't catch fatal errors, so try/catch still can't catch all errors.http://stackoverflow.com/questions/1599103/regex-match-a-string-with-spaces-use-quotes-in-an-if-statement/1599126#1599126Comment by too much php on Regex match a string with spaces (use quotes?) in an if statement too much php2009-10-21T09:44:29Z2009-10-21T09:44:29ZThat's good to hear. I've never used bash regexes before, I just experimented and found that \ worked. <i>On S.O., it's correct until proven wrong!</i>http://stackoverflow.com/questions/1596086/how-to-insert-a-word-text-in-the-beginning-of-each-line/1596101#1596101Comment by too much php on How to insert a word/text in the beginning of each linetoo much php2009-10-21T00:04:01Z2009-10-21T00:04:01Z@Jefromi: You should make your comment an answer, ctrl-V is easier to use than <code>:s</code>.http://stackoverflow.com/questions/1562336/tab-vs-space-preferences-in-vim/1563633#1563633Comment by too much php on Tab Vs Space preferences in Vimtoo much php2009-10-15T23:31:31Z2009-10-15T23:31:31Z@kaizer.se: Thanks for the correctionhttp://stackoverflow.com/questions/1568139/using-vi-how-can-i-remove-all-lines-that-contain-searchterm/1568185#1568185Comment by too much php on Using vi, how can I remove all lines that contain [searchterm]?too much php2009-10-15T03:32:55Z2009-10-15T03:32:55ZBut that regex doesn't work in vim! It doesn't even work in Perl.http://stackoverflow.com/questions/1564067/problems-with-php-pcre/1564113#1564113Comment by too much php on Problems with PHP PCREtoo much php2009-10-14T04:42:48Z2009-10-14T04:42:48ZYou should probably include the the <code>/.../</code> delimiters in your pattern.http://stackoverflow.com/questions/1555779/how-do-i-do-redo-i-e-undo-undo-in-vimComment by too much php on how do I do redo (i.e. "undo undo") in vimtoo much php2009-10-13T02:08:07Z2009-10-13T02:08:07Z@Brian: Do you have a link to the document where this consensus was reached?http://stackoverflow.com/questions/1557608/how-do-i-get-a-php-class-constructor-to-call-its-parents-parents-constructor/1557635#1557635Comment by too much php on How do I get a PHP class constructor to call its parent's parent's constructortoo much php2009-10-13T00:54:44Z2009-10-13T00:54:44ZNo, it works as expected.http://stackoverflow.com/questions/1557646/itunes-does-not-show-podcast-imageComment by too much php on iTunes does not show podcast imagetoo much php2009-10-13T00:51:45Z2009-10-13T00:51:45ZYes, the <image> is under the <channel> element.http://stackoverflow.com/questions/1552455/alternative-conditional-syntax-if-else-failing-on-php-5-3-0-xampp/1552498#1552498Comment by too much php on Alternative conditional syntax (if-else) failing on PHP 5.3.0 (xampp)too much php2009-10-12T04:13:44Z2009-10-12T04:13:44ZFor changes in 5.3, just see <a href="http://php.net/migration53" rel="nofollow">php.net/migration53</a> . You can search for short tags very easily - search for '<? ' or '<?$' or '<?[^p]', depending on whether or not you want to use grep / regex, etc.http://stackoverflow.com/questions/1552332/heredoc-this-php-html/1552347#1552347Comment by too much php on Heredoc this PHP-HTMLtoo much php2009-10-12T02:27:01Z2009-10-12T02:27:01ZSince you are using the same CSS class ('err-cls') for both inputs, you may as well just put that in a $variable above your heredoc.http://stackoverflow.com/questions/1537202/variables-inside-and-outside-of-a-class-init-function/1537226#1537226Comment by too much php on Variables inside and outside of a class __init__() functiontoo much php2009-10-08T11:43:44Z2009-10-08T11:43:44ZThat's not what python does for me. Lists/dicts/etc get shared between all instances if you don't create them in <code>__init__()</code>.http://stackoverflow.com/questions/1534377/php-mysqli-where-in/1534520#1534520Comment by too much php on php mysqli WHERE IN (?,?,? ...)too much php2009-10-08T07:30:52Z2009-10-08T07:30:52ZNo it won't work. Please don't use this code!http://stackoverflow.com/questions/1535702/python-not-a-standardized-language/1535727#1535727Comment by too much php on Python not a standardized language?too much php2009-10-08T06:00:14Z2009-10-08T06:00:14ZA great answer, my only argument would be that if a Standard is just slightly vague on a certain feature, you can guarantee that the Microsoft version will use the most obscure and unusual interpretation of said ambiguity, while every other product does something sensible.