Skip to content

Instantly share code, notes, and snippets.

@pettomartino
pettomartino / gist:6425ede3460758b3e54d
Created September 25, 2014 00:12
Packer log error with parallels
petto@mac ~/dev/bento/packer (master●)$ packer build --only=parallels-iso debian-7.6-amd64.json [ruby-2.1.1]
parallels-iso output will be in this color.
==> parallels-iso: Downloading or copying ISO
parallels-iso: Downloading or copying: http://cdimage.debian.org/debian-cd/7.6.0/amd64/iso-cd/debian-7.6.0-amd64-CD-1.iso
==> parallels-iso: Starting HTTP server on port 8081
==> parallels-iso: Creating virtual machine...
==> parallels-iso: Executing: prlctl [create packer-debian-7.6-amd64 --distribution debian --dst packer-debian-7.6-amd64-parallels --vmtype vm]
==> parallels-iso: Executing: prlctl [set packer-debian-7.6-amd64 --cpus 1]
==> parallels-iso: Executing: prlctl [set packer-debian-7.6-amd64 --memsize 512]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
namespace NerdDinner.Models
{
public partial class Dinner
{
from bottle import route, run, view
@route('/')
@route('/index.html')
def index():
return "<a href='/hello'>Go to Hello World page</a>"
@route('/hello')
@route('/hello/:name')
@view('index')
{u'noite': [[u'MACRO_CITY:1', u'sao_paulo'], [u'MACRO_CITY:39', u'belo_horizonte'], [u'MACRO_CITY:41', u'porto_alegre'], [u'MACRO_CITY:36', u'rio_de_janeiro']], u'shows': [[u'MACRO_CITY:36', u'rio_de_janeiro'], [u'MACRO_CITY:1', u'sao_paulo'], [u'MACRO_CITY:41', u'porto_alegre'], [u'MACRO_CITY:39', u'belo_horizonte']], u'turismo': [[u'MACRO_CITY:1', u'sao_paulo'], [u'MACRO_CITY:39', u'belo_horizonte'], [u'MACRO_CITY:41', u'porto_alegre'], [u'MACRO_CITY:36', u'rio_de_janeiro']], u'cinema': [[u'MACRO_CITY:39', u'belo_horizonte'], [u'MACRO_CITY:41', u'porto_alegre'], [u'MACRO_CITY:36', u'rio_de_janeiro'], [u'MACRO_CITY:1', u'sao_paulo']]}
var allJs = document.getElementsByTagName('script'),
lastJs = allJs[allJs.length-1],
logoJs = document.createElement('script');
logoJs.src = 'http://qa2.obaoba.com.br/sites/obaoba.com.br/themes/obaoba2010/js/troca-logo.js';
lastJs.parentNode.appendChild(logoJs);
var cursor = db.places.find();
while (cursor.hasNext()) {
var x = cursor.next();
x['source']['url'].replace('aaa', 'bbb'); // is this correct?
db.foo.update({_id : x._id}, x);
}
class MockPromise {
then(fn) {
this.thenFn = fn
return this
}
catch(fn) {
this.catchFn = fn
return this
}
browser
.setValue('.input-text', email)
.setValue('input.input-text[type=password]', password)
.click('.btn-success')
.pause(200)
.assert.urlEquals(url)
.end()
browser
.setValue('input[placeholder=E-mail]', email)
.setValue('input[placeholder=Password]', password)
.useXpath()
.click("//*[text()='Login']")
.pause(200)
.expect.element("//*[text()='John Doe']").to.be.present
<html>
<head>
<script>
function myFunc() {
var email = document.getElementById("email").value
var e = document.getElementById("select")
var selectedOption = e.options[e.selectedIndex].value
var checkBox = document.getElementById('defaultCheck1').checked
if (email == 'foo@bar' && checkBox && selectedOption == "audi") {