Skip to content

Commit

Permalink
Add even more emojis to technology records
Browse files Browse the repository at this point in the history
With the help of ChatGPT,
I chose appropriate emojis for various technologies.
Some of ChatGPT's suggestions were wrong in my opinion,
so I left them out.
  • Loading branch information
torrocus committed Nov 21, 2023
1 parent b9316dd commit eeab960
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions db/seeds/technology/angularjs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
icon_angularjs_original_svg = File.read('./db/seeds/technology/svg/angularjs-original.svg')
icon_angularjs_wordmark_svg = File.read('./db/seeds/technology/svg/angularjs-original-wordmark.svg')
technology_angularjs.assign_attributes(
emoji: '🅰️📐🔄',
github_repo: 'angular/angular',
icon: icon_angularjs_original_svg,
icon_wordmark: icon_angularjs_wordmark_svg,
Expand Down
1 change: 1 addition & 0 deletions db/seeds/technology/apache_kafka.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
icon_kafka_original_svg = File.read('./db/seeds/technology/svg/apache_kafka.svg')
icon_kafka_wordmark_svg = File.read('./db/seeds/technology/svg/apache_kafka_wordtype.svg')
technology_kafka.assign_attributes(
emoji: '🦍🐘💬',
icon: icon_kafka_original_svg,
icon_wordmark: icon_kafka_wordmark_svg,
name: 'Kafka',
Expand Down
1 change: 1 addition & 0 deletions db/seeds/technology/apple.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
technology_apple = Technology.where(slug: 'apple').first_or_initialize
icon_apple_original_svg = File.read('./db/seeds/technology/svg/apple-original.svg')
technology_apple.assign_attributes(
emoji: '🍏',
icon: icon_apple_original_svg,
name: 'apple',
title: 'Apple',
Expand Down
2 changes: 1 addition & 1 deletion db/seeds/technology/aws_waf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
technology_aws_waf = Technology.where(slug: 'aws-waf').first_or_initialize
icon_aws_waf_svg = File.read('./db/seeds/technology/svg/aws-waf.svg')
technology_aws_waf.assign_attributes(
icon: icon_aws_waf_svg,
name: 'AWS WAF',
title: 'AWS WAF',
icon: icon_aws_waf_svg,
website_url: 'https://aws.amazon.com/waf/'
)
technology_aws_waf.save
Expand Down
1 change: 1 addition & 0 deletions db/seeds/technology/bootstrap.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
icon_bootstrap_original_svg = File.read('./db/seeds/technology/svg/bootstrap-original.svg')
icon_bootstrap_wordmark_svg = File.read('./db/seeds/technology/svg/bootstrap-original-wordmark.svg')
technology_bootstrap.assign_attributes(
emoji: '🅱️👢🎨',
github_repo: 'twbs/bootstrap',
icon: icon_bootstrap_original_svg,
icon_wordmark: icon_bootstrap_wordmark_svg,
Expand Down
2 changes: 1 addition & 1 deletion db/seeds/technology/prettier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
icon_prettier_svg = File.read('./db/seeds/technology/svg/prettier.svg')
technology_prettier.assign_attributes(
github_repo: 'prettier/prettier',
icon: icon_prettier_svg,
name: 'Prettier',
title: 'Prettier',
icon: icon_prettier_svg,
website_url: 'https://prettier.io/'
)
technology_prettier.save
Expand Down
2 changes: 1 addition & 1 deletion db/seeds/technology/selenium_ide.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
technology_selenium_ide.assign_attributes(
emoji: '🕷️🛠️🖱️',
github_repo: 'seleniumhq/selenium-ide',
icon: icon_selenium_ide_svg,
name: 'Selenium IDE',
title: 'Selenium IDE',
icon: icon_selenium_ide_svg,
website_url: 'https://www.selenium.dev/'
)
technology_selenium_ide.save
Expand Down

0 comments on commit eeab960

Please sign in to comment.