add all previous files

master
onebigear 2 years ago
parent 4c292f05ba
commit 5627367e24

@ -0,0 +1,42 @@
English,Japanese
Byte,バイト
Computer,コンピューター
Arcade,アーケード
Internet,インターネット
Network,ネットワーク
Personal Computer,パソコン
Cyberspace,サイバースペース
Second Summer Of Love,セカンドサマーオブラブ
Centralization,中央集権化
Underground Subculture,地下サブカルチャー
Counterculture,カウンターカルチャー
Data,データ
Penpal,ペンパル
System,システム
Game magazine,ゲーム雑誌
Computer magazine,パソコン雑誌
Telephone line,電話回線
Telephone book,電話帳
Den Den Mushi telephone snails,電伝虫
California Ideology,カリフォルニアイデオロジー
Neuromancer,ニューロマンサー
TRON,トロン
Whole Earth Catalog,全地球カタログ
Hackers,ハッカー
Television Game Anthology,
Computer communication,通信
Eighth Grader Syndrome,中二
Trance,鬼畜
Host,ホスト
Ghost in the Shell,攻殻機動隊
Yaruo,やる夫
e-zine,
server,サーバ
mail art,メールアート
links,リンク
Cyberpunk,サイバーパンク
Denpa-kei,電波系
Otaku,オタク
Kawaii,かわいい
Decentralization,地方分権化
Distribution,分布
1 English Japanese
2 Byte バイト
3 Computer コンピューター
4 Arcade アーケード
5 Internet インターネット
6 Network ネットワーク
7 Personal Computer パソコン
8 Cyberspace サイバースペース
9 Second Summer Of Love セカンドサマーオブラブ
10 Centralization 中央集権化
11 Underground Subculture 地下サブカルチャー
12 Counterculture カウンターカルチャー
13 Data データ
14 Penpal ペンパル
15 System システム
16 Game magazine ゲーム雑誌
17 Computer magazine パソコン雑誌
18 Telephone line 電話回線
19 Telephone book 電話帳
20 Den Den Mushi telephone snails 電伝虫
21 California Ideology カリフォルニアイデオロジー
22 Neuromancer ニューロマンサー
23 TRON トロン
24 Whole Earth Catalog 全地球カタログ
25 Hackers ハッカー
26 Television Game Anthology
27 Computer communication 通信
28 Eighth Grader Syndrome 中二
29 Trance 鬼畜
30 Host ホスト
31 Ghost in the Shell 攻殻機動隊
32 Yaruo やる夫
33 e-zine
34 server サーバ
35 mail art メールアート
36 links リンク
37 Cyberpunk サイバーパンク
38 Denpa-kei 電波系
39 Otaku オタク
40 Kawaii かわいい
41 Decentralization 地方分権化
42 Distribution 分布

@ -0,0 +1,43 @@
{
"Byte": "バイト",
"Computer": "コンピューター",
"Arcade": "アーケード",
"Internet": "インターネット",
"Network": "ネットワーク",
"Personal Computer": "パソコン",
"Cyberspace": "サイバースペース",
"Second Summer Of Love": "セカンドサマーオブラブ",
"Centralization": "中央集権化",
"Underground Subculture": "地下サブカルチャー",
"Counterculture": "カウンターカルチャー",
"Data": "データ",
"Penpal": "ペンパル",
"System": "システム",
"Game magazine": "ゲーム雑誌",
"Computer magazine": "パソコン雑誌",
"Telephone line": "電話回線",
"Telephone book": "電話帳",
"Den Den Mushi telephone snails": "電伝虫",
"California Ideology": "カリフォルニアイデオロジー",
"Neuromancer": "ニューロマンサー",
"TRON": "トロン",
"Whole Earth Catalog": "全地球カタログ",
"Hackers": "ハッカー",
"Television Game Anthology": "",
"Computer communication": "通信",
"Eighth Grader Syndrome": "中二",
"Trance": "鬼畜",
"Host": "ホスト",
"Ghost in the Shell": "攻殻機動隊",
"Yaruo": "やる夫",
"e-zine": "",
"server": "サーバ",
"mail art": "メールアート",
"links": "リンク",
"Cyberpunk": "サイバーパンク",
"Denpa-kei": "電波系",
"Otaku": "オタク",
"Kawaii": "かわいい",
"Decentralization": "地方分権化",
"Distribution": "分布"
}

