- Proposal: SE-NNNN
- Authors: Dmitry Lobanov
- Review Manager: TBD
- Status: Awaiting Review
During the review process, add the following fields as needed:
- Implementation: apple/swift#NNNNN
| date +"%Y-%m-%d %H:%M:%S %z" | pbcopy | 
| # Space describe the dependencies between coordinates | |
| class Space | |
| attr_accessor :basis, :normalized_basis | |
| def add(lhs, rhs) | |
| # pp "left -> #{lhs}" | |
| # pp "right -> #{rhs}" | |
| max = [lhs.count, rhs.count].max | |
| result = Array.new(max, 0).each_with_index.map { |e, i| | |
| # puts "left -> #{lhs[i]} right -> #{rhs[i]} e -> #{e}" | |
| e += lhs[i] if i < lhs.count | 
| #!/usr/bin/ruby | |
| # This script rename blog-post to jekyll conventions naming. | |
| # Suppose, that you have a file with metadata content. | |
| # File.txt: | |
| # --- | |
| # title:'Wow, title. Rename blog-post.' | |
| # date:26.01.2018 12:31:55 GMT+3 | |
| # --- | |
| # ruby script.rb -i File.txt | 
During the review process, add the following fields as needed:
| find Core -name '*.h' | perl -ne 'chomp; my $f = (split("\/"))[-1]; my $s = qq(mv $_ Core/Include/$f); print $s, "\n"; print qx($s);' | 
| find . -name '*.swift' | perl -ple 's/ /\\ /g' | xargs perl -i -lpe 's/^\t/ /g' | 
| name: Awesome App | |
| # Controls when the action will run. | |
| on: | |
| # Triggers the workflow on push or pull request events but only for the develop branch | |
| push: | |
| branches: [ master ] | |
| # pull_request: | |
| # branches: [ develop ] | |
| jobs: | |
| name: Build master |