by Garth | Dec 28, 2019 | Debugging, Wordpress
So for the specificity of this case I was redirecting to the admin dashboard continuously when ever I tried to navigate to the home page.I was logged in as admin. The problem was that I updated my email and this caused a conflict with the site. WordPress wanted me to...
by Garth | Nov 25, 2019 | Market Research
Reference : https://www.inc.com/emily-canal/2018-inc5000-biggest-industries-us-businesses.html Here are the top 10 biggest industries of the Inc. 5000 this year, including total revenue and the total number of Inc. 5000 companies. In the business world, new and sexy...
by Garth | Oct 22, 2019 | Angular
If you need to Start a new Angular Project Angular Basic API Request Generate a home component ng g c home – Import HttpClient Inside your home.component.ts file import { HttpClientModule } from ‘@angular/common/http’; Import your HTTP CLIENT in your...
by Garth | Oct 22, 2019 | Angular
https://material.angularjs.org/1.1.0/demo/chips
by Garth | Oct 22, 2019 | Angular
https://material.angularjs.org/1.1.0/demo/colors
by Garth | Oct 18, 2019 | Tech Stack References
Angular Documentation- Documentation- Angular Animations Angular Material- Angular Components Bootstrap- Bootstrap Quick StartYou only apply bootstrap for the Grid System. Use Angular Material for components.
by Garth | Oct 18, 2019 | SDK/Library/Tool
Run the below from terminal with Admin RightsYou can open your terminal in admin mode by searching for it then right clicking on command prompt and open as administrator @”%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe” -NoProfile -InputFormat...
by Garth | Oct 14, 2019 | Javascript
Create a page and add this to it. It will run the page every time someone loads the page or for whatever duration you set yourself. setTimeout(function() { location.reload(); }, 5000);
by Garth | Oct 1, 2019 | Angular
https://stackoverflow.com/questions/48626005/how-do-i-deal-with-installing-peer-dependencies-in-angular-cli ng update @angular/cli @angular/core –force npm install @angular/core@5.2.3 –save