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
| #!/usr/bin/env python3 | |
| import sys | |
| import argparse | |
| import math | |
| def main(ns): | |
| aspect = ns.high / ns.wide | |
| a = 1 | |
| b = aspect |
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
| function IO() { | |
| DLog('test'); | |
| return { | |
| io: [ | |
| { | |
| 'name': 'input11', | |
| 'direction': 'input', | |
| 'type': 'integer' | |
| }, | |
| { |
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
| #!/usr/bin/env ruby | |
| File.open("/usr/share/dict/words") do |handle| | |
| cachedsorted = ARGV[0].chars.sort | |
| handle.each_line do |word| | |
| puts word if word.strip.chars.sort == cachedsorted | |
| 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
| this is a test |