Indexing of Sitemap for AngularJS Site Increasing
vi Cheatsheet
Use SSH Key Exchange with BitBucket instead of HTTPS
By default, my BitBucket Git repository uses the HTTPS URL instead of the SSH. As a result, I get prompted for my password every time I push code to my BitBucket Git repository. [code language=”bash”] $ git push Password for ‘https://<repo_owner>@bitbucket.org’: [/code] You should see your BitBucket account username in place…
Code Analysis with Java and AngularJS Project via SonarQube
Many Java based projects are shifting away from more traditional Java based frontend technologies, such as JSP, JSF, and GWT. Today, they are moving to Single Page Application technologies like AngularJS. This leaves Java as the language for the backend. As a result, you will likely experience a project using…
How to Point BitBucket Webhook to Jenkins on Localhost
2018 Search Engine Optimization with AngularJS 1.x Single Page Application
Creating a Single Page Application (SPA) comes with many modern advantages to a traditional web site that can improve the user experience. These advantages include faster user experiences typically due to not having to reload the entire application in order to display changes in the content. This leads to an…
No ‘Access-Control-Allow-Origin’ CORS Problem
I have a web application that I have been working on, which has an AngularJS 1.6 UI with a Spring Boot Java backend. I develop the AngularJS with Visual Studio Code, which is probably the only Microsoft product I have ever used that I feel was really well done, and…
Setting Default Home Directory with Git Bash
Recently I was getting a new development environment set up and I needed Git Bash. I noticed that Git Bash would start at an l drive when I launched it, instead of my user’s home directory. To change the directory to your user’s actual home directory, simply execute the following…
Spring Boot, Spring Data REST and Query Parameters
I have Spring Data REST repository that takes query parameters. It uses a PagingAndSortingRepository and looks like this: [code language=”java”] @RepositoryRestResource @CrossOrigin(origins = "http://localhost:8000") public interface IRestaurantRepository extends PagingAndSortingRepository<Restaurant, Long> { public Page<Restaurant> findByNameContaining(String name, Pageable pageable); } [/code] You would get an error if you were to execute the…