This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('myApp',['emailParser']) | |
.controller('MyController', | |
['$scope', 'EmailParser', | |
function($scope, EmailParser) { | |
// Set up a watch | |
$scope.$watch('emailBody', function(body) { | |
if (body) { | |
$scope.previewText = | |
EmailParser.parse(body, { | |
to: $scope.to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile | |
export PATH=/usr/local/bin:$PATH | |
export EDITOR='subl -w' | |
export PS1='\n\[\033[00;32m\]\[\033[01;37m$(~/.rvm/bin/rvm-prompt s v) \[\033[01;32m\w \[\033[01;36m`~/personalize/scripts/branch_display.bash` \[\033[01;31m`echo $RACK_ENV` \[\033[01;33m\n⚡ \[\033[00m\]' | |
source ~/.bashrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<link type="text/css" rel="stylesheet" href="file:///Users/adamkolkman/Desktop/test/owl.carousel.css"> | |
<link type="text/css" rel="stylesheet" href="file:///Users/adamkolkman/Desktop/test/owl.theme.css"> | |
<!-- <link type="text/css" rel="stylesheet" href="file:///Users/adamkolkman/Desktop/test/owl.transitions.css"> --> | |
<script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.min.js"></script> | |
<script type="text/javascript" src="file:///Users/adamkolkman/Desktop/test/owl.carousel.min.js"></script> | |
<script type="text/javascript" src="file:///Users/adamkolkman/Desktop/test/start.js"></script> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Let's pretend we're building a Rails app to handle issues (or tickets) coming in to | |
# our IT department. We'll consider how the complexity grows as our app needs to accomplish | |
# more things. Simultaneously, we'll look at how we can keep our app maintainable | |
# as new features force our app to grow. | |
# Let's start to build our app. Consider a feature request ticket. | |
# It will need to be submitted and it will need to be assigned to a developer. | |
#feature_ticket.rb |
OlderNewer