CARVIEW |
Select Language
HTTP/2 200
server: nginx
date: Mon, 01 Sep 2025 00:56:26 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 17 Jun 2010 21:09:54 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "6d01fd08f74098b3c58a86076f75cee8"
x-archive-orig-x-runtime: 57ms
x-archive-orig-content-length: 21628
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 17 Jun 2010 21:09:54 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 17 Jun 2010 21:09:54 GMT", ; rel="memento"; datetime="Thu, 17 Jun 2010 21:09:54 GMT", ; rel="next memento"; datetime="Sat, 19 Jun 2010 09:13:23 GMT", ; rel="last memento"; datetime="Thu, 12 Apr 2018 05:40:09 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_16_20100617111121_crawl101-c/51_16_20100617210903_crawl101.arc.gz
server-timing: captures_list;dur=1.018874, exclusion.robots;dur=0.030234, exclusion.robots.policy;dur=0.013076, esindex;dur=0.017360, cdx.remote;dur=13.273772, LoadShardBlock;dur=244.646549, PetaboxLoader3.datanode;dur=115.499195, PetaboxLoader3.resolve;dur=176.457651, load_resource;dur=120.363507
x-app-server: wwwb-app224
x-ts: 200
x-tr: 468
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app224; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
paulp's optional at master - GitHub
paulp / optional forked from alexy/optional
- Source
- Commits
- Network (1)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
optional /
name | age | message | |
---|---|---|---|
![]() |
LICENSE | Tue Aug 11 03:44:28 -0700 2009 | Modified license and readme to steal all the cr... [paulp] |
![]() |
README | Tue Aug 11 03:44:28 -0700 2009 | Modified license and readme to steal all the cr... [paulp] |
![]() |
lib/ | Fri Aug 07 10:05:32 -0700 2009 | A bunch of work trying to get some real magic g... [paulp] |
![]() |
mkCommand | Fri Aug 07 10:05:32 -0700 2009 | A bunch of work trying to get some real magic g... [paulp] |
![]() |
project/ | Fri Aug 07 10:05:32 -0700 2009 | A bunch of work trying to get some real magic g... [paulp] |
![]() |
src/ | Tue Aug 11 05:02:08 -0700 2009 | Added -i option to sgrep; now sgrep -vi works a... [paulp] |
README
optional is a command line option parser and library. YOU WRITE: object MyAwesomeCommandLineTool extends optional.Application { // for instance... def main(count: Option[Int], file: Option[java.io.File], arg1: String) { [...] } } THEN YOU DO: scala MyAwesomeCommandLineTool --count 5 quux AND YOUR MAIN METHOD WILL BE INVOKED SUCH THAT: count = Some(5) file = None arg1 = quux See the example programs for many more features. HOW IT WORKS: Reflection, man. CREDITS: Idea and prototype implementation: DRMacIver. Fleshing out and awesomification: paulp.