Command Line: $ git remote show origin Following an example.
Author: camilamacedo86
[CommandLine] – How to create a big text file via command line?
Following a command line to create a file with 10Mb. $ base64 /dev/urandom | head -c 10000000 > file.txt
Why I started to write this blog?
I started to write this blog for save my map minds, drafts, notes and pieces of code and I decided … More
[AngularJS] – How to filter and order by a collection?
The following is an example. <li ng-repeat=“phone in $ctrl.phones | filter:$ctrl.query | orderBy:$ctrl.orderProp”> <span>{{phone.name}}</span> <p>{{phone.snippet}}</p> … More
[Git] – How to update your fork branch and put your PR on top of the changes?
The following the commands to do that. $git checkout ( E.g master ) $git fetch upstream $git pull upstream ( … More
[Tips] – Design patterns for humans
The following link as a really good material with a sum up and real examples which can make you understand … More
[DevOps] – OpenShift – How to give permission to a user to get access to the system admin projects?
The following is the command line to do it via the Open Shift client tool ( oc ) after you … More
[DevOps] – OpenShift – How to solve router error when a new project is created?
The following is an example of errors which can be faced when the router can’t be created. Errors: * route/mbaas … More
[DevOps] – OpenShift – How to check if my installation is ok?
Before start use the container after it is installed is a good practice check if all is ok first. Login … More
[DevOps] OpenShift – How to login as system admin?
Command Line: $ oc login -u system:admin -n default Verified into: v3.2.1.28 The following is an example. $ oc login -u … More