@ -0,0 +1,46 @@
import csv
import json
# Modified from https://www.geeksforgeeks.org/convert-csv-to-json-using-python/
# Function to convert a CSV to JSON
# Takes the file paths as arguments
def make_json(csvFilePath, jsonFilePath):
# create a dictionary
dictionary = {}
# Open a csv reader called DictReader
with open(csvFilePath, encoding='utf-8') as csvf:
csvReader = csv.DictReader(csvf)
# Convert each row into a dictionary
# and add it to data
for rows in csvReader:
# Assuming a column named 'English' to
# be the primary key
key = rows['English']
print("key is {}".format(key))
value = rows['Japanese']
print("value is {}".format(value))
dictionary[key] = value
# Open a json writer, and use the json.dumps()
# function to dump data
with open(jsonFilePath, 'w', encoding='utf-8') as jsonf:
jsonf.write(json.dumps(dictionary, ensure_ascii=False, indent=4))
# Driver Code
# Decide the two file paths according to your
# computer system
csvFilePath = r'dictionary.csv'
jsonFilePath = r'dictionary.json'
# Call the make_json function
make_json(csvFilePath, jsonFilePath)
# interesting project on pokemon csv
# https://amiradata.com/parse-and-convert-json-to-csv-python/

@ -0,0 +1,20 @@
# computer archaeology jp multimedia playlist and utility
## multimedia playlist
In this playlist, you will find a list of multimedia content to navigate the space of "computer archaeology jp":
* a handful of songs
* an NES long play
* a manual manga
* an advertisement
* an audio book
* a book
## utility
Jinja templating engine for a web zine project.
Usage
## thank you
Supported by the Race x Technology Micro Grant program of the Media Archaeology Lab

@ -0,0 +1,27 @@
from flask import Flask
app = Flask(__name__)
HTML_TEMPLATE = """
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>media archaeology jp multimedia playlist</title>
<style>
img{
display:block;
}
</style>
</head>
<body>
<h1>computer archaeology jp multimedia playlist</h1>
</body>
</html>
"""
@app.route("/")
def homepage():
return HTML_TEMPLATE
if __name__ == '__main__':
app.run(use_reloader=True, debug=True)

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 500 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 892 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 490 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 593 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 583 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 528 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

