sudo apt-get update
sudo apt-get install apt-utils
sudo apt-get install -y postgresql postgresql-contrib
psql --verison
sudo service postgresql # status for checking the status of your database.
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
| 301 results - 33 files | |
| static/css/login_overlay.scss: | |
| 14 margin-left: -157px; | |
| 15: background-color: #ffffff; | |
| 16 padding: 20px 40px; | |
| 23 #login-box h1 { | |
| 24: color: #FF6300; | |
| 25 font: 26px 'UbuntuBold',Arial,Helvetica,serif; |
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
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = lf | |
| indent_style = space | |
| insert_final_newline = true | |
| trim_trailing_whitespace = true | |
| quote_type = single | |
| max_line_length = 80 |
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
| from: http://www.meandmark.com/keycodes.html | |
| Virtual Keycodes for the Mac QWERTY Layout | |
| Keycodes are in hexadecimal. A blank entry means either there is no key assigned to that keycode or I was unable to find the assigned key. | |
| Keycode Key | |
| 0x00 A | |
| 0x01 S | |
| 0x02 D | |
| 0x03 F |
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
| // Copyright 2014 A Medium Corporation | |
| // | |
| // z-index.less | |
| // Medium.com's z-index scale. Z-index values should always be defined in z-index.less. This | |
| // allows us to at a glance determine relative layers of our application and prevents bugs | |
| // arrising from arbitrary z-index values. Do not edit the z-index scale! Only add application | |
| // scoped z-index values. | |
| //This is the SASS version modified by @toadkicker. |
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
| ////////////////////////////////////////////////////////////// | |
| // Font Variables (http://cssfontstack.com/) | |
| ////////////////////////////////////////////////////////////// | |
| // | |
| // Serif font-stacks | |
| // | |
| $baskerville-font-stack: "Big Caslon", "Book Antiqua", "Palatino Linotype", Georgia, serif !default; |
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
| // File Name: getUserCity.js | |
| // Description: Uses Geolocation to determine User City | |
| // Used by: | |
| // Dependencies: | |
| // ------------------------------------------------------ | |
| import axios from 'axios'; | |
| function reverseGeocode(lat, lng) { | |
| const API_KEY = 'YOUR API KEY' |
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
| var Col = require('react-bootstrap/lib/Col') | |
| var PageHeader = require('react-bootstrap/lib/PageHeader') | |
| var React = require('react') | |
| var Row = require('react-bootstrap/lib/Row') | |
| var {connect} = require('react-redux') | |
| var {reduxForm} = require('redux-form') | |
| var DateInput = require('./DateInput') | |
| var FormField = require('./FormField') | |
| var LoadingButton = require('./LoadingButton') |
NewerOlder