Test User Credentials
password | |
---|---|
applicant@test.com | password |
manager@test.com | password |
admin@test.com | password |
password | |
---|---|
applicant@test.com | password |
manager@test.com | password |
admin@test.com | password |
To restart a docker from the cli docker-machine restart
Removes images and containers. (best to stop all containers first) docker system prune -a
Removes all inactive volumes docker volume prune
Restart Docker after System prune to clean things out completely.
Build before your up. docker-compose build
docker-compose up
Diversity between groups is lower than diversity between individuals. If Diversity is our strength then we should be focusing on individuals not groups.
#Ntile Widget# A Dashing widget that shows numbers in statistical context. This widget is also available in a GitHub Repository.
##Description## A Dashing widget (and an associated job) that will take any set of timestamped data, divid that data by day (or any other unit of time) and compare those units of time, and displays the current day in statistical context of previous days. It currently has three modes of operation Quartile, Quintile and Percentile (hench 'N'tile). The code is designed to take in a variety of data sources. Examples include:
Post.attribute_names.map {|n| [n.to_sym,Post.type_for_attribute(n).type]}.to_h |
def reverse arr | |
arr.reverse | |
end | |
def xander1 arr | |
out = [] | |
neg_i = -1 | |
arr.each do | |
out << arr[neg_i] | |
neg_i -= 1 |
quote = 'The last ever dolphin message was misinterpreted as a surprisingly sophisticated attempt to do a double-backwards-somersault through a hoop whilst whistling the ‘Star Spangled Banner’, but in fact the message was this: So long and thanks for all the fish.' | |
alphabet = ('a'..'z').to_a | |
offset = 5 | |
result_quote = '' | |
quote.each_char do |char| | |
if alphabet.include?(char) | |
char = alphabet.rotate(alphabet.index(char))[offset] | |
elsif alphabet.include?(char.downcase) | |
char = alphabet.rotate(alphabet.index(char.downcase))[offset].upcase |
<!-- add --> | |
<div class="control-group"> | |
<%= f.label :name, class: 'control-label' %> | |
<div class="controls"> | |
<%= f.text_field :name, :autofocus => true %> | |
</div> | |
</div> | |
<!-- end add --> | |
<div class="control-group"> |
def reversi str = "" | |
out = '' | |
1.upto str.length do |i| | |
out << str.chars[-i] | |
end | |
out | |
end |
class UserDecorator < Draper::Decorator | |
include Draper::LazyHelpers | |
delegate_all | |
class << self | |
def tagtionary | |
@tagionary ||= tagtionary!.clone | |
end | |
def tagtionary! |