Tiago
Tiago is a given and a family name, being one of the Portuguese equivalents of the names Jacob and James. Its archaic spelling - still used mostly in Brazil - is Thiago.
Tiago may also refer to:
- Tiago (horse) (foaled 2004), an American racehorse
- "Tiago" (song), by French singer Kendji Girac from his 2018 album Amigo
- Tata Tiago, an Indian hatchback automobile
Places
- São Tiago, Brazilian city in the state of Minas Gerais
- Santiago, Isabela, Philippines
- Santiago de Chile, capital and largest city of Chile
- Santiago de Compostela, city in Galicia, Spain
- Santiago de Cuba, second largest city of Cuba
- Santiago de los Caballeros, second largest city of the Dominican Republic
- Santiago (disambiguation) § Other places, many applications
People with the given name
- Tiago Cardoso (disambiguation), many applications of Tiago Cardoso / Thiago Cardoso
- Bebé (born 1990), real name Tiago Manuel Dias Correia, Portuguese football player
- Thiago Alcântara (born 1991), Brazilian-Spanish international football player
- Thiago Cionek (born 1986), Poland international football player
- Tiago Ferreira (footballer, born 1975) (born 1975), Portuguese retired football player
- Tiago Godinho (born 1984), Portuguese tennis player
- Tiago Ilori (born 1993), Portuguese footballer
- Tiago Magalhães (born 1981), Brazilian baseball player
- Tiago Mendes (born 1981), Portuguese football player known simply as Tiago
- Tiago Pinto (born 1988), Portuguese football player
- Tiago Pires (footballer) (born 1987), Portuguese football player
- Tiago Henrique Gomes da Rocha (born 1988), Brazilian serial killer and robber
- Tiago Santos (disambiguation), many applications
- Thiago Silva, Brazilian international football player
- Tiago Silva (footballer, born 1979) (born 1979), Brazilian football player
- Tiago Splitter (born 1985), Brazilian professional basketball player playing in the NBA
- Tiago (wrestler) (born 1987), ring name of Arturo Santos Hernández, Mexican professional wrestler
People with the surname
- Severo Tiago (born 1903), Portuguese football player
gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.