- 📙 Biblia de Rails: Explicación clara y completa de cómo hacer una aplicación mediana en Rails. Explica practicamente todos los conceptos que van a necesitar para este proyecto. 10/10 Mejor material.
- 📹 Ayudantías del curso: Pensadas para este proyecto. Aprovechenlas
- 👌 Stack Overflow: La vieja confiable de los computines
- 🔀 Git y Github: Para que no sufran tanto al hacer merges
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
comuna_id | region_id | nombre | latitud | longitud | |
---|---|---|---|---|---|
1 | 1 | Arica | -18.4707 | -70.2945 | |
2 | 1 | Camarones | -18.9191 | -69.4532 | |
3 | 1 | General Lagos | -17.7863 | -69.5452 | |
4 | 1 | Putre | -18.2052 | -69.4946 | |
5 | 2 | Alto Hospicio | -20.2418 | -70.0762 | |
6 | 2 | Iquique | -20.2474 | -70.1187 | |
7 | 2 | Camiña | -19.2855 | -69.4074 | |
8 | 2 | Colchane | -19.3585 | -68.7207 | |
9 | 2 | Huara | -19.9617 | -69.8691 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |