Skip to content

Instantly share code, notes, and snippets.

View helloanh's full-sized avatar
👻
I may be slow to respond.

Ann K. Hoang helloanh

👻
I may be slow to respond.
View GitHub Profile
@helloanh
helloanh / RDS-Aurora-CloudFormation-Example.yaml
Created September 11, 2019 17:29 — forked from sjparkinson/RDS-Aurora-CloudFormation-Example.yaml
A basic CloudFormation template for an RDS Aurora cluster.
---
AWSTemplateFormatVersion: 2010-09-09
Description: >
A basic CloudFormation template for an RDS Aurora cluster.
Parameters:
DatabaseUsername:
AllowedPattern: "[a-zA-Z0-9]+"
ConstraintDescription: must be between 1 to 16 alphanumeric characters.
# Compare Fibonacci!
# At this point you should be good at refactoring your code to make it better,
# but do you feel comfortable determining "good" vs. "bad" code? In this exercise
# you will evaluate four different solutions to the same challenge and evaluate
# their clarity, effectiveness, and overall "good"ness.
# By the end of this challenge, you should be able to:
# 1) Confidently read other people's code and figure out how it works
# 2) Recognize good and not so good practices
# 3) Consider ways to improve solutions
@helloanh
helloanh / BoggleBoardPart2.rb
Last active August 29, 2015 13:55 — forked from dbc-challenges/0.2.1-boggle_class_from_methods.rb
phase 0 unit 2 week 1boggle class challenge
=begin
Anh Kim Hoang
Phase 0, Unit 2, Week 1
Challenge: Boggle Class from Methods
Requirements:
1.Create a class BoggleBoard that includes the functionality of your methods from the previous challenge.
2.One method at a time, create a test to access your new boggle_board object.
The first method should be #create_word.
Then, write methods for #get_row and #get_col.