User Vern Takebayashi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:59:02Z http://stackoverflow.com/feeds/user/23089 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237367/why-is-php-pdo-dsn-a-different-format-for-mysql-versus-postgresql 3 Why is PHP PDO DSN a different format for MySQL versus PostgreSQL? Vern Takebayashi 2008-10-26T01:52:54Z 2009-08-22T00:28:06Z <p>When I connect to a MySQL database using PDO, the way I need to connect is: $pdoConnection = new PDO("mysql:host=hostname;dbname=databasename",user,password);</p> <p>But, for PostgreSQL, the DSN is more standard (IMO): $pdoConnection = new PDO("pgsql:host=hostname;dbname=databasename;user=username;password=thepassword");</p> <p>Is there any reason why MySQL cannot use a single string? Or is this just because of the versions I am using (PHP 5.2, MySQL 5.0, PostgreSQL 8.1)?</p> http://stackoverflow.com/questions/347969/calling-fcsh-from-php-script 0 Calling fcsh from PHP script Vern Takebayashi 2008-12-07T19:41:21Z 2008-12-15T15:14:45Z <p>Hi,</p> <p>My question is whether or not Flex's fcsh can be called from within a PHP script. Here is the background:</p> <p>I have been created a simple process that creates a simple quiz/tutorial by converting a text file into a .mxml file and compiling to a .swf file using the mxmlc compiler. This works well from the command line, but I wanted to make the process easier by creating a web-interface to do this. My initial attempts with PHP's exec() function have not worked. The Python scripts I use to create the .mxml file work fine (using exec()), but I have not been able to get the mxmlc compiler to work.</p> <p>After searching on the Web and on this site, I believe that using fcsh (instead of mxmlc) may be the way to go. Using fcsh would certainly compile the .mxml file faster (after the first run), and I think that fcsh can be launched as a service that might be able to be called from PHP.</p> <p>On the other hand, maybe I am approaching this the wrong way. Would it be better to write a Flex application that calls fcsh and avoid using PHP?</p> <p><strong>Edit:</strong> Using fcshctl as hasseg suggested in his answer below worked very well. Thanks Ali.</p> http://stackoverflow.com/questions/124617/what-factors-contribute-to-coding-speed/274122#274122 0 Answer by Vern Takebayashi for What factors contribute to coding speed? Vern Takebayashi 2008-11-08T00:57:12Z 2008-11-08T00:57:12Z <p>Here are some factors that affect coding speed:</p> <ol> <li>Familiarity with the language - As you noted, if you spend a lot of time looking things up this will slow you down.</li> <li>Familiarity with the editor - Most programmers that have a favorite editor have learned how to use the editor in a way that reduces the likelihood of syntax errors, as well as good ways to speed up the edit/compile/debug cycle.</li> <li>Use of a high-level language - Using a high-level language such as Python can speed up coding simply because the instructions have a simple syntax resembling pseudocode.</li> <li>Use of an appropriate framework - Using a framework that is suited for the problem you are trying to solve can also increase coding speed as you can use already built functions to shorten your code.</li> <li>Pair programming - If you have a good partner, pair-programming can definitely speed up things because your partner will help catch syntax errors and you and your partner can discuss how to solve some tricky part of the problem.</li> <li>Use of version control software - Using version control software can speed up the overall coding process because you don't hesitate in trying out some new approach to solving the problem (because you can always revert). In addition, if you do mess something up, being able to go back to an earlier version will allow you to pick up at the point the program was last working.</li> </ol> http://stackoverflow.com/questions/144767/what-are-essential-topics-to-have-in-a-web-services-semester-course 2 What are essential topics to have in a Web Services (semester) course? Vern Takebayashi 2008-09-27T23:43:29Z 2008-11-04T19:48:27Z <p>I am in the process of designing a Web Services course for students in an Information Technology program. Some students stop after getting a two-year associates degree, but other students in the program go on to a four-year bachelor's degree. This course would be for students going on to the four-year degree.</p> <p>My initial thoughts for the course would be that it would cover:</p> <ul> <li>Some simple database concepts, with enough command line practice to allow students to create simple relational database backends.</li> <li>Enough PHP so students can create a web-interface that allows user to enter new data into the database backend, edit data in the database, and display fixed views of the database.</li> <li>Basic security practices for PHP and web services in general.</li> <li>Writing a barebones content management system using PHP and a database backend.</li> <li>Learning about and using existing content management software such as Zope/Plone or Drupal.</li> <li>Discuss feasibility of using existing content management software to provide ADA section 508 compliance for web pages. Contrast this with coming up with a simple framework to make ADA compliant pages using PHP.</li> </ul> <p>Our semesters are 16 weeks long. Are there other topics that you cover instead of the ones listed? If you had a chance to design such a course, what would be the most pragmatic things to cover?</p> <p>Edit: Based on the initial response, it is clear that the title of my question is misleading. It should be web programming instead of web services. The students taking this course will have already taken at least one programming course. The students would have all taken a course in Python. The Python course they take includes writing an XML parser that produces HTML with CSS. This course would also cover HTML, CSS, and JavaScript. XML would also be used (parsing XML using PHP, and possibly using converting XML into PHP code). Some of the students will also have taken an introductory course in Java, but that course will not cover JSP.</p> http://stackoverflow.com/questions/251068/comparison-sort-problem/252081#252081 1 Answer by Vern Takebayashi for comparison sort problem Vern Takebayashi 2008-10-30T23:05:24Z 2008-10-30T23:05:24Z <p>Shell sorts don't compare adjacent cells. This is how they gain some efficiency versus the slow sorts (bubble, insertion, selection).</p> http://stackoverflow.com/questions/250868/is-it-possible-to-write-code-to-write-code/251044#251044 0 Answer by Vern Takebayashi for Is it possible to write code to write code? Vern Takebayashi 2008-10-30T17:28:38Z 2008-10-30T17:28:38Z <p>It has always been possible to write code generators. With XML technology, the use of code generators can be an essential tool. Suppose you work for a company that has to deal with XML files from other companies. It is relatively straightforward to write a program that uses the XML parser to parse the new XML file and write another program that has all the callback functions set up to read XML files of that format. You would still have to edit the new program to make it specific to your needs, but the development time when a new XML file (new structure, new names) is cut down a lot by using this type of code generator. In my opinion, this is part of the strength of XML technology.</p> http://stackoverflow.com/questions/250984/do-i-really-need-version-control/251021#251021 2 Answer by Vern Takebayashi for Do I really need version control? Vern Takebayashi 2008-10-30T17:22:34Z 2008-10-30T17:22:34Z <p>Since you usually work alone, I would say that it is a good idea to use version control. One of the main benefits I have found in using version control (Subversion in my case), is that when working alone it gives me more confidence in trying a new approach to the problem. You can always branch to a new method or framework of solving the problem and see if you like it better. If it turns out that this branch doesn't work, you can just abandon it and go back to the old method. This also makes it easier to try out the different solutions side by side.</p> <p>So, if you have ever seen a different approach to solving a problem and you wanted to try it out, I would definitely use version control as a tool to make this easier.</p> http://stackoverflow.com/questions/240525/how-did-you-learn-to-program/241263#241263 1 Answer by Vern Takebayashi for How did you learn to program? Vern Takebayashi 2008-10-27T20:24:48Z 2008-10-27T20:24:48Z <p>As to how to keep students motivated, the best way I found is to have them work on something of practical value. For introductory students, using a language like Python makes this easier as you can teach about file input/output and have them write programs that convert files from one format into another format. In the CS0 class I teach, I use Python and wind up with them writing a simple XML parser (using the xml.sax module). They have to read in an XML file and convert it to HTML. For extra credit, they can accomplish the same thing using XSLT. Using a language like Python makes this possible even in a first semester course.</p> <p>For more advanced students, having them work on a real project that the school will use is good experience. If you can get them paid to do this, that is even better. By giving them real-world experience it is easy to get the good students to work hard. In my more advanced programming class (covering PHP and MySQL), I tell the students that the ones who do well will be able to participate in a real project for the school. I think getting paid as well as getting real-world experience turn out to be good motivators.</p> http://stackoverflow.com/questions/347969/calling-fcsh-from-php-script/348132#348132 Comment by Vern Takebayashi on Calling fcsh from PHP script Vern Takebayashi 2008-12-08T01:56:52Z 2008-12-08T01:56:52Z I have seen your post, and I like the idea. I will be trying fchsctl out to see if it works. Thanks, Vern http://stackoverflow.com/questions/102320/what-would-you-say-is-the-best-online-source-for-php-related-things Comment by Vern Takebayashi on What would you say, is the best online-source for PHP-related things? Vern Takebayashi 2008-11-16T09:21:08Z 2008-11-16T09:21:08Z Although you didn't ask specifically about php security, phpsec.org is a good site for that. Look in the Library section. http://stackoverflow.com/questions/37105/how-do-you-actually-read-source-code/37192#37192 Comment by Vern Takebayashi on How do you actually read source code? Vern Takebayashi 2008-11-06T20:12:27Z 2008-11-06T20:12:27Z Thanks for the link to the article. I am going to try these ideas out on my introductory programming class for a simple selection sort program. http://stackoverflow.com/questions/144767/what-are-essential-topics-to-have-in-a-web-services-semester-course/144793#144793 Comment by Vern Takebayashi on What are essential topics to have in a Web Services (semester) course? Vern Takebayashi 2008-09-29T07:28:07Z 2008-09-29T07:28:07Z Noveau, HTML,CSS, and JavaScript would be part of the course. I should have said that this is a web programming course (not web services). In terms of ADA 508, I may be obligated as our college is a government agency. Vern http://stackoverflow.com/questions/144767/what-are-essential-topics-to-have-in-a-web-services-semester-course/144778#144778 Comment by Vern Takebayashi on What are essential topics to have in a Web Services (semester) course? Vern Takebayashi 2008-09-29T07:25:34Z 2008-09-29T07:25:34Z Max, The students taking this course would have some experience with writing an XML parser. Would you go into things like RSS feeds? Vern http://stackoverflow.com/questions/144767/what-are-essential-topics-to-have-in-a-web-services-semester-course/144795#144795 Comment by Vern Takebayashi on What are essential topics to have in a Web Services (semester) course? Vern Takebayashi 2008-09-29T07:23:46Z 2008-09-29T07:23:46Z Jonathan, You are correct in your comment to me above. What I should have said is that this is a web programming course. Thanks for pointing this out. Vern http://stackoverflow.com/questions/144767/what-are-essential-topics-to-have-in-a-web-services-semester-course/144808#144808 Comment by Vern Takebayashi on What are essential topics to have in a Web Services (semester) course? Vern Takebayashi 2008-09-29T07:22:39Z 2008-09-29T07:22:39Z Bill, Thanks for the suggestions about querying an existing service. I will definitely look into putting this in. Thanks, Vern