@ -0,0 +1,95 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> media archaeology jp multimedia playlist Test</title>
<link rel="stylesheet" type="text/css" href="static/style.css">
</head>
<body>
<div class="container">
<div class ="heading">
<h1 class = "title">media archaeology jp multimedia playlist</h1>
</div>
<div class="gallery">
<a class = "" href="https://archive.org/details/alphaville-big-in-japan-original-vhs">
<img src="img/" alt="Big in japan">
</a>
<a class = "" href="https://www.youtube.com/watch?v=k8ozVkIkr-g">
<img src="img/" alt="新世紀エヴァンゲリオン EVA - 残酷な天使のテーゼ [SC88]">
</a>
<a class = "print" href="https://archive.org/details/famicom-manga/page/n1/mode/2up">
<img src="img/famicon_manga.png" alt="Nintendo Famicom user manual manga">
</a>
<a class = "audio" href="https://www.nicovideo.jp/watch/sm2380352">
<img src="img/nifty_serve.png" alt="悲しみのNIFTY-Serve">
</a>
<a class = "" href="https://archive.org/details/cd_laventurier_indochine/disc1/01.+Indochine+-+L'Aventurier.flac">
<img src="img/" alt="Laventurier">
</a>
<a class = "audio" href="
https://archive.org/details/neuromancer-william-gibson/1+of+2.mp3">
<img src="img/neuromancer.png" alt="neuromancer">
</a>
<a class = "video" href="https://archive.org/details/ToshibaPasopiaIQMSX_1985">
<img src="img/tosiba_msx.png" alt="toshiba msx advertisement in 1985">
</a>
<a class = "video" href="https://archive.org/details/Timothy_Leary_Archives_239">
<img src="img/" alt="timothy leary in japan">
</a>
<a class = "game" href="https://archive.org/details/NESLongplay918AmericaDaitouryouSenkyo">
<img src="img/america_pre.png" alt="アメリカ大統領選挙">
</a>
<a class = "" href="https://archive.org/details/artificial-intelligence-on-the-commodore-64/page/n33/mode/2up">
<img src="img/" alt="Artificial intelligence on the Commodore 64 : make your micro think">
</a>
<a class = "" href="">
<img src="img/yaruo_text.png" alt="yaruo text">
</a>
<a class = "archive" href="https://gogoyaru.blogspot.com/">
<img src="img/yaruo.png" alt="Afternoon yaruo time">
</a>
<a class = "archive" href="http://azeria.jp/index.php">
<img src="img/" alt="AA/ASCIIART archive">
</a>
<a class = "" href="https://lolicore.net/">
<img src="img/ " alt="Lolicore music archive">
</a>
<a class = "archive" href="https://museum.ipsj.or.jp/en/computer/device/printer/0079.html">
<img src="img/oki_wiredot.png" alt="Oki wiredot printer">
</a>
<a class = "archive" href="https://web.archive.org/web/20150319073438/http://www.toragiku.com/kopa/pyuta4.htm">
<img src="img/pyuuta.png" alt="Pyuuta">
</a>
<a class = "archive" href="https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html">
<img src="img/pyuuta_text.jpg" alt="Pyuuta text">
</a>
<a class = "archive" href="https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html">
<img src="img/pyuuta_text_color.jpg" alt="Pyuuta text color">
</a>
</div>
</div>
</body>
</html>

@ -0,0 +1,18 @@
import json
from jinja2 import Environment, FileSystemLoader
with open("playlist.json","r") as d:
playlist = json.load(d)
fileLoader = FileSystemLoader("templates")
env = Environment(loader=fileLoader)
rendered = env.get_template("playlist.html").render(playlist=playlist,title="Test")
#print(playlist)
# write to html
fileName = "index.html"
with open(f"{fileName}","w") as f:
f.write(rendered)

@ -0,0 +1,26 @@
import csv
import json
def csv_to_json(csvFilePath, jsonFilePath):
jsonArray = []
#read csv file
with open(csvFilePath, encoding='utf-8') as csvf:
#load csv file data using csv library's dictionary reader
csvReader = csv.DictReader(csvf)
#convert each csv row into python dict
for row in csvReader:
#add this python dict to json array
jsonArray.append(row)
#convert python jsonArray to JSON String and write to file
with open(jsonFilePath, 'w', encoding='utf-8') as jsonf:
jsonString = json.dumps(jsonArray, ensure_ascii=False, indent=4)
print(jsonString)
jsonf.write(jsonString)
csvFilePath = r'playlist.csv'
jsonFilePath = r'playlist.json'
csv_to_json(csvFilePath, jsonFilePath)

