Fondo (Barcelona Metro)

Fondo is a Barcelona Metro station in the municipality of Santa Coloma de Gramenet, in the northern part of the metropolitan area of Barcelona. It is served by two metro lines, L1 (red line), of which it is the northern terminus, and L9 (orange line). It was built in 1992 under Camí Fondo de Badalona, in the neighbourhood of Fondo (hence the name), between Carrer Dalmau and Carrer Verdi.

Lifts linking the lines L1 and L9, and the lobby

It began to serve L9 (orange line) on 13 December 2009, providing a transfer to the first part of Line 9 that was opened, which initially ran between Can Zam and Can Peixauet.

Services

Preceding station   Metro   Following station
L1Terminus
toward La Sagrera
L9 Nord
toward Can Zam
  Projected  
toward Airport T1
L9
toward Can Zam
gollark: Well, it's poorly designed, more so than JS in my opinion.
gollark: PHP is maaaaybe easy for simple stuff, but also very evil.
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.

See also

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.