Swift Tips: For Loops
Please find Swift playground at github.com Please find Swift playground at github.com
Thoughts, ideas, and knowledge on technology, programming, and design.
Please find Swift playground at github.com Please find Swift playground at github.com
Please find Swift playground at github.com This post shares from simple to advance the use of in swift. These can be enhanced and some time shorthand of more lines of code. I ho...
In Rewriting History, I talked about the internal representation of a Git repository. I may have misled you a bit. While the reflog, interactive rebasing, and resetting may be m...
This post shares from simple to advance the use of \ in swift. These can be enhanced and some time shorthand of more lines of code. I hope you would enjoy them and try to use in...
This module presents a broad survey of useful Git utilities. We’ll take a step back from the theoretical aspects of Git and focus on common tasks like preparing a project for re...
This is very useful if you are trying to manipulate in old school C, C++ way. Here's an example: That will print "Found Hulk at position 0", "Found Thor at position 1", and "Fou...
Thus far, all of the collaboration workflows we’ve seen rely heavily on branches. For example, in the last module, a contributor had to publish an entire branch for us to merge...
Now that we know how to share information via a centralized workflow, we can appreciate some of the drawbacks of this collaboration model. While it may be convenient, allowing e...
In the previous module, we shared information directly between two developers’ repositories: my git repo and marys repo. This works for very small teams developing simple progra...
Simply put, a remote repository is one that is not your own. It can be another Git repository that’s on your company’s network, the internet, or even your local filesystem, but...