@ -0,0 +1,20 @@
title,link,img,type,content,onText
Big in japan,https://archive.org/details/alphaville-big-in-japan-original-vhs,,,,
新世紀エヴァンゲリオン EVA - 残酷な天使のテーゼ [SC88],https://www.youtube.com/watch?v=k8ozVkIkr-g,,,,
Nintendo Famicom user manual manga,https://archive.org/details/famicom-manga/page/n1/mode/2up,famicon_manga.png,print,Nintendo Famicom user manual in manga format.,famicon games displays text
悲しみのNIFTY-Serve,https://www.nicovideo.jp/watch/sm2380352,nifty_serve.png,audio,"A melancholic song written for NIFTY Serve, a telecommunications services in Japan active from 1987 to 2006.",writing text in the Nifty serve network
Laventurier,https://archive.org/details/cd_laventurier_indochine/disc1/01.+Indochine+-+L'Aventurier.flac,,,,
neuromancer,"
https://archive.org/details/neuromancer-william-gibson/1+of+2.mp3",neuromancer.png,audio,"Chiba city blues, razor girl, console cowboy, and the matrix.",text is the matrix
toshiba msx advertisement in 1985,https://archive.org/details/ToshibaPasopiaIQMSX_1985,tosiba_msx.png,video,Advertisement featuring kanji input.,advertisement of text processor
timothy leary in japan,https://archive.org/details/Timothy_Leary_Archives_239,,video,Timothy Leary interviewed in japan. watch with caution.,
アメリカ大統領選挙,https://archive.org/details/NESLongplay918AmericaDaitouryouSenkyo,america_pre.png,game,A longplay of an NES game of the American presidential election.,
Artificial intelligence on the Commodore 64 : make your micro think,https://archive.org/details/artificial-intelligence-on-the-commodore-64/page/n33/mode/2up,,,,
yaruo text,,yaruo_text.png,,,
Afternoon yaruo time,https://gogoyaru.blogspot.com/,yaruo.png,archive,,ASCII text memetic network
AA/ASCIIART archive,http://azeria.jp/index.php,,archive,,
Lolicore music archive,https://lolicore.net/, ,,,
Oki wiredot printer,https://museum.ipsj.or.jp/en/computer/device/printer/0079.html,oki_wiredot.png,archive,,
Pyuuta,https://web.archive.org/web/20150319073438/http://www.toragiku.com/kopa/pyuta4.htm,pyuuta.png,archive,,
Pyuuta text,https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html,pyuuta_text.jpg,archive,,
Pyuuta text color,https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html,pyuuta_text_color.jpg,archive,,
1 title link img type content onText
2 Big in japan https://archive.org/details/alphaville-big-in-japan-original-vhs
3 新世紀エヴァンゲリオン EVA - 残酷な天使のテーゼ [SC88] https://www.youtube.com/watch?v=k8ozVkIkr-g
4 Nintendo Famicom user manual manga https://archive.org/details/famicom-manga/page/n1/mode/2up famicon_manga.png print Nintendo Famicom user manual in manga format. famicon games displays text
5 悲しみのNIFTY-Serve https://www.nicovideo.jp/watch/sm2380352 nifty_serve.png audio A melancholic song written for NIFTY Serve, a telecommunications services in Japan active from 1987 to 2006. writing text in the Nifty serve network
6 L’aventurier https://archive.org/details/cd_laventurier_indochine/disc1/01.+Indochine+-+L'Aventurier.flac
7 neuromancer https://archive.org/details/neuromancer-william-gibson/1+of+2.mp3 neuromancer.png audio Chiba city blues, razor girl, console cowboy, and the matrix. text is the matrix
8 toshiba msx advertisement in 1985 https://archive.org/details/ToshibaPasopiaIQMSX_1985 tosiba_msx.png video Advertisement featuring kanji input. advertisement of text processor
9 timothy leary in japan https://archive.org/details/Timothy_Leary_Archives_239 video Timothy Leary interviewed in japan. watch with caution.
10 アメリカ大統領選挙 https://archive.org/details/NESLongplay918AmericaDaitouryouSenkyo america_pre.png game A longplay of an NES game of the American presidential election.
11 Artificial intelligence on the Commodore 64 : make your micro think https://archive.org/details/artificial-intelligence-on-the-commodore-64/page/n33/mode/2up
12 yaruo text yaruo_text.png
13 Afternoon yaruo time https://gogoyaru.blogspot.com/ yaruo.png archive ASCII text memetic network
14 AA/ASCIIART archive http://azeria.jp/index.php archive
15 Lolicore music archive https://lolicore.net/
16 Oki wiredot printer https://museum.ipsj.or.jp/en/computer/device/printer/0079.html oki_wiredot.png archive
17 Pyuuta https://web.archive.org/web/20150319073438/http://www.toragiku.com/kopa/pyuta4.htm pyuuta.png archive
18 Pyuuta text https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html pyuuta_text.jpg archive
19 Pyuuta text color https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html pyuuta_text_color.jpg archive

