<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://getscientific.com/feed/vocab/6">
  <channel>
    <title>Recent posts for Computer Science</title>
    <link>http://getscientific.com/feed/vocab/6</link>
    <description />
    <language>en</language>
          <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/getscientific/comp-sci" /><feedburner:info uri="getscientific/comp-sci" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>getscientific/comp-sci</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
    <title>Introduction to Databases Video Lectures by Stanford Engineering</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/9IFOClu-bf0/introduction-databases-video-lectures-stanford-engineering</link>
    <description>&lt;p&gt;Really excellent introduction to databases, taught entirely through video lectures. This is a complete course and includes quizzes, homework, and assignments.&lt;/p&gt;
&lt;p&gt;I'm working my way through the classes one-by-one and really like how it all comes together. The pace is fast and there's not a lot of fluff. Videos are clear and the presenter is obviously very knowledgable.&lt;/p&gt;
&lt;p&gt;I'm a developer with a good grasp on database construction and management but not a lot of experience. I felt like this was just the right starting point and just enough overlap with what I know to make me feel comfortable.&lt;/p&gt;
&lt;p&gt;Here is the lecture list:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;INTRODUCTION&lt;/strong&gt;&lt;br /&gt;Introduction to the course (14 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RELATIONAL DATABASES&lt;/strong&gt;&lt;br /&gt;The relational model (9 min)&lt;br /&gt;Querying relational databases (6 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;XML DATA&lt;/strong&gt;&lt;br /&gt;Well-formed XML (13 min)&lt;br /&gt;DTDs, IDs &amp;amp; IDREFs (18 min)&lt;br /&gt;XML Schema (13 min) [I'm here as of this posting]&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RELATIONAL ALGEBRA&lt;/strong&gt;&lt;br /&gt;Prerequisite: Relational Databases&lt;br /&gt;Select, project, join (18 min)&lt;br /&gt;Set operators, renaming, notation (20 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;SQL&lt;/strong&gt;&lt;br /&gt;Prerequisite: Relational Databases; Recommended: Relational Algebra&lt;br /&gt;Introduction to SQL (5 min)&lt;br /&gt;Basic SELECT statement (10 min)&lt;br /&gt;Table variables and set operators (11 min)&lt;br /&gt;Subqueries in WHERE clause (20 min)&lt;br /&gt;Subqueries in FROM and SELECT (8 min)&lt;br /&gt;The JOIN family of operators (25 min)&lt;br /&gt;Aggregation (25 min)&lt;br /&gt;NULL values (6 min)&lt;br /&gt;Data modification statements (15 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RELATIONAL DESIGN THEORY&lt;/strong&gt;&lt;br /&gt;Prerequisite: Relational Algebra&lt;br /&gt;Relational design overview (16 min)&lt;br /&gt;Functional dependencies (28 min)&lt;br /&gt;Boyce-Codd normal form (23 min)&lt;br /&gt;Multivalued dependencies, 4th normal form (24 min)&lt;br /&gt;Shortcomings of BCNF/4NF (12 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;QUERYING XML&lt;/strong&gt;&lt;br /&gt;Prerequisite: XML Data&lt;br /&gt;XPath introduction (10 min)&lt;br /&gt;XPath demo (22 min)&lt;br /&gt;XQuery introduction (5 min)&lt;br /&gt;XQuery demo (16 min)&lt;br /&gt;XSLT (23 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;UNIFIED MODELING LANGUAGE (UML)&lt;/strong&gt;&lt;br /&gt;Prerequisite: Relational Databases&lt;br /&gt;UML data modeling (25 min)&lt;br /&gt;UML to relations (28 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;INDEXES&lt;/strong&gt;&lt;br /&gt;Prerequisite: SQL&lt;br /&gt;Indexes (14 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;CONSTRAINTS AND TRIGGERS&lt;/strong&gt;&lt;br /&gt;Prerequisite: SQL&lt;br /&gt;Motivation and overview (13 min)&lt;br /&gt;Constraints of several types (26 min)&lt;br /&gt;Referential integrity (22 min)&lt;br /&gt;Triggers introduction (15 min)&lt;br /&gt;Triggers demo (part 1) (30 min)&lt;br /&gt;Triggers demo (part 2) (13 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;TRANSACTIONS&lt;/strong&gt;&lt;br /&gt;Prerequisite: SQL&lt;br /&gt;Introduction to transactions (14 min)&lt;br /&gt;Transaction properties (13 min)&lt;br /&gt;Isolation levels (18 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;VIEWS&lt;/strong&gt;&lt;br /&gt;Prerequisites: SQL, Constraints And Triggers&lt;br /&gt;Defining and using views (14 min)&lt;br /&gt;View modifications - introduction (9 min)&lt;br /&gt;View modifications using triggers (33 min)&lt;br /&gt;Automatic view modifications (23 min)&lt;br /&gt;Materialized views (16 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;AUTHORIZATION&lt;/strong&gt;&lt;br /&gt;Prerequisites: SQL, Views&lt;br /&gt;Authorization (11 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RECURSION IN SQL&lt;/strong&gt;&lt;br /&gt;Prerequisite: SQL&lt;br /&gt;Basic recursive WITH statement - introduction (12 min)&lt;br /&gt;Basic recursive WITH statement - demo (30 min)&lt;br /&gt;Nonlinear and mutual recursion (21 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ON-LINE ANALYTICAL PROCESSING (OLAP)&lt;/strong&gt;&lt;br /&gt;Prerequisite: SQL&lt;br /&gt;Introduction to OLAP (18 min)&lt;br /&gt;OLAP demo (27 min)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;NOSQL SYSTEMS&lt;/strong&gt;&lt;br /&gt;Prerequisite: SQL&lt;br /&gt;NoSQL Motivation (20 min)&lt;br /&gt;NoSQL Overview (27 min)&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/9IFOClu-bf0" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/314/introduction-databases-video-lectures-stanford-engineering#comments</comments>
 <category domain="http://getscientific.com/computer-science/programming/data-structures">Data structures</category>
 <category domain="http://getscientific.com/tags/database">database</category>
 <category domain="http://getscientific.com/tags/mysql">MySQL</category>
 <category domain="http://getscientific.com/tags/nosql">NoSQL</category>
 <category domain="http://getscientific.com/tags/olap">OLAP</category>
 <category domain="http://getscientific.com/computer-science/misc/other-misc">Other Misc</category>
 <category domain="http://getscientific.com/computer-science/fields/software-engineering">Software engineering</category>
 <category domain="http://getscientific.com/tags/uml">UML</category>
 <category domain="http://getscientific.com/tags/xml">XML</category>
 <pubDate>Sat, 25 Feb 2012 22:25:58 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">314 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/314/introduction-databases-video-lectures-stanford-engineering</feedburner:origLink></item>
  <item>
    <title>Why's (Poignant) Guide to Ruby</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/ExXyQHnjFy4/whys-poignant-guide-ruby</link>
    <description>&lt;p&gt;A very strange, funny, and helpful online book about learning Ruby. It took several pages (and an explanation from a friend) before I realized that this is exactly what it appears: a strange, funny, and helpful book that does a great job of teaching you Ruby. The comics (yes, comics) are funny and all over the place. An approach like this really makes learning Ruby fun!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/ExXyQHnjFy4" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/297/whys-poignant-guide-ruby#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/ruby">Ruby</category>
 <category domain="http://getscientific.com/tags/why">Why</category>
 <pubDate>Tue, 01 Nov 2011 21:34:01 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">297 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/297/whys-poignant-guide-ruby</feedburner:origLink></item>
  <item>
    <title>Getting Started with Ruby on Rails [rubyonrails.org]</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/ciTJCHUonq0/getting-started-ruby-rails-rubyonrailsorg</link>
    <description>&lt;p&gt;I was recommended to this page by a friend who was also trying to learn Ruby on Rails. This is a great first exercise for those looking to get their hands dirty and jump right in. It talks a bit about what Rails, what MVC is all about, and then drops you right into the exercise.&lt;/p&gt;
&lt;p&gt;The one problem here is that it assumes you've already got Ruby installed and running. If you're on a Mac, &lt;a href="http://net.tutsplus.com/tutorials/ruby/how-to-install-ruby-on-a-mac/"&gt;Nettuts has a great guide using RVM&lt;/a&gt; (Ruby version manager). &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/ciTJCHUonq0" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/266/getting-started-ruby-rails-rubyonrailsorg#comments</comments>
 <category domain="http://getscientific.com/tags/rails">Rails</category>
 <category domain="http://getscientific.com/computer-science/languages/ruby">Ruby</category>
 <pubDate>Mon, 26 Sep 2011 23:39:23 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">266 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/266/getting-started-ruby-rails-rubyonrailsorg</feedburner:origLink></item>
  <item>
    <title>Spam creator - Spammimic</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/otC8KLn-ztQ/spam-creator-spammimic</link>
    <description>&lt;p&gt;Really interesting tool that turns text into spam and back into text again. It took:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;An interactive site for hard science learning aids, links, and class notes&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;... and turned it into:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Dear E-Commerce professional ; This letter was specially &lt;br /&gt;selected to be sent to you . This is a one time mailing &lt;br /&gt;there is no need to request removal if you won't want &lt;br /&gt;any more . This mail is being sent in compliance with &lt;br /&gt;Senate bill 1618 ; Title 2 ; Section 306 . This is &lt;br /&gt;different than anything else you've seen ! Why work &lt;br /&gt;for somebody else when you can become rich within 58 &lt;br /&gt;MONTHS ! Have you ever noticed people are much more &lt;br /&gt;likely to BUY with a credit card than cash &amp;amp; nearly &lt;br /&gt;every commercial on television has a .com on in it &lt;br /&gt;! Well, now is your chance to capitalize on this . &lt;br /&gt;We will help you sell more &amp;amp; use credit cards on your &lt;br /&gt;website . The best thing about our system is that it &lt;br /&gt;is absolutely risk free for you ! But don't believe &lt;br /&gt;us . Prof Ames who resides in Idaho tried us and says &lt;br /&gt;"Now I'm rich many more things are possible" . We are &lt;br /&gt;a BBB member in good standing . Don't delay - order &lt;br /&gt;today ! Sign up a friend and you'll get a discount &lt;br /&gt;of 50% ! Thank-you for your serious consideration of &lt;br /&gt;our offer . Dear Colleague , Especially for you - this &lt;br /&gt;breath-taking news ! If you are not interested in our &lt;br /&gt;publications and wish to be removed from our lists, &lt;br /&gt;simply do NOT respond and ignore this mail ! This mail &lt;br /&gt;is being sent in compliance with Senate bill 2216 , &lt;br /&gt;Title 1 , Section 304 ! Do NOT confuse us with Internet &lt;br /&gt;scam artists ! Why work for somebody else when you &lt;br /&gt;can become rich inside 49 days . Have you ever noticed &lt;br /&gt;nearly every commercial on television has a .com on &lt;br /&gt;in it &amp;amp; how long the line-ups are at bank machines &lt;br /&gt;. Well, now is your chance to capitalize on this . &lt;br /&gt;We will help you increase customer response by 200% &lt;br /&gt;and SELL MORE . You can begin at absolutely no cost &lt;br /&gt;to you . But don't believe us ! Mrs Simpson of Missouri &lt;br /&gt;tried us and says "I was skeptical but it worked for &lt;br /&gt;me" . We are licensed to operate in all states ! Because &lt;br /&gt;the Internet operates on "Internet time" you must act &lt;br /&gt;now ! Sign up a friend and you get half off ! Thanks &lt;br /&gt;. Dear Cybercitizen , This letter was specially selected &lt;br /&gt;to be sent to you ! If you are not interested in our &lt;br /&gt;publications and wish to be removed from our lists, &lt;br /&gt;simply do NOT respond and ignore this mail . This mail &lt;br /&gt;is being sent in compliance with Senate bill 1620 , &lt;br /&gt;Title 4 , Section 309 ! This is not a get rich scheme &lt;br /&gt;! Why work for somebody else when you can become rich &lt;br /&gt;as few as 89 MONTHS ! Have you ever noticed most everyone &lt;br /&gt;has a cellphone plus people love convenience ! Well, &lt;br /&gt;now is your chance to capitalize on this ! WE will &lt;br /&gt;help YOU sell more &amp;amp; SELL MORE . You are guaranteed &lt;br /&gt;to succeed because we take all the risk . But don't &lt;br /&gt;believe us . Mrs Anderson of Hawaii tried us and says &lt;br /&gt;"Now I'm rich, Rich, RICH" . We are licensed to operate &lt;br /&gt;in all states ! So make yourself rich now by ordering &lt;br /&gt;immediately . Sign up a friend and you get half off &lt;br /&gt;! Best regards . Dear Internet user , Thank-you for &lt;br /&gt;your interest in our newsletter ! We will comply with &lt;br /&gt;all removal requests . This mail is being sent in compliance &lt;br /&gt;with Senate bill 2616 , Title 1 ; Section 301 ! Do &lt;br /&gt;NOT confuse us with Internet scam artists . Why work &lt;br /&gt;for somebody else when you can become rich as few as &lt;br /&gt;32 DAYS . Have you ever noticed people are much more &lt;br /&gt;likely to BUY with a credit card than cash and people &lt;br /&gt;are much more likely to BUY with a credit card than &lt;br /&gt;cash . Well, now is your chance to capitalize on this &lt;br /&gt;! WE will help YOU SELL MORE plus deliver goods right &lt;br /&gt;to the customer's doorstep ! You can begin at absolutely &lt;br /&gt;no cost to you ! But don't believe us ! Ms Ames who &lt;br /&gt;resides in Wisconsin tried us and says "My only problem &lt;br /&gt;now is where to park all my cars" . We are a BBB member &lt;br /&gt;in good standing . Don't delay - order today . Sign &lt;br /&gt;up a friend and you'll get a discount of 60% ! God &lt;br /&gt;Bless ! Dear Salaryman ; This letter was specially &lt;br /&gt;selected to be sent to you . We will comply with all &lt;br /&gt;removal requests . This mail is being sent in compliance &lt;br /&gt;with Senate bill 1625 ; Title 4 ; Section 301 . This &lt;br /&gt;is a ligitimate business proposal ! Why work for somebody &lt;br /&gt;else when you can become rich in 68 DAYS . Have you &lt;br /&gt;ever noticed more people than ever are surfing the &lt;br /&gt;web plus the baby boomers are more demanding than their &lt;br /&gt;parents ! Well, now is your chance to capitalize on &lt;br /&gt;this . We will help you turn your business into an &lt;br /&gt;E-BUSINESS &amp;amp; turn your business into an E-BUSINESS &lt;br /&gt;. You can begin at absolutely no cost to you . But &lt;br /&gt;don't believe us ! Mr Simpson who resides in Tennessee &lt;br /&gt;tried us and says "I've been poor and I've been rich &lt;br /&gt;- rich is better" ! We are a BBB member in good standing &lt;br /&gt;. We implore you - act now ! Sign up a friend and your &lt;br /&gt;friend will be rich too ! God Bless . Dear Cybercitizen &lt;br /&gt;, This letter was specially selected to be sent to &lt;br /&gt;you . If you no longer wish to receive our publications &lt;br /&gt;simply reply with a Subject: of "REMOVE" and you will &lt;br /&gt;immediately be removed from our database . This mail &lt;br /&gt;is being sent in compliance with Senate bill 2416 , &lt;br /&gt;Title 2 ; Section 306 ! THIS IS NOT MULTI-LEVEL MARKETING &lt;br /&gt;! Why work for somebody else when you can become rich &lt;br /&gt;as few as 45 DAYS . Have you ever noticed people love &lt;br /&gt;convenience and nobody is getting any younger . Well, &lt;br /&gt;now is your chance to capitalize on this ! WE will &lt;br /&gt;help YOU use credit cards on your website and use credit &lt;br /&gt;cards on your website ! You can begin at absolutely &lt;br /&gt;no cost to you . But don't believe us . Mrs Jones who &lt;br /&gt;resides in Georgia tried us and says "I was skeptical &lt;br /&gt;but it worked for me" . We are licensed to operate &lt;br /&gt;in all states . We IMPLORE you - act now . Sign up &lt;br /&gt;a friend and your friend will be rich too ! Cheers &lt;br /&gt;. Dear Web surfer ; Thank-you for your interest in &lt;br /&gt;our letter ! We will comply with all removal requests &lt;br /&gt;! This mail is being sent in compliance with Senate &lt;br /&gt;bill 1626 ; Title 6 ; Section 302 ! Do NOT confuse &lt;br /&gt;us with Internet scam artists . Why work for somebody &lt;br /&gt;else when you can become rich within 54 days . Have &lt;br /&gt;you ever noticed most everyone has a cellphone &amp;amp; how &lt;br /&gt;long the line-ups are at bank machines . Well, now &lt;br /&gt;is your chance to capitalize on this ! WE will help &lt;br /&gt;YOU increase customer response by 120% plus turn your &lt;br /&gt;business into an E-BUSINESS . You can begin at absolutely &lt;br /&gt;no cost to you ! But don't believe us . Prof Ames who &lt;br /&gt;resides in Alabama tried us and says "My only problem &lt;br /&gt;now is where to park all my cars" ! This offer is 100% &lt;br /&gt;legal ! Because the Internet operates on "Internet &lt;br /&gt;time" you must hurry . Sign up a friend and your friend &lt;br /&gt;will be rich too . Thanks .&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Hilarious!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/otC8KLn-ztQ" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/225/spam-creator-spammimic#comments</comments>
 <category domain="http://getscientific.com/computer-science/fields/cryptography">Cryptography</category>
 <category domain="http://getscientific.com/computer-science/misc/funny">Funny</category>
 <category domain="http://getscientific.com/tags/spam">spam</category>
 <pubDate>Wed, 10 Aug 2011 04:37:54 +0000</pubDate>
 <dc:creator>gsadmin</dc:creator>
 <guid isPermaLink="false">225 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/225/spam-creator-spammimic</feedburner:origLink></item>
  <item>
    <title>Computer Security and Industrial Cryptography publications</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/d-2UYHTX1I4/computer-security-and-industrial-cryptography-publications</link>
    <description>&lt;p&gt;All COSIC publications from 1981 until now, organized by date. There is also a &lt;a href="https://www.cosic.esat.kuleuven.be/publications/"&gt;handy search page&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;COSIC research goal "is to create a secure electronic equivalent for interactions in the physical world such as confidentiality, signatures, identification, anonymity, payment and elections." COSIC is a part of Katholieke Universiteit Leuven, a Belgian University that's been around for almost 600 years.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/d-2UYHTX1I4" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/224/computer-security-and-industrial-cryptography-publications#comments</comments>
 <category domain="http://getscientific.com/tags/cosic">COSIC</category>
 <category domain="http://getscientific.com/computer-science/fields/cryptography">Cryptography</category>
 <category domain="http://getscientific.com/tags/research-papers">research papers</category>
 <pubDate>Wed, 10 Aug 2011 04:33:39 +0000</pubDate>
 <dc:creator>gsadmin</dc:creator>
 <guid isPermaLink="false">224 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/224/computer-security-and-industrial-cryptography-publications</feedburner:origLink></item>
  <item>
    <title>Beginner Object-Oriented Programming in PHP</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/A7ukC_yCW2M/beginner-object-oriented-programming-php</link>
    <description>&lt;p&gt;I'm sure there will be plenty of people that disagree but I found object-oriented programming one of the hardest concepts to understand when I get started writing code. I could never come up with a reason to use it so I kind of avoided I. The problem, of course, is that there was no reason to use objects in the small projects I was creating. Also, objects come from good software design, something I couldn't wrap my head for a long time.&lt;/p&gt;
&lt;p&gt;Nettuts should be pretty familiar to anyone who is learning how to program on the web. This particular tutorial is great and starts form the very beginning by defining a class and an object and what the differences are.&lt;/p&gt;
&lt;p&gt;This is a good place to start for anyone trying to figure out this OOP stuff, particularly folks who are already familiar with PHP. &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/A7ukC_yCW2M" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/217/beginner-object-oriented-programming-php#comments</comments>
 <category domain="http://getscientific.com/tags/classes">classes</category>
 <category domain="http://getscientific.com/tags/objects">objects</category>
 <category domain="http://getscientific.com/tags/oop">OOP</category>
 <category domain="http://getscientific.com/computer-science/misc/other-misc">Other Misc</category>
 <category domain="http://getscientific.com/computer-science/languages/php">PHP</category>
 <pubDate>Wed, 03 Aug 2011 00:23:10 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">217 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/217/beginner-object-oriented-programming-php</feedburner:origLink></item>
  <item>
    <title>Complete PHP Tutorial from W3 Schools</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/Ex1USCT2PUo/complete-php-tutorial-w3-schools</link>
    <description>&lt;p&gt;W3 Schools has definitely helped me through some tough times. This is a good place to start and not a bad reference if you need to brush up on a few key techniques. Is this the best place to learn PHP? I'm not so sure. The lessons are good but not as exhaustive as I'd like.&lt;/p&gt;
&lt;p&gt;PHP is a very powerful language and understanding the basics is very important. This W3 lesson gets you part of the way there but you'll need more in-depth training if you want to make anything of use. &lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/Ex1USCT2PUo" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/214/complete-php-tutorial-w3-schools#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/php">PHP</category>
 <pubDate>Thu, 28 Jul 2011 06:17:44 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">214 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/214/complete-php-tutorial-w3-schools</feedburner:origLink></item>
  <item>
    <title>A Beginner's Guide to Python from Python.org</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/JldpIRXogQY/beginners-guide-python-pythonorg</link>
    <description>&lt;p&gt;This is basically a landing page for those new to programming in general and to Python as well. Sections are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Getting Python&lt;/li&gt;
&lt;li&gt;Learning Python&lt;/li&gt;
&lt;li&gt;Finding help&lt;/li&gt;
&lt;li&gt;Beginner's guides&lt;/li&gt;
&lt;li&gt;Quizzes&lt;/li&gt;
&lt;li&gt;How to contribute&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/JldpIRXogQY" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/204/beginners-guide-python-pythonorg#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/python">Python</category>
 <pubDate>Mon, 11 Jul 2011 04:32:53 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">204 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/204/beginners-guide-python-pythonorg</feedburner:origLink></item>
  <item>
    <title>Free Online Python Book - "Learn Python the Hard Way"</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/iEM-9b-mPoA/free-online-python-book-learn-python-hard-way</link>
    <description>&lt;p&gt;I gave this book a try when it was first being written a couple years back and really liked the straight-forward style it had. No BS, no fluff, just exactly what you needed to know. Here's what the author has to say about learning the hard way:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;LPTHW emphasizes precision, attention to detail, and persistence by requiring you to type each exercise (no copy-paste!) and make it run, as well as to read up on outside topics and to return to exercises and ideas that you don't understand, and understand them.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Don't be scared; you'll be glad you learned the hard way.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/iEM-9b-mPoA" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/203/free-online-python-book-learn-python-hard-way#comments</comments>
 <category domain="http://getscientific.com/tags/ebook">ebook</category>
 <category domain="http://getscientific.com/computer-science/languages/python">Python</category>
 <pubDate>Mon, 11 Jul 2011 04:20:27 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">203 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/203/free-online-python-book-learn-python-hard-way</feedburner:origLink></item>
  <item>
    <title>Scientific mind map software (free)</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/tqw7lntv5O4/scientific-mind-map-software-free</link>
    <description>&lt;p&gt;It's time for me to come clean: I'm a total mindmap junkie. Someone turned me on to the phenomenon a few years ago and it didn't quite click but in the last year, I've been unstoppable. I find it to be the easiest way to visaulize a topic from top to bottom and helps me to construct a complete picture of any topic. You can use them like a to-do like or you can plan out an entire master's thesis.&lt;/p&gt;
&lt;p&gt;I use &lt;a href="http://mindnode.com"&gt;Mind Node for Mac&lt;/a&gt; but tried this out and saw the potential for folks in the research world. Give it a try and comment below if you found it useful for your studies, writing, or otherwise.&amp;nbsp;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/tqw7lntv5O4" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/198/scientific-mind-map-software-free#comments</comments>
 <category domain="http://getscientific.com/tags/mind-map">mind map</category>
 <category domain="http://getscientific.com/physics/misc/tools">Tools</category>
 <category domain="http://getscientific.com/biology/misc/tools">Tools</category>
 <category domain="http://getscientific.com/computer-science/misc/tools">Tools</category>
 <category domain="http://getscientific.com/mathematics/misc/tools">Tools</category>
 <category domain="http://getscientific.com/chemistry/misc/tools">Tools  </category>
 <pubDate>Wed, 22 Jun 2011 05:24:45 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">198 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/198/scientific-mind-map-software-free</feedburner:origLink></item>
  <item>
    <title>Search and upload theses and dissertations </title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/b3h6aVadiN8/search-and-upload-theses-and-dissertations</link>
    <description>&lt;p&gt;OpenThesis is a place to upload your thesis for everyone else to read and use. Looks like a great resource for students who need a little help getting through the hardest part of a grad degree. From the site:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;OpenThesis is a free repository of theses, dissertations, and other academic documents, coupled with powerful search, organization, and collaboration tools.&lt;/p&gt;
&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/b3h6aVadiN8" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/192/search-and-upload-theses-and-dissertations#comments</comments>
 <category domain="http://getscientific.com/tags/dissertation">dissertation</category>
 <category domain="http://getscientific.com/physics/misc/helpful-websites">Helpful Websites</category>
 <category domain="http://getscientific.com/biology/misc/helpful-websites">Helpful Websites</category>
 <category domain="http://getscientific.com/computer-science/misc/helpful-websites">Helpful Websites</category>
 <category domain="http://getscientific.com/mathematics/misc/helpful-websites">Helpful Websites</category>
 <category domain="http://getscientific.com/tags/phd">phd</category>
 <category domain="http://getscientific.com/tags/thesis">thesis</category>
 <category domain="http://getscientific.com/chemistry/misc/helpful-websites">Helpful Websites</category>
 <pubDate>Wed, 22 Jun 2011 04:51:13 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">192 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/192/search-and-upload-theses-and-dissertations</feedburner:origLink></item>
  <item>
    <title>Zend on PHP For the Absolute Beginner</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/xiF6uxSSBIE/zend-php-absolute-beginner</link>
    <description>&lt;p&gt;This is, in my opinion, the place place to start if you want to learn PHP. The tone is light, the information is great, the examples are very helpful, and it covers a wide swath of information. This is the link that got me started in PHP and I refer back every once in a while for reminders on certain things.&amp;nbsp;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/xiF6uxSSBIE" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/152/zend-php-absolute-beginner#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/php">PHP</category>
 <category domain="http://getscientific.com/tags/tutorial">tutorial</category>
 <category domain="http://getscientific.com/tags/zend">Zend</category>
 <pubDate>Fri, 06 May 2011 14:23:05 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">152 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/152/zend-php-absolute-beginner</feedburner:origLink></item>
  <item>
    <title>Free Online Python eBook - Dive Into Python</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/o_wYpmRnRHo/free-online-python-ebook-dive-python</link>
    <description>&lt;p&gt;I'm surprised this one is offered online for free. The publisher is the same one that wrote Pro Drupal Development, a book that is credited with at least part of the construction of this site!&lt;/p&gt;
&lt;p&gt;You can download the book is several different formats - PDF, HTML, Word, XML (yikes) - and in 6 other languages besides English. It calls itself a "book for experienced programmers" so probably not the best place to start if you have no experience writing code.&amp;nbsp;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/o_wYpmRnRHo" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/146/free-online-python-ebook-dive-python#comments</comments>
 <category domain="http://getscientific.com/tags/ebook">ebook</category>
 <category domain="http://getscientific.com/computer-science/languages/python">Python</category>
 <pubDate>Fri, 06 May 2011 02:07:07 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">146 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/146/free-online-python-ebook-dive-python</feedburner:origLink></item>
  <item>
    <title>The Official Python Tutorial from Python.org</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/cI5cg9GFpfA/official-python-tutorial-pythonorg</link>
    <description>&lt;p&gt;This is, obviously, a great place to start if you're looking to learn the Python language... straight from the source!&lt;/p&gt;
&lt;p&gt;This tutorial walks you through all of the following and more:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Set up and installation&lt;/li&gt;
&lt;li&gt;Using the Python Interpreter&lt;/li&gt;
&lt;li&gt;Control flow tools&lt;/li&gt;
&lt;li&gt;Data Structures&lt;/li&gt;
&lt;li&gt;Modules&lt;/li&gt;
&lt;li&gt;I/O&lt;/li&gt;
&lt;li&gt;Errors, exceptions&lt;/li&gt;
&lt;li&gt;Classes&lt;/li&gt;
&lt;li&gt;The Standard Library&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/cI5cg9GFpfA" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/145/official-python-tutorial-pythonorg#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/python">Python</category>
 <category domain="http://getscientific.com/tags/tutorial">tutorial</category>
 <pubDate>Fri, 06 May 2011 02:00:48 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">145 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/145/official-python-tutorial-pythonorg</feedburner:origLink></item>
  <item>
    <title>Online Ruby Programming Quizzes</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/hPi-9IgcEkA/online-ruby-programming-quizzes</link>
    <description>&lt;p&gt;An archive of 156 (as of this posting) different questions that can be answered in the Ruby programming language. It sounds like new quizzes are added weekly and you can sign up for an email update.&amp;nbsp;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/hPi-9IgcEkA" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/144/online-ruby-programming-quizzes#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/ruby">Ruby</category>
 <pubDate>Fri, 06 May 2011 01:58:03 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">144 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/144/online-ruby-programming-quizzes</feedburner:origLink></item>
  <item>
    <title>Introduction to Programming in Java (free Java ebook)</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/Kv6suwDlYJ8/introduction-programming-java-free-java-ebook</link>
    <description>&lt;p&gt;Can't beat a freee Java ebook from Princeton! This book was written with multiple disciplines in mind and provides a really thorough overview of the language. From the site:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;This textbook&amp;nbsp;is an interdisciplinary approach to the traditional CS1 curriculum. We teach all of the classic elements of programming, using an "objects-in-the-middle" approach that emphasizes data abstraction.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/Kv6suwDlYJ8" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/143/introduction-programming-java-free-java-ebook#comments</comments>
 <category domain="http://getscientific.com/tags/astrophysics">astrophysics</category>
 <category domain="http://getscientific.com/computer-science/languages/java">Java</category>
 <category domain="http://getscientific.com/tags/princeton">Princeton</category>
 <category domain="http://getscientific.com/computer-science/fields/software-engineering">Software engineering</category>
 <pubDate>Thu, 05 May 2011 23:44:56 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">143 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/143/introduction-programming-java-free-java-ebook</feedburner:origLink></item>
  <item>
    <title>How to Think Like a Computer Scientist (free Java ebook)</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/U_V7F_6SPLc/how-think-computer-scientist-free-java-ebook</link>
    <description>&lt;p&gt;A 300 page ebook on how to think like a computer scientist using the Java language. The philosophy behind is, generally:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Vocabulary is important&lt;/li&gt;
&lt;li&gt;Learn the algorithm and know how to debug&lt;/li&gt;
&lt;li&gt;Some concepts are harder than others&lt;/li&gt;
&lt;li&gt;Less code is better code (this is probably debatable)&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;The book covers object-oriented programming and data structures and so much more! Very complete resources for those getting started.&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/U_V7F_6SPLc" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/142/java/how-think-computer-scientist-free-java-ebook#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/java">Java</category>
 <pubDate>Thu, 05 May 2011 23:36:10 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">142 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/142/java/how-think-computer-scientist-free-java-ebook</feedburner:origLink></item>
  <item>
    <title>Free Java ebook: Thinking in Java</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/wFo0suo3s_o/free-java-b-book-thinking-java-3rd-edition</link>
    <description>&lt;p&gt;Nice little Java training manual by Bruce Eckel for those just getting started with the language. It's amazing that someone would put so much effort into a free resource like this so you owe it to him to download it and use it!&amp;nbsp;&lt;/p&gt;
&lt;p&gt;With resources like these out there, why are textbooks still so expensive?&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/wFo0suo3s_o" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/141/bruce-eckel/free-java-b-book-thinking-java-3rd-edition#comments</comments>
 <category domain="http://getscientific.com/tags/bruce-eckel">Bruce Eckel</category>
 <category domain="http://getscientific.com/tags/ebook">ebook</category>
 <category domain="http://getscientific.com/computer-science/languages/java">Java</category>
 <pubDate>Thu, 05 May 2011 23:28:15 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">141 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/141/bruce-eckel/free-java-b-book-thinking-java-3rd-edition</feedburner:origLink></item>
  <item>
    <title>Hackety Hack! - Learn Programming with Ruby</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/L5apDF5JjAU/hackety-hack-learn-programming-ruby</link>
    <description>&lt;p&gt;A great little application you can use to learn programming with the Ruby language. I haven't downloaded it myself but Read Write Web wrote a piece on them so that means something, right? From their site:&amp;nbsp;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;"Hackety Hack will teach you the absolute basics of programming from the ground up. No previous programming experience is needed!.. you'll learn the Ruby programming language Ruby is used for all kinds of programs, including desktop applications and websites."&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Give it a try and let us know what you think!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/L5apDF5JjAU" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/140/ruby/hackety-hack-learn-programming-ruby#comments</comments>
 <category domain="http://getscientific.com/computer-science/languages/ruby">Ruby</category>
 <category domain="http://getscientific.com/tags/shoes-framework">Shoes framework</category>
 <category domain="http://getscientific.com/computer-science/misc/tools">Tools</category>
 <pubDate>Thu, 05 May 2011 23:20:21 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">140 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/140/ruby/hackety-hack-learn-programming-ruby</feedburner:origLink></item>
  <item>
    <title>How to be a Programmer (personal essay)</title>
    <link>http://feedproxy.google.com/~r/getscientific/comp-sci/~3/M3Wux1yh1RM/how-be-programmer-personal-essay</link>
    <description>&lt;p&gt;An important and famous essay on how, generally, to be a good programmer. I read this all the way through and was struck by how logically he broke each section down. As he says in the essay, it's a very subjective account but a really good read for anyone looking to join the industry. It might be a bit boring for the typical undergrad but those who are switching careers post-college will find a lot of this information important.&amp;nbsp;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/getscientific/comp-sci/~4/M3Wux1yh1RM" height="1" width="1"/&gt;</description>
     <comments>http://getscientific.com/139/career-advice/how-be-programmer-personal-essay#comments</comments>
 <category domain="http://getscientific.com/computer-science/misc/career-advice">Career Advice</category>
 <category domain="http://getscientific.com/tags/careers">careers</category>
 <category domain="http://getscientific.com/computer-science/misc/other-misc">Other Misc</category>
 <category domain="http://getscientific.com/tags/robert-l-read">Robert L. Read</category>
 <pubDate>Thu, 05 May 2011 23:00:28 +0000</pubDate>
 <dc:creator>josh</dc:creator>
 <guid isPermaLink="false">139 at http://getscientific.com</guid>
  <feedburner:origLink>http://getscientific.com/139/career-advice/how-be-programmer-personal-essay</feedburner:origLink></item>
  </channel>
</rss>

