The Bug Genie

I think this is my first extended experience with bug tracking. The Bug Genie, written in php. For some reason, twice, my admin password has been reset, changed or somehow deleted. Resetting it isn’t the usual phpadmin/wordpress approach ’cause it’s not hashed in MD5. Sha, maybe. Anyway there, luckily was a post in the Bug … Continued

More Git Fun

Messing with getting abandoned git repo back into use… again! Local files are not tracked by git at all so first initialize repo and add remote origin. Then: Make a new branch with the local files: git checkout -b staging Get the remote files: git checkout master Really destructively replace all files in master with … Continued

Beyond t1.Micro for ofn_deployment

Moving to a slightly larger server to see if resources are at issue with rails instance not running forrectly on the T1.micro instance. Running ansible-playbook install.yml -i staging with the –ask-become-pass flag using my newly created ubuntu user, which has been added to the admin group, with sudo via sudo visudo config. Had to run … Continued

Grabbing files with wget

Larry Weiner is this great musicologist in the International Folk Dance and specifically Bulgarian music movement. He is sharing all these rare really awesome (“lost”) tracks, but the website is set up to share them one at a time. But using the Terminal in OSX (it’s in utilities) I was able to employ wget to … Continued

Deploying OpenFoodNetwork to Staging on AWS EC2

http://docs.aws.amazon.com/cli/latest/userguide/tutorial-ec2-ubuntu.html#install-cli http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Ruby_rails.html coming soon. $ aws ec2 create-security-group –group-name devenv-sg –description “security group for development environment in EC2” { “GroupId”: “sg-e5835b83” } aws ec2 authorize-security-group-ingress –group-name devenv-sg –protocol tcp –port 22 –cidr 0.0.0.0/0 Replace the CIDR range in the above with the one that you will connect from for more security. You can use the … Continued

Trying Out sean-stanley/FoodCoop

Let’s try this food coop software now. Install Node.js sudo apt-get update sudo apt-get install nodejs sudo apt-get install npm Install MongoDB vagrant@precise64:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 12.04 LTS Release: 12.04 Codename: precise sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv 7F0CEB10 echo “deb http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/3.0 multiverse” | sudo … Continued

Playing around with Host1Plus VPS Hosting

Checking out the VPS hosting with a company called Host1Plus. Their $15/mo plan: 40Gigs disc space, 2048MB RAM, 2 CPUs. Installed ubuntu-12.10-x86_64 with a button click or two. They generate a root/password, and when I ssh’d to root@theIPaddress got @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS … Continued

Beginning to Install OpenFoodNetwork Package

Loving https://github.com/openfoodfoundation/openfoodnetwork. Looking at the deployment package. Start with our vars.yml package. It says the checkout_zone is as defined by Spree. This spree? Same as this one? Why are the repositories using http instead of git://? And is the US i10n usable? Does there actually need to be a seeds.rb file in the i10n repo? … Continued

Uploading Gobs of Video to Amazon S3

Just received a 1 terabyte disc of Yoga Instructional Videos for our Streaming Web Video project and converted the twenty(ish) videos to mp4. Began uploading and soon (not soon enough, probably) realized that it was like 40 Gigs worth of data and would take a week strati to upload (using s3cmd). Then there’s the cost … Continued