@ -0,0 +1,146 @@
[
{
"title": "Big in japan",
"link": "https://archive.org/details/alphaville-big-in-japan-original-vhs",
"img": "",
"type": "",
"content": "",
"onText": ""
},
{
"title": "新世紀エヴァンゲリオン EVA - 残酷な天使のテーゼ [SC88]",
"link": "https://www.youtube.com/watch?v=k8ozVkIkr-g",
"img": "",
"type": "",
"content": "",
"onText": ""
},
{
"title": "Nintendo Famicom user manual manga",
"link": "https://archive.org/details/famicom-manga/page/n1/mode/2up",
"img": "famicon_manga.png",
"type": "print",
"content": "Nintendo Famicom user manual in manga format.",
"onText": "famicon games displays text "
},
{
"title": "悲しみのNIFTY-Serve",
"link": "https://www.nicovideo.jp/watch/sm2380352",
"img": "nifty_serve.png",
"type": "audio",
"content": "A melancholic song written for NIFTY Serve, a telecommunications services in Japan active from 1987 to 2006.",
"onText": "writing text in the Nifty serve network "
},
{
"title": "Laventurier",
"link": "https://archive.org/details/cd_laventurier_indochine/disc1/01.+Indochine+-+L'Aventurier.flac",
"img": "",
"type": "",
"content": "",
"onText": ""
},
{
"title": "neuromancer",
"link": "\nhttps://archive.org/details/neuromancer-william-gibson/1+of+2.mp3",
"img": "neuromancer.png",
"type": "audio",
"content": "Chiba city blues, razor girl, console cowboy, and the matrix.",
"onText": "text is the matrix"
},
{
"title": "toshiba msx advertisement in 1985",
"link": "https://archive.org/details/ToshibaPasopiaIQMSX_1985",
"img": "tosiba_msx.png",
"type": "video",
"content": "Advertisement featuring kanji input.",
"onText": "advertisement of text processor"
},
{
"title": "timothy leary in japan",
"link": "https://archive.org/details/Timothy_Leary_Archives_239",
"img": "",
"type": "video",
"content": "Timothy Leary interviewed in japan. watch with caution.",
"onText": ""
},
{
"title": "アメリカ大統領選挙",
"link": "https://archive.org/details/NESLongplay918AmericaDaitouryouSenkyo",
"img": "america_pre.png",
"type": "game",
"content": "A longplay of an NES game of the American presidential election.",
"onText": ""
},
{
"title": "Artificial intelligence on the Commodore 64 : make your micro think",
"link": "https://archive.org/details/artificial-intelligence-on-the-commodore-64/page/n33/mode/2up",
"img": "",
"type": "",
"content": "",
"onText": ""
},
{
"title": "yaruo text",
"link": "",
"img": "yaruo_text.png",
"type": "",
"content": "",
"onText": ""
},
{
"title": "Afternoon yaruo time",
"link": "https://gogoyaru.blogspot.com/",
"img": "yaruo.png",
"type": "archive",
"content": "",
"onText": "ASCII text memetic network "
},
{
"title": "AA/ASCIIART archive",
"link": "http://azeria.jp/index.php",
"img": "",
"type": "archive",
"content": "",
"onText": ""
},
{
"title": "Lolicore music archive",
"link": "https://lolicore.net/",
"img": " ",
"type": "",
"content": "",
"onText": ""
},
{
"title": "Oki wiredot printer",
"link": "https://museum.ipsj.or.jp/en/computer/device/printer/0079.html",
"img": "oki_wiredot.png",
"type": "archive",
"content": "",
"onText": ""
},
{
"title": "Pyuuta",
"link": "https://web.archive.org/web/20150319073438/http://www.toragiku.com/kopa/pyuta4.htm",
"img": "pyuuta.png",
"type": "archive",
"content": "",
"onText": ""
},
{
"title": "Pyuuta text",
"link": "https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html",
"img": "pyuuta_text.jpg",
"type": "archive",
"content": "",
"onText": ""
},
{
"title": "Pyuuta text color",
"link": "https://www.floodgap.com/retrobits/tomy/pyuuta/pyuuta1.html",
"img": "pyuuta_text_color.jpg",
"type": "archive",
"content": "",
"onText": ""
}
]

