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
| "styles": [ | |
| "../node_modules/font-awesome/css/font-awesome.css", | |
| "styles.css" | |
| ], |
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
| yarn add bulma |
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
| create ng5FaB/README.md (1022 bytes) | |
| create ng5FaB/.angular-cli.json (1243 bytes) | |
| create ng5FaB/.editorconfig (245 bytes) | |
| create ng5FaB/.gitignore (529 bytes) | |
| create ng5FaB/src/assets/.gitkeep (0 bytes) | |
| create ng5FaB/src/environments/environment.prod.ts (51 bytes) | |
| create ng5FaB/src/environments/environment.ts (387 bytes) | |
| create ng5FaB/src/favicon.ico (5430 bytes) | |
| create ng5FaB/src/index.html (293 bytes) | |
| create ng5FaB/src/main.ts (370 bytes) |
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
| yarn add v1.3.2 | |
| [1/4] Resolving packages... | |
| [2/4] Fetching packages... | |
| info fsevents@1.1.3: The platform "linux" is incompatible with this module. | |
| info "fsevents@1.1.3" is an optional dependency and failed compatibility check. Excluding it from installation. | |
| [3/4] Linking dependencies... | |
| [4/4] Building fresh packages... | |
| success Saved lockfile. | |
| success Saved 2 new dependencies. | |
| ├─ angular-font-awesome@3.1.2 |
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
| "styles": [ | |
| "../node_modules/font-awesome/css/font-awesome.css", | |
| "../node_modules/bulma/css/bulma.css", | |
| "styles.css" | |
| ], |
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
| <p style="text-align: center; color: #0bb5ff"> | |
| <a href="https://fontawesome.com/"><fa name="chrome" animation="spin" size="5x"></fa></a> | |
| </p> | |
| <p style="text-align: center; margin-top: 15px"> | |
| <a href="https://bulma.io/" class="button is-success">Bulma is here</a> | |
| </p> |
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
| # -*- coding: utf-8 -*- | |
| # __ | |
| # /__) _ _ _ _ _/ _ | |
| # / ( (- (/ (/ (- _) / _) | |
| # / | |
| """ | |
| Requests HTTP Library | |
| ~~~~~~~~~~~~~~~~~~~~~ |
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
| """ | |
| Code for program 33 from https://wiki.python.org/moin/SimplePrograms | |
| """ | |
| import random | |
| guesses_made = 0 | |
| name = raw_input('Hello! What is your name: ') | |
| number = random.randint(1, 20) | |
| print 'Well, {0}, I am thinking of a number between 1 and 20.'.format(name) |
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
| <fa name="chrome" animation="spin" size="5x"></fa> |
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
| 'use strict' | |
| const merge = require('webpack-merge') | |
| const prodEnv = require('./prod.env') | |
| module.exports = merge(prodEnv, { | |
| NODE_ENV: '"development"', | |
| API_URL: '"//127.0.0.1:8000/"' | |
| }) |