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
{:user {:deploy-repositories [["clojars" {:url "https://clojars.org/repo" | |
:creds {:username "USERNAME" :password "PASSWORD"} | |
:sign-releases false}]]}} |
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
Test project 1: | |
- test task 2 @testTag | |
- test task 2 | |
Test project 2: | |
- project 2 task 1 | |
- project 2 task 3 | |
Test sub project: | |
- sub project task 1 @testTag2 |
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
*.aux | |
*.glo | |
*.idx | |
*.log | |
*.toc | |
*.ist | |
*.acn | |
*.acr | |
*.alg | |
*.bbl |
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
# class Array | |
# def token_diff(other) | |
# memo = 0 | |
# self.each_with_index do |element, index| | |
# memo += 1 if other[index] != element | |
# end | |
# return memo | |
# 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
# encoding: UTF-8 | |
class DoBlendingCrossover < Machine | |
def initialize | |
@number_to_create = 1 | |
end | |
def create (n) | |
@number_to_create = n | |
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
writer :whatever do |this_writer| | |
this_writer.block_depth = 10 | |
end |