I\'m finding myself repeating the same snippets of code again and again, is it possible to do something like this in AngularJS:
This sounds like you want to use directives. Here is a simple example: http://jsfiddle.net/gyF6V/1/
<script type='text/ng-template' id="mySnippet">
This is a snippet
</script>
<script type='text/ng-template' id="anotherSnippet">
Yet another snippet!!
</script>
<ng-include src="'anotherSnippet'"></ng-include>
<ng-include src="'anotherSnippet'"></ng-include>
<ng-include src="'mySnippet'"></ng-include>
This should be what you want.
Docs for script and ng-include.