@ -0,0 +1,93 @@
[
{
"title": "Big in japan",
"link": "https://archive.org/details/alphaville-big-in-japan-original-vhs",
"img": "biginjapan.jpg",
"type": "audio",
"content": "Big in Japan, ooh, the eastern sea's so blue"
},
{
"title": "新世紀エヴァンゲリオン EVA - 残酷な天使のテーゼ [SC88]",
"link": "https://www.youtube.com/watch?v=k8ozVkIkr-g",
"img": "evangelion.png",
"type": "audio",
"content": "OST from Neon Genesis Evangelion, a popular anime portraying humanoids and the humans around them."
},
{
"title": "Nintendo Famicom user manual manga",
"link": "https://archive.org/details/famicom-manga/page/n1/mode/2up",
"img": "famicon_manga.png",
"type": "print",
"content": "Nintendo Famicom user manual in manga format."
},
{
"title": "悲しみのNIFTY-Serve",
"link": "https://www.nicovideo.jp/watch/sm2380352",
"img": "nifty_serve.png",
"type": "audio",
"content": "A melancholic song written for NIFTY Serve, a telecommunications services in Japan active from 1987 to 2006."
},
{
"title": "Laventurier",
"link": "https://archive.org/details/cd_laventurier_indochine/disc1/01.+Indochine+-+L'Aventurier.flac",
"img": "laventurier_indochine_itemimage.png",
"type": "audio",
"content": "The band's name reflected a sense of orientalism."
},
{
"title": "neuromancer",
"link": "\nhttps://archive.org/details/neuromancer-william-gibson/1+of+2.mp3",
"img": "neuromancer.png",
"type": "audio",
"content": "Chiba city blues, razor girl, console cowboy, and the matrix."
},
{
"title": "toshiba msx advertisement in 1985",
"link": "https://archive.org/details/ToshibaPasopiaIQMSX_1985",
"img": "tosiba_msx.png",
"type": "video",
"content": "Advertisement featuring kanji input."
},
{
"title": "timothy leary in japan",
"link": "https://archive.org/details/Timothy_Leary_Archives_239",
"img": "",
"type": "video",
"content": "Timothy Leary interviewed in japan. watch with caution."
},
{
"title": "アメリカ大統領選挙",
"link": "https://archive.org/details/NESLongplay918AmericaDaitouryouSenkyo",
"img": "america_pre.png",
"type": "game",
"content": "A longplay of an NES game of the American presidential election."
},
{
"title": "Artificial intelligence on the Commodore 64 : make your micro think",
"link": "https://archive.org/details/artificial-intelligence-on-the-commodore-64/page/n33/mode/2up",
"img": "c64_ai.png",
"type": "print",
"content": "AI is no new deal, the promotion of AI may be."
},
{
"title": "Afternoon yaruo time",
"link": "https://gogoyaru.blogspot.com/",
"img": "yaruo.png",
"type": "archive",
"content": ""
},
{
"title": "AA/ASCIIART archive",
"link": "http://azeria.jp/index.php",
"img": "",
"type": "archive",
"content": ""
},
{
"title": "Lolicore music archive",
"link": "https://lolicore.net/",
"img": "lolicore.jpg",
"type": "archive",
"content": ""
}
]

