User Lucas Oman - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T04:16:39Zhttp://stackoverflow.com/feeds/user/6726http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799427/error-suppression-not-working/1799753#17997531Answer by Lucas Oman for Error Suppression @ Not WorkingLucas Oman2009-11-25T20:31:42Z2009-11-25T20:31:42Z<p>Since the error involves a string offset of 0, it must not apply to the line of code provided. There is no integer offset; you're using the string 'file_name' there.</p>
<p>Also, using '@' is a really terrible idea. Functions can fail, causing the script to exit with absolutely no indication as to where or why. A better way to handle the line of code you've pasted is this:</p>
<pre><code>if (isset($File['file_name'])) {
$file_name = $File['file_name'];
} else {
// throw exception, return FALSE, print an error and exit, whatever
}
</code></pre>
http://stackoverflow.com/questions/1772297/tips-for-the-php-beginners/1772381#17723811Answer by Lucas Oman for Tips for the PHP beginnersLucas Oman2009-11-20T18:26:23Z2009-11-20T18:26:23Z<p>If you intend to make web applications, please, please, please do some research on secure code, especially user input sanitization and SQL injection.</p>
<p>It may seem like a heavy topic for a beginner, but it's better to learn the right way than re-learn later, leaving a trail of insecure, buggy code in your wake.</p>
http://stackoverflow.com/questions/253380/how-do-i-insert-text-at-beginning-of-a-multi-line-selection-in-vi-vim/253477#2534773Answer by Lucas Oman for How do I insert text at beginning of a multi-line selection in VI/VIM?Lucas Oman2008-10-31T13:31:55Z2009-10-29T18:31:38Z<p>If you want to get super fancy about it, put this in your .vimrc:</p>
<pre><code>vmap \c :s!^!//!<CR>
vmap \u :s!^//!!<CR>
</code></pre>
<p>Then, whenever in visual mode, you can hit <code>\c</code> to <strong>c</strong>omment the block and <code>\u</code> to <strong>u</strong>ncomment it. Of course, you can change those shortcut keystrokes to whatever.</p>
http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#16317641Answer by Lucas Oman for Search query is automatically executed on each load, without clicking the search buttonLucas Oman2009-10-27T15:49:23Z2009-10-27T16:01:57Z<p>It looks like you're looking for values in <code>$_GET</code> in your <code>Pager</code> class when your form's method is <code>POST</code>. You'll need to change one or the other so that they're using the same.</p>
<p>If you want to disable the search until the page has been submitted, you can try adding an <code>if</code> around the code that executes the search:</p>
<pre><code>if (isset($_POST['subm'])) {
...
}
</code></pre>
<p>Edit: addressed OP's comment.</p>
http://stackoverflow.com/questions/1613184/reading-and-formatting-csv-data-using-explode-and-arrays-in-php/1613322#16133222Answer by Lucas Oman for reading and formatting csv data using explode and arrays in phpLucas Oman2009-10-23T13:12:46Z2009-10-23T16:19:24Z<p>Try this:</p>
<pre><code>foreach ($csv as $i=>$row) {
$rowStr = implode(' - ',$row)."\n";
print($rowStr);
if ($i == 0) {
print(str_repeat('-',strlen($rowStr))."\n");
}
}
</code></pre>
<p>Edit: fixed syntax error.</p>
http://stackoverflow.com/questions/1609985/is-it-possible-to-curry-method-calls-in-php/1610057#16100571Answer by Lucas Oman for Is it possible to curry method calls in PHP?Lucas Oman2009-10-22T21:24:41Z2009-10-22T21:24:41Z<p>PHP doesn't have currying per se, but you can do something like that in several ways. In your specific case, something like this may work:</p>
<pre><code>class MySoapClient extends SoapClient {
...
public function __call($meth,$args) {
if (substr($method,0,5) == 'curry') {
array_unshift($args,PASSWORD);
array_unshift($args,USERNAME);
return call_user_func_array(array($this,substr($meth,5)),$args);
} else {
return parent::__call($meth,$args);
}
}
}
$soapClient = new MySoapClient();
...
// now the following two are equivalent
$soapClient->currysomeMethod($additionalArg);
$soapClient->someMethod(USERNAME,PASSWORD,$additionalArg);
</code></pre>
<p>Although here's a more general solution for currying in PHP >= 5.3:</p>
<pre><code>$curriedMethod = function ($additionalArg) use ($soapClient) { return $soapClient->method(USERNAME,PASSWORD,$additionalArg); }
$result = $curriedMethod('some argument');
</code></pre>
http://stackoverflow.com/questions/1596221/php-calluserfunc-vs-just-calling-function/1596347#15963471Answer by Lucas Oman for PHP call_user_func vs. just calling functionLucas Oman2009-10-20T18:05:50Z2009-10-20T18:13:20Z<p>Although you can call variable function names this way:</p>
<pre><code>function printIt($str) { print($str); }
$funcname = 'printIt';
$funcname('Hello world!');
</code></pre>
<p>there are cases where you don't know how many arguments you're passing. Consider the following:</p>
<pre><code>function someFunc() {
$args = func_get_args();
// do something
}
call_user_func_array('someFunc',array('one','two','three'));
</code></pre>
<p>It's also handy for calling static and object methods, respectively:</p>
<pre><code>call_user_func(array('someClass','someFunc'),$arg);
call_user_func(array($myObj,'someFunc'),$arg);
</code></pre>
http://stackoverflow.com/questions/1540353/inserting-something-at-a-particular-line-in-a-text-file-using-php/1540403#15404034Answer by Lucas Oman for Inserting something at a particular line in a text file using PHPLucas Oman2009-10-08T20:53:57Z2009-10-08T20:53:57Z<p>Since you know the exact line number, probably the most accurate way to do this is to use file(), which returns an array of lines:</p>
<pre><code>$contents = file('config.php');
$contents[3] = '$config[\'url\'] = "whateva"'."\n";
$outfile = fopen('config.php','w');
fwrite($outfile,implode('',$contents));
fclose($outfile);
</code></pre>
http://stackoverflow.com/questions/1525921/help-in-getting-hour-and-minute-in-php/1525946#15259463Answer by Lucas Oman for Help in getting Hour and Minute in PHPLucas Oman2009-10-06T14:30:00Z2009-10-06T14:30:00Z<p>Try this:</p>
<pre><code>$hourMin = date('H:i');
</code></pre>
<p>This will be 24-hour time with an hour that is always two digits. For all options, see the <a href="http://php.net/date" rel="nofollow">PHP docs for date()</a>.</p>
http://stackoverflow.com/questions/1422866/using-vi-how-can-i-make-css-rules-into-one-liners/1422878#14228784Answer by Lucas Oman for Using vi, how can I make CSS rules into one liners?Lucas Oman2009-09-14T17:22:07Z2009-09-14T17:31:15Z<p>Try something like this:</p>
<pre>
:%s/{\n/{/g
:%s/;\n/;/g
:%s/{\s+/{/g
:%s/;\s+/;/g
</pre>
<p>This removes the newlines after opening braces and semicolons ('{' and ';') and then removes the extra whitespace between the concatenated lines.</p>
http://stackoverflow.com/questions/1413285/multiple-autocommands-in-vim/1413352#14133524Answer by Lucas Oman for Multiple autocommands in vimLucas Oman2009-09-11T21:23:55Z2009-09-11T21:23:55Z<p>You can call a function, if you like:</p>
<pre><code>autocmd Filetype ruby call SetRubyOptions()
function SetRubyOptions()
setlocal ts=2
...
endfunction
</code></pre>
http://stackoverflow.com/questions/1407221/where-does-this-session-come-from/1407250#14072504Answer by Lucas Oman for Where does this session come from?Lucas Oman2009-09-10T19:31:49Z2009-09-10T19:31:49Z<p>A1. Your session starts when you call <code>session_start()</code>. Although a certain variable may not be set in $_SESSION, the session is still initiated.</p>
<p>A2. If you look closely at the code, you'll see that it checks whether <code>$_SESSION['cart'][$sw_id]</code> is set yet. If it is, it uses the <code>++</code> operator. If not, it initializes it with a value of <code>1</code>.</p>
<p>As an aside, you can initialize a variable with <code>++</code> in PHP. If the variable or array key is not initialized, PHP assumes it has a starting value of <code>0</code>.</p>
http://stackoverflow.com/questions/1406680/fastest-way-to-load-include-php-template/1406843#14068432Answer by Lucas Oman for Fastest way to load/include PHP template?Lucas Oman2009-09-10T18:10:33Z2009-09-10T18:19:03Z<p>Although a switch is not the most scalable way to write this code, I'm afraid that includes is the only way to keep your templates in separate files, here.</p>
<p>You could, conceivably, encapsulate each template's code in a function, however:</p>
<pre><code>/*
photoTemplate.php
*/
<?php
function loadPhotoTemplate($id) {
?>
<div id="photo">
...
</div>
<?php
}
?>
/*
listing.php
*/
function display_listing($id,$type) {
global $abs_path;
switch($type) {
case 'photo':
include_once($abs_path . '/templates/photo.php');
loadPhotoTemplate($id);
break;
case 'video':
include_once($abs_path . '/templates/video.php');
loadVideoTemplate($id);
break;
}
}
</code></pre>
<p>This will load each template file at most once, and then just call the function each time you want to display the template with the specific data for that item.</p>
<p><strong>Edit</strong></p>
<p>It would probably be even better to include all template files at the beginning, then just call the appropriate function in the switch. PHP's *_once() functions are slow, as they must consult the list of previously included/required files every time they are called.</p>
http://stackoverflow.com/questions/1405457/php-soap-fread-dynamic-post-size/1405520#14055202Answer by Lucas Oman for PHP SOAP fread() dynamic POST sizeLucas Oman2009-09-10T14:08:59Z2009-09-10T14:08:59Z<p>You could try the following instead:</p>
<pre>
$xml = file_get_contents('php://input')
</pre>
<p>This will get all contents, no matter the length of the data.</p>
http://stackoverflow.com/questions/1380049/php-testing-session/1380099#13800991Answer by Lucas Oman for PHP: testing sessionLucas Oman2009-09-04T15:54:47Z2009-09-04T16:01:02Z<p>You may want to split up your logic:</p>
<pre>
if (is_logged_in()) {
set_login_session(get_original_passhash());
} else {
print("Please Log In");
}
</pre>
<p>Since, in the conditional, you don't want the pass hash. You want to know if they're logged in or not.</p>
http://stackoverflow.com/questions/1379780/how-to-get-a-soap-post-in-php/1379806#13798061Answer by Lucas Oman for How to get a SOAP post in PHP?Lucas Oman2009-09-04T15:00:21Z2009-09-04T15:00:21Z<p>You can try something like this:</p>
<pre>
try {
if (!($xml = file_get_contents('php://input'))) {
throw new Exception('Could not read POST data.');
}
} catch (Exception $e) {
print('Did not successfully process HTTP request: '.$e->getMessage());
exit;
}
</pre>
<p>This will read the body of the POST request to the $xml variable and print an error if there is one.</p>
http://stackoverflow.com/questions/1373841/vim-deleting-backword-tricks/1373969#13739692Answer by Lucas Oman for vim deleting backword tricksLucas Oman2009-09-03T15:01:58Z2009-09-03T15:01:58Z<p>In general, d<motion> will delete from current position to ending position after <motion>. This means that:</p>
<ol>
<li>d<leftArrow> will delete current and left character</li>
<li>d$ will delete from current position to end of line</li>
<li>d^ will delete from current backward to first non-white-space character</li>
<li>d0 will delete from current backward to beginning of line</li>
<li>dw deletes current to end of current word (including trailing space)</li>
<li>db deletes current to beginning of current word</li>
</ol>
<p>Read <a href="http://vimdoc.sourceforge.net/htmldoc/motion.html#motion.txt" rel="nofollow">this</a> to learn all the things you can combine with the 'd' command.</p>
http://stackoverflow.com/questions/1358897/autoload-and-multiple-directories/1358917#13589170Answer by Lucas Oman for autoload and multiple directoriesLucas Oman2009-08-31T19:05:33Z2009-08-31T19:05:33Z<p>Unfortunately, you do have to explicitly add each directory. This can either be done programmatically in a script that recursively traverses your directories, or you can specify a list.</p>
<p>Probably the most efficient way is to specify a list of directories and subdirectories to search, and add these to your 'include_path' using ini_set().</p>
http://stackoverflow.com/questions/1358493/can-anyone-translate-this-to-plain-english-php-translation/1358532#13585321Answer by Lucas Oman for Can anyone translate this to plain english? PHP translation?Lucas Oman2009-08-31T17:41:42Z2009-08-31T17:41:42Z<p>First:</p>
<pre>
$transactionID = (isset($authNetCodes[4])) ? $authNetCodes[4] : 0;
</pre>
<p>This means that, if the fifth element of $authNetCodes (remember, arrays are zero-indexed!) has a value, then set $transactionID to that value. Otherwise, set $transactionID to 0.</p>
<p>Second:</p>
<pre>
$transactionMessage = (isset($authNetCodes[3])) ? $authNetCodes[3] : "";
</pre>
<p>Likewise, if the fourth element of authNetCodes has a value, set $transactionMessage to that value. Otherwise, set $transactionMessage to an empty string.</p>
<p>As far as where $authNetCodes comes from, this code doesn't say.</p>
http://stackoverflow.com/questions/1349147/php-mysql-oop-loading-complex-objects-from-sql/1349260#13492600Answer by Lucas Oman for PHP/MySQL OOP: Loading complex objects from SQLLucas Oman2009-08-28T20:45:45Z2009-08-28T20:45:45Z<p>I had to address this issue a while back when I concocted my own MVC framework as an experiment. To limit the layers of data loaded from the DB, I passed an integer to the constructor. Each constructor would decrement this integer before passing it to the constructors of the objects it instantiated. When it got to 0, no more sub-objects would be instantiated. This meant, basically, the int passed was the number of layers loaded.</p>
<p>So if I only wanted an attribute of the unit object, I'd do this:</p>
<pre>
$myUnit = new Unit($unitId,1);
</pre>
http://stackoverflow.com/questions/1341683/php-too-many-ways-to-skin-a-cat/1341723#13417235Answer by Lucas Oman for PHP - Too many ways to skin a cat?Lucas Oman2009-08-27T15:10:45Z2009-08-27T15:10:45Z<p>The PHP community is huge and has been growing for many years. Ruby is a relative newcomer on the scene, so it doesn't have nearly as many options.</p>
<p>You have to be careful, here, not to confuse a language with the software written in that language. Cake, CodeIgniter, etc. are written in PHP, just as Rails is written in Ruby. These are not native parts of their respective languages, however.</p>
<p>I think any language will have more and more options as the language becomes more popular and the community grows. People begin using the language for different purposes and maintaining public projects because they see that there is an audience for them.</p>
http://stackoverflow.com/questions/1330693/php-validate-username-as-alphanumeric-with-underscores/1330719#13307191Answer by Lucas Oman for [PHP] Validate username as alphanumeric with underscoresLucas Oman2009-08-25T20:17:54Z2009-08-25T20:17:54Z<p>Looks fine to me. Note that you make no requirement for the placement of the underscore, so "username_" and "___username" would both pass.</p>
http://stackoverflow.com/questions/1329887/how-to-model-tags-in-the-database/1329945#13299451Answer by Lucas Oman for How to model tags in the database?Lucas Oman2009-08-25T18:03:57Z2009-08-25T18:03:57Z<p>Definitely normalize. A table for tags, a table for your existing objects, and a table of links between them.</p>
http://stackoverflow.com/questions/1329712/php-download-file-from-different-web-server-using-basic-authentication/1329743#13297430Answer by Lucas Oman for PHP: Download file from different web server using basic authentication?Lucas Oman2009-08-25T17:31:57Z2009-08-25T17:31:57Z<p>I assume that the person means something like HTTPAuth, which is when a username/password box pops up when going to a page in your browser, and you're required to give credentials before the content is loaded.</p>
<p>For this, you can use CURL. PHP has a nice set of <a href="http://us.php.net/curl" rel="nofollow">curl functions</a> for handling this. You'll need to configure it with the CURLOPT_NETRC option.</p>
http://stackoverflow.com/questions/1323836/hunting-down-php-parse-errors/1323995#13239951Answer by Lucas Oman for Hunting down PHP parse errorsLucas Oman2009-08-24T18:34:42Z2009-08-25T14:00:46Z<p>You can also do a frequent syntax check, no matter what editor you use:</p>
<pre>
php -l file.php
</pre>
<p>Note that I use the word "frequent". If you use vim, you may find the following useful in your .vimrc file:</p>
<pre>
map <F12> <ESC>:!php -l %<CR>
</pre>
<p>Just hit F12 at any time to check syntax on the fly.</p>
http://stackoverflow.com/questions/1324087/what-are-the-most-commonly-use-web-development-policies-in-software-companies/1324213#13242131Answer by Lucas Oman for What are the most commonly use web development policies in software companies?Lucas Oman2009-08-24T19:22:37Z2009-08-24T19:22:37Z<ul>
<li>Code doesn't exist if it's not under version control. More specifically, NOTHING is on a production server unless it's committed to the repository.</li>
<li>If a project presents an opportunity to refactor old code, take that opportunity.</li>
<li>Maintain a wiki or similar to document procedures, standards and use of library code (when such documentation is too much for code comments)</li>
</ul>
http://stackoverflow.com/questions/1323516/how-to-extract-citations-from-a-text-php/1323639#13236390Answer by Lucas Oman for How to extract citations from a text (PHP)?Lucas Oman2009-08-24T17:17:00Z2009-08-24T17:17:00Z<p>A quotation will always have punctuation--either a comma at the end, to signify that the speaker's name or title is to follow, or the end of the sentence (.!?).</p>
http://stackoverflow.com/questions/1308921/storing-items-in-array-by-date-in-php/1308953#13089530Answer by Lucas Oman for Storing items in array by date in PHPLucas Oman2009-08-20T21:30:02Z2009-08-20T21:30:02Z<p>Store an array keyed by Unix time at 12:00:00am on that day. That array will contain all events for that day.</p>
<p>It's easy to convert between Unix time and human-readable dates using PHP's strtotime(), time(), and date() functions.</p>
http://stackoverflow.com/questions/1307577/how-do-we-as-a-community-help-encourage-programming-in-public-schools-or-stat/1307650#13076504Answer by Lucas Oman for How do we, as a community, help encourage programming in public schools? (Or state Schools for the UKers.)Lucas Oman2009-08-20T17:20:21Z2009-08-20T17:20:21Z<p>It's interesting that you mentioned programming exercises in your algebra textbook. As I was reading your post, I was thinking that the easiest way to "sneak" programming into schools is through their math classes.</p>
<p>The problem is that if you start a programming class, none of the students will sign up. They don't know what it is, they think it's geeky, or they think it's too hard.</p>
<p>If they find that they're able to learn programming while studying another subject, it may actually give them the confidence to and interest in signing up for a real programming course later.</p>
http://stackoverflow.com/questions/1294790/tilde-color-in-vim/1294834#129483411Answer by Lucas Oman for Tilde color in vim?Lucas Oman2009-08-18T15:59:50Z2009-08-18T15:59:50Z<p>Try this:</p>
<pre>
:highlight NonText ctermfg=12
</pre>
<p>12 is the default color; change as you see fit.</p>
http://stackoverflow.com/questions/1808779/php-curl-post-problem-causing-php-to-use-100-cpuComment by Lucas Oman on PHP Curl POST Problem Causing PHP to use 100% CPULucas Oman2009-11-27T13:31:24Z2009-11-27T13:31:24ZYou'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?http://stackoverflow.com/questions/1799427/error-suppression-not-working/1799753#1799753Comment by Lucas Oman on Error Suppression @ Not WorkingLucas Oman2009-11-25T21:57:07Z2009-11-25T21:57:07ZBizarre. Thanks for the heads-up.http://stackoverflow.com/questions/1796882/php-dealing-with-get-and-post-arrays/1796956#1796956Comment by Lucas Oman on PHP - Dealing with GET and POST arraysLucas Oman2009-11-25T14:06:50Z2009-11-25T14:06:50Z... or prepared statements with mysqli.http://stackoverflow.com/questions/1528162/converting-time-in-php/1528184#1528184Comment by Lucas Oman on Converting time in PHP?Lucas Oman2009-11-23T17:15:42Z2009-11-23T17:15:42ZThough 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.http://stackoverflow.com/questions/1770564/getting-the-difference-between-two-time-dates-using-php/1770579#1770579Comment by Lucas Oman on Getting the difference between two time/dates using php?Lucas Oman2009-11-20T14:08:57Z2009-11-20T14:08:57ZPHP 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.http://stackoverflow.com/questions/1717477/ignore-data-within-a-certain-set-of-characters-with-php/1717544#1717544Comment by Lucas Oman on Ignore data within a certain set of characters with PHPLucas Oman2009-11-11T20:06:46Z2009-11-11T20:06:46ZYou're right, I just noticed the '?'. And stupid markup.http://stackoverflow.com/questions/1717477/ignore-data-within-a-certain-set-of-characters-with-php/1717544#1717544Comment by Lucas Oman on Ignore data within a certain set of characters with PHPLucas Oman2009-11-11T19:41:21Z2009-11-11T19:41:21ZNote that this regex would be "greedy", so "this <b>* some text <i></b> is a <b></i> other text *</b> test" would come out as "this test", rather than "this is a test", as you may expect.http://stackoverflow.com/questions/1652135/why-did-you-learn-programmingComment by Lucas Oman on Why did you learn programming?Lucas Oman2009-10-30T20:56:11Z2009-10-30T20:56:11ZI think it's an interesting question. Programming isn't like flippin' burgers. We're here because something motivated us to be here.http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search buttonLucas Oman2009-10-27T17:50:13Z2009-10-27T17:50:13ZYou're quite welcome :) You can also "accept" the answer if you'd like.http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search buttonLucas Oman2009-10-27T17:32:45Z2009-10-27T17:32:45ZThen I would add a check for the 'page' value: if (isset($_GET['subm']) || isset($_GET['page'])) { ... }http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search buttonLucas Oman2009-10-27T17:21:43Z2009-10-27T17:21:43ZThat'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.http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search buttonLucas Oman2009-10-27T16:04:40Z2009-10-27T16:04:40ZEdited post to address your comment.http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233589#233589Comment by Lucas Oman on Worst PHP practice found in your experience?Lucas Oman2009-10-21T15:03:43Z2009-10-21T15:03:43ZI'm an avid vim fan. Can't imagine using anything else.http://stackoverflow.com/questions/1522249/namespace-or-something-else-to-avoid-name-conflict-with-kohanas-image-library/1525104#1525104Comment by Lucas Oman on Namespace or something else to avoid name conflict with Kohana's Image libraryLucas Oman2009-10-06T14:43:23Z2009-10-06T14:43:23ZIf 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.http://stackoverflow.com/questions/1439424/will-ruby-ever-be-fastComment by Lucas Oman on Will Ruby ever be *fast* ?Lucas Oman2009-09-17T15:54:44Z2009-09-17T15:54:44Z@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.