- Mongo Tutorial: http://try.mongodb.org/
- Python Tutorial: http://api.mongodb.org/python/current/tutorial.html
- Ruby Admin: http://genghisapp.com/
This file contains 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
Rails.application.routes.routes.to_a.map {|route| "#{route.defaults[:controller]}##{route.defaults[:action]}" }.uniq.sort |
This file contains 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
FROM ubuntu:14.04 | |
MAINTAINER Marshall Anschutz <[email protected]> | |
ENV LANG en_US.UTF-8 | |
ENV LC_ALL en_US.UTF-8 | |
# Install tools & libs to compile everything | |
RUN apt-get update && apt-get install -y build-essential libssl-dev libreadline-dev wget && apt-get clean | |
## Install imagemagick |
This file contains 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
# Some of this was stolen from: | |
# http://blog.hawkhost.com/2010/07/02/tmux-%E2%80%93-the-terminal-multiplexer-part-2/ | |
# | |
# Split window panes horizontally and vertically by nice designators: | |
# Ctrl - | |
# Ctrl | | |
# | |
unbind % # Remove default binding since we're replacing | |
bind | split-window -h |
This file contains 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
#!/bin/bash | |
# | |
# NOTE: This must be run as root! | |
# | |
# Install necessary stuff to get fig running on a vanilla Ubuntu 14.04 image. | |
# | |
# This should really be put in some automated deployment system, but it's a | |
# good reference point for trying out fig and docker on an AWS or similar cloud. | |
# | |
# You can also use this to ensure that your development machine is up and running |
This file contains 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
#!/bin/bash | |
# | |
# Note: This will cause you to have to redownload lots of stuff, use with care! | |
sudo docker.io images | awk '{print "sudo docker.io rmi " $3}' | /bin/bash | |
This file contains 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
#!/bin/bash | |
# Run this as root | |
sudo apt-get update | |
sudo apt-get install -y git curl vim python-pip | |
curl -sSL https://get.docker.io/ubuntu/ | sudo sh | |
sudo pip install -U fig==0.5.2 |
Just to play devil's advocate for a second (I'm aware of the irony in that statement), but why would you have such a hard time believing Noah's flood might be possible?
- We know there is enough water to cover the Earth by over a mile if it was flat.
- We suspect there is another oceans worth of water locked up in Earth's crust in ringwoodite.
- We think the continents formed a super continent in the past and have since changed position drastically.
- We have meteor impact craters like Chicxulub that seem to have altered Earth drastically.
- We know strata layers are almost always layed down by water.
- We know animals have to be buried fast in order to fossilize instead of deteriorate.
- We also know that major canyons can be created rapidly (Mt St. Helens) and have no conclusive evidence of them forming slowly.
This file contains 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
http://stream.nextvr.com.cdnga.net/live/lunar20.mp4/chunklist.m3u8 |
This file contains 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
java.lang.OutOfMemoryError: unable to create new native thread | |
at java.lang.Thread.start0(Native Method) | |
at java.lang.Thread.start(Thread.java:693) | |
at org.eclipse.persistence.platform.server.ServerPlatformBase.launchContainerRunnable(ServerPlatformBase.java:415) | |
at org.eclipse.persistence.internal.sessions.coordination.CommandPropagator.asynchronousPropagateCommand(CommandPropagator.java:97) | |
at org.eclipse.persistence.sessions.coordination.RemoteCommandManager.propagateCommand(RemoteCommandManager.java:221) | |
at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.mergeChangesIntoParent(UnitOfWorkImpl.java:3278) | |
at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.commitRootUnitOfWork(UnitOfWorkImpl.java:1314) | |
at org.eclipse.persistence.internal.sessions.UnitOfWorkImpl.commit(UnitOfWorkImpl.java:1074) | |
at com.paycycle.data.Transaction.commit(Transaction.java:418) |