| bio | website | lighthouseitc.com |
|---|---|---|
| location | Colington, NC | |
| age | 40 | |
| visits | member for | 4 years, 3 months |
| seen | 6 hours ago | |
| stats | profile views | 93 |
Project Manager and Primary developer at Lighthouse IT Consulting, Inc. in Wake Forest, NC.
Formerly a software developer and architect at IBM.
|
6h |
comment |
How to load CSS and JS file which is inside JAR File of application Use Class.getResourceAsStream() or ClassLoader.getResourceAsStream().docs.oracle.com/javase/6/docs/api/java/lang/… |
|
13h |
comment |
String split with parseInt in Java What is your StopWatch.toString()? If you did not define one, you are inheriting the one from Object, which will not do what you want. |
|
13h |
comment |
Android how is View position controlled? You want to animate the view: developer.android.com/reference/android/view/View.html and look at information here, too: stackoverflow.com/questions/10141244/… |
|
13h |
comment |
Git Push from local repo to remote repo on a server for wordpress deployment I'd show you what was in mine, but I deleted it after I posted these instructions. |
|
13h |
comment |
Git Push from local repo to remote repo on a server for wordpress deployment Yes, the repository is different than a working tree. It won't actually look like a local git repository (no files except git files). In this case your working tree is your www directory (or where ever you need the copy of the files when you do a git push from your local machine. |
|
17h |
comment |
Redirect error in php login system what is your require_once? Also what changes have you made to your login.php? |
|
17h |
comment |
Redirect error in php login system I had a typo that I've corrected: '<body' --> '<body> |
|
17h |
revised |
Redirect error in php login system typo |
|
17h |
comment |
Git Push from local repo to remote repo on a server for wordpress deployment If your local machine is windows, you'll want to install the full PuTTY distribution and setup pageant to manage your keys. Then you can use TortoiseGIT as your git client. |
|
17h |
answered | Git Push from local repo to remote repo on a server for wordpress deployment |
|
18h |
comment |
Zend php can not use rowCount for affected row @Hai, I'm sorry to say I don't think I will be able to help. I've switched to that branch and both 'grep RETURN_FALSE pdo*' and 'grep RETURN_BOOL pdo*' return no hits. So there are no instances in which any of the PDO functions will return a boolean value (in other words, where the return value "=== false" would be true). Perhaps if you posted more of your code. |
|
19h |
comment |
Zend php can not use rowCount for affected row Interesting. What version of PHP and MySQL? I've looked through the c source code and I only see row_count being returned as a RETURN_LONG if it is 0 or greater. (master branch with all commits current as of a few days ago) |
|
19h |
comment |
Zend php can not use rowCount for affected row Is it really boolean false or is it 0? Look at this comment on the documentation page for rowCount() php.net/manual/en/pdostatement.rowcount.php#104930. MySQL will return 0 if the update uses identical information as what is already there. There is a work around in PHP 5.3. |
|
20h |
answered | Buyer specifies payment amount |
|
1d |
comment |
Facebook API how to allow only members of a group to access the app Have you asked for the permission user_groups or friend_groups? user_groups permission for a user's non-public groups / friends_groups permission for a user's friend's non-public groups (from graph api page on groups) |
|
1d |
revised |
error: cannot convert 'void (CApp::*)()' to 'void (*)()' for argument '1' to 'void Mix_HookMusicFinished(void (*)())' added 288 characters in body |
|
1d |
comment |
error: cannot convert 'void (CApp::*)()' to 'void (*)()' for argument '1' to 'void Mix_HookMusicFinished(void (*)())' The reason for the error is that CApp::cleanMusic accesses non-static member music_. |
|
1d |
comment |
error: cannot convert 'void (CApp::*)()' to 'void (*)()' for argument '1' to 'void Mix_HookMusicFinished(void (*)())' Sorry, you're quite right. It just goes in the class definition in the .h file. You can't/don't use it in the .cpp file for this purpose. |
|
1d |
revised |
error: cannot convert 'void (CApp::*)()' to 'void (*)()' for argument '1' to 'void Mix_HookMusicFinished(void (*)())' dyslexic moment |
|
1d |
comment |
Is a SOAP request the way to go? I've used more than one stack. The simplest was PHP-SOAP, but I'd still hardly call it fine. I've found JSON simple to consume in JavaScript, PHP, Java (Gson), and perl. I'm not saying that SOAP in any of those was difficult, just no where as near easy. Add things to the JSON and clients tend to deal. Do that with SOAP and clients tend to have issues. |