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
| unless RUBY_VERSION.start_with?("2.7") | |
| puts "Please use Ruby 2.7.x" | |
| return | |
| end | |
| data = File.open("input.txt").map { |line| | |
| parts = line.split(" ") | |
| p1, p2 = parts[0].split("-").map(&:to_i) | |
| { | |
| p1: p1, |
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
| numbers = File.open("input.txt").map(&:to_i) | |
| combinations = ENV.fetch("COMBOS", 2).to_i | |
| puts numbers | |
| .combination(combinations) | |
| .find { |pair| pair.sum == 2020 } | |
| .reduce(:*) |
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
| reStripe() { | |
| const rows = [...document.getElementsByClassName("archive-row")]; | |
| rows.forEach((element, index) => { | |
| if (index % 2 == 0) { | |
| element.classList.remove("bg-gray-50"); | |
| element.classList.add("bg-white"); | |
| } else { | |
| element.classList.add("bg-gray-50"); | |
| element.classList.remove("bg-white"); | |
| } |
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
| <script> | |
| window.kol_leader_board_options = { | |
| board_settings: { | |
| limit: 100 | |
| } | |
| } | |
| </script> |
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
| eleventyConfig.addNunjucksTag("pageData", function(nunjucksEngine) { | |
| return new (function() { | |
| this.tags = ["pageData"]; | |
| this.parse = function(parser, nodes, _) { | |
| var tok = parser.nextToken(); | |
| var args = parser.parseSignature(null, true); | |
| // fake it until you make it! | |
| // https://github.com/mozilla/nunjucks/issues/158#issuecomment-34919343 |
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
| { | |
| "__event": "the_webhook_event", | |
| "avatar": "https://d1ts43dypk8bqh.cloudfront.net/v1/avatars/310c4ac2-7026-4700-afde-496b1d217b03", | |
| "counter": 252, | |
| "contest_score": 300, | |
| "contest_score_rank": 19588, | |
| "custom_fields": { | |
| }, | |
| "email": "[email protected]", |
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.exports = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| nord: { | |
| "0": "#2E3440", | |
| "1": "#3B4252", | |
| "2": "#434C5E", | |
| "3": "#4C566A", | |
| "4": "#D8DEE9", |
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
| <script> | |
| window.kol_leader_board_options = { | |
| board_settings: { | |
| lead_description: 'full_name' | |
| } | |
| } | |
| </script> |
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
| <script> | |
| window.kol_leader_board_options = { | |
| board_settings: { | |
| lead_description: 'full_name' | |
| } | |
| } | |
| </script> |
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
| <script> | |
| var kol_widget_options = { | |
| callback: function(data) { | |
| if (data.counter == 1) { | |
| window.location = `https://YOURSITE.com?kid=${data.social_id}`; | |
| } else { | |
| window.location = data.redirect_url; | |
| } | |
| } | |
| }; |