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
[Log] onscript loading complete (user-script:18, line 1456) | |
[Info] Successfully preconnected to https://fonts.gstatic.com/ | |
[Log] POLIFILL STARTED (scripts.7f3dc46e46722aacbf1b.js, line 1) | |
[Warning] (vendor-es2015.d3edcb182cd2ba1d2fa5.js, line 1) | |
It looks like you're using the development build of the Firebase JS SDK. | |
When deploying Firebase apps to production, it is advisable to only import | |
the individual SDK components you intend to use. | |
For the module builds, these are available in the following manner | |
(replace <PACKAGE> with the name of a component - i.e. auth, database, etc): |
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
sudo chmod -R a+rwx |
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
First verify your machine IP Address. | |
On Windows, type ipconfig in Prompt (copy IPv4). | |
On Mac, type ifconfig |grep inet in Terminal (copy inet). | |
In my case this is 192.168.0.10. | |
Next, type ng serve --host 192.168.0.10. | |
Ok, your app on air for all devices on same network. | |
Now only http://192.168.0.10:4200/ will work, localhost not more. |
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
http://kaffeine.herokuapp.com/#! |
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
heroku domains:add example.com | |
heroku domains:add www.example.com | |
CNAME for http://example.com | |
ALIAS for http://www.example.com (DO NOT FORGET . AT THE END) |
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
ng g component shared/components/navbar/sidenav-list --module=shared | |
ng g component pages/models/models-world | |
ng generate service icons |
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
workbench.editor:Show Tabs |
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
https://pqrs.org/osx/karabiner/ -- Rebind keys (Eject key use as Del forward) | |
smcFanControl -- Control temperature with fan speed; | |
turbo boost switcher -- On/Off turbo boost; |
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
git config --global core.autocrlf true |
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
https://stackoverflow.com/questions/1139762/ignore-files-that-have-already-been-committed-to-a-git-repository | |
First commit any outstanding code changes, and then, run this command: | |
git rm -r --cached . | |
This removes any changed files from the index(staging area), then just run: | |
git add . | |
Commit it: |
NewerOlder