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
# 1 | |
Array(1..100).each do |number| | |
case | |
when (number % 3).zero? && (number % 5).zero? then puts 'HiBy' | |
when (number % 3).zero? then puts 'Hi' | |
when (number % 5).zero? then puts 'By' | |
else puts number | |
end | |
end |
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
'packages': [ | |
'alignment' | |
'autocomplete-css' | |
'autocomplete-html' | |
'autocomplete-paths' | |
'autocomplete-plus' | |
'autocomplete-ruby' | |
'color-picker' | |
'cucumber' | |
'highlight-selected' |
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
git config | |
[user] | |
name = JustSnow | |
email = [email protected] | |
[core] | |
filemode = false | |
excludesfile = /Users/SnowMan/.gitignore_global | |
[color] | |
ui = auto |
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
{ | |
"always_show_minimap_viewport": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Scheme - Default/Twilight.tmTheme", | |
"draw_minimap_border": true, | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 12, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": |
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
# setup color variables | |
color_is_on= | |
color_red= | |
color_green= | |
color_yellow= | |
color_blue= | |
color_white= | |
color_gray= | |
color_bg_red= | |
color_off= |
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
module ProgressBar | |
class << self | |
def progress_bar(items_count, current_item_index, prefix) | |
@@start_time = Time.now if current_item_index == 0 | |
time = Time.now - @@start_time | |
progress = current_item_index.next.to_f / items_count.to_f * 100 | |
bar = "▓" * ( 50 * (progress / 100 ) ).floor | |
minutes = ((time / progress) * (100 - progress) / 60).round | |
left_str = "#{minutes} minutes left " |
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
id_region | id_country | name | |
---|---|---|---|
1 | 1 | Москва и Московская обл. | |
2 | 1 | Санкт-Петербург и область | |
3 | 1 | Адыгея | |
4 | 1 | Алтайский край | |
5 | 1 | Амурская обл. | |
6 | 1 | Архангельская обл. | |
7 | 1 | Астраханская обл. | |
8 | 1 | Башкортостан(Башкирия) | |
9 | 1 | Белгородская обл. |
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
id_country | name | |
---|---|---|
1 | Россия | |
2 | Украина | |
3 | Абхазия | |
4 | Австралия | |
5 | Австрия | |
6 | Азербайджан | |
7 | Албания | |
8 | Алжир | |
9 | Ангола |
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
id_city | id_region | id_country | name | |
---|---|---|---|---|
1 | 1 | 1 | Москва | |
2 | 1 | 1 | Абрамцево | |
3 | 1 | 1 | Алабино | |
4 | 1 | 1 | Апрелевка | |
5 | 1 | 1 | Архангельское | |
6 | 1 | 1 | Ашитково | |
7 | 1 | 1 | Байконур | |
8 | 1 | 1 | Бакшеево | |
9 | 1 | 1 | Балашиха |