CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 05 Aug 2025 06:49:58 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091209055828
location: https://web.archive.org/web/20091209055828/https://github.com/thefaj/OpenFlow
server-timing: captures_list;dur=1.780783, exclusion.robots;dur=0.034116, exclusion.robots.policy;dur=0.021309, esindex;dur=0.040608, cdx.remote;dur=58.700676, LoadShardBlock;dur=331.459373, PetaboxLoader3.datanode;dur=116.964612, PetaboxLoader3.resolve;dur=131.920187
x-app-server: wwwb-app202
x-ts: 302
x-tr: 433
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app202; 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=()
HTTP/2 200
server: nginx
date: Tue, 05 Aug 2025 06:49:59 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Wed, 09 Dec 2009 05:58:27 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "38624eb3b0db46273ee8ae009df3700d"
x-archive-orig-x-runtime: 128ms
x-archive-orig-content-length: 23205
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: Wed, 09 Dec 2009 05:58:28 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 07 Sep 2009 17:24:27 GMT", ; rel="prev memento"; datetime="Wed, 23 Sep 2009 11:07:57 GMT", ; rel="memento"; datetime="Wed, 09 Dec 2009 05:58:28 GMT", ; rel="next memento"; datetime="Fri, 15 Jan 2010 07:52:45 GMT", ; rel="last memento"; datetime="Sat, 26 Jul 2025 14:41:23 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_13_20091209023345_crawl100-c/51_13_20091209055739_crawl101.arc.gz
server-timing: captures_list;dur=0.512609, exclusion.robots;dur=0.021867, exclusion.robots.policy;dur=0.013107, esindex;dur=0.011676, cdx.remote;dur=20.302961, LoadShardBlock;dur=241.334760, PetaboxLoader3.datanode;dur=143.647189, PetaboxLoader3.resolve;dur=142.205602, load_resource;dur=157.742911
x-app-server: wwwb-app202
x-ts: 200
x-tr: 476
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
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
thefaj's OpenFlow at master - GitHub
This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (

This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (

Description: | CoverFlow API replacement for the iPhone edit |
Homepage: | https://apparentlogic.com/openflow edit |
Public Clone URL: |
git://github.com/thefaj/OpenFlow.git
Give this clone URL to anyone.
git clone git://github.com/thefaj/OpenFlow.git
|
Your Clone URL: |
Use this clone URL yourself.
git clone git@github.com:thefaj/OpenFlow.git
|
OpenFlow /
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Tue Aug 18 13:03:19 -0700 2009 | Initial release check-in to git [thefaj] |
![]() |
OpenFlow/ | Tue Aug 18 13:03:19 -0700 2009 | Initial release check-in to git [thefaj] |
![]() |
OpenFlowDemo/ | Tue Aug 18 13:21:27 -0700 2009 | Removing more .svn junk. [thefaj] |
![]() |
README | Tue Aug 18 13:03:19 -0700 2009 | Initial release check-in to git [thefaj] |
README
Follow the project's status at https://apparentlogic.com/openflow and on Twitter at @openflow When I released my first iPhone app, Presenter, two months ago, Apple accused me of using their private iPhone CoverFlow API. After appealing to Apple & writing a blog post about my roadblock, Apple reversed their decision. The initial release is simple, but it is also efficient and very fast, even on first generation iPhones. The API should be easy to include in your own program. The main class, AFOpenFlowView, is a subclass of UIView. To use this in your own project: -Add the OpenFlow source code to your project. -Add the QuartzCore and CoreGraphics frameworks. -Import “AFOpenFlowView.h” & interact with it as you would a normal UIView. -You should implement both the AFOpenFlowViewDelegate and AFOpenFlowViewDataSource protocols. Currently, the delegate protocol is used to let your code know when the user selected a new object. The datasource protocol is called when AFOpenFlowView needs a UIImage object. This method should be *fast*. Don’t do NSURL requests or even disk access in this method. See the AFOpenFlowDemo app I provided for an example how to load images from a remote server. The datasource also needs to provide a default UIImage. At any point, you can set UIImage’s on your AFOpenFlowView. You don’t need to wait for the datasource protocol to ask you. Your AFOpenFlowView will start displaying images as soon as you call setNumberOfImages. This is an initial release of OpenFlow. I licensed it under the liberal MIT open source license. Please drop me a line to let me know what you think & where you want the project to go from here. The source code for both OpenFlow and the AFOpenFlowDemo project are currently available on Github at https://github.com/thefaj/OpenFlow. For the demo application, you will need to register for a Flickr API key and secret. If you try to compile the demo, you will quickly find the error message where your Key & Secret should be added. Enjoy! -Alex
This feature is coming soon. Sit tight!