X-Istence
|
Registered User
|
Bert JW Regeer is a software engineering student at the university of advancing technology (http://uat.edu).
Bert is currently working on finishing his degree.
|
|
Dec 12 |
comment |
What does “result.status_code == 200” in Python mean? HTTP return codes are constant rather than a magic number. They won't magically change tomorrow ... |
|
Dec 12 |
revised |
What does “result.status_code == 200” in Python mean? Spacing was wrong, previous code would have executed doSomethingWithResult no matter if it was valid to do so or not. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 4 |
comment |
PHP function won’t execute when called Where is $info coming from? |
|
Dec 4 |
comment |
PHP function won’t execute when called Where is $info coming from? |
|
Dec 4 |
answered | PHP function won’t execute when called |
|
Dec 4 |
revised |
PHP function won’t execute when called Fixed title. |
|
Dec 4 |
awarded | ● Popular Question |
|
Nov 30 |
accepted | Imagemagick convert pdf to png |
|
Nov 29 |
accepted | Apache server cache images |
|
Nov 29 |
comment |
Image Upload — showing image on web page before hitting Submit @MitMaro: So post the solution ... |
|
Nov 29 |
comment |
Effective 15x10 array computation Not really sure about Objective C, but isn't it also the case that he is creating extra integer objects without needing to do so since he could just use the i and the j from the for loops? |
|
Nov 29 |
comment |
Apache server cache images ID.date is not required, just stat() the file to get the date it was created. |
|
Nov 29 |
answered | Apache server cache images |
|
Nov 28 |
comment |
Imagemagick convert pdf to png So try /usr/local/bin/convert instead of the above command and see if that works. |
|
Nov 28 |
comment |
Imagemagick convert pdf to png Do note that on their Wiki they state a different path for ImageMagick: wiki.lunarpages.com/Special_Server_Paths |
|
Nov 28 |
comment |
Imagemagick convert pdf to png When you run exec() it will run in whatever the current working directory is. In this case in gallery. Exec should be giving you back any errors, so instead of doing an if() statement with just yes and no, echo exec(...) instead so you get to see the error. |
|
Nov 28 |
answered | Imagemagick convert pdf to png |
|
Nov 28 |
awarded | ● Enlightened |
|
Nov 27 |
accepted | How can I put a database under git (version control)? |
|
Nov 27 |
accepted | Eagle CAD parts library |
|
Nov 27 |
answered | Eagle CAD parts library |
|
Nov 26 |
comment |
Why is there a for(;;); preamble in facebooks JSON responses? Nope, since you can't use XMLHttprequest or any of those functions since you are not getting the content from the same domain. Since it is not in the same domain you have to use a script node to get the content loaded into the current page, which will immediately cause the JavaScript engine to go into an infinite loop. |
|
Nov 26 |
answered | Why is there a for(;;); preamble in facebooks JSON responses? |
|
Nov 26 |
answered | list doesnt display inline IE? |
|
Nov 26 |
comment |
list doesnt display inline IE? Made it even easier to read ... |
|
Nov 26 |
revised |
list doesnt display inline IE? Code formatting, wording, grammar, spelling mistakes |
|
Oct 19 |
comment |
What is your best programmer joke? @Daniel: You can't declare count inside the for loop until C99. test.c: In function ‘main’: test.c:4: error: ‘for’ loop initial declaration used outside C99 mode |
|
Oct 6 |
accepted | Zend_Navigation caching |
|
Sep 22 |
comment |
How do I check if the same tag was already in database with PHP and Mysql? What error are you getting? What does your table look like? What else have you tried? |
|
Sep 21 |
comment |
Shifting A Circular Array Why do you have to shift the circular array? Since it is circular the position the items are in don't matter! |
|
Sep 17 |
comment |
How to run a php script in cron @cemkalyoncu: Some systems ship a seperate php-cli that contains extra stuff like readline, and others. Can come in handy on the command line. |
|
Sep 17 |
awarded | ● Yearling |
|
Sep 11 |
revised |
Are fluid websites worth making anymore? corrected spelling |
|
Sep 4 |
answered | MAC OS X Custom Application Keeping Bouncing in the Dock |
|
Sep 3 |
comment |
state machines tutorials @Chris: We had a budget of $2000 to work with, and we have so far successfully launched two balloons. The most expensive part was the helium to fill the latex balloons which were the second most expensive part. |
|
Sep 3 |
answered | php session id not matching. |
|
Sep 3 |
answered | Zend_Navigation caching |
|
Sep 3 |
comment |
state machines tutorials @Chris: Near Space is defined as anything above 60,000 ft, our balloon got to 92,999 ft. At some point the latex balloon starts to become so large because of the decompression (the gas keeps expanding the balloon) that the balloon pops, at which point the near space craft free-falls back to earth (we attach a parachute off course), see the linked Wiki for more information about our Near Space efforts and Google around, it is an absolutely awesome hobby! |
|
Sep 3 |
comment |
Disable grey border on anchor (<a>) elements on focus… Do you have an example of what is happening? |
|
Sep 3 |
comment |
state machines tutorials This is oversimplifying state machines, and not that great of an example. |
|
Sep 3 |
answered | state machines tutorials |
|
Sep 3 |
comment |
What is an Algorithm to Diff the Two Strings in the Same Way that SO Does on the Version Page? I don't know whether this should belong on meta or not, since it is both. |
|
Aug 30 |
comment |
PHP: $_GET and $_POST in functions? What is your real question? The only sentence (although flawed) with a question mark at the end does not make any sense. $_GET and $_POST are global, they can be used anywhere. Is it good coding practice, maybe, maybe not. |
|
Jul 20 |
revised |
MySQL random rows sorted by a column name Added in the SQL that was generated by Zend_Db_Select |
|
Jul 20 |
comment |
MySQL random rows sorted by a column name This worked perfectly, using the Zend Framework Zend_Db_Select class the query ended up being: SELECT c.* FROM (SELECT projects.* FROM projects WHERE (cid = 1) ORDER BY RAND() LIMIT 3) AS c ORDER BY name ASC |
|
Jul 20 |
comment |
Port OpenSource software from one programming language to another? @david: But he could make a clean room implementation, and then he could use whatever license he wanted to use! |
|
Jul 20 |
comment |
MySQL random rows sorted by a column name The issue is that it does not work, it does not ORDER BY RAND() and then limit to 3, and then sort by name. |
|
Jul 20 |
comment |
MySQL random rows sorted by a column name @Pascal: I got back to work today, and used _toString() on the SQL: SELECT projects. FROM projects WHERE (cid = 1) ORDER BY RAND(), name ASC LIMIT 3
So yes, what I thought I wanted was being generated. |
|
Jul 20 |
comment |
MySQL random rows sorted by a column name That is exactly what I did if you look at my posting, except I used Zend_DB_Expr and an array to pass it to order() which is how the documentation says it should be used if you are using a database expression. The SQL generated is exactly the same: SELECT projects.* FROM projects WHERE (cid = 1) ORDER BY RAND(), name ASC LIMIT 3 |
