Lucas Oman

4,718
Reputation
168 views

Registered User

Name Lucas Oman
Member for 1 year
Seen 4 hours ago
Website
Location US
Age 27
Web Applications Developer, mostly working with LAMP stack.
7h
answered Favorite minimalistic .vimrc configuration
10h
comment String concatenation vs array implode in PHP
He said "apart from ... readability".
10h
answered String concatenation vs array implode in PHP
1d
comment errors are not displaying in PHP script.
I think the rationale is that public-facing errors can reveal details about the server's filesystem and the framework (if any) that the site uses. This can give someone a leg-up in finding exploits and vulnerabilities in the site or server. With shared hosting, a single vulnerable site can compromise every site on the server.
2d
revised How to get PHP $_GET array ?
cleaning up the English a little
2d
answered How to get PHP $_GET array ?
Nov
30
answered working with user input data in php. What’s better?
Nov
30
revised assigning to an associative array slice in php
edited code in response to OP's comment to post.
Nov
30
answered assigning to an associative array slice in php
Nov
30
comment Searching for specific file extensions in a folder/directory (PHP)
If learning PHP, the SPL is a great place to start, as there is far more win there than in PHP's legacy, inconsistent function library.
Nov
27
comment PHP Curl POST Problem Causing PHP to use 100% CPU
You're sure that's where it's hanging? For instance, can you print something before the curl_exec and after the curl_exec and never see the second print?
Nov
25
comment Error Suppression @ Not Working
Bizarre. Thanks for the heads-up.
Nov
25
answered Error Suppression @ Not Working
Nov
25
comment PHP - Dealing with GET and POST arrays
... or prepared statements with mysqli.
Nov
23
comment Converting time in PHP?
Though not an exact answer to the question ("in PHP"), this would be preferable if, as you stipulated, the OP is using MySQL. More efficient by far.
Nov
20
answered Tips for the PHP beginners
Nov
20
comment Getting the difference between two time/dates using php?
PHP may assume your date is in m-d-Y format when the numbers for month and day make the format ambiguous (the example you give is unambiguous, as there are not 14 months). You may need to parse and swap the day and month.
Nov
17
awarded  Nice Answer
Nov
11
comment Ignore data within a certain set of characters with PHP
You're right, I just noticed the '?'. And stupid markup.
Nov
11
comment Ignore data within a certain set of characters with PHP
Note that this regex would be "greedy", so "this * some text is a other text * test" would come out as "this test", rather than "this is a test", as you may expect.
Oct
29
revised How do I insert text at beginning of a multi-line selection in VI/VIM?
Fixing it so it actually works.
Oct
27
comment Search query is automatically executed on each load, without clicking the search button
You're quite welcome :) You can also "accept" the answer if you'd like.
Oct
27
comment Search query is automatically executed on each load, without clicking the search button
Then I would add a check for the 'page' value: if (isset($_GET['subm']) || isset($_GET['page'])) { ... }
Oct
27
comment Search query is automatically executed on each load, without clicking the search button
That's probably because you haven't changed your form's method to GET instead of POST. If you change your code to use GET (including the above snippet in my post), it should work.
Oct
27
comment Search query is automatically executed on each load, without clicking the search button
Edited post to address your comment.
Oct
27
revised Search query is automatically executed on each load, without clicking the search button
added 228 characters in body
Oct
27
answered Search query is automatically executed on each load, without clicking the search button
Oct
23
revised reading and formatting csv data using explode and arrays in php
added 30 characters in body
Oct
23
answered reading and formatting csv data using explode and arrays in php
Oct
22
answered Is it possible to curry method calls in PHP?
Oct
21
comment Worst PHP practice found in your experience?
I'm an avid vim fan. Can't imagine using anything else.
Oct
20
revised PHP call_user_func vs. just calling function
fixing bug in code
Oct
20
answered PHP call_user_func vs. just calling function
Oct
8
accepted Inserting something at a particular line in a text file using PHP
Oct
8
answered Inserting something at a particular line in a text file using PHP
Oct
6
revised httpconnection.getResponseCode() giving EOF exception
typo in title
Oct
6
comment Namespace or something else to avoid name conflict with Kohana’s Image library
If you were on 5.3+, you could still namespace your helper and use Kohana's absolute namespace path ("\Image_Core" instead of "Image_Core", for instance). Nothing would break then.
Oct
6
answered Help in getting Hour and Minute in PHP
Sep
25
revised php:uploading a file on server
typos galore
Sep
17
comment Will Ruby ever be *fast* ?
@dmckee That's such a cop-out. A project is open-source so that it can benefit from the goodwill of contributors, not so that the core devs have an excuse any time someone has a valid suggestion or issue.
Sep
17
comment Will Ruby ever be *fast* ?
I don't think this is argumentative; it's an important question to any Ruby developer or any developer who is considering learning Ruby. It's up to the commenters to keep the conversation civil.
Sep
16
awarded  Yearling
Sep
15
revised What is your favorite Regex?
typo
Sep
14
comment Using vi, how can I make CSS rules into one liners?
This only fixes one block at a time, though. Using :%s would fix the entire file.
Sep
14
revised Using vi, how can I make CSS rules into one liners?
more typos in vim code
Sep
14
answered Using vi, how can I make CSS rules into one liners?
Sep
13
accepted Multiple autocommands in vim
Sep
11
comment Multiple autocommands in vim
As nice as it would be, vim script doesn't have lambdas :P
Sep
11
answered Multiple autocommands in vim
Sep
11
comment Where does this session come from?
You cannot start a session that way. You can, however, initialize a key in the session that way. The session must be started with session_start().