CGI & PHP » Videos http://www.cgiphp.com Enhance your site with CGi, PHP and ASP scripts Sun, 25 Jul 2010 07:07:32 +0000 en hourly 1 Lecture 9 | Programming Methodology (Stanford) http://www.cgiphp.com/blog/lecture-9-programming-methodology-stanford/ http://www.cgiphp.com/blog/lecture-9-programming-methodology-stanford/#comments Sun, 25 Jul 2010 07:07:32 +0000 CGI & PHP.com http://www.cgiphp.com/blog/lecture-9-programming-methodology-stanford/ Lecture 9 | Programming Methodology (Stanford) is a post from: CGI & PHP

]]>

Lecture by Professor Mehran Sahami for the Stanford Computer Science Department (CS106A). Professor Sahami introduces 2 new concepts, and he shows the class how to combine the previous topics and lectures together. CS106A is an Introduction to the engineering of computer applications emphasizing modern software engineering principles: object-oriented design, decomposition, encapsulation, abstraction, and testing. Uses the Java programming language. Emphasis is on good programming style and the built-in facilities of the Java language. Complete Playlist for the Course: www.youtube.com CS106A at Stanford Unversity: www.stanford.edu Stanford Center for Professional Development: scpd.stanford.edu Stanford University: www.stanford.edu Stanford University Channel on YouTube www.youtube.com

Lecture 9 | Programming Methodology (Stanford) is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/lecture-9-programming-methodology-stanford/feed/ 25
MySQL High Availability Solutions http://www.cgiphp.com/blog/mysql-high-availability-solutions/ http://www.cgiphp.com/blog/mysql-high-availability-solutions/#comments Sat, 24 Jul 2010 07:11:47 +0000 CGI & PHP.com http://www.cgiphp.com/blog/mysql-high-availability-solutions/ MySQL High Availability Solutions is a post from: CGI & PHP

]]>

Lenz Grimmer presents at the 2009 OpenSQLCamp Europe, in conjunction with FrOSCon 2009. From the official conference description at programm.froscon.org Best practices and commonly used HA setups for MySQL There are many ways to ensure the availability of a MySQL Server and how to provide redundancy and fault-tolerance. In this talk, Lenz will give an overview over some best practices and commonly used HA setups for MySQL. The talk will cover the commonly used Open Source components and tools, with a focus on Linux and OpenSolaris. The session will also cover MySQL Cluster, the architecture and relationship to the MySQL Server. MySQL is a popular open source relational database system (RDBMS) and widely used as the storage backend for dynamic web sites and applications. In many areas it has become a mission-critical component of the software stack, where downtime is not an option. This talk will give an overview about different solutions and technologies available to make a MySQL Server system highly available. The session will start with a brief introduction to High Availability (HA), the terminology and general concepts involved. Afterwards, several MySQL HA solutions will be introduced and explained, eg replication (and possible topologies), Linux-Heartbeat, block device replication (DRBD), Shared storage/SAN, MySQL Cluster, MySQL Proxy, Sun Open HA Cluster and Red Hat Cluster Suite.

MySQL High Availability Solutions is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/mysql-high-availability-solutions/feed/ 0
Lecture 3 | Programming Abstractions (Stanford) http://www.cgiphp.com/blog/lecture-3-programming-abstractions-stanford/ http://www.cgiphp.com/blog/lecture-3-programming-abstractions-stanford/#comments Mon, 12 Jul 2010 07:04:01 +0000 CGI & PHP.com http://www.cgiphp.com/blog/lecture-3-programming-abstractions-stanford/ Lecture 3 | Programming Abstractions (Stanford) is a post from: CGI & PHP

]]>

Lecture 3 by Julie Zelenski for the Programming Abstractions Course (CS106B) in the Stanford Computer Science Department. Julie goes over C++ libraries and explains what they are and how they are useful. She continues to introduce C++ basics, including strings, various operators on strings and comparing two strings and takes special note that C++ is an 'industrial language' and does not guarantee anything and that the programmer has to be more attentive to finding his/her own bugs. Complete Playlist for the Course: www.youtube.com CS 106B Course Website: cs106b.stanford.edu Stanford Center for Professional Development scpd.stanford.edu Stanford University: www.stanford.edu Stanford University Channel on YouTube: www.youtube.com

Lecture 3 | Programming Abstractions (Stanford) is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/lecture-3-programming-abstractions-stanford/feed/ 25
Sun to Acquire MySQL http://www.cgiphp.com/blog/sun-to-acquire-mysql/ http://www.cgiphp.com/blog/sun-to-acquire-mysql/#comments Sat, 03 Jul 2010 07:07:09 +0000 CGI & PHP.com http://www.cgiphp.com/blog/sun-to-acquire-mysql/ Sun to Acquire MySQL is a post from: CGI & PHP

]]>

Jonathan Schwartz, CEO and president of Sun, talks with Sun executives Rich Green and Greg Papadopoulos, and MySQL CEO Marten Mickos about the combination of the two companies.

Sun to Acquire MySQL is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/sun-to-acquire-mysql/feed/ 12
Advanced Topics In Programming Languages: Closures For Java http://www.cgiphp.com/blog/advanced-topics-in-programming-languages-closures-for-java/ http://www.cgiphp.com/blog/advanced-topics-in-programming-languages-closures-for-java/#comments Tue, 29 Jun 2010 07:03:34 +0000 CGI & PHP.com http://www.cgiphp.com/blog/advanced-topics-in-programming-languages-closures-for-java/ Advanced Topics In Programming Languages: Closures For Java is a post from: CGI & PHP

]]>

