Skip to content

Instantly share code, notes, and snippets.

View byhbt's full-sized avatar

Thanh Huynh (Thành) byhbt

View GitHub Profile
@byhbt
byhbt / programming-achievements.md
Last active January 7, 2020 16:32 — forked from SantiagoValdez/programming-achievements.md
Programming Achievements: How to Level Up as a Developer.

Current [-]. Completed [X]

Learn a variety of commonly-used programming languages:

  • [] Write a program in Ruby
  • [] Write a program in Python
  • [] Write a program in C
  • [] Write a program in C++
  • [] Write a program in Java
  • [] Write a program in Objective-C
@byhbt
byhbt / RAILS_6_CHEATSHEET.md
Last active March 12, 2020 04:54 — forked from mdang/RAILS_CHEATSHEET.md
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before

@byhbt
byhbt / apache2.sh
Created March 4, 2021 11:32 — forked from mikepfeiffer/apache2.sh
EC2 Bootstrap Script for Apache v2
#!/bin/bash
yum update -y
yum install -y httpd
instanceId=$(curl http://169.254.169.254/latest/meta-data/instance-id)
echo "<h1>Hello World from $instanceId</h1>" > /var/www/html/index.html
systemctl start httpd
systemctl enable httpd