Author: brendanbondurant
-

Selenium in Rails
Setting up Selenium in a Rails app: a contact form with two tests, one for successful submission and one for email validation.
-

C# Testing set up
Notes on setting up C# testing, written while prepping to walk a study group through the basics.
-

-

Ruby vs Python – Speed Comparison
Implementing the Sieve of Eratosthenes in both Ruby and Python to see which one actually runs faster. Python wins.
-

-

Classes in C#
Building the same simple Person class in Ruby and C#, and what that comparison shows about each language’s syntax.
-

Dynamic vs Static
Ruby is dynamic and interpreted, C# is static and compiled. What that difference means for catching errors and picking the right tool.
-

Method/Function in Ruby and C#
Comparing how Ruby and C# handle the same two methods, addition and odd-number checking, and what each language’s syntax trades off.
-

C# and Ruby
Notes on the similarities between C# and Ruby, written while onboarding into a new study group.
-

Linked List
I have pretty much covered the linked list, at least for now. I know there is more stuff to add. This was interesting to revisit, and I started at the beginning of mod3 and am finishing it in mod4. Going through this, there are some things I would definitely change, but this is an interesting…