Hiroki Azuma
8,0 / 10
1 ocen
1 opinii
Dyskutuj
Wydawnictwo: University of Minnesota Press ezoteryka, senniki, horoskopy
176 str. 2 godz. 56 min.
- Kategoria:
- ezoteryka, senniki, horoskopy
- Format:
- papier
- Wydawnictwo:
- University of Minnesota Press
- Data wydania:
- 2009-03-25
- Data 1. wydania:
- 2009-03-25
- Liczba stron:
- 176
- Czas czytania
- 2 godz. 56 min.
- Język:
- angielski
- ISBN:
- 9780816653522
A publishing event—the highly influential best seller in Japan translated into English
Hiroki Azuma’s Otaku offers a critical, philosophical, and historical inquiry into the characteristics and consequences of this consumer subculture. For Azuma, one of Japan’s leading public intellectuals, otaku culture mirrors the transformations of postwar Japanese society and the nature of human behavior in the postmodern era. A vital non-Western intervention in postmodern culture and theory, Otaku is also a perceptive account of Japanese popular culture.
Abandon every preconception, all ye who enter! In this mind-boggling book on Japan's postmodernity, Hiroki Azuma conjures the ghost of the famous post-Hegelian Kojève, whose theory gets revived and even ‘animated’ here to reinterpret the anime-saturated realism that dominates our global Japanized reality studio. No one has more tactfully intertwined post-Derridean philosophy with Otaku-centric subculture studies than Azuma.
—
Takayuki Tatsumi, author of Full Metal Apache: Transactions Between Cyberpunk Japan and Avant-Pop America
Średnia ocen
8,0 / 10
1 opinii 1 ocen Dyskutuj
Oceń książkę
i
Dodaj do biblioteczki
${data.typeName}
${data.price.replace('.', ',')}zł
idź do sklepu
`;return html;}return '';};const renderPromotedTemplate = (data) => {if (data.length > 0){let html = '
Polecane księgarnie
';for (key in data){url = data[key].url + ".promoted";offer = data[key].data;const pricePrefix = offer.type === 'subscription' ? 'od' : '';html += `
${offer.name}${renderSpecialBookstoreOffer(offer.shopId)}${offer.typeName}${pricePrefix}${offer.price.replace('.', ',')}złidź do sklepu`;}html += '
';return html;}return '';};const renderRegularTemplate = (data) => {if (data.length > 0){let html = '
Pozostałe księgarnie
';for (key in data){url = data[key].url + ".regular";offer = data[key].data;const pricePrefix = offer.type === 'subscription' ? 'od' : '';html += `
${offer.name}${renderSpecialBookstoreOffer(offer.shopId)}${offer.typeName}${pricePrefix}${offer.price.replace('.', ',')}złidź do sklepu`;}html += '
';return html;}return '';};const renderBBAlternative = (data) => {if (data.length > 0){document.getElementById('bbOffersNav').style.display = 'none';$('h2 span').each(function(){$(this).text($(this).text().replace('Porównaj ceny', 'Hiroki Azuma w księgarniach'));});let html = renderAdvert(advertData);html += '
Polecane księgarnie
Nie znaleźliśmy tej książki w księgarniach, ale może zainteresują Ciebie inne pozycje autora Hiroki Azuma. Wybierz księgarnię.
';for (key in data){url = data[key].url;offer = data[key].data;html +=`
${offer.name}idź do sklepu`;}html += '
';document.querySelector('#bbOffers').innerHTML = html;}};var dynamicSort = (property) => {var sortOrder = 1;if(property[0] === "-"){sortOrder = -1;property = property.substr(1);}return function (a,b){var result = (parseFloat(a[property]) < parseFloat(b[property])) ? -1 : (parseFloat(a[property]) > parseFloat(b[property])) ? 1 : 0;return result * sortOrder;}}var countBBOffers = (data) => {var bbOfferBooks = new Array;for (let key in data){if (data[key].type == typeBook){bbOfferBooks.push(data[key]);}}var bbOfferEbooks = new Array;for (let key in data){if (data[key].type == typeEbook){bbOfferEbooks.push(data[key]);}}var bbOfferAudiobooks = new Array;for (let key in data){if (data[key].type == typeAudiobook){bbOfferAudiobooks.push(data[key]);}}var bbOfferSubscriptions = new Array;for (let key in data){if (data[key].type == typeSubscription){bbOfferSubscriptions.push(data[key]);}}return {books: bbOfferBooks.length,ebooks: bbOfferEbooks.length,audiobooks: bbOfferAudiobooks.length,subscriptions: bbOfferSubscriptions.length,all: (bbOfferBooks.length + bbOfferEbooks.length + bbOfferAudiobooks.length)};};var getBBOffersByMinPrice = (data, type) => {var items = new Array;for (let key in data){if (type == data[key].type || type == typeAll){items.push({id: data[key].id, price: data[key].price});}}if (items.length > 0){items.sort(dynamicSort('price'));for (let key in data){if (data[key].id == items[0].id){return {url: key,data: data[key]};}}}return false;};var getBBOffersByPromoted = (data, type) => {var items = new Array;for (let key in data){if ((type == data[key].type || type == typeAll) && Object.hasOwn(data[key], 'bbWeight')){items.push({url: key,data: data[key]});}}if (items.length > 0){items.sort(dynamicSort('-data.bbWeight'));}return items;};var getBBOffersByRegular = (data, type) => {var items = new Array;for (let key in data){if ((type == data[key].type || type == typeAll) && Object.hasOwn(data[key], 'bbWeight') == false){items.push({url: key,data: data[key]});}}if (items.length > 0){items.sort(dynamicSort('data.price'));}return items;};var renderBB = (type) => {if(typeof gtag != 'undefined' && type){gtag("event", "BuyBox",{misc_event_name: type,misc_event_type: "click",});}let data = sessionStorage.getItem("bbOffers_195608", false);var html = '';if (data != false){data = JSON.parse(data);html += renderLowestPriceTemplate(getBBOffersByMinPrice(data, type));html += renderAdvert(advertData);html += renderPromotedTemplate(getBBOffersByPromoted(data, type));html += renderRegularTemplate(getBBOffersByRegular(data, type));}$('.bb-nav-tab').removeClass('active');$(".bb-nav-tab[data-type='"+ type +"']").addClass('active');let offerCounters = countBBOffers(data);switch (type){case typeBook:offerCounters = offerCounters.books;break;case typeEbook:offerCounters = offerCounters.ebooks;break;case typeAudiobook:offerCounters = offerCounters.audiobooks;break;case typeSubscription:offerCounters = offerCounters.subscriptions;break;case typeAll:offerCounters = offerCounters.all;break;}if (offerCounters == 0){html = '
Brak ofert
';html += '
Żadna z księgarń nie posiada teraz książki w wybranym przez Ciebie formacie
';html += '
';}const offers = document.querySelector('#bbOffers');offers.innerHTML = html;addClickListener(offers);}var fetchBBOffers = (bbUrl) => {fetch(bbUrl,{"method": "GET",headers: {'x-requested-with': 'xmlhttprequest'}}).then(data => data.json()).then(data => {if (data.status == true){const dataShopIds = Object.values(data.data).map(item => item.shopId.toString());const filteredSubscriptions = subscriptions.filter(subscription => {const shopId = Object.values(subscription)[0].shopId.toString();return dataShopIds.includes(shopId);});const dataArray = Object.entries(data.data).map(([key, value]) => ({ [key]: value }));const mergedData = dataArray.concat(filteredSubscriptions);const reversedObject = {};mergedData.forEach(item => {const url = Object.keys(item)[0];const value = item[url];reversedObject[url] = value;});data.data = reversedObject;sessionStorage.setItem("bbOffers_195608", JSON.stringify(data.data));let offerCounters = countBBOffers(data.data);if (offerCounters.books > 0){let bestBookOffer = getBBOffersByMinPrice(data.data, typeBook);document.querySelector('#bbOffersBestBookOffer').innerHTML = "od " + bestBookOffer.data.price.replace('.', ',') + " zł";}if (offerCounters.ebooks > 0){let bestEbookOffer = getBBOffersByMinPrice(data.data, typeEbook);document.querySelector('#bbOffersBestEbookOffer').innerHTML = "od " + bestEbookOffer.data.price.replace('.', ',') + " zł";}if (offerCounters.audiobooks > 0){let bestAudiobookOffer = getBBOffersByMinPrice(data.data, typeAudiobook);document.querySelector('#bbOffersBestAudiobookOffer').innerHTML = "od " + bestAudiobookOffer.data.price.replace('.', ',') + " zł";}if (offerCounters.subscriptions > 0){let bestSubscriptionOffer = getBBOffersByMinPrice(data.data, typeSubscription);document.querySelector('#bbOffersBestSubscriptionOffer').innerHTML = "od " + bestSubscriptionOffer.data.price.replace('.', ',') + " zł";}if (offerCounters.all > 0){let bestAllOffer = getBBOffersByMinPrice(data.data, typeAll);document.querySelector('#bbOffersBestAllOffer').innerHTML = "od " + bestAllOffer.data.price.replace('.', ',') + " zł";}//lc-1638 linkowanie do wybranych formatowif (['#bb_book', '#bb_ebook', '#bb_audiobook', '#bb_subscription', '#bb_all'].includes(window.location.hash)){const elementPosition = document.querySelector('#kup').getBoundingClientRect().top;window.scrollTo(0, elementPosition);renderBB(window.location.hash.replace('#bb_', ''));}else if (1 == bookTypeId && offerCounters.books > 0){renderBB(typeBook);}else if (2 == bookTypeId && offerCounters.audiobooks > 0){renderBB(typeAudiobook);}else if (3 == bookTypeId && offerCounters.ebooks > 0){renderBB(typeEbook);}else if (offerCounters.books > 0){renderBB(typeBook);}else if (offerCounters.ebooks > 0){renderBB(typeEbook);}else if (offerCounters.audiobooks > 0){renderBB(typeAudiobook);}else {if (offerCounters.all > 0){renderBB(typeAll);}else {if (typeof gtag != 'undefined'){gtag('event', 'ceView', {'event_action': 'BuyBox bez ofert', 'event_category': 'view', 'event_label': '195608'});}renderBBAlternative([{url: 'https://go.buybox.click/linkclick_11_155?p1=web_desktop&p2=195608&p3=book.details.main.list.alternative&url=https%3A%2F%2Fbonito.pl%2F',data: {name: 'Bonito.pl',icon: 'https://assets.buybox.click/f167ec6490a7860aa179b7d60d3f18cfa5beea96.png'}},{url: 'https://go.buybox.click/linkclick_11_569?p1=web_desktop&p2=195608&p3=book.details.main.list.alternative&url=https%3A%2F%2Fwww.empik.com%2Fszukaj%2Fprodukt%3Fq%3DHiroki Azuma',data: {name: 'empik.com',icon: 'https://assets.buybox.click/e963fd6816fbe2a568275e68011ee7193a4d22c2.png'}},{url: 'https://go.buybox.click/linkclick_11_52?p1=web_desktop&p2=195608&p3=book.details.main.list.alternative&url=https%3A%2F%2Ftantis.pl%2Fszukaj%3Fquery=Hiroki Azuma',data: {name: 'tantis.pl',icon: 'https://assets.buybox.click/c1f2543f59c0240778e4c90fc4633cbc8e689267.png'}},{url: 'https://go.buybox.click/linkclick_7084_33?p1=web_desktop&p2=195608&p3=book.details.main.list.alternative&url=https%3A%2F%2Fwww.znak.com.pl%2Fwyszukiwanie%3Fszukaj%3DHiroki Azuma',data: {name: 'znak.com.pl',icon: 'https://assets.buybox.click/9c2a1e8ebc008685bc1482b96b7840c5b764115d.png'}},{url: 'https://go.buybox.click/linkclick_7084_16?p1=web_desktop&p2=195608&p3=book.details.main.list.alternative&url=https%3A%2F%2Fwoblink.com%2Fkatalog%2Fal%3Fszukasz%3DHiroki Azuma',data: {name: 'Woblink.com',icon: 'https://assets.buybox.click/be9c57b35110461f63c11995aabc7260e7ee245d.png'}},{url: 'https://go.buybox.click/linkclick_11_11?p1=web_desktop&p2=195608&p3=book.details.main.list.alternative&url=https%3A%2F%2Fwww.taniaksiazka.pl%2FSzukaj%2Fq-Hiroki Azuma',data: {name: 'Taniaksiazka.pl',icon: 'https://assets.buybox.click/9e1bc1cb3c94dd5d1170ac98a276c39a77d5e70f.png'}},]);}}}});};document.addEventListener('DOMContentLoaded', function (){fetchBBOffers('https://buybox.click/17929/buybox.json?name=Otaku%3A+Japan%27s+Database+Animals&info[]=Hiroki+Azuma&number[]=9780816653522&skip_jQuery=1&abpar1=web_desktop&widget_element_id=1&abpar2=195608.0.&abpar3=book.details.main.list');$('.bb-nav-tab').click(function (e){e.preventDefault();$('.bb-nav-tab').removeClass('active');$(this).addClass('active');renderBB($(this).attr('data-type'));});$('.bb-nav-list').change(function (){renderBB($(this).val());});});
Porównaj ceny
i
Porównywarka z zawsze aktualnymi cenami
W naszej porównywarce znajdziesz książki, audiobooki i e-booki, ze wszystkich najpopularniejszych księgarni internetowych i stacjonarnych, zawsze w najlepszej cenie. Wszystkie pozycje zawierają aktualne ceny sprzedaży.Nasze księgarnie partnerskie oferują wygodne formy dostawy takie jak: dostawę do paczkomatu, przesyłkę kurierską lub odebranie przesyłki w wybranym punkcie odbioru. Darmowa dostawa jest możliwa po przekroczeniu odpowiedniej kwoty za zamówienie lub dla stałych klientów i beneficjentów usług premium zgodnie z regulaminem wybranej księgarni.
Za zamówienie u naszych partnerów zapłacisz w najwygodniejszej dla Ciebie formie:
• online
• przelewem
• kartą płatniczą
• Blikiem
• podczas odbioru
W zależności od wybranej księgarni możliwa jest także wysyłka za granicę.Ceny widoczne na liście uwzględniają rabaty i promocje dotyczące danego tytułu, dzięki czemu zawsze możesz szybko porównać najkorzystniejszą ofertę.
Szukamy ofert...