This file contains hidden or 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
| find . -name ".DS_Store" -depth -exec rm {} \; |
This file contains hidden or 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
| find . -name '*.DS_Store' -type f -delete |
This file contains hidden or 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
| main_hash = {} | |
| time = Benchmark.realtime do | |
| Profiler__::start_profile | |
| (1..10000).each do |number| | |
| simple_hash = {} | |
| simple_hash[number.to_s] = number | |
| main_hash = main_hash.merge(simple_hash) | |
| end | |
| Profiler__::stop_profile | |
| Profiler__::print_profile($stderr) |
This file contains hidden or 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
| export PATH=$(rbenv root)/shims:$(rbenv root)/bin:$PATH |
NewerOlder