Shin Terai

Shin Terai is a Japanese musician and producer most known for his work with Bill Laswell and Buckethead. On his albums he combines ambient and electronic music with dub and avant-garde jazz.

Biography

Shin Terai gained some first publicity as the singer of Chaos Face, a project by Laswell and Robert Musso.[1] Second singer on Chaos Face's only album Doom Ride was Mick Harris, the former drummer of the metal band Napalm Death.

The first album under Shin Terai's own name was Unison, released in 1999. Guest musicians included Bernie Worrell and Nicky Skopelitis, besides Laswell and Buckethead. In 2004, Laswell reworked the material for the remix album Heaven & Hell. Intermediately Terai worked as producer of Soup, a trio consisting of Laswell, guitarist Otomo Yoshihide and drummer Yasuhiro Yoshigake (also playing trumpet).

In 2007, with Lightyears another album was released under his own name. It featured the core members Laswell, Buckethead and Worrell, besides Nils Petter Molvær (trumpet), Lili Hayden (violin), Karl Berger (strings), DXT (turntables) and Laswell's wife Gigi. Additionally, Aman Laswell (son of Gigi and Bill) can be heard gabbling. Lightyears was dedicated to him.

Discography (partial)

  • 1994: Chaos Face - Doom Ride (as singer)
  • 1999: Shin Terai - Unison
  • 2003: Soup - Soup (as producer)
  • 2004: Soup - Soup Live (as producer)
  • 2004: Shin.e - Heaven & Hell
  • 2007: Shin.e - Lightyears
gollark: There are many languages you can use for web*server*y stuff, but you can only really use HTML/CSS/JS for frontends.
gollark: With Express.js the server thing would look *very roughly* like this:```javascriptconst express = require("express")const multer = require("multer")const app = express()const upload = multer({ storage: multer.memoryStorage(), limits: { fileSize: 2**22 // 4MiB maximum filesize }})app.get("/image", (req, res) => { res.send(loadImageFromSomewhere())})// send upload form HTML - you would need to write this tooapp.get("/upload", (req, res) => res.sendFile("upload.html"))app.post("/upload", upload.single("file"), (req, res) => { saveImageSomewhere(req.file.buffer)})app.listen(8700, () => console.log("listening")) // listen on port 8700```
gollark: I mean, you could use PHP too. I don't like it. But you could.
gollark: What I might do, though there are probably many ways to: make a program in Node.js or whatever (personal preference) which responds with whatever image is set to any requests for that, and which allows you to upload an image, converts it to the right format, then saves it to be sent when the ESP requests it.
gollark: And you want to be able to upload pictures to some sort of web thing to send to the ESP?

References

  1. Olewnick, Brian. "Doom Ride 1994: Review". Allmusic. Retrieved 2010-12-02.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.