-
At least P500 worth of Oral-B Electric Toothbrush replacement heads, available at Mercury Drug or Watsons. Can be the following:
-
BM-800 condenser microphone. Available at Lazada. If you're feeling generous, you can add a desktop mic stand, but not a suspension boom/arm stand or a floor stand.
-
Water resistant cellphone armband for Galaxy S7 or larger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>First App</title> | |
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> | |
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> | |
<%= csrf_meta_tags %> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deck = [] | |
13.times { deck << 0 } | |
39.times { deck << 1 } | |
result = Hash.new(0) | |
1000000.times do | |
deck = deck.shuffle | |
count = 0 |
OlderNewer