| First | Last | Team | Slack | |
|---|---|---|---|---|
| Han | Solo | Falcon | @han | han.solo |
| Luke | Skywalker | Jedi | @luke | luke.skywalker |
| Darth | Vader | Sith | @darth | darth.vader |
| Princess | Leia | Falcon | @leia | princess.leia |
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
| # frozen_string_literal: true | |
| require 'bundler/inline' | |
| gemfile do | |
| source 'https://rubygems.org' | |
| gem 'activesupport' | |
| gem 'awesome_print' | |
| gem 'rspec' | |
| 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
| def input | |
| DATA.read.split.map(&:to_i) | |
| end | |
| def calculate_twos(input) | |
| input[0..-2].each do |a| | |
| input[1..-1].each do |b| | |
| if a + b == 2020 | |
| return a * b | |
| end |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| (defun dotspacemacs/user-config () | |
| "Configuration function for user code. | |
| This function is called at the very end of Spacemacs initialization after | |
| layers configuration. | |
| This is the place where most of your configurations should be done. Unless it is | |
| explicitly specified that a variable should be set before a package is loaded, | |
| you should place your code here." | |
| (add-to-list 'load-path "~/dotfiles/spacemacs-config") |
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
| ;;; my-dracula-theme.el --- My Dracula Theme | |
| ;; Copyright 2015-present, All rights reserved | |
| ;; | |
| ;; Code licensed under the MIT license | |
| ;; Author: film42 | |
| ;; Version: 1.5.0 | |
| ;; Package-Requires: ((emacs "24")) | |
| ;; URL: https://github.com/dracula/emacs |
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
| ORG_GRADLE_PROJECT_MYAPP_RELEASE_STORE_FILE=myapp-dev.keystore | |
| ORG_GRADLE_PROJECT_MYAPP_RELEASE_KEY_ALIAS=myapp-alias | |
| ORG_GRADLE_PROJECT_MYAPP_RELEASE_STORE_PASSWORD=**your-password** | |
| ORG_GRADLE_PROJECT_MYAPP_RELEASE_KEY_PASSWORD=**your-password** |
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
| signingConfigs { | |
| release { | |
| if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) { | |
| storeFile rootProject.file("app/" + project.findProperty('MYAPP_RELEASE_STORE_FILE') ?: "ANDROID_STORE_FILE_NOT_SET") | |
| storePassword project.findProperty('MYAPP_RELEASE_STORE_PASSWORD') ?: "ANDROID_STORE_PASSWORD_NOT_SET" | |
| keyAlias project.findProperty('MYAPP_RELEASE_KEY_ALIAS') ?: "ANDROID_KEY_ALIAS_NOT_SET" | |
| keyPassword project.findProperty('MYAPP_RELEASE_KEY_PASSWORD') ?: "ANDROID_KEY_PASSWORD_NOT_SET" | |
| } | |
| } | |
| } |
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
| buildTypes { | |
| release { | |
| //... | |
| if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) { | |
| signingConfig signingConfigs.release | |
| } else { | |
| println '-------------------------------------------------' | |
| println 'The MYAPP_RELEASE_STORE_FILE property was not set!' | |
| println 'This release will not be signed by gradle!' |
NewerOlder