Google Tech Talks January 17, 2007 ABSTRACT We propose to add Closures to the Java Programming Language. Closures simplify the use of APIs that rely on anonymous class instances, such as the concurrency APIs and callbacks. More importantly, closures support control abstractions, which are APIs that act as programmer-defined control constructs. This talk describes the proposed language extension and its design rationale, and shows how it will affect existing and future APIs. Credits: Speaker:Neal Gafter

Advanced Topics In Programming Languages: Closures For Java is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/advanced-topics-in-programming-languages-closures-for-java/feed/ 16
The Go Programming Language Promo http://www.cgiphp.com/blog/the-go-programming-language-promo/ http://www.cgiphp.com/blog/the-go-programming-language-promo/#comments Fri, 18 Jun 2010 20:04:09 +0000 CGI & PHP.com http://www.cgiphp.com/blog/the-go-programming-language-promo/ The Go Programming Language Promo is a post from: CGI & PHP

]]>

A short promotional video about the Go Programming Language presented by Russ Cox. For a more detailed video about Go, please see: www.youtube.com For more on Go including FAQs, source code, libraries, and tutorials, please see the Go home page: golang.org

The Go Programming Language Promo is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/the-go-programming-language-promo/feed/ 25
PHP Tutorial – 23 – Adding Tables to MySQL Database http://www.cgiphp.com/blog/php-tutorial-23-adding-tables-to-mysql-database/ http://www.cgiphp.com/blog/php-tutorial-23-adding-tables-to-mysql-database/#comments Sat, 12 Jun 2010 07:13:25 +0000 CGI & PHP.com http://www.cgiphp.com/blog/php-tutorial-23-adding-tables-to-mysql-database/ PHP Tutorial – 23 – Adding Tables to MySQL Database is a post from: CGI & PHP

]]>

www.youtube.com click that link if u wanna watch this video in high def! subscribe to my channel!

PHP Tutorial – 23 – Adding Tables to MySQL Database is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/php-tutorial-23-adding-tables-to-mysql-database/feed/ 25
Scalable Parallel Programming with CUDA on Manycore GPUs http://www.cgiphp.com/blog/scalable-parallel-programming-with-cuda-on-manycore-gpus/ http://www.cgiphp.com/blog/scalable-parallel-programming-with-cuda-on-manycore-gpus/#comments Thu, 03 Jun 2010 06:59:57 +0000 CGI & PHP.com http://www.cgiphp.com/blog/scalable-parallel-programming-with-cuda-on-manycore-gpus/ Scalable Parallel Programming with CUDA on Manycore GPUs is a post from: CGI & PHP

]]>

February 27, 2008 lecture by John Nickolls for the Stanford University Computer Systems Colloquium (EE 380). John Nickolls from NVIDIA talks about scalable parallel programming with a new language developed by NVIDIA, CUDA. NVIDIA's programming of their graphics processing unit in parallel allows for the dissection of large data sets into smaller sets, each to be handled by separate processors. This significantly increases the performance and handling of processing intensive application. EE 380 | Computer Systems Colloquium: www.stanford.edu Stanford Computer Systems Laboratory: csl.stanford.edu Stanford Center for Professional Development: scpd.stanford.edu Stanford University Channel on YouTube: www.youtube.com

Scalable Parallel Programming with CUDA on Manycore GPUs is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/scalable-parallel-programming-with-cuda-on-manycore-gpus/feed/ 0
MySQL Simple Basics http://www.cgiphp.com/blog/mysql-simple-basics/ http://www.cgiphp.com/blog/mysql-simple-basics/#comments Sat, 22 May 2010 07:12:30 +0000 CGI & PHP.com http://www.cgiphp.com/blog/mysql-simple-basics/ MySQL Simple Basics is a post from: CGI & PHP

]]>

Beginning MySQL Shows you how to create,insert,update and delete databases/tables

MySQL Simple Basics is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/mysql-simple-basics/feed/ 20
Lecture 1 | Programming Abstractions (Stanford) http://www.cgiphp.com/blog/lecture-1-programming-abstractions-stanford/ http://www.cgiphp.com/blog/lecture-1-programming-abstractions-stanford/#comments Fri, 21 May 2010 07:08:08 +0000 CGI & PHP.com http://www.cgiphp.com/blog/lecture-1-programming-abstractions-stanford/ Lecture 1 | Programming Abstractions (Stanford) is a post from: CGI & PHP

]]>

The first lecture by Julie Zelenski for the Programming Abstractions Course (CS106B) in the Stanford Computer Science Department. Julie Zelenski gives an introduction to the course, recursion, algorithms, dynamic data structures and data abstraction; she also introduced the significance of programming and gives her opinion of what makes 106B "great;" C++ is introduced, too. Complete Playlist for the Course: www.youtube.com CS 106B Course Website: cs106b.stanford.edu Stanford Center for Professional Development scpd.stanford.edu Stanford University: www.stanford.edu Stanford University Channel on YouTube: www.youtube.com

Lecture 1 | Programming Abstractions (Stanford) is a post from: CGI & PHP

]]>
http://www.cgiphp.com/blog/lecture-1-programming-abstractions-stanford/feed/ 0