default covers fix

master
Alex 6 years ago
parent 28301aa037
commit 7678a838dc

BIN
.DS_Store vendored

Binary file not shown.

4
.gitignore vendored

@ -2,8 +2,8 @@ __pycache__/
*.pyc
*~
app/uploads/**
!app/uploads/cover
/cover/**
app/cover/**
!app/cover/default_cover.gif
app/mydatabase.db
pyrqlite/
whoosh/

@ -29,9 +29,17 @@ def get_cover(file_path, filename):
# ====
print(file_path)
src_filename = file_path
src_pdf = PyPDF2.PdfFileReader(open(src_filename, "rb"))
try:
src_pdf = PyPDF2.PdfFileReader(open(src_filename, "rb"))
except:
print("couln't open PDF")
return None;
if src_pdf.isEncrypted:
try:
src_pdf.decrypt('')
except:
print("couln't decrypt")
return None;
# What follows is a lookup table of page numbers within sample_log.pdf and the corresponding filenames.
pages = [{"pagenum": 0, "filename": filename}]

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

@ -9,4 +9,4 @@
</ul>
{% endif %}
</dd>
{% endmacro %}
{% endmacro %}

@ -2,7 +2,7 @@
{% block main %}
<h1 class="page-header">About</h1>
<div style="width: 900px;">
<div style="width: 900px;">
<p class='about'>
XPPL is a project aimed at people who are studying the field of media culture, or as we like to call them: knowledge comrades.
<br>

@ -6,7 +6,7 @@
<div> Chosen book:
<h1 class="header">{{ book.title }}</h1>
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" width="150" onerror="if (this.src != '../static/img/{{ book.cover }}') this.src = '../static/img/default_cover.gif';">
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" width="150" onerror="if (this.src != '../static/img/{{ book.cover }}') this.src = '../static/img/default_cover.png';">
</div>
<p>These are all the stacks that have been built so far.</p>

@ -26,7 +26,7 @@ function outputUpdate3(gender) {
<div class="form-group"><h1 class="header">{{ form.title.label }} {{ form.title(size=20, class="form-control") }}</h1></div>
<div style="float:right; padding-right: 300px;">
<img class="no_cover" id="{{ book.title }}" src="../uploads/cover/{{ book.cover }}" width="280px" onerror="if (this.src != '/uploads/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';"></div>
<img class="no_cover" id="{{ book.title }}" src="../uploads/cover/{{ book.cover }}" width="280px" onerror="if (this.src != '/uploads/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';"></div>
<br>
<div data-toggle="fieldset" id="phone-fieldset">
@ -73,11 +73,11 @@ Who are you? {{ render_field(form.who)}}
Current file: {{ book.file }} &nbsp;&nbsp;&nbsp;&nbsp; Upload new file: {{form.file}}
</div>
<div class="form-group" style="padding-bottom: 10px;">
</div>
<div class="form-group" style="padding-bottom: 10px;">
If uploading, write a new message: <br>{{form.message(size=135, class="form-control") }}
If uploading, write a new message: <br>{{form.message(size=135, class="form-control") }}
</div>
<br>

@ -35,7 +35,7 @@
{%if light%}
{%else%}
<div style="width: 220px; float: left; padding-right: 40px;">
<img class="no_cover" width="220" src = '/static/img/default_cover.gif';>
<img class="no_cover" width="220" src = '/static/img/default_cover.png';>
</div>
<br>
@ -98,7 +98,7 @@
<tr>
<td style= "padding: 5px;">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="70" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="70" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';">
<!-- <object class="no_cover" data="../static/img/default_cover.png" type="image/png" width="65">
<p hidden="True"></p>

@ -47,7 +47,7 @@
{% for book in books %}
<tr>
<td style= "padding: 5px;">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="70" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';"></td>
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="70" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';"></td>
<td><a href="{{url_for('show_book_by_id', id=book.id)}}">{{ book.title }}</a></td>
<td> {% for author in book.authors %}
@ -93,7 +93,7 @@
</tr>
{% for book in books_all %}
<tr>
<td style= "padding: 5px;"><img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="80" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';"></td>
<td style= "padding: 5px;"><img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="80" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';"></td>
<td><a href="{{url_for('show_book_by_id', id=book.id)}}">{{ book.title }}</a></td>
<td> {% for author in book.authors %}

@ -37,7 +37,7 @@
<div class="gridbox">
<a href="/books/{{ book.id }}">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="100%" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';"></a>
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="100%" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';"></a>
<p>
<tbody>
<th>
@ -61,7 +61,7 @@
<div class="gridbox">
<a href="books/{{ book.id }}">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="100%" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';"></a>
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="100%" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';"></a>
<p>
<tbody>
<th>

@ -75,7 +75,7 @@
<div class = "drag" id = "{{ book.id }}" style="position: absolute;width:70px;height:auto; top:{{ book.scapeY }}px; left:{{ book.scapeX }}px;">
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" style="width:100%;height:auto;" onerror="if (this.src != '../static/img/default_cover.gif') this.src = '../static/img/default_cover.gif';">
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" style="width:100%;height:auto;" onerror="if (this.src != '../static/img/default_cover.png') this.src = '../static/img/default_cover.png';">
<p class="booktitle" style="font-size:7px;"><a href="books/{{ book.id }}">{{ book.title }}</a></p>
{% set got = {} %}

@ -5,7 +5,7 @@
<h1 class="header">{{ book.title }}</h1>
<div style="float:right; padding-right: 140px;">
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" width="280px" onerror="if (this.src != '../cover/{{ book.cover }}') this.src = '../static/img/default_cover.gif';"></div>
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" width="280px" onerror="if (this.src != '../cover/{{ book.cover }}') this.src = '../static/img/default_cover.png';"></div>
<table class="library_table" id="table" style="width:50%; padding-bottom: 20px;">
<thead>

@ -47,7 +47,7 @@
<tr>
<td style= "padding: 5px;">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="70" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="70" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';">
<!-- <object class="no_cover" data="../static/img/default_cover.png" type="image/png" width="65">
<p hidden="True"></p>

@ -34,7 +34,7 @@
<div class="gridbox">
<a href="books/{{ book.id }}">
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="100%" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.gif';"></a>
<img class="no_cover" id="{{ book.title }}" src="/cover/{{ book.cover }}" width="100%" onerror="if (this.src != '/cover/{{ book.cover }}') this.src = '/static/img/default_cover.png';"></a>
<p>
<tbody>
<th>

@ -26,7 +26,7 @@
{% endif %}
<li> <a href="{{url_for('show_book_by_id', id=book.id)}}">{{book.title}}</a> </li>
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" width="150" onerror="if (this.src != '../cover/{{ book.cover }}') this.src = '../static/img/default_cover.gif';">
<img class="no_cover" id="{{ book.title }}" src="../cover/{{ book.cover }}" width="150" onerror="if (this.src != '../cover/{{ book.cover }}') this.src = '../static/img/default_cover.png';">
<div class='widget'>
{%if light%}
{%else%}

@ -282,7 +282,11 @@ def edit_book_by_id(id):
fullpath = os.path.join(app.config['UPLOAD_FOLDER'], filename)
name, file_extension = os.path.splitext(filename)
file.save(fullpath)
book.cover = get_cover(fullpath, name)
book.cover = ""
try:
get_cover(fullpath, name)
except:
print("couldn't get cover")
book.file = filename
else:
flash('allowed file formats: %s' % ALLOWED_EXTENSIONS)
@ -360,7 +364,7 @@ def add_book():
#pdf generator
filename = 'potential.pdf'
file_extension = '.pdf'
cover= ''
cover= 'default_cover.gif'
ptitle = upload_form.title.data
pbook = Potential(ptitle)
db.session.add(pbook)
@ -748,6 +752,7 @@ def import_csv():
if row['file'] == '':
file = 'potential.pdf'
file_extension = '.pdf'
cover = "default_cover.gif"
ptitle = row['title']
pbook = Potential(ptitle)
db.session.add(pbook)
@ -762,7 +767,10 @@ def import_csv():
fullpath = os.path.join(app.config['UPLOAD_FOLDER'], row['file'])
name, file_extension = os.path.splitext(row['file'])
print ('get_cover', fullpath, name)
cover = get_cover(fullpath, name)
try:
cover = get_cover(fullpath, name)
except:
print("couldn't get cover")
file = row['file']
if row['year_published']:

@ -0,0 +1,171 @@
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 ONeil-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,
1 id title authors year_published category fileformat OCR Downloaded Origin file
2 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
3 The Qmail Handbook Dave Sill 2002 Technical .pdf 1 1 LibGen Dave Sill (auth.)-The qmail Handbook-Apress (2002).pdf
4 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
5 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
6 LDAP System Administration Gerald Carter 2003 Technical .pdf 1 1 LibGen Gerald Carter-LDAP System Administration-O Reilly Media (2003).pdf
7 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
8 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
9 Linux System Administration Tom Adelstein | Bill Lubanovic 2007 Technical .pdf 1 1 LibGen Tom Adelstein, Bill Lubanovic-Linux System Administration-O'Reilly (2007).pdf
10 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
11 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
12 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
13 Programming Firefox Kenneth C Feldt 2007 Technical .pdf 1 1 LibGen Kenneth C Feldt-Programming Firefox-O'Reilly (2007).pdf
14 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
15 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
16 GNU Emacs Pocket Reference Debra Cameron 1999 Technical .pdf 1 1 LibGen Debra Cameron-GNU Emacs Pocket Reference-O'Reilly (1999).pdf
17 SQL Pocket Guide Jonathan Gennick 2010 Technical .pdf 1 1 LibGen (Pocket Guides) Jonathan Gennick-SQL Pocket Guide -O'Reilly Media (2010).pdf
18 HTML Pocket Reference Jennifer Niederst Robbins 2002 Technical .pdf 1 1 LibGen Jennifer Niederst Robbins-HTML Pocket Reference-Oreily (2002).pdf
19 Regular Expression Pocket Reference Tony Stubblebine 2003 Technical .pdf 1 1 LibGen O'Reilly _ Regular Expression Pocket Refer - By Tony Stubblebine.pdf
20 Apache 2 Pocket Reference Andrew Ford Technical 0
21 CSS Pocket Reference Eric A. Meyer 2007 Technical .pdf 1 1 LibGen Eric A. Meyer-CSS pocket reference-Oreilly (2007).pdf
22 vi Editor Pocket Reference Arnold Robbins 1998 Technical .pdf 1 1 LibGen vi Editor Pocket Reference - Arnold Robbins.pdf
23 The Book of Inkscape Dmitry Kirsanov 2009 Technical .pdf 1 1 MOTW The Book of Inkscape_ The Defin - Dmitry Kirsanov.pdf
24 Working with Mediawiki Yaron Koren 2014 Technical .pdf 1 1 LibGen Yaron Koren-Working with MediaWiki-WikiWorks Press (2014).pdf
25 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
26 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
27 Data Modeling for Everyone Sharon Allen Technical 0
28 The Ultimate Guide to the Vi and Ex Text Editors Hewlett-Packard Technical 0
29 Getting Gread Sounds: The Microphone Book Tom Lubin Technical 0
30 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
31 Python Pocket Reference Mark Lutz 2009 Technical .pdf 1 LibGen (Pocket Reference O'Reilly) Mark Lutz-Python Pocket Reference-O'Reilly (2009).pdf
32 Things That Talk Lorraine Daston (Editor) 2004 Science, History
33 The Social Construction of What? Ian Hacking 2000 Science, History .pdf 1 1 LibGen Hacking_TheSocialConstructionofWhat.pdf
34 Instruments and the Imagination Hankins & Silverman 1999 Science, History
35 Mind, Machines and Human Consciousness Robert Nadeau 1991 Science, History
36 The Psychopath Test Jon Ronson 2011 Science, History .pdf 1 1 LibGen Ronson_ThePsychopathTest.pdf
37 The Selfish Gene Richard Dawkins 1989 Science, History .pdf 1 1 LibGen Dawkins_TheSelfishGene.pdf
38 Pandora's Hope Bruno Latour 1999 Science, History .pdf 1 1 LibGen Latour_Pandora'sHope.pdf
39 The New Spirit of Capitalism Luc Boltanski | Eve Chiapello 2005 Science, History .pdf 1 1 LibGen Boltanski_Chiapello_TheNewSpiritofCapitalism.pdf
40 Distinction: A Social Critique of the Judgement of Taste Pierre Bourdieu 2013 Science, History
41 The Political Economy of Media: Enduring Issues, Emerging Dilemmas Robert W. McChesney 2008 Science, History
42 The Dustbin of History Greil Marcus 1995 Science, History
43 Inventing The Victorians Matthew Sweet 2001 Science, History
44 Age of the Extremes: The Short Twentieth Century 1914-1991 Eric Hobsbawm 1994 Science, History .pdf 1 1 LibGen Hobsbawm_AgeofExtremes.pdf
45 Lipstick Traces: A secret History of the Twentieth Century Greil Marcus 1989 Science, History
46 False Dawn: The Delusions of Global Capitalism John Gray 2009 Science, History .epub 1 1 LibGen Gray_FalseDawn.epub
47 Debt: The First 5000 Years David Graeber 2014 Science, History
48 Georges Bataille: An Intellectual Biography Michel Surya 2002 Science, History
49 The Enlightenment Reader Science, History
50 The Century Alain Badiou 2005 Science, History .pdf 0 1 Badiou_TheCentury.pdf
51 Rethinking Media Pluralism Kari Karppinen 2000 Science, History
52 The Philosophy of Symbolic Forms Ernst Cassirer 1953 Philosophy .pdf 1 1 Cassirer_ThePhilosophyofSymbolicFormsVol1.pdf
53 Archaeology Bjørnar Olsen | ‎Michael Shanks | ‎Timothy Webmoor | Christopher Witmore 2012 Science, History
54 The Chomsky Reader Noam Chomsky | James Peck (Editor) 2010 Science, History .epub 1 1 Chomsky_TheChomskyReader.epub
55 The Society of Mind Marvin Minsky 1998 Science, History .pdf 1 1 Minsky_Thesocietyofmind.pdf
56 Interference: A Grand Scientific Musical Theory Richard Merrick 2009 Science, History
57 Understanding media economics Gillian Doyle 2002 Media studies .pdf 1 Libgen Gillian Doyle-Understanding Media Economics-Sage Publications Ltd (2002).pdf
58 Convergence culture Henry Jenkins 2008 Media studies .pdf 1 Libgen Henry Jenkins-Convergence Culture_ Where Old and New Media Collide (2008).pdf
59 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
60 The Culture of Connectivity Jose van Dijck 2013 Media studies .pdf 1 MOTW The Culture of Connectivity_ A - Jose van Dijck.pdf
61 Anti-Media: Ephemera on Speculative Arts Florian Cramer 2013 Media studies 0
62 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
63 Organized Networks Ned Rossiter Media studies .pdf 1 MOTW Organized Networks_ Media Theory, Creative Labour, New Institutions - Ned Rossiter.pdf
64 Over Mediatheorie Arjen Mulder Media studies 0
65 Post Truth Matthew d'Ancona Media studies 0
66 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
67 Media Ecologies: Materialist Energies in Art and Technoculture Matthew Fuller Media studies .pdf 1 MOTW Media Ecologies_ Materialist Energies in A - Matthew Fuller.pdf
68 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
69 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
70 Interface Culture Steven Johnson Media studies .pdf 1 MOTW Interface Culture - Steven Johnson.pdf
71 The Interface Effect Alexander R. Galloway 2012 Media studies .pdf 1 Libgen Alexander R. Galloway-The Interface Effect-Polity (2012)..pdf
72 Present Shock: When Everything Happens Now Douglas Rushkoff Media studies .epub 1 MOTW Douglas Rushkoff-Media Virus! (1996).pdf
73 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
74 Media Virus! Hidden Agendas in Popular Culture Douglas Rushkoff Media studies .pdf 1 Libgen Present Shock_ When Everything - Douglas Rushkoff.epub
75 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
76 Selections from Cultural Writings Antonio Gramsci Media studies 0
77 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
78 Walter Benjamin for beginners Howard Caygill | Alex Coles | Richard Appignanesi Media studies 0
79 What is Situationism? A Reader Stewart Home (ed.) Media studies .pdf 1 1 MOTW What Is Situationism_ A Reader - Stewart Home (Ed.).pdf
80 Cyburbia James Harkin Media studies 0
81 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
82 Save and Forget Thomas Walskaar Media studies .pdf 1 1 Academia.edu Save_and_Forget.pdf
83 The World Explained Erick Beltran Media studies 0
84 Information - Documents of Contemporary Art Sarah Cook Media studies 0
85 Postscript on the Societies of Control Gilles Deleuze Media studies .pdf 1 1 Jstor postscript_on_societies_of_control.pdf
86 Ethics Subjectivity and Truth Michel Foucault Media studies .pdf 1 Monoskop Foucault_Michel_Ethics_Subjectivity_and_Truth.pdf
87 The Infinite Conversation Maurice Blanchot Media studies .pdf 1 MOTW The Infinite Conversation - Maurice Blanchot.pdf
88 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
89 Jean Paul A Reader Timothy J. Casey (ed.) Media studies 0
90 The Ear of the Other Jaques Derrida 1985 Media studies .pdf 1 Monoskop Derrida_Jacques_Ear_of_the_Other_1985..pdf
91 Statements on Appropriation (London Version) Michaelis Pichler Media studies 1 Pichler_Statements_on_Appropriation.pdf
92 An Introduction to Western Philosophy Antony Flew Philosophy 0
93 The Postmodern Turn Best Kellner Philosophy 0
94 Ideology Terry Eagleton Philosophy .pdf 1 Libgen
95 Ludwig Wittgenstein Ray Monk Philosophy .pdf 1 Libgen
96 The Human Condition Hannah Arendt Philosophy .pdf 1 Libgen
97 Introducing Foucault Chris Horrocks | Zoran Jevtic Philosophy .pdf 1 Libgen
98 The Lives of Michel Foucault David Mcey Philosophy .pdf 1 Libgen
99 Discipline and Punish Michel Foucault Philosophy .pdf 1 Libgen
100 Logic of Scientific Discovery Popper K. Philosophy .pdf 1 Libgen
101 Intensive Science and Virtual Philosophy Manuel DeLanda Philosophy .pdf 1 Libgen
102 Kant and the Platypus: Essays on Language and Cognition Umberto Eco | Alastair McEwen Philosophy .pdf 1 Libgen
103 Turning Back the Clock Umberto Eco Philosophy 0
104 Travels in hyper reality : essays Umberto Eco | William Weave Philosophy .pdf 1 Libgen
105 On revolution Hannah Arendt Philosophy .pdf 1 Libgen
106 Introducing Kant Christopher Want; Andrzej Klimowski Philosophy .pdf 1 Libgen
107 The Perfect Crime Jean Baudrillard Philosophy .pdf 1 Libgen
108 Introducing Baudrillard Chris Horrocks | Zoran Jevtic Philosophy .pdf 1 Libgen
109 The structure of scientific revolutions Thomas S. Kuhn Philosophy .pdf 1 Libgen
110 The World Turned Upside Down: Radical Ideas During the English Revolution Christopher Hill Philosophy .pdf 1 Libgen
111 On Wine and Hishish Charles Baudelaire Philosophy 0
112 Lacan For Beginners Phillip Hill | David Leach Philosophy .pdf 1 Libgen
113 Late Marxism Frederic Jameson Philosophy 0
114 Adorno Martin Jay Philosophy 0
115 Dialectic of Enlightenment Max Horkheimer | Theodor Adorno | Gunzelin Noeri | Edmund Jephcott Philosophy .pdf 1 Libgen
116 Walter Benjamin: A Biography Momme Brodersen Philosophy 0
117 A Thousand Years of Nonlinear History Manuel De Landa Philosophy .pdf 1 Libgen
118 Barthes: Selected Writings Roland Barthes Philosophy 0
119 Camera Lucida: Reflections on Photography Roland Barthes Philosophy .pdf 1 Libgen
120 Derrida For Beginners Jim Powell | Van Howell Philosophy .pdf 1 Libgen
121 System and Writing in the Philosophy of Jacques Derrida Christopher Johnson Philosophy .pdf 1 Libgen
122 Exploring Humans H. Dooremalen | H. de Regt | MP Schouten Philosophy 0
123 Urheberrecht im Alltag: Kopieren, bearbeiten, selber machen Valie Djordjevic / Robert A. Gehring / Volker Grassmuck / Till Kreutzer / Matthias Spielkamp (Hrsg.) Computer culture
124 DATA browser 02: Engineering Culture Joasia Krysa | Geoff Cox (editors) 2005 Computer culture .pdf 1 1 Monoskop GeoffKrysa_EngineeringCulture.pdf
125 DATA browser 01: Economising Culture Joasia Krysa | Geoff Cox (editors) 2004 Computer culture .pdf 1 1 data browser site
126 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
127 New Media Art Mark Tribe | Reena Jana 2009 Computer culture
128 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
129 The Cathedral & The Bazaar Eric Raymond 2001 Computer culture .pdf 1 1 Monoskop Raymond_The_Cathedral_and_the_Bazaar.pdf
130 The Code Book Simon Singh 2002 Computer culture .pdf 1 1 LibGen Singh_The code book.pdf
131 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
132 Guide to Open Content Licenses Lawrence Liang 2004 Computer culture .pdf 1 1 Liang_guidetoopencontentlicenses.pdf
133 DATA browser 3: Curating Immateriality Joasia Krysa (editor) 2006 Computer culture .pdf 1 1 Monoskop Krysa_DB03CuratingImmateriality.pdf
134 Formen interaktiver Medienkunst Gendolla | Schmirz | Schneider | Spangenberg (Hg) 2001 Computer culture .pdf 1 1 http://theartgalleryofknoxville.com/ocl_v1.2..pdf
135 Oulipo Compendium Harry Mathews | Alastair Brotchie design / writing / publishing
136 Convergence: The International Journal of Research into New Media Technologies - Volume 12 Number 3 August 2004 Computer culture
137 Perl for Web Site Management Computer culture
138 Seven Hundred Penguins design / writing / publishing
139 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
140 An Atlas of Typeforms James Sutton | Alan Bartram design / writing / publishing
141 Structure of the Visual Book Keith Smith design / writing / publishing
142 The Uses of Literacy Richard Hoggart design / writing / publishing .pdf 0 1 Monoskop Hoggart_The Uses of Literacy.pdf
143 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
144 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
145 Art and Electronic Media Edward A. Shanken Art 0
146 The Situationist City Simon Sadler 1998 Art .pdf 1 1 Monoskop Sadler_Simon_The_Situationist_City_1998.pdf
147 The Absolute Report: Time Space Code Memory 2006 Art 1 1 Monoskop Apsolutno_eds_The_Absolute_Report_Time_Space_Code_Memory.pdf
148 Ashes and Broken Brickwork of a Logical Theory Susanne Kriemann Art 0
149 Surrealist Painters and Poets: An Anthology Mary Ann Caws 2001 Art 1 LibGen Mary Ann Caws-Surrealist Painters and Poets_ An Anthology (2001).pdf
150 Guy Debord and the Situationists International Tom McDonough 2002 Art 1 1 MOTW Guy Debord and the Situationist Internatio - Tom McDonough.pdf
151 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
152 Software Studies \ a lexicon Matthew Fuller Programming, Computer culture .pdf 1 1 dm.ncl.ac.uk/courseblog/files/2010/02/softwarestudies..pdf
153 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
154 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
155 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
156 exquisite_code exquisite_code collective Programming, Literature book Aymeric
157 Uncreative Writing Kenneth Goldsmith Literature, Theory .epub 1 1 Steve Goldsmith, Kenneth - Uncreative Writing.epub
158 The Electronic Revolution William Burroughs 1970 Literature, Theory .pdf 1 1 Steve Burroughs_Electronicrevolution.pdf
159 The Invisible Generation William Burroughs Literature, Theory .pdf 0 1 Steve Burroughs_TheInvisibleGeneration.pdf
160 Cybernetics & Ghosts Italo Calvino Literature, Theory, Cybernetics .pdf 1 1 Steve Calvino Cybernetics&Ghosts.pdf
161 Digital Culture Charlie Gere 2002 Media studies .pdf 1 1 Steve Charlie Gere digital-culture.pdf
162 A Preface to Plato Eric Havelock 1963 Literature, Theory .pdf 1 1 Steve Havelock_Eric_A_Preface_to_Plato.pdf
163 Writing Machines Katherine Hayles 2002 Media studies .pdf 1 1 Steve Hayles_N_Katherine_Writing_Machines.pdf
164 Gramophone, Film, Typewriter Friedrich Kittler 1999 Media studies .pdf 1 1 Steve Kittler_Gramophone filmtypewriter.pdf
165 Literature Media Friedrich Kittler 1997 Media studies .pdf 1 1 Steve Kittler_LiteratureMedia.pdf
166 iSpace: Printed English after Joyce, Shannon, Derrida Lydia Liu 2006 Media studies .pdf 1 1 Steve Liu_iSpace.pdf
167 Orality and Literacy Walter Ong Literature, Theory .epub 1 1 Steve OngWalter_Orality_Literacy.epub
168 International Picture Language Otto Neurath 1936 Media studies .pdf 0 1 Steve Neurath_InternationalPictureLanguage.pdf
169 Protocol Alexander R. Galloway Media studies .pdf 1 1 Timo Klok/Monoskop
170 A Prehistory of the Cloud Tung-Hui Hu Media Studies .pdf 1 1 Libgen
171 Paratexts: Thresholds of Interpretation Gerard Genette Literature, Culture, Theory .pdf 1 1 Memory of the World

@ -0,0 +1,171 @@
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 ONeil-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,,,
1 id title authors year_published category fileformat OCR Downloaded Origin file scapeX scapeY
2 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
3 The Qmail Handbook Dave Sill 2002 Technical .pdf 1 1 LibGen Dave Sill (auth.)-The qmail Handbook-Apress (2002).pdf
4 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
5 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
6 LDAP System Administration Gerald Carter 2003 Technical .pdf 1 1 LibGen Gerald Carter-LDAP System Administration-O Reilly Media (2003).pdf
7 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
8 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
9 Linux System Administration Tom Adelstein | Bill Lubanovic 2007 Technical .pdf 1 1 LibGen Tom Adelstein, Bill Lubanovic-Linux System Administration-O'Reilly (2007).pdf
10 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
11 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
12 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
13 Programming Firefox Kenneth C Feldt 2007 Technical .pdf 1 1 LibGen Kenneth C Feldt-Programming Firefox-O'Reilly (2007).pdf
14 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
15 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
16 GNU Emacs Pocket Reference Debra Cameron 1999 Technical .pdf 1 1 LibGen Debra Cameron-GNU Emacs Pocket Reference-O'Reilly (1999).pdf
17 SQL Pocket Guide Jonathan Gennick 2010 Technical .pdf 1 1 LibGen (Pocket Guides) Jonathan Gennick-SQL Pocket Guide -O'Reilly Media (2010).pdf
18 HTML Pocket Reference Jennifer Niederst Robbins 2002 Technical .pdf 1 1 LibGen Jennifer Niederst Robbins-HTML Pocket Reference-Oreily (2002).pdf
19 Regular Expression Pocket Reference Tony Stubblebine 2003 Technical .pdf 1 1 LibGen O'Reilly _ Regular Expression Pocket Refer - By Tony Stubblebine.pdf
20 Apache 2 Pocket Reference Andrew Ford Technical 0
21 CSS Pocket Reference Eric A. Meyer 2007 Technical .pdf 1 1 LibGen Eric A. Meyer-CSS pocket reference-Oreilly (2007).pdf
22 vi Editor Pocket Reference Arnold Robbins 1998 Technical .pdf 1 1 LibGen vi Editor Pocket Reference - Arnold Robbins.pdf
23 The Book of Inkscape Dmitry Kirsanov 2009 Technical .pdf 1 1 MOTW The Book of Inkscape_ The Defin - Dmitry Kirsanov.pdf
24 Working with Mediawiki Yaron Koren 2014 Technical .pdf 1 1 LibGen Yaron Koren-Working with MediaWiki-WikiWorks Press (2014).pdf
25 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
26 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
27 Data Modeling for Everyone Sharon Allen Technical 0
28 The Ultimate Guide to the Vi and Ex Text Editors Hewlett-Packard Technical 0
29 Getting Gread Sounds: The Microphone Book Tom Lubin Technical 0
30 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
31 Python Pocket Reference Mark Lutz 2009 Technical .pdf 1 LibGen (Pocket Reference O'Reilly) Mark Lutz-Python Pocket Reference-O'Reilly (2009).pdf
32 Things That Talk Lorraine Daston (Editor) 2004 Science, History
33 The Social Construction of What Ian Hacking 2000 Science, History .pdf 1 1 LibGen Hacking_TheSocialConstructionofWhat.pdf
34 Instruments and the Imagination Hankins & Silverman 1999 Science, History
35 Mind, Machines and Human Consciousness Robert Nadeau 1991 Science, History
36 The Psychopath Test Jon Ronson 2011 Science, History .pdf 1 1 LibGen Ronson_ThePsychopathTest.pdf
37 The Selfish Gene Richard Dawkins 1989 Science, History .pdf 1 1 LibGen Dawkins_TheSelfishGene.pdf
38 Pandora's Hope Bruno Latour 1999 Science, History .pdf 1 1 LibGen Latour_Pandora'sHope.pdf
39 The New Spirit of Capitalism Luc Boltanski | Eve Chiapello 2005 Science, History .pdf 1 1 LibGen Boltanski_Chiapello_TheNewSpiritofCapitalism.pdf
40 Distinction: A Social Critique of the Judgement of Taste Pierre Bourdieu 2013 Science, History
41 The Political Economy of Media: Enduring Issues, Emerging Dilemmas Robert W. McChesney 2008 Science, History
42 The Dustbin of History Greil Marcus 1995 Science, History
43 Inventing The Victorians Matthew Sweet 2001 Science, History
44 Age of the Extremes: The Short Twentieth Century 1914-1991 Eric Hobsbawm 1994 Science, History .pdf 1 1 LibGen Hobsbawm_AgeofExtremes.pdf
45 Lipstick Traces: A secret History of the Twentieth Century Greil Marcus 1989 Science, History
46 False Dawn: The Delusions of Global Capitalism John Gray 2009 Science, History .epub 1 1 LibGen Gray_FalseDawn.epub
47 Debt: The First 5000 Years David Graeber 2014 Science, History
48 Georges Bataille: An Intellectual Biography Michel Surya 2002 Science, History
49 The Enlightenment Reader Science, History
50 The Century Alain Badiou 2005 Science, History .pdf 0 1 Badiou_TheCentury.pdf
51 Rethinking Media Pluralism Kari Karppinen 2000 Science, History
52 The Philosophy of Symbolic Forms Ernst Cassirer 1953 Philosophy .pdf 1 1 Cassirer_ThePhilosophyofSymbolicFormsVol1.pdf
53 Archaeology Bjørnar Olsen | ‎Michael Shanks | ‎Timothy Webmoor | Christopher Witmore 2012 Science, History
54 The Chomsky Reader Noam Chomsky | James Peck (Editor) 2010 Science, History .epub 1 1 Chomsky_TheChomskyReader.epub
55 The Society of Mind Marvin Minsky 1998 Science, History .pdf 1 1 Minsky_Thesocietyofmind.pdf
56 Interference: A Grand Scientific Musical Theory Richard Merrick 2009 Science, History
57 Understanding media economics Gillian Doyle 2002 Media studies .pdf 1 Libgen Gillian Doyle-Understanding Media Economics-Sage Publications Ltd (2002).pdf
58 Convergence culture Henry Jenkins 2008 Media studies .pdf 1 Libgen Henry Jenkins-Convergence Culture_ Where Old and New Media Collide (2008).pdf
59 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
60 The Culture of Connectivity Jose van Dijck 2013 Media studies .pdf 1 MOTW The Culture of Connectivity_ A - Jose van Dijck.pdf
61 Anti-Media: Ephemera on Speculative Arts Florian Cramer 2013 Media studies 0
62 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
63 Organized Networks Ned Rossiter Media studies .pdf 1 MOTW Organized Networks_ Media Theory, Creative Labour, New Institutions - Ned Rossiter.pdf
64 Over Mediatheorie Arjen Mulder Media studies 0
65 Post Truth Matthew d'Ancona Media studies 0
66 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
67 Media Ecologies: Materialist Energies in Art and Technoculture Matthew Fuller Media studies .pdf 1 MOTW Media Ecologies_ Materialist Energies in A - Matthew Fuller.pdf
68 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
69 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
70 Interface Culture Steven Johnson Media studies .pdf 1 MOTW Interface Culture - Steven Johnson.pdf
71 The Interface Effect Alexander R. Galloway 2012 Media studies .pdf 1 Libgen Alexander R. Galloway-The Interface Effect-Polity (2012)..pdf
72 Present Shock: When Everything Happens Now Douglas Rushkoff Media studies .epub 1 MOTW Douglas Rushkoff-Media Virus! (1996).pdf
73 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
74 Media Virus! Hidden Agendas in Popular Culture Douglas Rushkoff Media studies .pdf 1 Libgen Present Shock_ When Everything - Douglas Rushkoff.epub
75 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
76 Selections from Cultural Writings Antonio Gramsci Media studies 0
77 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
78 Walter Benjamin for beginners Howard Caygill | Alex Coles | Richard Appignanesi Media studies 0
79 What is Situationism A Reader Stewart Home (ed.) Media studies .pdf 1 1 MOTW What Is Situationism_ A Reader - Stewart Home (Ed.).pdf
80 Cyburbia James Harkin Media studies 0
81 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
82 Save and Forget Thomas Walskaar Media studies .pdf 1 1 Academia.edu Save_and_Forget.pdf
83 The World Explained Erick Beltran Media studies 0
84 Information - Documents of Contemporary Art Sarah Cook Media studies 0
85 Postscript on the Societies of Control Gilles Deleuze Media studies .pdf 1 1 Jstor postscript_on_societies_of_control.pdf
86 Ethics Subjectivity and Truth Michel Foucault Media studies .pdf 1 Monoskop Foucault_Michel_Ethics_Subjectivity_and_Truth.pdf
87 The Infinite Conversation Maurice Blanchot Media studies .pdf 1 MOTW The Infinite Conversation - Maurice Blanchot.pdf
88 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
89 Jean Paul A Reader Timothy J. Casey (ed.) Media studies 0
90 The Ear of the Other Jaques Derrida 1985 Media studies .pdf 1 Monoskop Derrida_Jacques_Ear_of_the_Other_1985..pdf
91 Statements on Appropriation (London Version) Michaelis Pichler Media studies 1 Pichler_Statements_on_Appropriation.pdf
92 An Introduction to Western Philosophy Antony Flew Philosophy 0
93 The Postmodern Turn Best Kellner Philosophy 0
94 Ideology Terry Eagleton Philosophy .pdf 1 Libgen
95 Ludwig Wittgenstein Ray Monk Philosophy .pdf 1 Libgen
96 The Human Condition Hannah Arendt Philosophy .pdf 1 Libgen
97 Introducing Foucault Chris Horrocks | Zoran Jevtic Philosophy .pdf 1 Libgen
98 The Lives of Michel Foucault David Mcey Philosophy .pdf 1 Libgen
99 Discipline and Punish Michel Foucault Philosophy .pdf 1 Libgen
100 Logic of Scientific Discovery Popper K. Philosophy .pdf 1 Libgen
101 Intensive Science and Virtual Philosophy Manuel DeLanda Philosophy .pdf 1 Libgen
102 Kant and the Platypus: Essays on Language and Cognition Umberto Eco | Alastair McEwen Philosophy .pdf 1 Libgen
103 Turning Back the Clock Umberto Eco Philosophy 0
104 Travels in hyper reality : essays Umberto Eco | William Weave Philosophy .pdf 1 Libgen
105 On revolution Hannah Arendt Philosophy .pdf 1 Libgen
106 Introducing Kant Christopher Want; Andrzej Klimowski Philosophy .pdf 1 Libgen
107 The Perfect Crime Jean Baudrillard Philosophy .pdf 1 Libgen
108 Introducing Baudrillard Chris Horrocks | Zoran Jevtic Philosophy .pdf 1 Libgen
109 The structure of scientific revolutions Thomas S. Kuhn Philosophy .pdf 1 Libgen
110 The World Turned Upside Down: Radical Ideas During the English Revolution Christopher Hill Philosophy .pdf 1 Libgen
111 On Wine and Hishish Charles Baudelaire Philosophy 0
112 Lacan For Beginners Phillip Hill | David Leach Philosophy .pdf 1 Libgen
113 Late Marxism Frederic Jameson Philosophy 0
114 Adorno Martin Jay Philosophy 0
115 Dialectic of Enlightenment Max Horkheimer | Theodor Adorno | Gunzelin Noeri | Edmund Jephcott Philosophy .pdf 1 Libgen
116 Walter Benjamin: A Biography Momme Brodersen Philosophy 0
117 A Thousand Years of Nonlinear History Manuel De Landa Philosophy .pdf 1 Libgen
118 Barthes: Selected Writings Roland Barthes Philosophy 0
119 Camera Lucida: Reflections on Photography Roland Barthes Philosophy .pdf 1 Libgen
120 Derrida For Beginners Jim Powell | Van Howell Philosophy .pdf 1 Libgen
121 System and Writing in the Philosophy of Jacques Derrida Christopher Johnson Philosophy .pdf 1 Libgen
122 Exploring Humans H. Dooremalen | H. de Regt | MP Schouten Philosophy 0
123 Urheberrecht im Alltag: Kopieren, bearbeiten, selber machen Valie Djordjevic / Robert A. Gehring / Volker Grassmuck / Till Kreutzer / Matthias Spielkamp (Hrsg.) Computer culture
124 DATA browser 02: Engineering Culture Joasia Krysa | Geoff Cox (editors) 2005 Computer culture .pdf 1 1 Monoskop GeoffKrysa_EngineeringCulture.pdf
125 DATA browser 01: Economising Culture Joasia Krysa | Geoff Cox (editors) 2004 Computer culture .pdf 1 1 data browser site
126 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
127 New Media Art Mark Tribe | Reena Jana 2009 Computer culture
128 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
129 The Cathedral & The Bazaar Eric Raymond 2001 Computer culture .pdf 1 1 Monoskop Raymond_The_Cathedral_and_the_Bazaar.pdf
130 The Code Book Simon Singh 2002 Computer culture .pdf 1 1 LibGen Singh_The code book.pdf
131 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
132 Guide to Open Content Licenses Lawrence Liang 2004 Computer culture .pdf 1 1 Liang_guidetoopencontentlicenses.pdf
133 DATA browser 3: Curating Immateriality Joasia Krysa (editor) 2006 Computer culture .pdf 1 1 Monoskop Krysa_DB03CuratingImmateriality.pdf
134 Formen interaktiver Medienkunst Gendolla | Schmirz | Schneider | Spangenberg (Hg) 2001 Computer culture .pdf 1 1 http://theartgalleryofknoxville.com/ocl_v1.2..pdf
135 Oulipo Compendium Harry Mathews | Alastair Brotchie design / writing / publishing
136 Convergence: The International Journal of Research into New Media Technologies - Volume 12 Number 3 August 2004 Computer culture
137 Perl for Web Site Management Computer culture
138 Seven Hundred Penguins design / writing / publishing
139 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
140 An Atlas of Typeforms James Sutton | Alan Bartram design / writing / publishing
141 Structure of the Visual Book Keith Smith design / writing / publishing
142 The Uses of Literacy Richard Hoggart design / writing / publishing .pdf 0 1 Monoskop Hoggart_The Uses of Literacy.pdf
143 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
144 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
145 Art and Electronic Media Edward A. Shanken Art 0
146 The Situationist City Simon Sadler 1998 Art .pdf 1 1 Monoskop Sadler_Simon_The_Situationist_City_1998.pdf
147 The Absolute Report: Time Space Code Memory 2006 Art 1 1 Monoskop Apsolutno_eds_The_Absolute_Report_Time_Space_Code_Memory.pdf
148 Ashes and Broken Brickwork of a Logical Theory Susanne Kriemann Art 0
149 Surrealist Painters and Poets: An Anthology Mary Ann Caws 2001 Art 1 LibGen Mary Ann Caws-Surrealist Painters and Poets_ An Anthology (2001).pdf
150 Guy Debord and the Situationists International Tom McDonough 2002 Art 1 1 MOTW Guy Debord and the Situationist Internatio - Tom McDonough.pdf
151 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
152 Software Studies \ a lexicon Matthew Fuller Programming, Computer culture .pdf 1 1 dm.ncl.ac.uk/courseblog/files/2010/02/softwarestudies..pdf
153 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
154 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
155 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
156 exquisite_code exquisite_code collective Programming, Literature book Aymeric
157 Uncreative Writing Kenneth Goldsmith Literature, Theory .epub 1 1 Steve Goldsmith, Kenneth - Uncreative Writing.epub
158 The Electronic Revolution William Burroughs 1970 Literature, Theory .pdf 1 1 Steve Burroughs_Electronicrevolution.pdf
159 The Invisible Generation William Burroughs Literature, Theory .pdf 0 1 Steve Burroughs_TheInvisibleGeneration.pdf
160 Cybernetics & Ghosts Italo Calvino Literature, Theory, Cybernetics .pdf 1 1 Steve Calvino Cybernetics&Ghosts.pdf
161 Digital Culture Charlie Gere 2002 Media studies .pdf 1 1 Steve Charlie Gere digital-culture.pdf
162 A Preface to Plato Eric Havelock 1963 Literature, Theory .pdf 1 1 Steve Havelock_Eric_A_Preface_to_Plato.pdf
163 Writing Machines Katherine Hayles 2002 Media studies .pdf 1 1 Steve Hayles_N_Katherine_Writing_Machines.pdf
164 Gramophone, Film, Typewriter Friedrich Kittler 1999 Media studies .pdf 1 1 Steve Kittler_Gramophone filmtypewriter.pdf
165 Literature Media Friedrich Kittler 1997 Media studies .pdf 1 1 Steve Kittler_LiteratureMedia.pdf
166 iSpace: Printed English after Joyce, Shannon, Derrida Lydia Liu 2006 Media studies .pdf 1 1 Steve Liu_iSpace.pdf
167 Orality and Literacy Walter Ong Literature, Theory .epub 1 1 Steve OngWalter_Orality_Literacy.epub
168 International Picture Language Otto Neurath 1936 Media studies .pdf 0 1 Steve Neurath_InternationalPictureLanguage.pdf
169 Protocol Alexander R. Galloway Media studies .pdf 1 1 Timo Klok/Monoskop
170 A Prehistory of the Cloud Tung-Hui Hu Media Studies .pdf 1 1 Libgen
171 Paratexts: Thresholds of Interpretation Gerard Genette Literature, Culture, Theory .pdf 1 1 Memory of the World
Loading…
Cancel
Save