@ -0,0 +1,106 @@
[
{
"title":"Big in japan",
"link":"https://archive.org/details/alphaville-big-in-japan-original-vhs",
"img":"biginjapan.jpg",
"type":"audio",
"content":"Big in Japan, ooh, the eastern sea's so blue"
},
{
"title":"新世紀エヴァンゲリオン EVA - 残酷な天使のテーゼ [SC88]",
"link":"https://www.youtube.com/watch?v=k8ozVkIkr-g",
"img":"evangelion.png",
"type":"audio",
"content":"OST from Neon Genesis Evangelion, a popular anime portraying humanoids and the humans around them."
},
{
"title":"Nintendo Famicom user manual manga",
"link":"https://archive.org/details/famicom-manga/page/n1/mode/2up",
"img":"famicon_manga.png",
"type":"print",
"content":"Nintendo Famicom user manual in manga format."
},
{
"title":"悲しみのNIFTY-Serve",
"link":"https://www.nicovideo.jp/watch/sm2380352",
"img":"nifty_serve.png",
"type":"audio",
"content":"A melancholic song written for NIFTY Serve, a telecommunications services in Japan active from 1987 to 2006."
},
{
"title":"Laventurier",
"link":"https://archive.org/details/cd_laventurier_indochine/disc1/01.+Indochine+-+L'Aventurier.flac",
"img":"laventurier_indochine_itemimage.png",
"type":"audio",
"content":"The band's name reflected an orientalism"
},
{
"title":"neuromancer ",
"link":"https://archive.org/details/neuromancer-william-gibson/1+of+2.mp3",
"img":"neuromancer.png",
"type":"audio",
"content":"Chiba city blues, razor girl, console cowboy, and the matrix."
},
{
"title":"toshiba msx advertisement in 1985",
"link":"https://archive.org/details/ToshibaPasopiaIQMSX_1985",
"img":"tosiba_msx.png",
"type":"video",
"content":"Advertisement featuring kanji input."
},
{
"title":"timothy leary in japan",
"link":"https://archive.org/details/Timothy_Leary_Archives_239",
"img":"",
"type":"",
"content":"Timothy leary interviewed in japan. watch with caution."
},
{
"title":"アメリカ大統領選挙",
"link":"https://archive.org/details/NESLongplay918AmericaDaitouryouSenkyo",
"img":"america_pre.png",
"type":"game",
"content":"A longplay of an NES game of the american presidential election."
},
{
"title":"Artificial intelligence on the Commodore 64 : make your micro think",
"link":"https://archive.org/details/artificial-intelligence-on-the-commodore-64/page/n33/mode/2up",
"img":"c64_ai.png",
"type":"",
"content":"AI is no new deal, the promotion of AI may be."
},
{
"title":"Afternoon yaruo time",
"link":"https://gogoyaru.blogspot.com/",
"img":"",
"type":"",
"content":""
},
{
"title":"AA/ASCIIART archive",
"link":"http://azeria.jp/index.php",
"img":"",
"type":"",
"content":""
},
{
"title":"Lolicore music archive",
"link":"https://lolicore.net/",
"img":"lolicore.jpg",
"type":"",
"content":""
}
]

@ -0,0 +1,52 @@
img
{
display: block;
padding: 20px;
}
/** make live selection of random links **/
div.container
{
background-image: url("https://ascii.jp/img/2010/04/22/881674/o/1b4ba90f25fde2b8.jpg");
background-repeat: repeat;
}
h1.title
{
font-size: 60px;
color: purple;
font-family: "Cursive";
}
a.archive
{
color: red;
font-size:30px;
}
a.print
{
color: yellow;
font-size:45px;
}
a.video
{
color: blue;
font-size:50px;
}
a.audio
{
color: violet;
font-size:60px;
}

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> media archaeology jp multimedia playlist {{ title }}</title>
<link rel="stylesheet" type="text/css" href="static/style.css">
</head>
<body>
<div class="container">
<div class ="heading">
<h1 class = "title">media archaeology jp multimedia playlist</h1>
</div>
<div class="gallery">
{% for item in playlist %}
<a class = "{{item.type}}" href="{{ item.link }}">
<img src="img/{{ item.img }}" alt="{{ item.title }}">
</a>
{% endfor %}
</div>
</div>
</body>
</html>
Loading…
Cancel
Save