diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 90c6f1b..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 3cf4fd5..f3c18f0 100644 --- a/.gitignore +++ b/.gitignore @@ -4,8 +4,3 @@ __pycache__/ app/uploads/** app/cover/** !app/cover/default_cover.gif -app/mydatabase.db -pyrqlite/ -whoosh/ -sqlalchemy-rqlite/ -rqlite* diff --git a/import_csv.py b/import_csv.py deleted file mode 100644 index de0df75..0000000 --- a/import_csv.py +++ /dev/null @@ -1,50 +0,0 @@ -#import click -#from flask import Flask -from app import app, db -from app.models import Book, Author, Stack -from csv import DictReader -import argparse -from app.cover import get_cover -import os - -ap = argparse.ArgumentParser("import csv into flask") -ap.add_argument("csv", help = "csv file to import") -ap.add_argument("--limit", type=int, default = None, help = "limit to x number of x") -args = ap.parse_args() -with open(args.csv) as f: - for row in DictReader(f): - cover = '' - if row['Filename']: - fullpath = os.path.join(app.config['UPLOAD_FOLDER'], row['Filename']) - name, file_extension = os.path.splitext(row['Filename']) - print ('get_cover', fullpath, name) - cover = get_cover(fullpath, name) - - book = Book(row['Title'], row['Filename'], cover, row['Format'], row['Category'], None, None, None, None, None, None) - - db.session.add(book) - authors = row['Author'].split(',') - authors = [x.strip() for x in authors] - for author in authors: - if author: - a = db.session.query(Author).filter_by(author_name=author).first() - if a == None: - a = Author(author_name=author) - db.session.add(a) - book.authors.append(a) - stacks = row['Stack'] - stacks = row['Stack'].split(',') - stacks = [x.strip() for x in stacks] - for stack in stacks: - if stack: - b = db.session.query(Stack).filter_by(stack_name=stack).first() - if b == None: - b = Stack(stack_name=stack, stack_description=None, stack_author=None) - - db.session.add(b) - book.stacks.append(b) -db.session.commit() - - - -#books = db.session.query(Book).all() diff --git a/init.py b/init.py deleted file mode 100755 index 9974305..0000000 --- a/init.py +++ /dev/null @@ -1,2 +0,0 @@ -from app import db -db.create_all() \ No newline at end of file diff --git a/init_db.sh b/init_db.sh deleted file mode 100644 index bf72ab5..0000000 --- a/init_db.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash -#rm app/mydatabase.db -mkdir -p app/uploads/cover -chmod 777 app/uploads/ -chmod 777 app/uploads/cover -python3 init.py -#python3 import_csv.py xpublibrary.csv diff --git a/rebuild.py b/rebuild.py deleted file mode 100644 index 3726790..0000000 --- a/rebuild.py +++ /dev/null @@ -1,57 +0,0 @@ - -import datetime -from app import app, models -import whoosh -import flask_whooshalchemyplus - - -""" -Rebuild all Whoosh search indices -Useful after manually importing data (side-stepping the SQLAlchemy ORM -and automatic Whoosh index updates) -If this is intended as a full rebuild, you should consider deleting the -Whoosh search database (as specified in app.config["WHOOSH_BASE"]) -before running the rebuild. This will ensure that no old/stale -data is left in the search indices (this process doesn't delete removed -data, only recreated search entries for current data). -""" - - -program_start = datetime.datetime.utcnow() - -def log(message): - logtime = datetime.datetime.utcnow() - logdiff = logtime - program_start - print("{0} (+{1:.3f}): {2}".format(logtime.strftime("%Y-%m-%d %H:%M:%S"), - logdiff.total_seconds(), - message)) - -def rebuild_index(model): - """Rebuild search index of Flask-SQLAlchemy model""" - log("Rebuilding {0} index...".format(model.__name__)) - primary_field = model.pure_whoosh.primary_key_name - searchables = model.__searchable__ - index_writer = flask_whooshalchemyplus.whoosh_index(app, model) - - # Fetch all data - entries = model.query.all() - - entry_count = 0 - with index_writer.writer() as writer: - for entry in entries: - index_attrs = {} - for field in searchables: - index_attrs[field] = str(getattr(entry, field)) - - index_attrs[primary_field] = str(getattr(entry, primary_field)) - writer.update_document(**index_attrs) - entry_count += 1 - - log("Rebuilt {0} {1} search index entries.".format(str(entry_count), model.__name__)) - - -if __name__ == "__main__": - model_list = [models.Book] - - for model in model_list: - rebuild_index(model) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 598cc25..ccdf4a6 100755 --- a/requirements.txt +++ b/requirements.txt @@ -20,4 +20,3 @@ flask-socketio==2.9.2 flask-whooshalchemyplus==0.7.5 python-dotenv==0.7.1 autocomplete==0.0.104 - diff --git a/run.py b/run.py index 61f7a27..0783e6f 100755 --- a/run.py +++ b/run.py @@ -1,3 +1,5 @@ #! /usr/bin/env python + from app import app, socketio -socketio.run(app,host="0.0.0.0", port=8080) + +socketio.run(app, host='0.0.0.0', port=8080) diff --git a/whoosh/Book/MAIN_a4w5sqptxsercdwd.seg b/whoosh/Book/MAIN_a4w5sqptxsercdwd.seg deleted file mode 100644 index e5c578e..0000000 Binary files a/whoosh/Book/MAIN_a4w5sqptxsercdwd.seg and /dev/null differ diff --git a/whoosh/Book/MAIN_batfnf5mpppsakmf.seg b/whoosh/Book/MAIN_batfnf5mpppsakmf.seg deleted file mode 100644 index b917c04..0000000 Binary files a/whoosh/Book/MAIN_batfnf5mpppsakmf.seg and /dev/null differ diff --git a/whoosh/Book/MAIN_fhbh9vqj4iulqeia.seg b/whoosh/Book/MAIN_fhbh9vqj4iulqeia.seg deleted file mode 100644 index 75f2068..0000000 Binary files a/whoosh/Book/MAIN_fhbh9vqj4iulqeia.seg and /dev/null differ diff --git a/whoosh/Book/MAIN_l6wkc4vqfvb2ihec.seg b/whoosh/Book/MAIN_l6wkc4vqfvb2ihec.seg deleted file mode 100644 index 0822128..0000000 Binary files a/whoosh/Book/MAIN_l6wkc4vqfvb2ihec.seg and /dev/null differ diff --git a/whoosh/Book/MAIN_taxstcerlfadcokk.seg b/whoosh/Book/MAIN_taxstcerlfadcokk.seg deleted file mode 100644 index a10c222..0000000 Binary files a/whoosh/Book/MAIN_taxstcerlfadcokk.seg and /dev/null differ diff --git a/whoosh/Book/_MAIN_4.toc b/whoosh/Book/_MAIN_4.toc deleted file mode 100644 index 06c4719..0000000 Binary files a/whoosh/Book/_MAIN_4.toc and /dev/null differ diff --git a/xpublibrary.csv b/xpublibrary.csv deleted file mode 100644 index 54f8003..0000000 --- a/xpublibrary.csv +++ /dev/null @@ -1,168 +0,0 @@ -Title,Author,Category,Format,OCR,Downloaded,Origin,Filename,Stack -The Qmail Handbook,Dave Sill,Technical,pdf,1,1,LibGen,, -Hardening Network Infrastructure: Bulletproof Your Systems Before You Are Hacked!,Wes Noonan,Technical,"chm, pdf",1,1,LibGen,,Make a library -Cocoa Programming for Mac OS X Second Edition,Aaron Hillegaas,Technical,pdf,1,1,LibGen,, -LDAP System Administration,Gerald Carter,Technical,pdf,1,1,LibGen,, -Learning Unix for Mac OS X,"Dave Taylor, Jerry Peek",Technical,pdf,1,1,LibGen,, -Mac OS X Panther for Unix Geeks,"Brian Jepson, Ernest E. Rothman",Technical,"chm, pdf",1,1,LibGen,, -Linux System Administration,"Tom Adelstein, Bill Lubanovic",Technical,pdf,1,1,LibGen,, -Managing and Using MYSQL,"Tim King, George Reese, Randy Yarger, Hugh E. Williams, Randy Jay Yarger",Technical,"chm, pdf",1,1,LibGen,, -MYSQL In a Nutshell,Russell Dyer,Technical,pdf,1,1,LibGen,,Make a library -Actionscript for Flash MX: The Definitive Guide,Colin Moock,Technical,pdf,1,1,LibGen,, -Programming Firefox,Kenneth C Feldt,Technical,pdf,1,1,LibGen,, -Learning PHP and MYSQL,Michele E Davis, Jon A Phillips,Technical,pdf,1,LibGen,, -Learning the Bash Shell,"Cameron Newham, Bill Rosenblatt",Technical,pdf,1,1,LibGen,, -GNU Emacs Pocket Reference,Debra Cameron,Technical,pdf,1,1,LibGen,, -SQL Pocket Guide,Jonathan Gennick,Technical,pdf,1,1,LibGen,, -HTML Pocket Reference,Jennifer Niederst Robbins,Technical,pdf,1,1,LibGen,, -Regular Expression Pocket Reference,Tony Stubblebine,Technical,"chm, pdf",1,1,LibGen,, -Apache 2 Pocket Reference,Andrew Ford,Technical,,,0,,, -CSS Pocket Reference,Eric A. Meyer,Technical,pdf,1,1,LibGen,, -vi Editor Pocket Reference,Arnold Robbins,Technical,"epub, pdf",1,1,LibGen,, -The Book of Inkscape,Dmitry Kirsanov,Technical,pdf,1,1,MOTW,, -Working with Mediawiki,Yaron Koren,Technical,pdf,1,1,LibGen,, -Beginning Game Development with Python and Pygame,Will McGugan,Technical,pdf,1,1,LibGen,, -"Game Programming with Python, Lua, and Ruby 1 edition",Gutschmidt T.,Technical,pdf,1,1,,, -Data Modeling for Everyone,Sharon Allen,Technical,,,0,,, -The Ultimate Guide to the Vi and Ex Text Editors,Hewlett-Packard,Technical,,,0,,, -Getting Gread Sounds: The Microphone Book,Tom Lubin,Technical,,,0,,, -How to Think Like a Computer Scientist,"Allen B. Downey, Jeffrey Elkner, Chris Meyers",Technical,pdf,1,1,LibGen,,Intro to PZI -Python Pocket Reference,Mark Lutz,Technical,pdf,,1,LibGen,, -Things That Talk,Lorraine Daston (Editor),Science/History,,,,,, -Instruments and the Imagination,Hankins & Silverman,Science/History,,,,,, -"Mind, Machines and Human Consciousness",Robert Nadeau,Science/History,,,,,, -The Psychopath Test,Jon Ronson,Science/History,pdf,1,1,LibGen,, -The Selfish Gene,Richard Dawkins,Science/History,pdf,1,1,LibGen,, -Pandora's Hope,Bruno Latour,Science/History,pdf,1,1,LibGen,, -The New Spirit of Capitalism,Luc Boltanski & Eve Chiapello,Science/History,pdf,1,1,LibGen,, -Distinction: A Social Critique of the Judgement of Taste,Pierre Bourdieu,Science/History,,,,,, -"The Political Economy of Media: Enduring Issues, Emerging Dilemmas",Robert W. McChesney,Science/History,,,,,, -The Dustbin of History,Greil Marcus,Science/History,,,,,, -Inventing The Victorians,Matthew Sweet,Science/History,,,,,, -Age of the Extremes: The Short Twentieth Century 1914-1991,Eric Hobsbawm,Science/History,pdf,1,1,LibGen,, -Lipstick Traces,Greil Marcus,Science/History,,,,,,Bed Chair Table -False Dawn: The Delusions of Global Capitalism,John Gray,Science/History,epub,1,1,LibGen,, -Debt: The First 5000 Years,David Graeber,Science/History,,,,,, -Georges Bataille: An Intellectual Biography,Michel Surya,Science/History,,,,,, -The Enlightenment Reader,,Science/History,,,,,, -The Century,Alain Badiou,Science/History,pdf,0,1,,, -Rethinking Media Pluralism,Karppinen,Science/History,,,,,, -The Philosophy of Symbolic Forms,Ernst Cassirer,Science/History,pdf,1,1,,, -Archaeology,"Olsen, Shanks, Webmoor, Witmore",Science/History,,,,,, -The Chomsky Reader,"Noam Chomsky, James Peck (Editor)",Science/History,epub,1,1,,, -The Society of Mind,Marvin Minsky,Science/History,pdf,1,1,,, -Interference: A Grand Scientific Musical Theory,Richard Merrick,Science/History,,,,,, -Understanding media economics,Gillian Doyle,Media studies,pdf,,1,Libgen,, -Convergence culture,Henry Jenkins,Media studies,pdf,,1,Libgen,, -Digital Labor,Trebor Scholz,Media studies,pdf,,1,MOTW,, -The culture of connectivity,Jose van Dijck,Media studies,pdf,,1,MOTW,, -Anti-Media,Florian Cramer,Media studies,,,0,,, -Holding On to Reality: The Nature of Information at the Turn of the Millennium,Albert Borgman,Media studies,pdf,,1,Libgen,, -Organized Networks,Ned Rossiter,Media studies,pdf,,1,MOTW,, -Over Mediatheorie,Arjen Mulder,Media studies,,,0,,, -Post Truth,Matthew d'Ancona,Media studies,,,0,,, -Weapons of Math Destruction,Cathy O'Neil,Media studies,EPUB,,1,Libgen,, -Media Ecologies: Materialist Energies in Art and Technoculture,Matthew Fuller,Media studies,pdf,,1,MOTW,, -The Internet Is Not The Answer,Andrew Keen,Media studies,pdf,,1,Libgen,, -Wired for war - Robotics revolution and conflict in the 21st century,P. W. Singer,Media studies,EPUB,,1,Libgen,, -Interface Culture,Steven Johnson,Media studies,pdf,,1,MOTW,, -The Interface Effect,Alexander R. Galloway,Media studies,pdf,,1,Libgen,, -Present Shock: When Everything Happens Now,Douglas Rushkoff,Media studies,EPUB,,1,MOTW,, -Bastard Culture!: How User Participation Transforms Cultural Production,Mirko Tobias Schäfer,Media studies,pdf,,1,Libgen,, -Media Virus! Hidden Agendas in Popular Culture,Douglas Rushkoff,Media studies,pdf,,1,Libgen,, -Loving Big Brother: Surveillance Culture and Performance Space,John McGrath,Media studies,pdf,,1,Libgen,, -Selections from Cultural Writings,Antonio Gramsci,Media studies,,,0,,, -Dark Money: The Hidden History of the Billionairs behind the Rise of the Radical Right,Jane Mayer,Media studies,EPUB,,1,Libgen,, -Walter Benjamin for beginners,"Howard Caygill, Alex Coles, Richard Appignanesi",Media studies,,,0,,, -Cyburbia,James Harkin,Media studies,,,0,,, -Mondothèque::a radiated book/un livre irradiant/een irradiërend boek,"Matthew Fuller +, Sînziana Păltineanu +, Michael Murtaugh +, Dennis Pohl +, ShinJoung Yeo +, Femke Snelting +, Natacha Roussel +, Dick Reckard +, Geraldine Juárez +, Tomislav Medak +, Marcell Mars +, Dušan Barok + and Alexia de Visscher +",Media studies,pdf,1,1,Monoskop,, -Save and Forget,Thomas Walskaar,Media studies,pdf,1,1,Academia.edu,, -The World Explained,Erick Beltran,Media studies,,,0,,, -Information - Documents of Contemporary Art,Sarah Cook,Media studies,,,0,,, -Postscript on the Societies of Control ,Gilles Deleuze,Media studies,pdf,1,1,Jstor,, -Ethics Subjectivity and Truth,Michel Foucault,Media studies,pdf,,1,Monoskop,, -The Infinite Conversation,Maurice Blanchot,Media studies,pdf,,1,MOTW,, -Identity and Difference,Martin Heidegger,Media studies,pdf,,1,Someones personal blog that exposed an attachment link via Google,, -Jean Paul A Reader,Timothy J. Casey (ed.),Media studies,,,0,,, -The Ear of the Other,Jaques Derrida,Media studies,pdf,,1,Monoskop,, -Statements on Appropriation (London Version),Michaelis Pichler,Media studies,,,0,,, -An Introduction to Western Philosophy,Antony Flew,Philosophy,,,0,,, -The Postmodern Turn,Best Kellner,Philosophy,,,0,,, -Ideology,Terry Eagleton,Philosophy,pdf,,1,Libgen,, -Ludwig Wittgenstein,Ray Monk,Philosophy,pdf,,1,Libgen,, -The Human Condition,Hannah Arendt,Philosophy,pdf,,1,Libgen,, -Introducing Foucault,"Chris Horrocks, Zoran Jevtic",Philosophy,pdf,,1,Libgen,, -The Lives of Michel Foucault,David Mcey,Philosophy,pdf,,1,Libgen,, -Discipline and Punish,Michel Foucault,Philosophy,pdf,,1,Libgen,, -Logic of Scientific Discovery,Popper K.,Philosophy,pdf,,1,Libgen,, -Intensive Science and Virtual Philosophy,Manuel DeLanda,Philosophy,pdf,,1,Libgen,, -Kant and the Platypus: Essays on Language and Cognition,"Umberto Eco, Alastair McEwen",Philosophy,pdf,,1,Libgen,, -Turning Back the Clock,Umberto Eco,Philosophy,,,0,,, -Travels in hyper reality : essays,"Umberto Eco, William Weave",Philosophy,pdf,,1,Libgen,, -On revolution,Hannah Arendt,Philosophy,pdf,,1,Libgen,, -Introducing Kant,Christopher Want, Andrzej Klimowski,Philosophy,pdf,1,Libgen,, -The Perfect Crime,Jean Baudrillard,Philosophy,pdf,,1,Libgen,, -Introducing Baudrillard,"Chris Horrocks, Zoran Jevtic",Philosophy,pdf,,1,Libgen,, -The structure of scientific revolutions,Thomas S. Kuhn,Philosophy,pdf,,1,Libgen,, -The World Turned Upside Down: Radical Ideas During the English Revolution,Christopher Hill,Philosophy,pdf,,1,Libgen,, -On Wine and Hishish,Charles Baudelaire,Philosophy,,,0,,, -Lacan For Beginners,"Phillip Hill, David Leach",Philosophy,pdf,,1,Libgen,, -Late Marxism,Frederic Jameson,Philosophy,,,0,,, -Adorno,Martin Jay,Philosophy,,,0,,, -Dialectic of Enlightenment,"Max Horkheimer, Theodor Adorno, Gunzelin Noeri, Edmund Jephcott",Philosophy,pdf,,1,Libgen,, -Walter Benjamin: A Biography,Momme Brodersen,Philosophy,,,0,,, -A Thousand Years of Nonlinear History,Manuel De Landa,Philosophy,pdf,,1,Libgen,, -Barthes: Selected Writings,Roland Barthes,Philosophy,,,0,,, -Camera Lucida: Reflections on Photography,Roland Barthes,Philosophy,pdf,,1,Libgen,, -Derrida For Beginners,"Jim Powell, Van Howell",Philosophy,pdf,,1,Libgen,, -System and Writing in the Philosophy of Jacques Derrida,Christopher Johnson,Philosophy,pdf,,1,Libgen,, -Exploring Humans,"H. Dooremalen , H. de Regt , MP Schouten",Philosophy,,,0,,, -"Urheberrecht im Alltag: Kopieren, bearbeiten, selber machen",Valie Djordjevic / Robert A. Gehring / Volker Grassmuck / Till Kreutzer / Matthias Spielkamp (Hrsg.),Computer culture,,,,,, -DATA browser 02: Engineering Culture,"Joasia Krysa, Geoff Cox (editors)",Computer culture,pdf,1,1,Monoskop,, -DATA browser 01: Economising Culture,"Joasia Krysa, Geoff Cox (editors)",Computer culture,pdf,1,1,data browser site,, -"The Mag.net reader 3, Processual Publishing. Actual Gesture","Alessandro Ludovico, Nat Muller (editors)",Computer culture,pdf,1,1,post digital print,, -New Media Art,"Mark Tribe, Reena Jana",Computer culture,,,,,, -Digital Prohibition,Carolyn Guertin,Computer culture,pdf,1,1,academia.edu,, -The Cathedral & The Bazaar,Eric Raymond,Computer culture,pdf,1,1,Monoskop,, -The Code Book,Simon Singh,Computer culture,pdf,1,1,LibGen,, -DiY Survival // There is No Subculture Only Subversion,"Betti Marenko, Leon C6",Computer culture,pdf,1,1,academia.edu,, -Guide to Open Content Licenses,Lawrence Liang,Computer culture,pdf,1,1,,, -DATA browser 3: Curating Immateriality,Joasia Krysa (editor),Computer culture,pdf,1,1,Monoskop,, -Formen interaktiver Medienkunst,"Gendolla, Schmirz, Schneider, Spangenberg (Hg)",Computer culture,pdf,1,1,,, -Oulipo Compendium,"Harry Mathews, Alastair Brotchie",design / writing / publishing,,,,,, -Convergence: The International Journal of Research into New Media Technologies - Volume 12 Number 3 August 2004,,Computer culture,,,,,, -Perl for Web Site Management,,Computer culture,,,,,, -Seven Hundred Penguins,,design / writing / publishing,,,,,, -Mondotheque: a radiated book / un livre irradiant / een iradierend boek,"André Castro, Sînziana Păltineanu,Dennis Pohl,Dick Reckard,Natacha Roussel,Femke Snelting,Alexia de Visscher",Computer culture,pdf,1,1,Monoskop,, -An Atlas of Typeforms,"James Sutton, Alan Bartram",design / writing / publishing,,,,,, -Structure of the Visual Book,Keith Smith,design / writing / publishing,,,,,, -The Uses of Literacy,Richard Hoggart,design / writing / publishing,pdf,0,1,Monoskop,, -Control and Freedom: Power and Paranoia in the Age of Fiber Optics,Wendy Hui Kyong Chun,desk,pdf,1,1,LibGen,, -The New Media Reader,"Noah Wardrip-Fruin, Nick Montfort (editors)",desk,pdf,1,1,LibGen,, -Art and Electronic Media,Edward A. Shanken,Art,,,0,,, -The Situationist City,Simon Sadler,Art,pdf,1,1,Monoskop,, -The Absolute Report: Time Space Code Memory,,Art,,1,1,Monoskop,, -Ashes and Broken Brickwork of a Logical Theory,Susanne Kriemann,Art,,,0,,, -Surrealist Painters and Poets: An Anthology,Mary Ann Caws,Art,,,1,LibGen,, -Guy Debord and the Situationists International,Tom McDonough,Art,,1,1,MOTW,, -A Bed a Chair and a Table,"Natasha Berting, Angeliki Diakrousi, Joca van der Horst, Alexander Roidl, Alice Strete, Zalan Szakacs",Special Issue,,1,1,Special Issue,,Bed Chair Table -Software Studies \ a lexicon,Matthew Fuller,Desk,pdf,1,1,,, -"The Rise of the Network Society, With a New Preface: Volume I: The Information Age: Economy, Society, and Culture (Information Age Series)",Manuel Castells,Desk,"epub, pdf",1,1,Libgen,, -I Read Where I Am: Exploring New Information Cultures,"Andrew Blauvelt (Author), Mieke Gerritzen (Editor), Geert Lovink (Editor), Minke Kampman (Editor)",Desk,pdf,1,1,Libgen,, -"»Present Continuous Past(s)«: Media Art. Strategies of Presentation, Mediation and Dissemination","Ursula Frohne, Mona Schieren, Jean-François Guiton (eds.)",Desk,pdf,1,1,Libgen,, -exquisite_code,exquisite_code collective,Desk,book,,,Aymeric,, -Uncreative Writing,Kenneth Goldsmith,Digital (Steve Trim 2 reading),epub,1,1,Steve,, -The Electronic Revolution,William Burroughs,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -The Invisible Generation,William Burroughs,Digital (Steve Trim 2 reading),pdf,0,1,Steve,, -Cybernetics & Ghosts,Italo Calvino,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -Digital Culture,Charlie Gere,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -A Preface to Plato,Eric Havelock,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -Writing Machines,Katherine Hayles,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -"Gramophone, Film, Typewriter",Friedrich Kittler,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -Literature Media,Friedrich Kittler,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -"iSpace: Printed English after Joyce, Shannon, Derrida",Lydia Liu,Digital (Steve Trim 2 reading),pdf,1,1,Steve,, -Orality and Literacy,Walter Ong,Digital (Steve Trim 2 reading),epub,1,1,Steve,, -International Picture Language,Otto Neurath,Digital (Steve Trim 2 reading),pdf,0,1,Steve,, -Protocol,Alexander R. Galloway,Media studies,pdf,1,1,Timo Klok/Monoskop,, -A Prehistory of the Cloud,Tung-Hui Hu,Media Studies (Femke Trim 3),pdf,1,1,Libgen,, -Paratexts: Thresholds of Interpretation,Gerard Genette,"Literature, Culture, Theory ",pdf,1,1,Memory of the World,, diff --git a/xpublibrary_including_filelinks.csv b/xpublibrary_including_filelinks.csv deleted file mode 100644 index 89a31c1..0000000 --- a/xpublibrary_including_filelinks.csv +++ /dev/null @@ -1,171 +0,0 @@ -id,title,authors,year_published,category,fileformat,OCR,Downloaded,Origin,file -,Mac OS X Leopard Edition,David Pogue,2009,Technical,.pdf,1,1,LibGen,David Pogue-Mac OS X Snow Leopard_ The Missing Manual-Pogue Press (2009).pdf -,The Qmail Handbook,Dave Sill,2002,Technical,.pdf,1,1,LibGen,Dave Sill (auth.)-The qmail Handbook-Apress (2002).pdf -,Hardening Network Infrastructure: Bulletproof Your Systems Before You Are Hacked!,Wes Noonan,2004,Technical,.pdf,1,1,LibGen,Hardening Network Infrastructure @Team LiB - by Wesley J. Noonan.pdf -,Cocoa Programming for Mac OS X Second Edition,Aaron Hillegaas,2004,Technical,.pdf,1,1,LibGen,Aaron Hillegass-Cocoa programming for Mac OS X-Addison-Wesley Professional (2004).pdf -,LDAP System Administration,Gerald Carter,2003,Technical,.pdf,1,1,LibGen,Gerald Carter-LDAP System Administration-O Reilly Media (2003).pdf -,Learning Unix for Mac OS X,Dave Taylor | Jerry Peek,2002,Technical,.pdf,1,1,LibGen,"Dave Taylor, Jerry Peek-Learning Unix for Mac OS X-O'Reilly Media (2002).pdf" -,Mac OS X Panther for Unix Geeks,Brian Jepson | Ernest E. Rothman,2004,Technical,.pdf,1,1,LibGen,"O'Reilly _ Mac OS X Panther for Unix Geeks - By Brian Jepson, Ernest E. Rothman.pdf" -,Linux System Administration,Tom Adelstein | Bill Lubanovic,2007,Technical,.pdf,1,1,LibGen,"Tom Adelstein, Bill Lubanovic-Linux System Administration-O'Reilly (2007).pdf" -,Managing and Using MYSQL,Tim King | George Reese | Randy Yarger | Hugh E. Williams | Randy Jay Yarger,2002,Technical,.pdf,1,1,LibGen,"Managing and Using MySQL, 2nd Edition (RuB - Unknown.pdf" -,MYSQL In a Nutshell,Russell Dyer,2008,Technical,.pdf,1,1,LibGen,Russell Dyer-MYSQL in a Nutshell (In a Nutshell (O'Reilly))-O'Reilly Media (2008).pdf -,Actionscript for Flash MX: The Definitive Guide,Colin Moock,2002,Technical,.pdf,1,1,LibGen,"Colin Moock-ActionScript for Flash MX_ The Definitive Guide, Second Edition-O'Reilly Media (2002).pdf" -,Programming Firefox,Kenneth C Feldt,2007,Technical,.pdf,1,1,LibGen,Kenneth C Feldt-Programming Firefox-O'Reilly (2007).pdf -,Learning PHP and MYSQL,Michele E Davis | Jon A Phillips,2007,Technical,.pdf,1,1,LibGen,Michele E Davis_ Jon A Phillips-Learning PHP and MySQL-O'Reilly (2007).pdf -,Learning the Bash Shell,Cameron Newham | Bill Rosenblatt,2005,Technical,.pdf,1,1,LibGen,"Cameron Newham, Bill Rosenblatt-Learning the Bash Shell-O'Reilly Media (1995).pdf" -,GNU Emacs Pocket Reference,Debra Cameron,1999,Technical,.pdf,1,1,LibGen,Debra Cameron-GNU Emacs Pocket Reference-O'Reilly (1999).pdf -,SQL Pocket Guide,Jonathan Gennick,2010,Technical,.pdf,1,1,LibGen,(Pocket Guides) Jonathan Gennick-SQL Pocket Guide -O'Reilly Media (2010).pdf -,HTML Pocket Reference,Jennifer Niederst Robbins,2002,Technical,.pdf,1,1,LibGen,Jennifer Niederst Robbins-HTML Pocket Reference-Oreily (2002).pdf -,Regular Expression Pocket Reference,Tony Stubblebine,2003,Technical,.pdf,1,1,LibGen,O'Reilly _ Regular Expression Pocket Refer - By Tony Stubblebine.pdf -,Apache 2 Pocket Reference,Andrew Ford,,Technical,,,0,, -,CSS Pocket Reference,Eric A. Meyer,2007,Technical,.pdf,1,1,LibGen,Eric A. Meyer-CSS pocket reference-Oreilly (2007).pdf -,vi Editor Pocket Reference,Arnold Robbins,1998,Technical,.pdf,1,1,LibGen,vi Editor Pocket Reference - Arnold Robbins.pdf -,The Book of Inkscape,Dmitry Kirsanov,2009,Technical,.pdf,1,1,MOTW,The Book of Inkscape_ The Defin - Dmitry Kirsanov.pdf -,Working with Mediawiki,Yaron Koren,2014,Technical,.pdf,1,1,LibGen,Yaron Koren-Working with MediaWiki-WikiWorks Press (2014).pdf -,Beginning Game Development with Python and Pygame,Will McGugan,2007,Technical,.pdf,1,1,LibGen,Will McGugan-Beginning Game Development with Python and Pygame-Apress (2007).pdf -,"Game Programming with Python, Lua, and Ruby 1 edition",Gutschmidt T.,2003,Technical,.pdf,1,1,LibGen,"Gutschmidt T.-Game Programming with Python, Lua, and Ruby 1 edition-Course Technology PTR (2003).pdf" -,Data Modeling for Everyone,Sharon Allen,,Technical,,,0,, -,The Ultimate Guide to the Vi and Ex Text Editors,Hewlett-Packard,,Technical,,,0,, -,Getting Gread Sounds: The Microphone Book,Tom Lubin,,Technical,,,0,, -,How to Think Like a Computer Scientist,Allen B. Downey | Jeffrey Elkner | Chris Meyers,2002,Technical,.pdf,1,1,LibGen,"Allen B. Downey, Jeffrey Elkner, Chris Meyers-How to think like a computer scientist_ learning with python-Green Tea Press (2002).pdf" -,Python Pocket Reference,Mark Lutz,2009,Technical,.pdf,,1,LibGen,(Pocket Reference O'Reilly) Mark Lutz-Python Pocket Reference-O'Reilly (2009).pdf -,Things That Talk,Lorraine Daston (Editor),2004,"Science, History",,,,, -,The Social Construction of What?,Ian Hacking,2000,"Science, History",.pdf,1,1,LibGen,Hacking_TheSocialConstructionofWhat.pdf -,Instruments and the Imagination,Hankins & Silverman,1999,"Science, History",,,,, -,"Mind, Machines and Human Consciousness",Robert Nadeau,1991,"Science, History",,,,, -,The Psychopath Test,Jon Ronson,2011,"Science, History",.pdf,1,1,LibGen,Ronson_ThePsychopathTest.pdf -,The Selfish Gene,Richard Dawkins,1989,"Science, History",.pdf,1,1,LibGen,Dawkins_TheSelfishGene.pdf -,Pandora's Hope,Bruno Latour,1999,"Science, History",.pdf,1,1,LibGen,Latour_Pandora'sHope.pdf -,The New Spirit of Capitalism,Luc Boltanski | Eve Chiapello,2005,"Science, History",.pdf,1,1,LibGen,Boltanski_Chiapello_TheNewSpiritofCapitalism.pdf -,Distinction: A Social Critique of the Judgement of Taste,Pierre Bourdieu,2013,"Science, History",,,,, -,"The Political Economy of Media: Enduring Issues, Emerging Dilemmas",Robert W. McChesney,2008,"Science, History",,,,, -,The Dustbin of History,Greil Marcus,1995,"Science, History",,,,, -,Inventing The Victorians,Matthew Sweet,2001,"Science, History",,,,, -,Age of the Extremes: The Short Twentieth Century 1914-1991,Eric Hobsbawm,1994,"Science, History",.pdf,1,1,LibGen,Hobsbawm_AgeofExtremes.pdf -,Lipstick Traces: A secret History of the Twentieth Century,Greil Marcus,1989,"Science, History",,,,, -,False Dawn: The Delusions of Global Capitalism,John Gray,2009,"Science, History",.epub,1,1,LibGen,Gray_FalseDawn.epub -,Debt: The First 5000 Years,David Graeber,2014,"Science, History",,,,, -,Georges Bataille: An Intellectual Biography,Michel Surya,2002,"Science, History",,,,, -,The Enlightenment Reader,,,"Science, History",,,,, -,The Century,Alain Badiou,2005,"Science, History",.pdf,0,1,,Badiou_TheCentury.pdf -,Rethinking Media Pluralism,Kari Karppinen,2000,"Science, History",,,,, -,The Philosophy of Symbolic Forms,Ernst Cassirer,1953,Philosophy,.pdf,1,1,,Cassirer_ThePhilosophyofSymbolicFormsVol1.pdf -,Archaeology,Bjørnar Olsen | ‎Michael Shanks | ‎Timothy Webmoor | Christopher Witmore,2012,"Science, History",,,,, -,The Chomsky Reader,Noam Chomsky | James Peck (Editor),2010,"Science, History",.epub,1,1,,Chomsky_TheChomskyReader.epub -,The Society of Mind,Marvin Minsky,1998,"Science, History",.pdf,1,1,,Minsky_Thesocietyofmind.pdf -,Interference: A Grand Scientific Musical Theory,Richard Merrick,2009,"Science, History",,,,, -,Understanding media economics,Gillian Doyle,2002,Media studies,.pdf,,1,Libgen,Gillian Doyle-Understanding Media Economics-Sage Publications Ltd (2002).pdf -,Convergence culture,Henry Jenkins,2008,Media studies,.pdf,,1,Libgen,Henry Jenkins-Convergence Culture_ Where Old and New Media Collide (2008).pdf -,Digital Labor: The Internet as Playground and Factory,Trebor Scholz,2013,Media studies,.pdf,,1,MOTW,Digital Labor_ The Internet as Playground - Trebor Scholz.pdf -,The Culture of Connectivity,Jose van Dijck,2013,Media studies,.pdf,,1,MOTW,The Culture of Connectivity_ A - Jose van Dijck.pdf -,Anti-Media: Ephemera on Speculative Arts,Florian Cramer,2013,Media studies,,,0,, -,Holding On to Reality: The Nature of Information at the Turn of the Millennium,Albert Borgmann,2007,Media studies,.pdf,,1,Libgen,Albert Borgmann-Holding On to Reality_ The Nature of Information at the Turn of the Millennium-University Of Chicago Press (2000)..pdf -,Organized Networks,Ned Rossiter,,Media studies,.pdf,,1,MOTW,"Organized Networks_ Media Theory, Creative Labour, New Institutions - Ned Rossiter.pdf" -,Over Mediatheorie,Arjen Mulder,,Media studies,,,0,, -,Post Truth,Matthew d'Ancona,,Media studies,,,0,, -,Weapons of Math Destruction,Cathy O'Neil,2016,Media studies,.epub,,1,Libgen,Cathy O’Neil-Weapons of Math Destruction_ How Big Data Increases Inequality and Threatens Democrac (2016).epub -,Media Ecologies: Materialist Energies in Art and Technoculture,Matthew Fuller,,Media studies,.pdf,,1,MOTW,Media Ecologies_ Materialist Energies in A - Matthew Fuller.pdf -,The Internet Is Not The Answer,Andrew Keen,2015,Media studies,.pdf,,1,Libgen,Andrew Keen-The Internet Is Not the Answer-Atlantic Monthly Press (2015)..pdf -,Wired for war - Robotics revolution and conflict in the 21st century,P. W. Singer,2009,Media studies,.epub,,1,Libgen,P. W. Singer-Wired for war - Robotics revolution and conflict in the 21st century -Penguin Press (2009).epub -,Interface Culture,Steven Johnson,,Media studies,.pdf,,1,MOTW,Interface Culture - Steven Johnson.pdf -,The Interface Effect,Alexander R. Galloway,2012,Media studies,.pdf,,1,Libgen,Alexander R. Galloway-The Interface Effect-Polity (2012)..pdf -,Present Shock: When Everything Happens Now,Douglas Rushkoff,,Media studies,.epub,,1,MOTW,Douglas Rushkoff-Media Virus! (1996).pdf -,Bastard Culture!: How User Participation Transforms Cultural Production,Mirko Tobias Schäfer,2011,Media studies,.pdf,,1,Libgen,Mirko Tobias Schäfer-Bastard Culture!_ How User Participation Transforms Cultural Production-Amsterdam University Press (2011).pdf -,Media Virus! Hidden Agendas in Popular Culture,Douglas Rushkoff,,Media studies,.pdf,,1,Libgen,Present Shock_ When Everything - Douglas Rushkoff.epub -,Loving Big Brother: Surveillance Culture and Performance Space,John McGrath,2004,Media studies,.pdf,,1,Libgen,John McGrath-Loving Big Brother_ Surveillance Culture and Performance Space-Routledge (2004).pdf -,Selections from Cultural Writings,Antonio Gramsci,,Media studies,,,0,, -,Dark Money: The Hidden History of the Billionairs behind the Rise of the Radical Right,Jane Mayer,,Media studies,.epub,,1,Libgen,Dark Money_ The Hidden History - Jane Mayer.epub -,Walter Benjamin for beginners,Howard Caygill | Alex Coles | Richard Appignanesi,,Media studies,,,0,, -,What is Situationism? A Reader,Stewart Home (ed.),,Media studies,.pdf,1,1,MOTW,What Is Situationism_ A Reader - Stewart Home (Ed.).pdf -,Cyburbia,James Harkin,,Media studies,,,0,, -,Mondothèque::a radiated book/un livre irradiant/een irradiërend boek,Matthew Fuller + | Sînziana Păltineanu + | Michael Murtaugh + | Dennis Pohl + | ShinJoung Yeo + | Femke Snelting + | Natacha Roussel + | Dick Reckard + | Geraldine Juárez + | Tomislav Medak + | Marcell Mars + | Dušan Barok + and Alexia de Visscher +,2016,Media studies,.pdf,1,1,Monoskop,Mondotheque_A_Radiated_Book_Un_livre_irradiant_Een_irradierend_boek_2016.pdf -,Save and Forget,Thomas Walskaar,,Media studies,.pdf,1,1,Academia.edu,Save_and_Forget.pdf -,The World Explained,Erick Beltran,,Media studies,,,0,, -,Information - Documents of Contemporary Art,Sarah Cook,,Media studies,,,0,, -,Postscript on the Societies of Control ,Gilles Deleuze,,Media studies,.pdf,1,1,Jstor,postscript_on_societies_of_control.pdf -,Ethics Subjectivity and Truth,Michel Foucault,,Media studies,.pdf,,1,Monoskop,Foucault_Michel_Ethics_Subjectivity_and_Truth.pdf -,The Infinite Conversation,Maurice Blanchot,,Media studies,.pdf,,1,MOTW,The Infinite Conversation - Maurice Blanchot.pdf -,Identity and Difference,Martin Heidegger,1969,Media studies,.pdf,,1,Someones personal blog that exposed an attachment link via Google,1969_Heidegger_Identity+and+Difference..pdf -,Jean Paul A Reader,Timothy J. Casey (ed.),,Media studies,,,0,, -,The Ear of the Other,Jaques Derrida,1985,Media studies,.pdf,,1,Monoskop,Derrida_Jacques_Ear_of_the_Other_1985..pdf -,Statements on Appropriation (London Version),Michaelis Pichler,,Media studies,,,1,Pichler_Statements_on_Appropriation.pdf, -,An Introduction to Western Philosophy,Antony Flew,,Philosophy,,,0,, -,The Postmodern Turn,Best Kellner,,Philosophy,,,0,, -,Ideology,Terry Eagleton,,Philosophy,.pdf,,1,Libgen, -,Ludwig Wittgenstein,Ray Monk,,Philosophy,.pdf,,1,Libgen, -,The Human Condition,Hannah Arendt,,Philosophy,.pdf,,1,Libgen, -,Introducing Foucault,Chris Horrocks | Zoran Jevtic,,Philosophy,.pdf,,1,Libgen, -,The Lives of Michel Foucault,David Mcey,,Philosophy,.pdf,,1,Libgen, -,Discipline and Punish,Michel Foucault,,Philosophy,.pdf,,1,Libgen, -,Logic of Scientific Discovery,Popper K.,,Philosophy,.pdf,,1,Libgen, -,Intensive Science and Virtual Philosophy,Manuel DeLanda,,Philosophy,.pdf,,1,Libgen, -,Kant and the Platypus: Essays on Language and Cognition,Umberto Eco | Alastair McEwen,,Philosophy,.pdf,,1,Libgen, -,Turning Back the Clock,Umberto Eco,,Philosophy,,,0,, -,Travels in hyper reality : essays,Umberto Eco | William Weave,,Philosophy,.pdf,,1,Libgen, -,On revolution,Hannah Arendt,,Philosophy,.pdf,,1,Libgen, -,Introducing Kant,Christopher Want; Andrzej Klimowski,,Philosophy,.pdf,,1,Libgen, -,The Perfect Crime,Jean Baudrillard,,Philosophy,.pdf,,1,Libgen, -,Introducing Baudrillard,Chris Horrocks | Zoran Jevtic,,Philosophy,.pdf,,1,Libgen, -,The structure of scientific revolutions,Thomas S. Kuhn,,Philosophy,.pdf,,1,Libgen, -,The World Turned Upside Down: Radical Ideas During the English Revolution,Christopher Hill,,Philosophy,.pdf,,1,Libgen, -,On Wine and Hishish,Charles Baudelaire,,Philosophy,,,0,, -,Lacan For Beginners,Phillip Hill | David Leach,,Philosophy,.pdf,,1,Libgen, -,Late Marxism,Frederic Jameson,,Philosophy,,,0,, -,Adorno,Martin Jay,,Philosophy,,,0,, -,Dialectic of Enlightenment,Max Horkheimer | Theodor Adorno | Gunzelin Noeri | Edmund Jephcott,,Philosophy,.pdf,,1,Libgen, -,Walter Benjamin: A Biography,Momme Brodersen,,Philosophy,,,0,, -,A Thousand Years of Nonlinear History,Manuel De Landa,,Philosophy,.pdf,,1,Libgen, -,Barthes: Selected Writings,Roland Barthes,,Philosophy,,,0,, -,Camera Lucida: Reflections on Photography,Roland Barthes,,Philosophy,.pdf,,1,Libgen, -,Derrida For Beginners,Jim Powell | Van Howell,,Philosophy,.pdf,,1,Libgen, -,System and Writing in the Philosophy of Jacques Derrida,Christopher Johnson,,Philosophy,.pdf,,1,Libgen, -,Exploring Humans,H. Dooremalen | H. de Regt | MP Schouten,,Philosophy,,,0,, -,"Urheberrecht im Alltag: Kopieren, bearbeiten, selber machen",Valie Djordjevic / Robert A. Gehring / Volker Grassmuck / Till Kreutzer / Matthias Spielkamp (Hrsg.),,Computer culture,,,,, -,DATA browser 02: Engineering Culture,Joasia Krysa | Geoff Cox (editors),2005,Computer culture,.pdf,1,1,Monoskop,GeoffKrysa_EngineeringCulture.pdf -,DATA browser 01: Economising Culture,Joasia Krysa | Geoff Cox (editors),2004,Computer culture,.pdf,1,1,data browser site, -,"The Mag.net reader 3, Processual Publishing. Actual Gesture",Alessandro Ludovico | Nat Muller (editors),2008,Computer culture,.pdf,1,1,post digital print,magnet_reader_3_processual_publishing_actual_gestures -,New Media Art,Mark Tribe | Reena Jana,2009,Computer culture,,,,, -,Digital Prohibition: Piracy and Authorship in New Media Art,Carolyn Guertin,2012,Computer culture,.pdf,1,1,academia.edu,Digital_Prohibition_The_New_Prohibition.pdf -,The Cathedral & The Bazaar,Eric Raymond,2001,Computer culture,.pdf,1,1,Monoskop,Raymond_The_Cathedral_and_the_Bazaar.pdf -,The Code Book,Simon Singh,2002,Computer culture,.pdf,1,1,LibGen,Singh_The code book.pdf -,DiY Survival // There is No Subculture Only Subversion,Betti Marenko,2006,Computer culture,.pdf,1,1,academia.edu,DIY_Survival._There_is_No_Subculture_Onl.pdf -,Guide to Open Content Licenses,Lawrence Liang,2004,Computer culture,.pdf,1,1,,Liang_guidetoopencontentlicenses.pdf -,DATA browser 3: Curating Immateriality,Joasia Krysa (editor),2006,Computer culture,.pdf,1,1,Monoskop,Krysa_DB03CuratingImmateriality.pdf -,Formen interaktiver Medienkunst,Gendolla | Schmirz | Schneider | Spangenberg (Hg),2001,Computer culture,.pdf,1,1,http://theartgalleryofknoxville.com/ocl_v1.2..pdf, -,Oulipo Compendium,Harry Mathews | Alastair Brotchie,,design / writing / publishing,,,,, -,Convergence: The International Journal of Research into New Media Technologies - Volume 12 Number 3 August 2004,,,Computer culture,,,,, -,Perl for Web Site Management,,,Computer culture,,,,, -,Seven Hundred Penguins,,,design / writing / publishing,,,,, -,Mondotheque: a radiated book / un livre irradiant / een iradierend boek,André Castro | Sînziana Păltineanu | Dennis Pohl | Dick Reckard | Natacha Roussel | Femke Snelting | Alexia de Visscher,,Computer culture,.pdf,1,1,Monoskop,Mondotheque_A_Radiated_Book_Un_livre_irradiant_Een_irradierend_boek_2016.pdf -,An Atlas of Typeforms,James Sutton | Alan Bartram,,design / writing / publishing,,,,, -,Structure of the Visual Book,Keith Smith,,design / writing / publishing,,,,, -,The Uses of Literacy,Richard Hoggart,,design / writing / publishing,.pdf,0,1,Monoskop,Hoggart_The Uses of Literacy.pdf -,Control and Freedom: Power and Paranoia in the Age of Fiber Optics,Wendy Hui Kyong Chun,,Computer culture,.pdf,1,1,LibGen,Chun_ControlandFreedom..pdf -,The New Media Reader,Noah Wardrip-Fruin | Nick Montfort (editors),,Media studies,.pdf,1,1,LibGen,"Noah Wardrip-Fruin, Nick Montfort-The New Media Reader (2003).pdf" -,Art and Electronic Media,Edward A. Shanken,,Art,,,0,, -,The Situationist City,Simon Sadler,1998,Art,.pdf,1,1,Monoskop,Sadler_Simon_The_Situationist_City_1998.pdf -,The Absolute Report: Time Space Code Memory,,2006,Art,,1,1,Monoskop,Apsolutno_eds_The_Absolute_Report_Time_Space_Code_Memory.pdf -,Ashes and Broken Brickwork of a Logical Theory,Susanne Kriemann,,Art,,,0,, -,Surrealist Painters and Poets: An Anthology,Mary Ann Caws,2001,Art,,,1,LibGen,Mary Ann Caws-Surrealist Painters and Poets_ An Anthology (2001).pdf -,Guy Debord and the Situationists International,Tom McDonough,2002,Art,,1,1,MOTW,Guy Debord and the Situationist Internatio - Tom McDonough.pdf -,A Bed a Chair and a Table,Natasha Berting | Angeliki Diakrousi | Joca van der Horst | Alexander Roidl | Alice Strete | Zalan Szakacs,2017,XPUB Special Issue,,1,1,Special Issue,PG_25_final_all_pages.pdf -,Software Studies \ a lexicon,Matthew Fuller,,"Programming, Computer culture",.pdf,1,1,dm.ncl.ac.uk/courseblog/files/2010/02/softwarestudies..pdf, -,"The Rise of the Network Society, With a New Preface: Volume I: The Information Age: Economy, Society, and Culture (Information Age Series)",Manuel Castells,2010,"Literature, Theory, Computer culture",".epub, .pdf",1,1,Libgen,"Manuel Castells-The Rise of the Network Society, With a New Preface_ Volume I_ The Information Age_ Economy, Society, and Culture (Information Age Series)-Wiley-Blackwell (2010).pdf" -,I Read Where I Am: Exploring New Information Cultures,Andrew Blauvelt (Author) | Mieke Gerritzen (Editor) | Geert Lovink (Editor) | Minke Kampman (Editor),2011,"Literature, Theory, Computer culture",.pdf,1,1,Libgen,I Read Where I Am. Exploring New Informati - Various.pdf -,"Present Continuous Past(s): Media Art. Strategies of Presentation, Mediation and Dissemination",Ursula Frohne | Mona Schieren | Jean-François Guiton (eds.),2005,Media studies,.pdf,1,1,Libgen,"Ursula Frohne, Mona Schieren, Jean-François Guiton (eds.)-»Present Continuous Past(s)«_ Media Art. Strategies of Presentation, Mediation and Dissemination-Springer Vienna (2005).pdf" -,exquisite_code,exquisite_code collective,,"Programming, Literature",book,,,Aymeric, -,Uncreative Writing,Kenneth Goldsmith,,"Literature, Theory",.epub,1,1,Steve,"Goldsmith, Kenneth - Uncreative Writing.epub" -,The Electronic Revolution,William Burroughs,1970,"Literature, Theory",.pdf,1,1,Steve,Burroughs_Electronicrevolution.pdf -,The Invisible Generation,William Burroughs,,"Literature, Theory",.pdf,0,1,Steve,Burroughs_TheInvisibleGeneration.pdf -,Cybernetics & Ghosts,Italo Calvino,,"Literature, Theory, Cybernetics",.pdf,1,1,Steve,Calvino Cybernetics&Ghosts.pdf -,Digital Culture,Charlie Gere,2002,Media studies,.pdf,1,1,Steve,Charlie Gere digital-culture.pdf -,A Preface to Plato,Eric Havelock,1963,"Literature, Theory",.pdf,1,1,Steve,Havelock_Eric_A_Preface_to_Plato.pdf -,Writing Machines,Katherine Hayles,2002,Media studies,.pdf,1,1,Steve,Hayles_N_Katherine_Writing_Machines.pdf -,"Gramophone, Film, Typewriter",Friedrich Kittler,1999,Media studies,.pdf,1,1,Steve,Kittler_Gramophone filmtypewriter.pdf -,Literature Media,Friedrich Kittler,1997,Media studies,.pdf,1,1,Steve,Kittler_LiteratureMedia.pdf -,"iSpace: Printed English after Joyce, Shannon, Derrida",Lydia Liu,2006,Media studies,.pdf,1,1,Steve,Liu_iSpace.pdf -,Orality and Literacy,Walter Ong,,"Literature, Theory",.epub,1,1,Steve,OngWalter_Orality_Literacy.epub -,International Picture Language,Otto Neurath,1936,Media studies,.pdf,0,1,Steve,Neurath_InternationalPictureLanguage.pdf -,Protocol,Alexander R. Galloway,,Media studies,.pdf,1,1,Timo Klok/Monoskop, -,A Prehistory of the Cloud,Tung-Hui Hu,,Media Studies,.pdf,1,1,Libgen, -,Paratexts: Thresholds of Interpretation,Gerard Genette,,"Literature, Culture, Theory ",.pdf,1,1,Memory of the World, \ No newline at end of file diff --git a/xpublibrary_including_filelinks2.csv b/xpublibrary_including_filelinks2.csv deleted file mode 100644 index a4a7b16..0000000 --- a/xpublibrary_including_filelinks2.csv +++ /dev/null @@ -1,171 +0,0 @@ -id,title,authors,year_published,category,fileformat,OCR,Downloaded,Origin,file,scapeX,scapeY -,Mac OS X Leopard Edition,David Pogue,2009,Technical,.pdf,1,1,LibGen,David Pogue-Mac OS X Snow Leopard_ The Missing Manual-Pogue Press (2009).pdf,, -,The Qmail Handbook,Dave Sill,2002,Technical,.pdf,1,1,LibGen,Dave Sill (auth.)-The qmail Handbook-Apress (2002).pdf,, -,Hardening Network Infrastructure: Bulletproof Your Systems Before You Are Hacked!,Wes Noonan,2004,Technical,.pdf,1,1,LibGen,Hardening Network Infrastructure @Team LiB - by Wesley J. Noonan.pdf,, -,Cocoa Programming for Mac OS X Second Edition,Aaron Hillegaas,2004,Technical,.pdf,1,1,LibGen,Aaron Hillegass-Cocoa programming for Mac OS X-Addison-Wesley Professional (2004).pdf,, -,LDAP System Administration,Gerald Carter,2003,Technical,.pdf,1,1,LibGen,Gerald Carter-LDAP System Administration-O Reilly Media (2003).pdf,, -,Learning Unix for Mac OS X,Dave Taylor | Jerry Peek,2002,Technical,.pdf,1,1,LibGen,"Dave Taylor, Jerry Peek-Learning Unix for Mac OS X-O'Reilly Media (2002).pdf",, -,Mac OS X Panther for Unix Geeks,Brian Jepson | Ernest E. Rothman,2004,Technical,.pdf,1,1,LibGen,"O'Reilly _ Mac OS X Panther for Unix Geeks - By Brian Jepson, Ernest E. Rothman.pdf",, -,Linux System Administration,Tom Adelstein | Bill Lubanovic,2007,Technical,.pdf,1,1,LibGen,"Tom Adelstein, Bill Lubanovic-Linux System Administration-O'Reilly (2007).pdf",, -,Managing and Using MYSQL,Tim King | George Reese | Randy Yarger | Hugh E. Williams | Randy Jay Yarger,2002,Technical,.pdf,1,1,LibGen,"Managing and Using MySQL, 2nd Edition (RuB - Unknown.pdf",, -,MYSQL In a Nutshell,Russell Dyer,2008,Technical,.pdf,1,1,LibGen,Russell Dyer-MYSQL in a Nutshell (In a Nutshell (O'Reilly))-O'Reilly Media (2008).pdf,, -,Actionscript for Flash MX: The Definitive Guide,Colin Moock,2002,Technical,.pdf,1,1,LibGen,"Colin Moock-ActionScript for Flash MX_ The Definitive Guide, Second Edition-O'Reilly Media (2002).pdf",, -,Programming Firefox,Kenneth C Feldt,2007,Technical,.pdf,1,1,LibGen,Kenneth C Feldt-Programming Firefox-O'Reilly (2007).pdf,, -,Learning PHP and MYSQL,Michele E Davis | Jon A Phillips,2007,Technical,.pdf,1,1,LibGen,Michele E Davis_ Jon A Phillips-Learning PHP and MySQL-O'Reilly (2007).pdf,, -,Learning the Bash Shell,Cameron Newham | Bill Rosenblatt,2005,Technical,.pdf,1,1,LibGen,"Cameron Newham, Bill Rosenblatt-Learning the Bash Shell-O'Reilly Media (1995).pdf",, -,GNU Emacs Pocket Reference,Debra Cameron,1999,Technical,.pdf,1,1,LibGen,Debra Cameron-GNU Emacs Pocket Reference-O'Reilly (1999).pdf,, -,SQL Pocket Guide,Jonathan Gennick,2010,Technical,.pdf,1,1,LibGen,(Pocket Guides) Jonathan Gennick-SQL Pocket Guide -O'Reilly Media (2010).pdf,, -,HTML Pocket Reference,Jennifer Niederst Robbins,2002,Technical,.pdf,1,1,LibGen,Jennifer Niederst Robbins-HTML Pocket Reference-Oreily (2002).pdf,, -,Regular Expression Pocket Reference,Tony Stubblebine,2003,Technical,.pdf,1,1,LibGen,O'Reilly _ Regular Expression Pocket Refer - By Tony Stubblebine.pdf,, -,Apache 2 Pocket Reference,Andrew Ford,,Technical,,,0,,,, -,CSS Pocket Reference,Eric A. Meyer,2007,Technical,.pdf,1,1,LibGen,Eric A. Meyer-CSS pocket reference-Oreilly (2007).pdf,, -,vi Editor Pocket Reference,Arnold Robbins,1998,Technical,.pdf,1,1,LibGen,vi Editor Pocket Reference - Arnold Robbins.pdf,, -,The Book of Inkscape,Dmitry Kirsanov,2009,Technical,.pdf,1,1,MOTW,The Book of Inkscape_ The Defin - Dmitry Kirsanov.pdf,, -,Working with Mediawiki,Yaron Koren,2014,Technical,.pdf,1,1,LibGen,Yaron Koren-Working with MediaWiki-WikiWorks Press (2014).pdf,, -,Beginning Game Development with Python and Pygame,Will McGugan,2007,Technical,.pdf,1,1,LibGen,Will McGugan-Beginning Game Development with Python and Pygame-Apress (2007).pdf,, -,"Game Programming with Python, Lua, and Ruby 1 edition",Gutschmidt T.,2003,Technical,.pdf,1,1,LibGen,"Gutschmidt T.-Game Programming with Python, Lua, and Ruby 1 edition-Course Technology PTR (2003).pdf",, -,Data Modeling for Everyone,Sharon Allen,,Technical,,,0,,,, -,The Ultimate Guide to the Vi and Ex Text Editors,Hewlett-Packard,,Technical,,,0,,,, -,Getting Gread Sounds: The Microphone Book,Tom Lubin,,Technical,,,0,,,, -,How to Think Like a Computer Scientist,Allen B. Downey | Jeffrey Elkner | Chris Meyers,2002,Technical,.pdf,1,1,LibGen,"Allen B. Downey, Jeffrey Elkner, Chris Meyers-How to think like a computer scientist_ learning with python-Green Tea Press (2002).pdf",, -,Python Pocket Reference,Mark Lutz,2009,Technical,.pdf,,1,LibGen,(Pocket Reference O'Reilly) Mark Lutz-Python Pocket Reference-O'Reilly (2009).pdf,, -,Things That Talk,Lorraine Daston (Editor),2004,"Science, History",,,,,,, -,The Social Construction of What,Ian Hacking,2000,"Science, History",.pdf,1,1,LibGen,Hacking_TheSocialConstructionofWhat.pdf,, -,Instruments and the Imagination,Hankins & Silverman,1999,"Science, History",,,,,,, -,"Mind, Machines and Human Consciousness",Robert Nadeau,1991,"Science, History",,,,,,, -,The Psychopath Test,Jon Ronson,2011,"Science, History",.pdf,1,1,LibGen,Ronson_ThePsychopathTest.pdf,, -,The Selfish Gene,Richard Dawkins,1989,"Science, History",.pdf,1,1,LibGen,Dawkins_TheSelfishGene.pdf,, -,Pandora's Hope,Bruno Latour,1999,"Science, History",.pdf,1,1,LibGen,Latour_Pandora'sHope.pdf,, -,The New Spirit of Capitalism,Luc Boltanski | Eve Chiapello,2005,"Science, History",.pdf,1,1,LibGen,Boltanski_Chiapello_TheNewSpiritofCapitalism.pdf,, -,Distinction: A Social Critique of the Judgement of Taste,Pierre Bourdieu,2013,"Science, History",,,,,,, -,"The Political Economy of Media: Enduring Issues, Emerging Dilemmas",Robert W. McChesney,2008,"Science, History",,,,,,, -,The Dustbin of History,Greil Marcus,1995,"Science, History",,,,,,, -,Inventing The Victorians,Matthew Sweet,2001,"Science, History",,,,,,, -,Age of the Extremes: The Short Twentieth Century 1914-1991,Eric Hobsbawm,1994,"Science, History",.pdf,1,1,LibGen,Hobsbawm_AgeofExtremes.pdf,, -,Lipstick Traces: A secret History of the Twentieth Century,Greil Marcus,1989,"Science, History",,,,,,, -,False Dawn: The Delusions of Global Capitalism,John Gray,2009,"Science, History",.epub,1,1,LibGen,Gray_FalseDawn.epub,, -,Debt: The First 5000 Years,David Graeber,2014,"Science, History",,,,,,, -,Georges Bataille: An Intellectual Biography,Michel Surya,2002,"Science, History",,,,,,, -,The Enlightenment Reader,,,"Science, History",,,,,,, -,The Century,Alain Badiou,2005,"Science, History",.pdf,0,1,,Badiou_TheCentury.pdf,, -,Rethinking Media Pluralism,Kari Karppinen,2000,"Science, History",,,,,,, -,The Philosophy of Symbolic Forms,Ernst Cassirer,1953,Philosophy,.pdf,1,1,,Cassirer_ThePhilosophyofSymbolicFormsVol1.pdf,, -,Archaeology,Bjørnar Olsen | ‎Michael Shanks | ‎Timothy Webmoor | Christopher Witmore,2012,"Science, History",,,,,,, -,The Chomsky Reader,Noam Chomsky | James Peck (Editor),2010,"Science, History",.epub,1,1,,Chomsky_TheChomskyReader.epub,, -,The Society of Mind,Marvin Minsky,1998,"Science, History",.pdf,1,1,,Minsky_Thesocietyofmind.pdf,, -,Interference: A Grand Scientific Musical Theory,Richard Merrick,2009,"Science, History",,,,,,, -,Understanding media economics,Gillian Doyle,2002,Media studies,.pdf,,1,Libgen,Gillian Doyle-Understanding Media Economics-Sage Publications Ltd (2002).pdf,, -,Convergence culture,Henry Jenkins,2008,Media studies,.pdf,,1,Libgen,Henry Jenkins-Convergence Culture_ Where Old and New Media Collide (2008).pdf,, -,Digital Labor: The Internet as Playground and Factory,Trebor Scholz,2013,Media studies,.pdf,,1,MOTW,Digital Labor_ The Internet as Playground - Trebor Scholz.pdf,, -,The Culture of Connectivity,Jose van Dijck,2013,Media studies,.pdf,,1,MOTW,The Culture of Connectivity_ A - Jose van Dijck.pdf,, -,Anti-Media: Ephemera on Speculative Arts,Florian Cramer,2013,Media studies,,,0,,,, -,Holding On to Reality: The Nature of Information at the Turn of the Millennium,Albert Borgmann,2007,Media studies,.pdf,,1,Libgen,Albert Borgmann-Holding On to Reality_ The Nature of Information at the Turn of the Millennium-University Of Chicago Press (2000)..pdf,, -,Organized Networks,Ned Rossiter,,Media studies,.pdf,,1,MOTW,"Organized Networks_ Media Theory, Creative Labour, New Institutions - Ned Rossiter.pdf",, -,Over Mediatheorie,Arjen Mulder,,Media studies,,,0,,,, -,Post Truth,Matthew d'Ancona,,Media studies,,,0,,,, -,Weapons of Math Destruction,Cathy O'Neil,2016,Media studies,.epub,,1,Libgen,Cathy O’Neil-Weapons of Math Destruction_ How Big Data Increases Inequality and Threatens Democrac (2016).epub,, -,Media Ecologies: Materialist Energies in Art and Technoculture,Matthew Fuller,,Media studies,.pdf,,1,MOTW,Media Ecologies_ Materialist Energies in A - Matthew Fuller.pdf,, -,The Internet Is Not The Answer,Andrew Keen,2015,Media studies,.pdf,,1,Libgen,Andrew Keen-The Internet Is Not the Answer-Atlantic Monthly Press (2015)..pdf,, -,Wired for war - Robotics revolution and conflict in the 21st century,P. W. Singer,2009,Media studies,.epub,,1,Libgen,P. W. Singer-Wired for war - Robotics revolution and conflict in the 21st century -Penguin Press (2009).epub,, -,Interface Culture,Steven Johnson,,Media studies,.pdf,,1,MOTW,Interface Culture - Steven Johnson.pdf,, -,The Interface Effect,Alexander R. Galloway,2012,Media studies,.pdf,,1,Libgen,Alexander R. Galloway-The Interface Effect-Polity (2012)..pdf,, -,Present Shock: When Everything Happens Now,Douglas Rushkoff,,Media studies,.epub,,1,MOTW,Douglas Rushkoff-Media Virus! (1996).pdf,, -,Bastard Culture!: How User Participation Transforms Cultural Production,Mirko Tobias Schäfer,2011,Media studies,.pdf,,1,Libgen,Mirko Tobias Schäfer-Bastard Culture!_ How User Participation Transforms Cultural Production-Amsterdam University Press (2011).pdf,, -,Media Virus! Hidden Agendas in Popular Culture,Douglas Rushkoff,,Media studies,.pdf,,1,Libgen,Present Shock_ When Everything - Douglas Rushkoff.epub,, -,Loving Big Brother: Surveillance Culture and Performance Space,John McGrath,2004,Media studies,.pdf,,1,Libgen,John McGrath-Loving Big Brother_ Surveillance Culture and Performance Space-Routledge (2004).pdf,, -,Selections from Cultural Writings,Antonio Gramsci,,Media studies,,,0,,,, -,Dark Money: The Hidden History of the Billionairs behind the Rise of the Radical Right,Jane Mayer,,Media studies,.epub,,1,Libgen,Dark Money_ The Hidden History - Jane Mayer.epub,, -,Walter Benjamin for beginners,Howard Caygill | Alex Coles | Richard Appignanesi,,Media studies,,,0,,,, -,What is Situationism A Reader,Stewart Home (ed.),,Media studies,.pdf,1,1,MOTW,What Is Situationism_ A Reader - Stewart Home (Ed.).pdf,, -,Cyburbia,James Harkin,,Media studies,,,0,,,, -,Mondothèque::a radiated book/un livre irradiant/een irradiërend boek,Matthew Fuller + | Sînziana Păltineanu + | Michael Murtaugh + | Dennis Pohl + | ShinJoung Yeo + | Femke Snelting + | Natacha Roussel + | Dick Reckard + | Geraldine Juárez + | Tomislav Medak + | Marcell Mars + | Dušan Barok + and Alexia de Visscher +,2016,Media studies,.pdf,1,1,Monoskop,Mondotheque_A_Radiated_Book_Un_livre_irradiant_Een_irradierend_boek_2016.pdf,, -,Save and Forget,Thomas Walskaar,,Media studies,.pdf,1,1,Academia.edu,Save_and_Forget.pdf,, -,The World Explained,Erick Beltran,,Media studies,,,0,,,, -,Information - Documents of Contemporary Art,Sarah Cook,,Media studies,,,0,,,, -,Postscript on the Societies of Control ,Gilles Deleuze,,Media studies,.pdf,1,1,Jstor,postscript_on_societies_of_control.pdf,, -,Ethics Subjectivity and Truth,Michel Foucault,,Media studies,.pdf,,1,Monoskop,Foucault_Michel_Ethics_Subjectivity_and_Truth.pdf,, -,The Infinite Conversation,Maurice Blanchot,,Media studies,.pdf,,1,MOTW,The Infinite Conversation - Maurice Blanchot.pdf,, -,Identity and Difference,Martin Heidegger,1969,Media studies,.pdf,,1,Someones personal blog that exposed an attachment link via Google,1969_Heidegger_Identity+and+Difference..pdf,, -,Jean Paul A Reader,Timothy J. Casey (ed.),,Media studies,,,0,,,, -,The Ear of the Other,Jaques Derrida,1985,Media studies,.pdf,,1,Monoskop,Derrida_Jacques_Ear_of_the_Other_1985..pdf,, -,Statements on Appropriation (London Version),Michaelis Pichler,,Media studies,,,1,Pichler_Statements_on_Appropriation.pdf,,, -,An Introduction to Western Philosophy,Antony Flew,,Philosophy,,,0,,,, -,The Postmodern Turn,Best Kellner,,Philosophy,,,0,,,, -,Ideology,Terry Eagleton,,Philosophy,.pdf,,1,Libgen,,, -,Ludwig Wittgenstein,Ray Monk,,Philosophy,.pdf,,1,Libgen,,, -,The Human Condition,Hannah Arendt,,Philosophy,.pdf,,1,Libgen,,, -,Introducing Foucault,Chris Horrocks | Zoran Jevtic,,Philosophy,.pdf,,1,Libgen,,, -,The Lives of Michel Foucault,David Mcey,,Philosophy,.pdf,,1,Libgen,,, -,Discipline and Punish,Michel Foucault,,Philosophy,.pdf,,1,Libgen,,, -,Logic of Scientific Discovery,Popper K.,,Philosophy,.pdf,,1,Libgen,,, -,Intensive Science and Virtual Philosophy,Manuel DeLanda,,Philosophy,.pdf,,1,Libgen,,, -,Kant and the Platypus: Essays on Language and Cognition,Umberto Eco | Alastair McEwen,,Philosophy,.pdf,,1,Libgen,,, -,Turning Back the Clock,Umberto Eco,,Philosophy,,,0,,,, -,Travels in hyper reality : essays,Umberto Eco | William Weave,,Philosophy,.pdf,,1,Libgen,,, -,On revolution,Hannah Arendt,,Philosophy,.pdf,,1,Libgen,,, -,Introducing Kant,Christopher Want; Andrzej Klimowski,,Philosophy,.pdf,,1,Libgen,,, -,The Perfect Crime,Jean Baudrillard,,Philosophy,.pdf,,1,Libgen,,, -,Introducing Baudrillard,Chris Horrocks | Zoran Jevtic,,Philosophy,.pdf,,1,Libgen,,, -,The structure of scientific revolutions,Thomas S. Kuhn,,Philosophy,.pdf,,1,Libgen,,, -,The World Turned Upside Down: Radical Ideas During the English Revolution,Christopher Hill,,Philosophy,.pdf,,1,Libgen,,, -,On Wine and Hishish,Charles Baudelaire,,Philosophy,,,0,,,, -,Lacan For Beginners,Phillip Hill | David Leach,,Philosophy,.pdf,,1,Libgen,,, -,Late Marxism,Frederic Jameson,,Philosophy,,,0,,,, -,Adorno,Martin Jay,,Philosophy,,,0,,,, -,Dialectic of Enlightenment,Max Horkheimer | Theodor Adorno | Gunzelin Noeri | Edmund Jephcott,,Philosophy,.pdf,,1,Libgen,,, -,Walter Benjamin: A Biography,Momme Brodersen,,Philosophy,,,0,,,, -,A Thousand Years of Nonlinear History,Manuel De Landa,,Philosophy,.pdf,,1,Libgen,,, -,Barthes: Selected Writings,Roland Barthes,,Philosophy,,,0,,,, -,Camera Lucida: Reflections on Photography,Roland Barthes,,Philosophy,.pdf,,1,Libgen,,, -,Derrida For Beginners,Jim Powell | Van Howell,,Philosophy,.pdf,,1,Libgen,,, -,System and Writing in the Philosophy of Jacques Derrida,Christopher Johnson,,Philosophy,.pdf,,1,Libgen,,, -,Exploring Humans,H. Dooremalen | H. de Regt | MP Schouten,,Philosophy,,,0,,,, -,"Urheberrecht im Alltag: Kopieren, bearbeiten, selber machen",Valie Djordjevic / Robert A. Gehring / Volker Grassmuck / Till Kreutzer / Matthias Spielkamp (Hrsg.),,Computer culture,,,,,,, -,DATA browser 02: Engineering Culture,Joasia Krysa | Geoff Cox (editors),2005,Computer culture,.pdf,1,1,Monoskop,GeoffKrysa_EngineeringCulture.pdf,, -,DATA browser 01: Economising Culture,Joasia Krysa | Geoff Cox (editors),2004,Computer culture,.pdf,1,1,data browser site,,, -,"The Mag.net reader 3, Processual Publishing. Actual Gesture",Alessandro Ludovico | Nat Muller (editors),2008,Computer culture,.pdf,1,1,post digital print,magnet_reader_3_processual_publishing_actual_gestures,, -,New Media Art,Mark Tribe | Reena Jana,2009,Computer culture,,,,,,, -,Digital Prohibition: Piracy and Authorship in New Media Art,Carolyn Guertin,2012,Computer culture,.pdf,1,1,academia.edu,Digital_Prohibition_The_New_Prohibition.pdf,, -,The Cathedral & The Bazaar,Eric Raymond,2001,Computer culture,.pdf,1,1,Monoskop,Raymond_The_Cathedral_and_the_Bazaar.pdf,, -,The Code Book,Simon Singh,2002,Computer culture,.pdf,1,1,LibGen,Singh_The code book.pdf,, -,DiY Survival // There is No Subculture Only Subversion,Betti Marenko,2006,Computer culture,.pdf,1,1,academia.edu,DIY_Survival._There_is_No_Subculture_Onl.pdf,, -,Guide to Open Content Licenses,Lawrence Liang,2004,Computer culture,.pdf,1,1,,Liang_guidetoopencontentlicenses.pdf,, -,DATA browser 3: Curating Immateriality,Joasia Krysa (editor),2006,Computer culture,.pdf,1,1,Monoskop,Krysa_DB03CuratingImmateriality.pdf,, -,Formen interaktiver Medienkunst,Gendolla | Schmirz | Schneider | Spangenberg (Hg),2001,Computer culture,.pdf,1,1,http://theartgalleryofknoxville.com/ocl_v1.2..pdf,,, -,Oulipo Compendium,Harry Mathews | Alastair Brotchie,,design / writing / publishing,,,,,,, -,Convergence: The International Journal of Research into New Media Technologies - Volume 12 Number 3 August 2004,,,Computer culture,,,,,,, -,Perl for Web Site Management,,,Computer culture,,,,,,, -,Seven Hundred Penguins,,,design / writing / publishing,,,,,,, -,Mondotheque: a radiated book / un livre irradiant / een iradierend boek,André Castro | Sînziana Păltineanu | Dennis Pohl | Dick Reckard | Natacha Roussel | Femke Snelting | Alexia de Visscher,,Computer culture,.pdf,1,1,Monoskop,Mondotheque_A_Radiated_Book_Un_livre_irradiant_Een_irradierend_boek_2016.pdf,, -,An Atlas of Typeforms,James Sutton | Alan Bartram,,design / writing / publishing,,,,,,, -,Structure of the Visual Book,Keith Smith,,design / writing / publishing,,,,,,, -,The Uses of Literacy,Richard Hoggart,,design / writing / publishing,.pdf,0,1,Monoskop,Hoggart_The Uses of Literacy.pdf,, -,Control and Freedom: Power and Paranoia in the Age of Fiber Optics,Wendy Hui Kyong Chun,,Computer culture,.pdf,1,1,LibGen,Chun_ControlandFreedom..pdf,, -,The New Media Reader,Noah Wardrip-Fruin | Nick Montfort (editors),,Media studies,.pdf,1,1,LibGen,"Noah Wardrip-Fruin, Nick Montfort-The New Media Reader (2003).pdf",, -,Art and Electronic Media,Edward A. Shanken,,Art,,,0,,,, -,The Situationist City,Simon Sadler,1998,Art,.pdf,1,1,Monoskop,Sadler_Simon_The_Situationist_City_1998.pdf,, -,The Absolute Report: Time Space Code Memory,,2006,Art,,1,1,Monoskop,Apsolutno_eds_The_Absolute_Report_Time_Space_Code_Memory.pdf,, -,Ashes and Broken Brickwork of a Logical Theory,Susanne Kriemann,,Art,,,0,,,, -,Surrealist Painters and Poets: An Anthology,Mary Ann Caws,2001,Art,,,1,LibGen,Mary Ann Caws-Surrealist Painters and Poets_ An Anthology (2001).pdf,, -,Guy Debord and the Situationists International,Tom McDonough,2002,Art,,1,1,MOTW,Guy Debord and the Situationist Internatio - Tom McDonough.pdf,, -,A Bed a Chair and a Table,Natasha Berting | Angeliki Diakrousi | Joca van der Horst | Alexander Roidl | Alice Strete | Zalan Szakacs,2017,XPUB Special Issue,,1,1,Special Issue,PG_25_final_all_pages.pdf,, -,Software Studies \ a lexicon,Matthew Fuller,,"Programming, Computer culture",.pdf,1,1,dm.ncl.ac.uk/courseblog/files/2010/02/softwarestudies..pdf,,, -,"The Rise of the Network Society, With a New Preface: Volume I: The Information Age: Economy, Society, and Culture (Information Age Series)",Manuel Castells,2010,"Literature, Theory, Computer culture",".epub, .pdf",1,1,Libgen,"Manuel Castells-The Rise of the Network Society, With a New Preface_ Volume I_ The Information Age_ Economy, Society, and Culture (Information Age Series)-Wiley-Blackwell (2010).pdf",, -,I Read Where I Am: Exploring New Information Cultures,Andrew Blauvelt (Author) | Mieke Gerritzen (Editor) | Geert Lovink (Editor) | Minke Kampman (Editor),2011,"Literature, Theory, Computer culture",.pdf,1,1,Libgen,I Read Where I Am. Exploring New Informati - Various.pdf,, -,"Present Continuous Past(s): Media Art. Strategies of Presentation, Mediation and Dissemination",Ursula Frohne | Mona Schieren | Jean-François Guiton (eds.),2005,Media studies,.pdf,1,1,Libgen,"Ursula Frohne, Mona Schieren, Jean-François Guiton (eds.)-»Present Continuous Past(s)«_ Media Art. Strategies of Presentation, Mediation and Dissemination-Springer Vienna (2005).pdf",, -,exquisite_code,exquisite_code collective,,"Programming, Literature",book,,,Aymeric,,, -,Uncreative Writing,Kenneth Goldsmith,,"Literature, Theory",.epub,1,1,Steve,"Goldsmith, Kenneth - Uncreative Writing.epub",, -,The Electronic Revolution,William Burroughs,1970,"Literature, Theory",.pdf,1,1,Steve,Burroughs_Electronicrevolution.pdf,, -,The Invisible Generation,William Burroughs,,"Literature, Theory",.pdf,0,1,Steve,Burroughs_TheInvisibleGeneration.pdf,, -,Cybernetics & Ghosts,Italo Calvino,,"Literature, Theory, Cybernetics",.pdf,1,1,Steve,Calvino Cybernetics&Ghosts.pdf,, -,Digital Culture,Charlie Gere,2002,Media studies,.pdf,1,1,Steve,Charlie Gere digital-culture.pdf,, -,A Preface to Plato,Eric Havelock,1963,"Literature, Theory",.pdf,1,1,Steve,Havelock_Eric_A_Preface_to_Plato.pdf,, -,Writing Machines,Katherine Hayles,2002,Media studies,.pdf,1,1,Steve,Hayles_N_Katherine_Writing_Machines.pdf,, -,"Gramophone, Film, Typewriter",Friedrich Kittler,1999,Media studies,.pdf,1,1,Steve,Kittler_Gramophone filmtypewriter.pdf,, -,Literature Media,Friedrich Kittler,1997,Media studies,.pdf,1,1,Steve,Kittler_LiteratureMedia.pdf,, -,"iSpace: Printed English after Joyce, Shannon, Derrida",Lydia Liu,2006,Media studies,.pdf,1,1,Steve,Liu_iSpace.pdf,, -,Orality and Literacy,Walter Ong,,"Literature, Theory",.epub,1,1,Steve,OngWalter_Orality_Literacy.epub,, -,International Picture Language,Otto Neurath,1936,Media studies,.pdf,0,1,Steve,Neurath_InternationalPictureLanguage.pdf,, -,Protocol,Alexander R. Galloway,,Media studies,.pdf,1,1,Timo Klok/Monoskop,,, -,A Prehistory of the Cloud,Tung-Hui Hu,,Media Studies,.pdf,1,1,Libgen,,, -,Paratexts: Thresholds of Interpretation,Gerard Genette,,"Literature, Culture, Theory ",.pdf,1,1,Memory of the World,,, \ No newline at end of file diff --git a/xpublibrary_old.csv b/xpublibrary_old.csv deleted file mode 100644 index 84b288e..0000000 --- a/xpublibrary_old.csv +++ /dev/null @@ -1,168 +0,0 @@ -Title,Author,Shelf,Format,OCR,Downloaded,Origin,Filename -Mac OS X Leopard Edition,David Pogue,Technical,pdf,1,1,LibGen, -The Qmail Handbook,Dave Sill,Technical,pdf,1,1,LibGen, -Hardening Network Infrastructure: Bulletproof Your Systems Before You Are Hacked!,Wes Noonan,Technical,"chm, pdf",1,1,LibGen, -Cocoa Programming for Mac OS X Second Edition,Aaron Hillegaas,Technical,pdf,1,1,LibGen, -LDAP System Administration,Gerald Carter,Technical,pdf,1,1,LibGen, -Learning Unix for Mac OS X,"Dave Taylor, Jerry Peek",Technical,pdf,1,1,LibGen, -Mac OS X Panther for Unix Geeks,"Brian Jepson, Ernest E. Rothman",Technical,"chm, pdf",1,1,LibGen, -Linux System Administration,"Tom Adelstein, Bill Lubanovic",Technical,pdf,1,1,LibGen, -Managing and Using MYSQL,"Tim King, George Reese, Randy Yarger, Hugh E. Williams, Randy Jay Yarger",Technical,"chm, pdf",1,1,LibGen, -MYSQL In a Nutshell,Russell Dyer,Technical,pdf,1,1,LibGen, -Actionscript for Flash MX: The Definitive Guide,Colin Moock,Technical,pdf,1,1,LibGen, -Programming Firefox,Kenneth C Feldt,Technical,pdf,1,1,LibGen, -Learning PHP and MYSQL,Michele E Davis; Jon A Phillips,Technical,pdf,1,1,LibGen, -Learning the Bash Shell,"Cameron Newham, Bill Rosenblatt",Technical,pdf,1,1,LibGen, -GNU Emacs Pocket Reference,Debra Cameron,Technical,pdf,1,1,LibGen, -SQL Pocket Guide,Jonathan Gennick,Technical,pdf,1,1,LibGen, -HTML Pocket Reference,Jennifer Niederst Robbins,Technical,pdf,1,1,LibGen, -Regular Expression Pocket Reference,Tony Stubblebine,Technical,"chm, pdf",1,1,LibGen, -Apache 2 Pocket Reference,Andrew Ford,Technical,,,0,, -CSS Pocket Reference,Eric A. Meyer,Technical,pdf,1,1,LibGen, -vi Editor Pocket Reference,Arnold Robbins,Technical,"epub, pdf",1,1,LibGen, -The Book of Inkscape,Dmitry Kirsanov,Technical,pdf,1,1,MOTW, -Working with Mediawiki,Yaron Koren,Technical,pdf,1,1,LibGen, -Beginning Game Development with Python and Pygame,Will McGugan,Technical,pdf,1,1,LibGen, -"Game Programming with Python, Lua, and Ruby 1 edition",Gutschmidt T.,Technical,pdf,1,1,, -Data Modeling for Everyone,Sharon Allen,Technical,,,0,, -The Ultimate Guide to the Vi and Ex Text Editors,Hewlett-Packard,Technical,,,0,, -Getting Gread Sounds: The Microphone Book,Tom Lubin,Technical,,,0,, -How to Think Like a Computer Scientist,"Allen B. Downey, Jeffrey Elkner, Chris Meyers",Technical,pdf,1,1,LibGen, -Python Pocket Reference,Mark Lutz,Technical,pdf,,1,LibGen, -Instruments and the Imagination,Hankins & Silverman,Science/History,,,,, -"Mind, Machines and Human Consciousness",Robert Nadeau,Science/History,,,,, -The Psychopath Test,Jon Ronson,Science/History,pdf,1,1,LibGen, -The Selfish Gene,Richard Dawkins,Science/History,pdf,1,1,LibGen, -Pandora's Hope,Bruno Latour,Science/History,pdf,1,1,LibGen, -The New Spirit of Capitalism,Luc Boltanski & Eve Chiapello,Science/History,pdf,1,1,LibGen, -Distinction: A Social Critique of the Judgement of Taste,Pierre Bourdieu,Science/History,,,,, -"The Political Economy of Media: Enduring Issues, Emerging Dilemmas",Robert W. McChesney,Science/History,,,,, -The Dustbin of History,Greil Marcus,Science/History,,,,, -Inventing The Victorians,Matthew Sweet,Science/History,,,,, -Age of the Extremes: The Short Twentieth Century 1914-1991,Eric Hobsbawm,Science/History,pdf,1,1,LibGen, -Lipstick Traces,Greil Marcus,Science/History,,,,, -False Dawn: The Delusions of Global Capitalism,John Gray,Science/History,epub,1,1,LibGen, -Debt: The First 5000 Years,David Graeber,Science/History,,,,, -Georges Bataille: An Intellectual Biography,Michel Surya,Science/History,,,,, -The Enlightenment Reader,,Science/History,,,,, -The Century,Alain Badiou,Science/History,pdf,0,1,, -Rethinking Media Pluralism,Karppinen,Science/History,,,,, -The Philosophy of Symbolic Forms,Ernst Cassirer,Science/History,pdf,1,1,, -Archaeology,"Olsen, Shanks, Webmoor, Witmore",Science/History,,,,, -The Chomsky Reader,"Noam Chomsky, James Peck (Editor)",Science/History,epub,1,1,, -The Society of Mind,Marvin Minsky,Science/History,pdf,1,1,, -Interference: A Grand Scientific Musical Theory,Richard Merrick,Science/History,,,,, -Understanding media economics,Gillian Doyle,Media studies,pdf,,1,Libgen, -Convergence culture,Henry Jenkins,Media studies,pdf,,1,Libgen, -Digital Labor,Trebor Scholz,Media studies,pdf,,1,MOTW, -The culture of connectivity,Jose van Dijck,Media studies,pdf,,1,MOTW, -Anti-Media,Florian Cramer,Media studies,,,0,, -Holding On to Reality: The Nature of Information at the Turn of the Millennium,Albert Borgman,Media studies,pdf,,1,Libgen, -Organized Networks,Ned Rossiter,Media studies,pdf,,1,MOTW, -Over Mediatheorie,Arjen Mulder,Media studies,,,0,, -Post Truth,Matthew d'Ancona,Media studies,,,0,, -Weapons of Math Destruction,Cathy O'Neil,Media studies,EPUB,,1,Libgen, -Media Ecologies: Materialist Energies in Art and Technoculture,Matthew Fuller,Media studies,pdf,,1,MOTW, -The Internet Is Not The Answer,Andrew Keen,Media studies,pdf,,1,Libgen, -Wired for war - Robotics revolution and conflict in the 21st century,P. W. Singer,Media studies,EPUB,,1,Libgen, -Interface Culture,Steven Johnson,Media studies,pdf,,1,MOTW, -The Interface Effect,Alexander R. Galloway,Media studies,pdf,,1,Libgen, -Present Shock: When Everything Happens Now,Douglas Rushkoff,Media studies,EPUB,,1,MOTW, -Bastard Culture!: How User Participation Transforms Cultural Production,Mirko Tobias Schäfer,Media studies,pdf,,1,Libgen, -Media Virus! Hidden Agendas in Popular Culture,Douglas Rushkoff,Media studies,pdf,,1,Libgen, -Loving Big Brother: Surveillance Culture and Performance Space,John McGrath,Media studies,pdf,,1,Libgen, -Selections from Cultural Writings,Antonio Gramsci,Media studies,,,0,, -Dark Money: The Hidden History of the Billionairs behind the Rise of the Radical Right,Jane Mayer,Media studies,EPUB,,1,Libgen, -Walter Benjamin for beginners,"Howard Caygill, Alex Coles, Richard Appignanesi",Media studies,,,0,, -Cyburbia,James Harkin,Media studies,,,0,, -Mondothèque::a radiated book/un livre irradiant/een irradiërend boek,"Matthew Fuller +, Sînziana Păltineanu +, Michael Murtaugh +, Dennis Pohl +, ShinJoung Yeo +, Femke Snelting +, Natacha Roussel +, Dick Reckard +, Geraldine Juárez +, Tomislav Medak +, Marcell Mars +, Dušan Barok + and Alexia de Visscher +",Media studies,pdf,1,1,Monoskop, -Save and Forget,Thomas Walskaar,Media studies,pdf,1,1,Academia.edu, -The World Explained,Erick Beltran,Media studies,,,0,, -Information - Documents of Contemporary Art,Sarah Cook,Media studies,,,0,, -Postscript on the Societies of Control ,Gilles Deleuze,Media studies,pdf,1,1,Jstor, -Ethics Subjectivity and Truth,Michel Foucault,Media studies,pdf,,1,Monoskop, -The Infinite Conversation,Maurice Blanchot,Media studies,pdf,,1,MOTW, -Identity and Difference,Martin Heidegger,Media studies,pdf,,1,Someones personal blog that exposed an attachment link via Google, -Jean Paul A Reader,Timothy J. Casey (ed.),Media studies,,,0,, -The Ear of the Other,Jaques Derrida,Media studies,pdf,,1,Monoskop, -Statements on Appropriation (London Version),Michaelis Pichler,Media studies,,,0,, -An Introduction to Western Philosophy,Antony Flew,Philosophy,,,0,, -The Postmodern Turn,Best Kellner,Philosophy,,,0,, -Ideology,Terry Eagleton,Philosophy,pdf,,1,Libgen, -Ludwig Wittgenstein,Ray Monk,Philosophy,pdf,,1,Libgen, -The Human Condition,Hannah Arendt,Philosophy,pdf,,1,Libgen, -Introducing Foucault,"Chris Horrocks, Zoran Jevtic",Philosophy,pdf,,1,Libgen, -The Lives of Michel Foucault,David Mcey,Philosophy,pdf,,1,Libgen, -Discipline and Punish,Michel Foucault,Philosophy,pdf,,1,Libgen, -Logic of Scientific Discovery,Popper K.,Philosophy,pdf,,1,Libgen, -Intensive Science and Virtual Philosophy,Manuel DeLanda,Philosophy,pdf,,1,Libgen, -Kant and the Platypus: Essays on Language and Cognition,"Umberto Eco, Alastair McEwen",Philosophy,pdf,,1,Libgen, -Turning Back the Clock,Umberto Eco,Philosophy,,,0,, -Travels in hyper reality : essays,"Umberto Eco, William Weave",Philosophy,pdf,,1,Libgen, -On revolution,Hannah Arendt,Philosophy,pdf,,1,Libgen, -Introducing Kant,Christopher Want; Andrzej Klimowski,Philosophy,pdf,,1,Libgen, -The Perfect Crime,Jean Baudrillard,Philosophy,pdf,,1,Libgen, -Introducing Baudrillard,"Chris Horrocks, Zoran Jevtic",Philosophy,pdf,,1,Libgen, -The structure of scientific revolutions,Thomas S. Kuhn,Philosophy,pdf,,1,Libgen, -The World Turned Upside Down: Radical Ideas During the English Revolution,Christopher Hill,Philosophy,pdf,,1,Libgen, -On Wine and Hishish,Charles Baudelaire,Philosophy,,,0,, -Lacan For Beginners,"Phillip Hill, David Leach",Philosophy,pdf,,1,Libgen, -Late Marxism,Frederic Jameson,Philosophy,,,0,, -Adorno,Martin Jay,Philosophy,,,0,, -Dialectic of Enlightenment,"Max Horkheimer, Theodor Adorno, Gunzelin Noeri, Edmund Jephcott",Philosophy,pdf,,1,Libgen, -Walter Benjamin: A Biography,Momme Brodersen,Philosophy,,,0,, -A Thousand Years of Nonlinear History,Manuel De Landa,Philosophy,pdf,,1,Libgen, -Barthes: Selected Writings,Roland Barthes,Philosophy,,,0,, -Camera Lucida: Reflections on Photography,Roland Barthes,Philosophy,pdf,,1,Libgen, -Derrida For Beginners,"Jim Powell, Van Howell",Philosophy,pdf,,1,Libgen, -System and Writing in the Philosophy of Jacques Derrida,Christopher Johnson,Philosophy,pdf,,1,Libgen, -Exploring Humans,"H. Dooremalen , H. de Regt , MP Schouten",Philosophy,,,0,, -"Urheberrecht im Alltag: Kopieren, bearbeiten, selber machen",Valie Djordjevic / Robert A. Gehring / Volker Grassmuck / Till Kreutzer / Matthias Spielkamp (Hrsg.),Computer culture,,,,, -DATA browser 02: Engineering Culture,"Joasia Krysa, Geoff Cox (editors)",Computer culture,pdf,1,1,Monoskop, -DATA browser 01: Economising Culture,"Joasia Krysa, Geoff Cox (editors)",Computer culture,pdf,1,1,data browser site, -"The Mag.net reader 3, Processual Publishing. Actual Gesture","Alessandro Ludovico, Nat Muller (editors)",Computer culture,pdf,1,1,post digital print, -New Media Art,"Mark Tribe, Reena Jana",Computer culture,,,,, -Digital Prohibition,Carolyn Guertin,Computer culture,pdf,1,1,academia.edu, -The Cathedral & The Bazaar,Eric Raymond,Computer culture,pdf,1,1,Monoskop, -The Code Book,Simon Singh,Computer culture,pdf,1,1,LibGen, -DiY Survival // There is No Subculture Only Subversion,"Betti Marenko, Leon C6",Computer culture,pdf,1,1,academia.edu, -Guide to Open Content Licenses,Lawrence Liang,Computer culture,pdf,1,1,, -DATA browser 3: Curating Immateriality,Joasia Krysa (editor),Computer culture,pdf,1,1,Monoskop, -Formen interaktiver Medienkunst,"Gendolla, Schmirz, Schneider, Spangenberg (Hg)",Computer culture,pdf,1,1,http://theartgalleryofknoxville.com/ocl_v1.2.pdf, -Oulipo Compendium,"Harry Mathews, Alastair Brotchie",design / writing / publishing,,,,, -Convergence: The International Journal of Research into New Media Technologies - Volume 12 Number 3 August 2004,,Computer culture,,,,, -Perl for Web Site Management,,Computer culture,,,,, -Seven Hundred Penguins,,design / writing / publishing,,,,, -Mondotheque: a radiated book / un livre irradiant / een iradierend boek,"André Castro, Sînziana Păltineanu,Dennis Pohl,Dick Reckard,Natacha Roussel,Femke Snelting,Alexia de Visscher",Computer culture,pdf,1,1,Monoskop, -An Atlas of Typeforms,"James Sutton, Alan Bartram",design / writing / publishing,,,,, -Structure of the Visual Book,Keith Smith,design / writing / publishing,,,,, -The Uses of Literacy,Richard Hoggart,design / writing / publishing,pdf,0,1,Monoskop, -Control and Freedom: Power and Paranoia in the Age of Fiber Optics,Wendy Hui Kyong Chun,desk,pdf,1,1,LibGen, -The New Media Reader,"Noah Wardrip-Fruin, Nick Montfort (editors)",desk,pdf,1,1,LibGen, -Art and Electronic Media,Edward A. Shanken,Art,,,0,, -The Situationist City,Simon Sadler,Art,pdf,1,1,Monoskop, -The Absolute Report: Time Space Code Memory,,Art,,1,1,Monoskop, -Ashes and Broken Brickwork of a Logical Theory,Susanne Kriemann,Art,,,0,, -Surrealist Painters and Poets: An Anthology,Mary Ann Caws,Art,,,1,LibGen, -Guy Debord and the Situationists International,Tom McDonough,Art,,1,1,MOTW, -A Bed a Chair and a Table,"Natasha Berting, Angeliki Diakrousi, Joca van der Horst, Alexander Roidl, Alice Strete, Zalan Szakacs",Special Issue,,1,1,Special Issue, -Software Studies \ a lexicon,Matthew Fuller,Desk,pdf,1,1,dm.ncl.ac.uk/courseblog/files/2010/02/softwarestudies.pdf, -"The Rise of the Network Society, With a New Preface: Volume I: The Information Age: Economy, Society, and Culture (Information Age Series)",Manuel Castells,Desk,"epub, pdf",1,1,Libgen, -I Read Where I Am: Exploring New Information Cultures,"Andrew Blauvelt (Author), Mieke Gerritzen (Editor), Geert Lovink (Editor), Minke Kampman (Editor)",Desk,pdf,1,1,Libgen, -"»Present Continuous Past(s)«: Media Art. Strategies of Presentation, Mediation and Dissemination","Ursula Frohne, Mona Schieren, Jean-François Guiton (eds.)",Desk,pdf,1,1,Libgen, -exquisite_code,exquisite_code collective,Desk,book,,,Aymeric, -Uncreative Writing,Kenneth Goldsmith,Digital (Steve Trim 2 reading),epub,1,1,Steve, -The Electronic Revolution,William Burroughs,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -The Invisible Generation,William Burroughs,Digital (Steve Trim 2 reading),pdf,0,1,Steve, -Cybernetics & Ghosts,Italo Calvino,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -Digital Culture,Charlie Gere,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -A Preface to Plato,Eric Havelock,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -Writing Machines,Katherine Hayles,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -"Gramophone, Film, Typewriter",Friedrich Kittler,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -Literature Media,Friedrich Kittler,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -"iSpace: Printed English after Joyce, Shannon, Derrida",Lydia Liu,Digital (Steve Trim 2 reading),pdf,1,1,Steve, -Orality and Literacy,Walter Ong,Digital (Steve Trim 2 reading),epub,1,1,Steve, -International Picture Language,Otto Neurath,Digital (Steve Trim 2 reading),pdf,0,1,Steve, -Protocol,Alexander R. Galloway,Media studies,pdf,1,1,Timo Klok/Monoskop, -A Prehistory of the Cloud,Tung-Hui Hu,Media Studies (Femke Trim 3),pdf,1,1,Libgen, -Paratexts: Thresholds of Interpretation,Gerard Genette,"Literature, Culture, Theory ",pdf,1,1,Memory of the World,