├── .gitignore ├── LICENSE ├── README.md ├── art ├── buildings │ ├── castles │ │ └── castle_1 │ │ │ ├── castle_1a.txt │ │ │ ├── castle_1b.txt │ │ │ ├── castle_1c.txt │ │ │ ├── castle_1d.txt │ │ │ ├── castle_1e.txt │ │ │ └── castle_1f.txt │ └── houses │ │ └── small_home_1 │ │ ├── house_1a.txt │ │ ├── house_1b.txt │ │ ├── house_1c.txt │ │ ├── house_1d.txt │ │ └── house_1e.txt ├── castles │ ├── castle_1a.txt │ ├── castle_1b.txt │ ├── castle_1c.txt │ ├── castle_1d.txt │ ├── castle_1e.txt │ └── castle_1f.txt ├── dance │ ├── man_1a.txt │ ├── man_1b.txt │ ├── man_1c.txt │ ├── man_1d.txt │ ├── man_1e.txt │ ├── man_1f.txt │ └── man_1g.txt ├── houses │ ├── house_1a.txt │ ├── house_1b.txt │ ├── house_1c.txt │ ├── house_1d.txt │ └── house_1e.txt ├── logos │ └── clippy │ │ ├── ascii │ │ └── logo_1a.txt │ │ └── color │ │ └── logo_color_1a.txt └── sea │ ├── boats │ └── small_boat_1 │ │ ├── ascii │ │ ├── small_boat_1a.txt │ │ ├── small_boat_1b.txt │ │ ├── small_boat_1c.txt │ │ ├── small_boat_1d.txt │ │ ├── small_boat_1e.txt │ │ ├── small_boat_1f.txt │ │ ├── small_boat_1g.txt │ │ ├── small_boat_1h.txt │ │ ├── small_boat_1i.txt │ │ ├── small_boat_1j.txt │ │ ├── small_boat_1k.txt │ │ ├── small_boat_1l.txt │ │ ├── small_boat_1m.txt │ │ ├── small_boat_1n.txt │ │ └── small_boat_1o.txt │ │ └── color │ │ ├── small_boat_1a color.txt │ │ ├── small_boat_1b color.txt │ │ ├── small_boat_1c color.txt │ │ ├── small_boat_1d color.txt │ │ ├── small_boat_1e color.txt │ │ ├── small_boat_1f color.txt │ │ ├── small_boat_1g color.txt │ │ ├── small_boat_1h color.txt │ │ ├── small_boat_1i_color.txt │ │ ├── small_boat_1j_color.txt │ │ ├── small_boat_1k_color.txt │ │ ├── small_boat_1l_color.txt │ │ ├── small_boat_1m_color.txt │ │ ├── small_boat_1n_color.txt │ │ └── small_boat_1o_color.txt │ ├── sea_1a.txt │ ├── sea_1b.txt │ ├── sea_1c.txt │ ├── sea_1d.txt │ ├── sea_1e.txt │ ├── sea_1f.txt │ ├── sea_1g.txt │ └── sea_1h.txt ├── clip_lin.py ├── clip_win.py └── media ├── Sea.mp4 ├── boat_color.gif ├── boat_color.mp4 ├── clippy-gif.gif ├── clippy-gif.mp4 ├── clippy_logo_closed.jpg ├── clippy_logo_open.jpg ├── clippy_watermarked (1).gif ├── clippy_watermarked.mp4 ├── sea.PNG ├── sea.gif └── sea_1a.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/README.md -------------------------------------------------------------------------------- /art/buildings/castles/castle_1/castle_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/castles/castle_1/castle_1a.txt -------------------------------------------------------------------------------- /art/buildings/castles/castle_1/castle_1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/castles/castle_1/castle_1b.txt -------------------------------------------------------------------------------- /art/buildings/castles/castle_1/castle_1c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/castles/castle_1/castle_1c.txt -------------------------------------------------------------------------------- /art/buildings/castles/castle_1/castle_1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/castles/castle_1/castle_1d.txt -------------------------------------------------------------------------------- /art/buildings/castles/castle_1/castle_1e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/castles/castle_1/castle_1e.txt -------------------------------------------------------------------------------- /art/buildings/castles/castle_1/castle_1f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/castles/castle_1/castle_1f.txt -------------------------------------------------------------------------------- /art/buildings/houses/small_home_1/house_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/houses/small_home_1/house_1a.txt -------------------------------------------------------------------------------- /art/buildings/houses/small_home_1/house_1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/houses/small_home_1/house_1b.txt -------------------------------------------------------------------------------- /art/buildings/houses/small_home_1/house_1c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/houses/small_home_1/house_1c.txt -------------------------------------------------------------------------------- /art/buildings/houses/small_home_1/house_1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/houses/small_home_1/house_1d.txt -------------------------------------------------------------------------------- /art/buildings/houses/small_home_1/house_1e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/buildings/houses/small_home_1/house_1e.txt -------------------------------------------------------------------------------- /art/castles/castle_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/castles/castle_1a.txt -------------------------------------------------------------------------------- /art/castles/castle_1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/castles/castle_1b.txt -------------------------------------------------------------------------------- /art/castles/castle_1c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/castles/castle_1c.txt -------------------------------------------------------------------------------- /art/castles/castle_1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/castles/castle_1d.txt -------------------------------------------------------------------------------- /art/castles/castle_1e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/castles/castle_1e.txt -------------------------------------------------------------------------------- /art/castles/castle_1f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/castles/castle_1f.txt -------------------------------------------------------------------------------- /art/dance/man_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/dance/man_1a.txt -------------------------------------------------------------------------------- /art/dance/man_1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/dance/man_1b.txt -------------------------------------------------------------------------------- /art/dance/man_1c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/dance/man_1c.txt -------------------------------------------------------------------------------- /art/dance/man_1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/dance/man_1d.txt -------------------------------------------------------------------------------- /art/dance/man_1e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/dance/man_1e.txt -------------------------------------------------------------------------------- /art/dance/man_1f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/dance/man_1f.txt -------------------------------------------------------------------------------- /art/dance/man_1g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/dance/man_1g.txt -------------------------------------------------------------------------------- /art/houses/house_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/houses/house_1a.txt -------------------------------------------------------------------------------- /art/houses/house_1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/houses/house_1b.txt -------------------------------------------------------------------------------- /art/houses/house_1c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/houses/house_1c.txt -------------------------------------------------------------------------------- /art/houses/house_1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/houses/house_1d.txt -------------------------------------------------------------------------------- /art/houses/house_1e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/houses/house_1e.txt -------------------------------------------------------------------------------- /art/logos/clippy/ascii/logo_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/logos/clippy/ascii/logo_1a.txt -------------------------------------------------------------------------------- /art/logos/clippy/color/logo_color_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/logos/clippy/color/logo_color_1a.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1a.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1b.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1c.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1d.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1e.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1f.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1g.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1h.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1i.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1j.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1j.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1k.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1l.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1l.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1m.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1m.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1n.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/ascii/small_boat_1o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/ascii/small_boat_1o.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1a color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1a color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1b color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1b color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1c color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1c color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1d color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1d color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1e color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1e color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1f color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1f color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1g color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1g color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1h color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1h color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1i_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1i_color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1j_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1j_color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1k_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1k_color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1l_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1l_color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1m_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1m_color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1n_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1n_color.txt -------------------------------------------------------------------------------- /art/sea/boats/small_boat_1/color/small_boat_1o_color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/boats/small_boat_1/color/small_boat_1o_color.txt -------------------------------------------------------------------------------- /art/sea/sea_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1a.txt -------------------------------------------------------------------------------- /art/sea/sea_1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1b.txt -------------------------------------------------------------------------------- /art/sea/sea_1c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1c.txt -------------------------------------------------------------------------------- /art/sea/sea_1d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1d.txt -------------------------------------------------------------------------------- /art/sea/sea_1e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1e.txt -------------------------------------------------------------------------------- /art/sea/sea_1f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1f.txt -------------------------------------------------------------------------------- /art/sea/sea_1g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1g.txt -------------------------------------------------------------------------------- /art/sea/sea_1h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/art/sea/sea_1h.txt -------------------------------------------------------------------------------- /clip_lin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/clip_lin.py -------------------------------------------------------------------------------- /clip_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/clip_win.py -------------------------------------------------------------------------------- /media/Sea.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/Sea.mp4 -------------------------------------------------------------------------------- /media/boat_color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/boat_color.gif -------------------------------------------------------------------------------- /media/boat_color.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/boat_color.mp4 -------------------------------------------------------------------------------- /media/clippy-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/clippy-gif.gif -------------------------------------------------------------------------------- /media/clippy-gif.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/clippy-gif.mp4 -------------------------------------------------------------------------------- /media/clippy_logo_closed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/clippy_logo_closed.jpg -------------------------------------------------------------------------------- /media/clippy_logo_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/clippy_logo_open.jpg -------------------------------------------------------------------------------- /media/clippy_watermarked (1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/clippy_watermarked (1).gif -------------------------------------------------------------------------------- /media/clippy_watermarked.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/clippy_watermarked.mp4 -------------------------------------------------------------------------------- /media/sea.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/sea.PNG -------------------------------------------------------------------------------- /media/sea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/sea.gif -------------------------------------------------------------------------------- /media/sea_1a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/con-dog/clippy/HEAD/media/sea_1a.txt --------------------------------------------------------------------------------