typingpool 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +23 -0
- data/bin/tp-assign +240 -0
- data/bin/tp-collect +50 -0
- data/bin/tp-config +114 -0
- data/bin/tp-finish +101 -0
- data/bin/tp-make +169 -0
- data/bin/tp-review +175 -0
- data/lib/typingpool/amazon.rb +732 -0
- data/lib/typingpool/app.rb +634 -0
- data/lib/typingpool/config.rb +344 -0
- data/lib/typingpool/error.rb +22 -0
- data/lib/typingpool/filer.rb +396 -0
- data/lib/typingpool/project.rb +593 -0
- data/lib/typingpool/template.rb +175 -0
- data/lib/typingpool/templates/assignment/amazon-init.js +38 -0
- data/lib/typingpool/templates/assignment/interview/nameless.html.erb +13 -0
- data/lib/typingpool/templates/assignment/interview/noisy.html.erb +12 -0
- data/lib/typingpool/templates/assignment/interview/partials/voices.html.erb +10 -0
- data/lib/typingpool/templates/assignment/interview/phone.html.erb +12 -0
- data/lib/typingpool/templates/assignment/interview.html.erb +11 -0
- data/lib/typingpool/templates/assignment/main.css +20 -0
- data/lib/typingpool/templates/assignment/partials/entry.html.erb +19 -0
- data/lib/typingpool/templates/assignment/partials/footer.html.erb +3 -0
- data/lib/typingpool/templates/assignment/partials/header.html.erb +11 -0
- data/lib/typingpool/templates/assignment/partials/labeling-example.html.erb +4 -0
- data/lib/typingpool/templates/assignment/partials/labeling.html.erb +5 -0
- data/lib/typingpool/templates/assignment/partials/length-description.html.erb +6 -0
- data/lib/typingpool/templates/assignment/partials/voices.html.erb +10 -0
- data/lib/typingpool/templates/assignment/speech.html.erb +11 -0
- data/lib/typingpool/templates/config.yml +21 -0
- data/lib/typingpool/templates/project/audio/chunks/.empty_directory +0 -0
- data/lib/typingpool/templates/project/audio/originals/.empty_directory +0 -0
- data/lib/typingpool/templates/project/data/.empty_directory +0 -0
- data/lib/typingpool/templates/project/etc/ About these files - read me.txt +8 -0
- data/lib/typingpool/templates/project/etc/audio-compat.js +25 -0
- data/lib/typingpool/templates/project/etc/player/audio-player.js +4 -0
- data/lib/typingpool/templates/project/etc/player/license.txt +19 -0
- data/lib/typingpool/templates/project/etc/player/player.swf +0 -0
- data/lib/typingpool/templates/project/etc/transcript.css +49 -0
- data/lib/typingpool/templates/transcript.html.erb +23 -0
- data/lib/typingpool/test/fixtures/amazon-question-html.html +95 -0
- data/lib/typingpool/test/fixtures/amazon-question-url.txt +1 -0
- data/lib/typingpool/test/fixtures/audio/mp3/interview.1.mp3 +0 -0
- data/lib/typingpool/test/fixtures/audio/mp3/interview.2.mp3 +0 -0
- data/lib/typingpool/test/fixtures/audio/wma/VN620007.WMA +0 -0
- data/lib/typingpool/test/fixtures/audio/wma/VN620052.WMA +0 -0
- data/lib/typingpool/test/fixtures/config-1 +20 -0
- data/lib/typingpool/test/fixtures/config-2 +25 -0
- data/lib/typingpool/test/fixtures/not_yaml.txt +4 -0
- data/lib/typingpool/test/fixtures/template-2.html.erb +10 -0
- data/lib/typingpool/test/fixtures/template-3.html.erb +22 -0
- data/lib/typingpool/test/fixtures/template.html.erb +10 -0
- data/lib/typingpool/test/fixtures/tp_collect_id.txt +1 -0
- data/lib/typingpool/test/fixtures/tp_collect_sandbox-assignment.csv +8 -0
- data/lib/typingpool/test/fixtures/tp_review_id.txt +1 -0
- data/lib/typingpool/test/fixtures/tp_review_sandbox-assignment.csv +8 -0
- data/lib/typingpool/test/fixtures/transcript-chunks.csv +226 -0
- data/lib/typingpool/test/fixtures/utf8_transcript.txt +7 -0
- data/lib/typingpool/test/fixtures/vcr/tp-collect-1.yml +2712 -0
- data/lib/typingpool/test/fixtures/vcr/tp-collect-2.yml +2718 -0
- data/lib/typingpool/test/fixtures/vcr/tp-collect-3.yml +2768 -0
- data/lib/typingpool/test/fixtures/vcr/tp-review-1.yml +570 -0
- data/lib/typingpool/test/fixtures/vcr/tp-review-2.yml +351 -0
- data/lib/typingpool/test.rb +418 -0
- data/lib/typingpool/transcript.rb +181 -0
- data/lib/typingpool/utility.rb +272 -0
- data/lib/typingpool.rb +500 -0
- data/test/make_amazon_question_fixture.rb +24 -0
- data/test/make_tp_collect_fixture_1.rb +26 -0
- data/test/make_tp_collect_fixture_2.rb +16 -0
- data/test/make_tp_collect_fixture_3.rb +15 -0
- data/test/make_tp_collect_fixture_4.rb +17 -0
- data/test/make_tp_review_fixture_1.rb +26 -0
- data/test/make_tp_review_fixture_2.rb +30 -0
- data/test/make_transcript_chunks_fixture.rb +53 -0
- data/test/test_integration_script_1_tp_config.rb +108 -0
- data/test/test_integration_script_2_tp_make.rb +119 -0
- data/test/test_integration_script_3_tp_assign.rb +152 -0
- data/test/test_integration_script_4_tp_review.rb +72 -0
- data/test/test_integration_script_5_tp_collect.rb +44 -0
- data/test/test_integration_script_6_tp_finish.rb +123 -0
- data/test/test_unit_amazon.rb +153 -0
- data/test/test_unit_config.rb +94 -0
- data/test/test_unit_filer.rb +202 -0
- data/test/test_unit_project.rb +168 -0
- data/test/test_unit_project_local.rb +68 -0
- data/test/test_unit_project_remote.rb +157 -0
- data/test/test_unit_template.rb +111 -0
- data/test/test_unit_transcript.rb +77 -0
- metadata +234 -0
@@ -0,0 +1,95 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<script>
|
5
|
+
function setAmazonAssignmentId() {
|
6
|
+
var params = window.location.search.substring(1).split('&');
|
7
|
+
var i = 0;
|
8
|
+
for (i = 0; i < params.length; i++) {
|
9
|
+
var param = params[i].split('=');
|
10
|
+
var key = param[0];
|
11
|
+
var value = param[1];
|
12
|
+
if (key === 'assignmentId') {
|
13
|
+
if (value === 'ASSIGNMENT_ID_NOT_AVAILABLE') {
|
14
|
+
var input = document.getElementById('disable_on_preview');
|
15
|
+
if (input) {
|
16
|
+
input.setAttribute('disabled', 'disabled');
|
17
|
+
var span = document.createElement('span');
|
18
|
+
span.setAttribute('class', 'disabled_message');
|
19
|
+
span.appendChild(document.createTextNode(' Disabled because you are previewing this HIT.'));
|
20
|
+
var inputSibling = input.nextSibling;
|
21
|
+
if (inputSibling) {
|
22
|
+
input.parentNode.insertBefore(span, inputSibling);
|
23
|
+
}
|
24
|
+
else {
|
25
|
+
input.parentNode.appendChild(span);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
else {
|
30
|
+
document.getElementById('assignmentId').value = value;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
else if (key === 'turkSubmitTo') {
|
34
|
+
var form = document.getElementById('turkForm');
|
35
|
+
if (form) {
|
36
|
+
form.setAttribute('action', decodeURIComponent(value) + '/mturk/externalSubmit');
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
|
42
|
+
</script>
|
43
|
+
<style>
|
44
|
+
body {
|
45
|
+
color: black;
|
46
|
+
background: white;
|
47
|
+
font-family: Georgia, Times, "Times New Roman", serif;
|
48
|
+
}
|
49
|
+
|
50
|
+
h1, h2, h3, h4, h5, .disabled_message {
|
51
|
+
font-family: Helvetica, Arial, sans-serif;
|
52
|
+
}
|
53
|
+
|
54
|
+
p {
|
55
|
+
line-height: 140%;
|
56
|
+
}
|
57
|
+
|
58
|
+
.disabled_message {
|
59
|
+
color: gray;
|
60
|
+
font-size: small;
|
61
|
+
}
|
62
|
+
|
63
|
+
</style>
|
64
|
+
<title>Transcribe MP3 of 1-minute phone calll</title>
|
65
|
+
</head>
|
66
|
+
|
67
|
+
<body onload="setAmazonAssignmentId()">
|
68
|
+
|
69
|
+
<h2>Transcribe MP3 of 1-minute phone call</h2>
|
70
|
+
<p id="description">I split up a telephone conversation into 1-minute parts, you transcribe the audio for one 1-minute part.</p>
|
71
|
+
|
72
|
+
<h3>Labeling</h3>
|
73
|
+
<p>There are two speakers. The person asking the questions is <strong>Ryan</strong>. The person answering the questions, on the distant end of the telephone line, is <strong>Havi</strong>, hacker. Label each speaker with a colon, like this:</p>
|
74
|
+
<blockquote>
|
75
|
+
<p>Ryan: Do you think it was a mistake to set up Saturn as its own Corporation?</p>
|
76
|
+
<p>Havi: In hindsight, you can look at it that way, and I think a lot of people do, quite honestly. They don't think GM needed another brand. But at the time this was all developed. It sure seemed like a good idea.</p>
|
77
|
+
</blockquote>
|
78
|
+
|
79
|
+
<h3>Important</h3>
|
80
|
+
<ul>
|
81
|
+
<li><strong>Unusual words</strong> you might hear: <strong>Hack Day, Sunnyvale, Chad D</strong></li>
|
82
|
+
<li><strong>Don't</strong> type short responses like <strong>ya</strong>, <strong>OK</strong>, <strong>Oh</strong>, <strong>Ah</strong>, and <strong>Mmmhmm</strong>.
|
83
|
+
<li>For <strong>inaudible</strong> words, type <strong>??</strong></li>
|
84
|
+
</ul>
|
85
|
+
|
86
|
+
<h3>Instructions</h3>
|
87
|
+
<p>Please <strong>transcribe</strong> this 1-minute MP3: <a target="_blank" href="http://webmasher.com/mturk/TestTpInterview.00.00.77421e0a6302f4c8c34e24004a4ad828.YSOQJU.mp3">http://webmasher.com/mturk/TestTpInterview.00.00.77421e0a6302f4c8c34e24004a4ad828.YSOQJU.mp3</a></p>
|
88
|
+
<form action="https://www.mturk.com/mturk/externalSubmit" method="POST" id="turkForm">
|
89
|
+
<p><input name="assignmentId" type="hidden" id="assignmentId"><input name="typingpool_url" type="hidden" value="http://webmasher.com/mturk/TestTpInterview.00.00.77421e0a6302f4c8c34e24004a4ad828.YSOQJU.mp3" /><input name="typingpool_project_id" type="hidden" value="77421e0a6302f4c8c34e24004a4ad828" />Enter your transcription below:</p>
|
90
|
+
<p><textarea name="transcription" cols="80" rows="15"></textarea></p>
|
91
|
+
<p><input type="submit" value="Submit" id="disable_on_preview"></p>
|
92
|
+
</form>
|
93
|
+
|
94
|
+
</body>
|
95
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
http://example.com/assignments/101.html
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,20 @@
|
|
1
|
+
amazon:
|
2
|
+
key: test1010101010
|
3
|
+
secret: test10101010101
|
4
|
+
bucket: test-typingpool-1
|
5
|
+
transcripts: ~/Documents/Transcripts/
|
6
|
+
cache: ~/.typingpool.cache3
|
7
|
+
app: ~/Documents/Software/dist/ruby/typingpool
|
8
|
+
templates: ~/Documents/Transcripts/templates
|
9
|
+
assign:
|
10
|
+
reward: 0.75
|
11
|
+
deadline: 3h
|
12
|
+
approval: 1d
|
13
|
+
lifetime: 2d
|
14
|
+
qualify:
|
15
|
+
- approval_rate >= 95
|
16
|
+
keywords:
|
17
|
+
- transcription
|
18
|
+
- audio
|
19
|
+
- mp3
|
20
|
+
|
@@ -0,0 +1,25 @@
|
|
1
|
+
amazon:
|
2
|
+
key: 1010101010
|
3
|
+
secret: 010101010101
|
4
|
+
sftp:
|
5
|
+
user: ryan
|
6
|
+
host: example.com
|
7
|
+
path: public_html/transfer/
|
8
|
+
url: http://example.com/mturk/
|
9
|
+
transcripts: ~/Documents/Transcripts/
|
10
|
+
cache: ~/.typingpool.cache3
|
11
|
+
app: ~/Documents/Software/dist/ruby/typingpool
|
12
|
+
templates: ~/Documents/Transcripts/templates
|
13
|
+
assign:
|
14
|
+
reward: 0.02
|
15
|
+
deadline: 3z
|
16
|
+
approval: 1M
|
17
|
+
lifetime: 90m
|
18
|
+
qualify:
|
19
|
+
- made_up == this
|
20
|
+
- approval_rate >>>> 95
|
21
|
+
keywords:
|
22
|
+
- transcription
|
23
|
+
- audio
|
24
|
+
- mp3
|
25
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8" />
|
5
|
+
<title><%= title %></title>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<h3><%= title %></h3>
|
9
|
+
<pre>
|
10
|
+
<%= read('template') %>
|
11
|
+
</pre>
|
12
|
+
<pre>
|
13
|
+
<%= render('template') %>
|
14
|
+
</pre>
|
15
|
+
<pre>
|
16
|
+
<%= render('template', :title => new_title) %>
|
17
|
+
</pre>
|
18
|
+
<pre>
|
19
|
+
<%= render('template-2') %>
|
20
|
+
</pre>
|
21
|
+
</body>
|
22
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
7cd9be403a310a94ddec71b5cdb92e74
|
@@ -0,0 +1,8 @@
|
|
1
|
+
audio_url,project_id,chunk,unusual,voice1,voice1title,voice2,voice2title,hit_id,hit_expires_at,hit_assignments_duration,assignment_url
|
2
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.00.00.7cd9be403a310a94ddec71b5cdb92e74.UQHBTK.mp3,7cd9be403a310a94ddec71b5cdb92e74,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2TX0CP5KXPTI11Z9ASVPP7NYC7AZYR,2012-07-02 08:26:35 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.00.00.mp3.7cd9be403a310a94ddec71b5cdb92e74.OLDCVP.html
|
3
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.00.20.7cd9be403a310a94ddec71b5cdb92e74.JHWOIM.mp3,7cd9be403a310a94ddec71b5cdb92e74,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2ZS0RYNJ92NJY5HHNYATXHYW8H05AH,2012-07-02 08:26:36 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.00.20.mp3.7cd9be403a310a94ddec71b5cdb92e74.CYRCYM.html
|
4
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.00.40.7cd9be403a310a94ddec71b5cdb92e74.JHULYK.mp3,7cd9be403a310a94ddec71b5cdb92e74,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2Q9NDWIOV1S766KP5SL16YDZEOEXIM,2012-07-02 08:26:36 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.00.40.mp3.7cd9be403a310a94ddec71b5cdb92e74.WPBSXX.html
|
5
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.01.00.7cd9be403a310a94ddec71b5cdb92e74.PRXMQL.mp3,7cd9be403a310a94ddec71b5cdb92e74,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2LOOQ1SNQQ7QKQHHD2BCQR12ZRJ7R6,2012-07-02 08:26:37 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.01.00.mp3.7cd9be403a310a94ddec71b5cdb92e74.NHGWDM.html
|
6
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.01.20.7cd9be403a310a94ddec71b5cdb92e74.AGTUTS.mp3,7cd9be403a310a94ddec71b5cdb92e74,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2LKJ1LY58B72L5HUSRBHG16YLT27SU,2012-07-02 08:26:38 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.01.20.mp3.7cd9be403a310a94ddec71b5cdb92e74.VFYYSQ.html
|
7
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.01.40.7cd9be403a310a94ddec71b5cdb92e74.JFUYPI.mp3,7cd9be403a310a94ddec71b5cdb92e74,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2Z3KH1Q6SVQ8VRPY26XL8OBVIJ82LV,2012-07-02 08:26:38 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.01.40.mp3.7cd9be403a310a94ddec71b5cdb92e74.RQAAWL.html
|
8
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.02.00.7cd9be403a310a94ddec71b5cdb92e74.TMFOME.mp3,7cd9be403a310a94ddec71b5cdb92e74,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,21ICOK2JE1M7331LX3N6RZAC65RUN7,2012-07-02 08:26:39 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.02.00.mp3.7cd9be403a310a94ddec71b5cdb92e74.EHFPQM.html
|
@@ -0,0 +1 @@
|
|
1
|
+
5a786c80f5b6c457c7e77baceaece289
|
@@ -0,0 +1,8 @@
|
|
1
|
+
audio_url,project_id,chunk,unusual,voice1,voice1title,voice2,voice2title,hit_id,hit_expires_at,hit_assignments_duration,assignment_url
|
2
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.00.00.5a786c80f5b6c457c7e77baceaece289.COKFVJ.mp3,5a786c80f5b6c457c7e77baceaece289,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2LX0OHOVR14IB35EXLTHHCWACYA56R,2012-07-02 08:20:24 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.00.00.mp3.5a786c80f5b6c457c7e77baceaece289.PYVPEL.html
|
3
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.00.20.5a786c80f5b6c457c7e77baceaece289.KDUAHD.mp3,5a786c80f5b6c457c7e77baceaece289,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2359U8P9Y38TAFEUF4LYLM0JZBMXGU,2012-07-02 08:20:25 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.00.20.mp3.5a786c80f5b6c457c7e77baceaece289.JUQWSI.html
|
4
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.00.40.5a786c80f5b6c457c7e77baceaece289.RKEFVA.mp3,5a786c80f5b6c457c7e77baceaece289,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,24ZMVHVKCJ01F3JJGVY9NQW679U57Q,2012-07-02 08:20:26 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.00.40.mp3.5a786c80f5b6c457c7e77baceaece289.LGJJMA.html
|
5
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.01.00.5a786c80f5b6c457c7e77baceaece289.IPHMAU.mp3,5a786c80f5b6c457c7e77baceaece289,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,26LTVOK5UFJ5FHO2Q0QF1QS1IT058D,2012-07-02 08:20:26 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.01.00.mp3.5a786c80f5b6c457c7e77baceaece289.VJRKQS.html
|
6
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.01.20.5a786c80f5b6c457c7e77baceaece289.BCYSXT.mp3,5a786c80f5b6c457c7e77baceaece289,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2M998D8J3VE7AB95ZA3G6MCKEBZXHT,2012-07-02 08:20:27 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.01.20.mp3.5a786c80f5b6c457c7e77baceaece289.KRGWGC.html
|
7
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.01.40.5a786c80f5b6c457c7e77baceaece289.NYLNRI.mp3,5a786c80f5b6c457c7e77baceaece289,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,21ASZVXX2Q458D120A7NLW1NY9V7PE,2012-07-02 08:20:28 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.01.40.mp3.5a786c80f5b6c457c7e77baceaece289.QCKXFO.html
|
8
|
+
http://webmasher.com/mturk/Typingpool's%20Test%20&%20Interview.02.00.5a786c80f5b6c457c7e77baceaece289.WSLIMR.mp3,5a786c80f5b6c457c7e77baceaece289,0:20,"Hack Day, Sunnyvale, Chad D",Ryan,"",Havi,hacker,2SST2D5NQYN5TM7CVSWT1MNC2ZI592,2012-07-02 08:20:28 UTC,18000,http://webmasher.com/mturk/Typingpool's%2520Test%2520&%2520Interview.02.00.mp3.5a786c80f5b6c457c7e77baceaece289.TBXOSA.html
|
@@ -0,0 +1,226 @@
|
|
1
|
+
audio_url,project_id,unusual,voice1,voice1title,voice2,voice2title,hit_id,hit_expires_at,hit_assignments_duration,assignment_url,transcript,worker
|
2
|
+
http://webmasher.com/mturk/ColinKarpfinger.14.00.83b0f1daeb0be954327346538e2c2d81.ENSIWL.mp3,83b0f1daeb0be954327346538e2c2d81,"Yobble, Air Guitar, Best Buy, iPhone",Ryan,"",Colin,a startup founder,2H1G5TYMNCWYPNQRL4JSMX12OLRNJX,2012-06-06 15:26:08 UTC,10800,http://webmasher.com/mturk/ColinKarpfinger.14.00.mp3.83b0f1daeb0be954327346538e2c2d81.QGLSWC.html,"Ryan: ...same sort of experience? I mean, is anything big changed, in terms of how things are manufactured out there, or is it basically the same process?
|
3
|
+
|
4
|
+
Colin: In China, you mean?
|
5
|
+
|
6
|
+
Ryan: Yeah, and in the whole process, I guess. Like, proto-typing here, I don't know if that's gotten any easier.
|
7
|
+
|
8
|
+
Colin: We did all of our initial design and everything locally, so we placed it in California, in Sunnyvale ?? surfboards, and I assembled them. By the time we went to China, we had a pretty close product - close being final.
|
9
|
+
|
10
|
+
Ryan: How easy or hard has it been to get the proto-type converted into actual units, rolling off the line? Has it been fairly accurate?
|
11
|
+
|
12
|
+
Colin: Yeah, it's all been an interesting process.
|
13
|
+
",AYY7NLDN1K3C0
|
14
|
+
http://webmasher.com/mturk/ColinKarpfinger.11.00.83b0f1daeb0be954327346538e2c2d81.DXRGRJ.mp3,83b0f1daeb0be954327346538e2c2d81,"Yobble, Air Guitar, Best Buy, iPhone",Ryan,"",Colin,a startup founder,28GNJ92NJKM0JU3V568Y12GUU6U8DF,2012-06-06 15:26:05 UTC,10800,http://webmasher.com/mturk/ColinKarpfinger.11.00.mp3.83b0f1daeb0be954327346538e2c2d81.EAPUFI.html,"Joe: Yeah, Kickstarter we raised 32 thousand.
|
15
|
+
|
16
|
+
Ryan: Can you give me any sense of how much of the development cost that covered? Was that able to cover the whole development cost?
|
17
|
+
|
18
|
+
Joe: Well, we took all our Kickstarter money, including the profit off the units and just put it all into manufacturing. So, we actually made � we made, maybe, like 30 percent more, 40 percent more than we actually had ordered. So, we just decided to do that and to have some extra units that we could send out to press or whoever.
|
19
|
+
|
20
|
+
Ryan: You funneled additional � I mean, you probably have spent additional beyond that, because the 32k just kind of does [initiate?] it. Was there development money? Did you guys put in a lot of time prior to collecting the Kickstarter money that's basically unreimbursed? I mean, do you have your own sort of sweat equity in this as well?
|
21
|
+
|
22
|
+
Joe: Oh, totally.
|
23
|
+
|
24
|
+
Ryan: That was about a year, you said.
|
25
|
+
|
26
|
+
Joe: We raised a little bit of angel money in the beginning and then [end of audio]",A6L5IRWXQOFAZ
|
27
|
+
http://webmasher.com/mturk/ColinKarpfinger.26.00.83b0f1daeb0be954327346538e2c2d81.VJTOHD.mp3,83b0f1daeb0be954327346538e2c2d81,"Yobble, Air Guitar, Best Buy, iPhone",Ryan,"",Colin,a startup founder,2V6ZFYQS1CST07W93PJ4NC1F3ARNKW,2012-06-06 15:26:16 UTC,10800,http://webmasher.com/mturk/ColinKarpfinger.26.00.mp3.83b0f1daeb0be954327346538e2c2d81.JEIHVT.html,"Colin: ...and so it's a pretty school story, I remember reading about them before I got into this whole thing.
|
28
|
+
|
29
|
+
Ryan: Okay, so it was kind of an early inspiration, maybe.
|
30
|
+
|
31
|
+
Ryan: Has it been... Well, I guess you've done this before, but were you able to estimate the level of difficulty in terms of... has it gone approximately as... have there been any major publications, has it gone about as you thought it would go in terms of the timeline?
|
32
|
+
|
33
|
+
Colin: This is my first thing that's meant to be manufactured in China, so that's a whole new world, you know. And we actually were over there in December, and got to visit the plant and meet the people, and kind of see the city, so that was pretty crazy.
|
34
|
+
|
35
|
+
Ryan: Wow, that's really neat. This was in the what, Shanghai, or?
|
36
|
+
|
37
|
+
Colin: Shengyang.
|
38
|
+
|
39
|
+
Ryan: Shengyang, down. Nice. So just very roughly, the overview of how this was...",A2YGGP435A74R5
|
40
|
+
http://webmasher.com/mturk/ColinKarpfinger.16.00.83b0f1daeb0be954327346538e2c2d81.TRLVDL.mp3,83b0f1daeb0be954327346538e2c2d81,"Yobble, Air Guitar, Best Buy, iPhone",Ryan,"",Colin,a startup founder,2EPH57DZKPFEIXXPTPD2AL8JEK43DK,2012-06-06 15:26:09 UTC,10800,http://webmasher.com/mturk/ColinKarpfinger.16.00.mp3.83b0f1daeb0be954327346538e2c2d81.PIBLMC.html,"Ryan: That's really neat.
|
41
|
+
|
42
|
+
Colin: Whenever you complete it successfully, Homer Simpson pops up on the screen and says, ""Woo-hoo!'
|
43
|
+
|
44
|
+
Ryan: Is that for every unit, then? Well, hopefully, for every unit.
|
45
|
+
|
46
|
+
Colin: Every unit.
|
47
|
+
|
48
|
+
Ryan: Is there a ""doe"" if it fails?
|
49
|
+
|
50
|
+
Colin: [laughs]
|
51
|
+
|
52
|
+
Ryan: Maybe that's version two, I don't know.
|
53
|
+
|
54
|
+
Colin: It should never fail.
|
55
|
+
|
56
|
+
Ryan: Right, I'm sure. It's really neat. So, you say you run that on every single on that comes off?
|
57
|
+
|
58
|
+
Colin: Yeah.
|
59
|
+
|
60
|
+
Ryan: Or they do, I suppose.
|
61
|
+
|
62
|
+
Colin: In addition, we actually came up with a system where it programs the date and the time that it was tested successfully. If a customer gets one that doesn't work, we're able to actually read that value off and we can see if they didn't test it.
|
63
|
+
|
64
|
+
Ryan: You can go through the logs kind of.
|
65
|
+
|
66
|
+
Colin: Right.
|
67
|
+
|
68
|
+
Ryan: Nice. Wow! That's really cool.
|
69
|
+
|
70
|
+
Colin: Yeah, it's pretty crazy what you can do with the iPhone stuff. As far as reducing development costs...
|
71
|
+
",A2XLKT8T3ZQM5G
|
72
|
+
http://webmasher.com/mturk/DanMartell.07.00.611870525f5d5a3223c73fffc5151f84.QUWNFK.mp3,611870525f5d5a3223c73fffc5151f84,"Clarity.fm, venture capital, angel investing, Charles River Ventures",Ryan,"",Dan,an entrepreneur,2RIRYNJ92NJK0JMNYVKUMYW3LQTB6Q,2012-06-06 15:38:19 UTC,10800,http://webmasher.com/mturk/DanMartell.07.00.mp3.611870525f5d5a3223c73fffc5151f84.QKYHFT.html,"Ryan: These are sort of the investors sizing up the entrepreneurs. Are the entrepreneurs also sizing up the investors? Is it a kind of a...?
|
73
|
+
|
74
|
+
Dan: Oh, a hundred thousand percent. It's always going to be the entrepreneurs looking for capital, I think, but I think a lot of... Some of these exclusive events with certain types of entrepreneurs. There's even ski events, things like ??. I think those are more of the investors wanting to go to meet the next up and coming entrepreneurs through the existing name brand entrepreneurs.
|
75
|
+
|
76
|
+
So, if Dave ?? or Kevin ?? agreed to some kind of ski even to Tahoe, I'm sure there's some investors that want to go to meet these entrepreneurs that they're inviting to those events.
|
77
|
+
|
78
|
+
Ryan: That makes sense. Here's another bug [?]question. With this amount of money, at least up until now or at least up through the IPO that's been sloshing around, how...
|
79
|
+
",A2XLKT8T3ZQM5G
|
80
|
+
http://webmasher.com/mturk/DanMartell.03.00.611870525f5d5a3223c73fffc5151f84.MQKNKB.mp3,611870525f5d5a3223c73fffc5151f84,"Clarity.fm, venture capital, angel investing, Charles River Ventures",Ryan,"",Dan,an entrepreneur,234EGOOGQSCMK1RME45IZUU15LVEEF,2012-06-06 15:38:16 UTC,10800,http://webmasher.com/mturk/DanMartell.03.00.mp3.611870525f5d5a3223c73fffc5151f84.XYSWPH.html,"Dan:...between Foursquare and Pinterest and Instagram, there's another 25-30 million, and then a bunch of startups that's trying to do... Hopefully, it fixes itself because it's going to be bad.
|
81
|
+
|
82
|
+
Ryan: Do you think other entrepreneurs out there are worried in the same way you are? Do you get a sense that there's some concerns, other people have concerns like the ones you have?
|
83
|
+
|
84
|
+
Dan: Only the one's that have been... Anybody that's been through it in '98, 2001, 2008, and now. I think those ones know. The younger one's first time, they're going... Especially the ones that are in the incubators right now that have a couple hundred grand, when they go to raise their seed... When they're expecting to do a $10 million pre-convertible note, I'm just not sure they're going to see the valuations.
|
85
|
+
|
86
|
+
Ryan: Has anyone started asking about...? You probably don't monitor the conversations, but do you know if anyone's asked about that on your system?
|
87
|
+
|
88
|
+
Dan: We don't monitor.
|
89
|
+
|
90
|
+
Ryan: Let's see here. I heard...
|
91
|
+
",A2XLKT8T3ZQM5G
|
92
|
+
http://webmasher.com/mturk/DanMartell.08.00.611870525f5d5a3223c73fffc5151f84.IIKPFU.mp3,611870525f5d5a3223c73fffc5151f84,"Clarity.fm, venture capital, angel investing, Charles River Ventures",Ryan,"",Dan,an entrepreneur,2LKAESCWY2AO2LXYYQ7OTGQTHJA00S,2012-06-06 15:38:20 UTC,10800,http://webmasher.com/mturk/DanMartell.08.00.mp3.611870525f5d5a3223c73fffc5151f84.JGLHNC.html,"Ryan: In that sort of environment, how do you choose who to take money from? If you've got choices, you know? I mean, it's a very broad question, but when there's that much surplus...
|
93
|
+
|
94
|
+
Dan: There's different styles. What I've seen lately is there's these party rounds that happen where you've got like 30, 40 investors, each at 25-50k.
|
95
|
+
|
96
|
+
Ryan: Wow.
|
97
|
+
|
98
|
+
Dan: Yeah. People have been doing that and I don't agree with it because I believe that if you don't have somebody that has an amount in the bank that they care, essentially when you go to do your next thing, if you don't have the traction, they're just not going to pony up and help you out to kind of bridge that.
|
99
|
+
|
100
|
+
Ryan: That makes sense. What's the thinking in favor of that? I mean, are they looking to reduce their vulnerability to any one investor taking over? Is that the idea behind spreading it so thin? I mean, I guess I should ask someone who's actually doing it.
|
101
|
+
|
102
|
+
Dan: No.
|
103
|
+
|
104
|
+
Ryan: But I'm curious why you...",A1U2S9JR691LCM
|
105
|
+
http://webmasher.com/mturk/DanMartell.13.00.611870525f5d5a3223c73fffc5151f84.MFPYAJ.mp3,611870525f5d5a3223c73fffc5151f84,"Clarity.fm, venture capital, angel investing, Charles River Ventures",Ryan,"",Dan,an entrepreneur,2HFULRGNTBJ305U9HRG7S62LM8DT7X,2012-06-06 15:38:23 UTC,10800,http://webmasher.com/mturk/DanMartell.13.00.mp3.611870525f5d5a3223c73fffc5151f84.NGGGHU.html,"Dan: Only their own portfolio. That�s what makes it exclusive. That's the value add. That, to me, is... The money is the money, but don't... People that say they're a product expert or a domain expert, the world's changing so fast that by the time you get to ??, it's old.
|
106
|
+
|
107
|
+
Ryan: So it's more about current, real-time... Well, not real-time, but current cross-communication along the way, basically.
|
108
|
+
|
109
|
+
Dan: Yeah. The best thing they can do is just play matchmaker in the sense of put people together in a room. That's what ?? are for. That was an opportunity for them to grab people that they've invested in and other smart people they know in the industry, and we all get together. It was an amazing group of people.
|
110
|
+
|
111
|
+
Ryan: That's great. I've burned through my questions. Is the company name Clarity? Do you go by Clarity.fm or do you go by...?
|
112
|
+
|
113
|
+
Dan: Clarity.
|
114
|
+
",A2XLKT8T3ZQM5G
|
115
|
+
http://webmasher.com/mturk/RonaldMannak.11.00.1978bf27f785927e5c47b163da0d12d7.QSFVBD.mp3,1978bf27f785927e5c47b163da0d12d7,"Yobble, hardware, Air Guitar, iPhone",Ryan,"",Ronald,a Dutch engineer,2GOR70G5R98DM2K7QJNSXTNZHD8BRP,2012-06-06 15:39:07 UTC,10800,http://webmasher.com/mturk/RonaldMannak.11.00.mp3.1978bf27f785927e5c47b163da0d12d7.VXVHFO.html,"Ryan: ...the air guitar. Like sticks, basically. The sort of drumsticks.
|
116
|
+
|
117
|
+
Ronald: I'm sorry.
|
118
|
+
|
119
|
+
Ryan: Was the air drums...drum sticks, basically?
|
120
|
+
|
121
|
+
Ronald: Yeah. You can find the videos on Youtube, pretty easily.
|
122
|
+
|
123
|
+
Ryan: I'm sure.
|
124
|
+
|
125
|
+
Ronald: So the way it works was very simple. There were two drumsticks, and you would drum in the air on a visible drunkit. You would drum in front of you. High and low would be different sounds. High would be, like, a highhat. Low would be a ?? for example. You had a whole invisible drumkit in front of you. It was pretty cool to play with.
|
126
|
+
|
127
|
+
Ryan: Is the experience of bringing that to market at all similar with the air guitar product?
|
128
|
+
|
129
|
+
Ronald: No (laughter) it was completely different. (laughter) We were in Rome and ?? in Holland, so we had to figure everything out ourselves...",ABI9ZPA1SGP8F
|
130
|
+
http://webmasher.com/mturk/RonaldMannak.03.00.1978bf27f785927e5c47b163da0d12d7.TWEPRG.mp3,1978bf27f785927e5c47b163da0d12d7,"Yobble, hardware, Air Guitar, iPhone",Ryan,"",Ronald,a Dutch engineer,2W80ONNVRH1KV7QQS327BNVAQH0NWS,2012-06-06 15:39:01 UTC,10800,http://webmasher.com/mturk/RonaldMannak.03.00.mp3.1978bf27f785927e5c47b163da0d12d7.UPQHUO.html,"Ryan: What was that process like? Walk me through that. You did the prototype...
|
131
|
+
|
132
|
+
Ronald: Yeah, yeah. We thought it up with a very simple prototype on a jailbreak iPhone, since you need a manufacturers license to work on a real iPhone. Since we didn't know whether the product would work or ?? we set it out using that jailbroken phone and made a very early prototype. And the game itself wasn't ready, so instead of a game we had freeplay...more of a real guitar than anything else. That was enough to collect feedback early on. The earliest prototype didn't even have a neck barometer. It was just a spring that...",ABI9ZPA1SGP8F
|
133
|
+
http://webmasher.com/mturk/RonaldMannak.14.00.1978bf27f785927e5c47b163da0d12d7.MWJDFY.mp3,1978bf27f785927e5c47b163da0d12d7,"Yobble, hardware, Air Guitar, iPhone",Ryan,"",Ronald,a Dutch engineer,2DJVP9746OQ16672J2X7551RP9RL1P,2012-06-06 15:39:09 UTC,10800,http://webmasher.com/mturk/RonaldMannak.14.00.mp3.1978bf27f785927e5c47b163da0d12d7.UOTEMC.html,"Ronald Mannak: To make matters worse is that all the error messages were in Chinese and we didn�t speak Chinese, still don�t speak Chinese.
|
134
|
+
|
135
|
+
Ryan: So you gave up the C branch and you went, just, further lower to assembler.
|
136
|
+
|
137
|
+
[crosstalk]
|
138
|
+
|
139
|
+
Ronald: Yeah.
|
140
|
+
|
141
|
+
Ryan: That must have been fun.
|
142
|
+
|
143
|
+
Ronald: So the error messages were in Chinese, but at least we ?? a little bit of what was happening.
|
144
|
+
|
145
|
+
Ryan: But this time are you in a higher level? Are you still ??, I guess, Objective-C for this one or are you having...
|
146
|
+
|
147
|
+
[crosstalk]
|
148
|
+
|
149
|
+
Ronald: Oh, yeah, for ??, of course, it�s Objective C and the embedded software is done in C as well.
|
150
|
+
|
151
|
+
Ryan: OK.
|
152
|
+
|
153
|
+
Ronald: ?? right now. So it�s made in America instead of made in China.
|
154
|
+
|
155
|
+
Ryan: OK. Yeah. So you�re a level up, it sounds like.
|
156
|
+
|
157
|
+
Ronald: What�s that?
|
158
|
+
|
159
|
+
Ryan: So you�re a level up from where you were before in terms of the...
|
160
|
+
|
161
|
+
[crosstalk]
|
162
|
+
|
163
|
+
Ronald: Yeah. Yeah.
|
164
|
+
|
165
|
+
Ryan: Are you programming through, sort of, the standard iPhone APIs? I guess you�re having to do some of your own...
|
166
|
+
",A3F2PWBD8BILJE
|
167
|
+
http://webmasher.com/mturk/RonaldMannak.07.00.1978bf27f785927e5c47b163da0d12d7.DNQUIM.mp3,1978bf27f785927e5c47b163da0d12d7,"Yobble, hardware, Air Guitar, iPhone",Ryan,"",Ronald,a Dutch engineer,2X4MEGOOGQSC0PZMMEJENUUV5XSDDR,2012-06-06 15:39:04 UTC,10800,http://webmasher.com/mturk/RonaldMannak.07.00.mp3.1978bf27f785927e5c47b163da0d12d7.YSOTNR.html,"Ronald: Bill Protocol
|
168
|
+
Ryan: Ok
|
169
|
+
Ronald: So yeah, the whole ??? protocol between the ??? and a ??? of something that is a ??? mass program
|
170
|
+
Ryan: Ok
|
171
|
+
Ronald: We should probably get a ??? ??? to answer that question. For the most part to get it right.
|
172
|
+
Ryan: How are you guys dividing up the work? Are you doing more the hardware side are you doing any of the software?
|
173
|
+
Ronald: Actually I kind of did the hardware and she did the indebted software out of protocol to the I phone. Oh, and the motion sensing technology. I built the game graphics and everything else.
|
174
|
+
Ryan: Ok so your actually doing more of the software stuff
|
175
|
+
Ronald: Yes
|
176
|
+
Ryan: Is it going to be in API? He mentioned the possibility of having other games built around the air guitar, the physical
|
177
|
+
",A3E2WDK0R3B75I
|
178
|
+
http://webmasher.com/mturk/JoeGarrison.03.00.703d87e35386e2ffe34e22061d08d829.LNQLWD.mp3,703d87e35386e2ffe34e22061d08d829,"logic analyzer, hardware, Kickstarter",Ryan,"",Joe,a maker of computer hardware,2GDXX2Q45UUK47FSZUN1SS8PLX5ASG,2012-06-06 15:25:26 UTC,10800,http://webmasher.com/mturk/JoeGarrison.03.00.mp3.703d87e35386e2ffe34e22061d08d829.GAUIDY.html,"Answer: Exploided a lot of the ?? where before that there really wasn't a whole lof of use ? The markets, you kno the ? ofcourse I'm not sure if that is still growing or whatever but it's kind of a big deal within the last 10 years or whatever from sparks or one of those guys and so we kind of somewhat taken advantage of that. There are people who aren't engineers but selling our products.
|
179
|
+
Question: So are ? you're a man that ? know much about the logic analyzing market but are you one the only companies doing sort of PC based logic analyzers or is that a very large market that you're apart of?
|
180
|
+
Answer: Well first of all the ? market there are quite a few sort of players in it so the logic end ? there something that sort of any engineer things that they can build.
|
181
|
+
Right.",A4L5UF22VTERR
|
182
|
+
http://webmasher.com/mturk/JoeGarrison.13.00.703d87e35386e2ffe34e22061d08d829.GLKGMT.mp3,703d87e35386e2ffe34e22061d08d829,"logic analyzer, hardware, Kickstarter",Ryan,"",Joe,a maker of computer hardware,2BLK4F0OHOVRFNZ9W0TLE2HFHTE32A,2012-06-06 15:25:34 UTC,10800,http://webmasher.com/mturk/JoeGarrison.13.00.mp3.703d87e35386e2ffe34e22061d08d829.AVCUES.html,"Joe: About a year ago.
|
183
|
+
|
184
|
+
Ryan: Okay, cool. Justin Frankel, I believe, was from Arizona as I recall.
|
185
|
+
|
186
|
+
Joe: Oh, yeah?
|
187
|
+
|
188
|
+
Ryan: Yeah, the guy who did Nutella and some other things. He was in audio, he was never in hardware. WinAmp and Nutella and all that stuff. I appreciate you walking me through this. Are there any other small nimble hardware startups like either yourselves or Yobble you'd recommend I talk to?
|
189
|
+
|
190
|
+
Joe: Yobble is one of the best to talk to. Have you talked to Pebble?
|
191
|
+
|
192
|
+
Ryan: Yeah, that's actually a good idea.
|
193
|
+
|
194
|
+
Joe: They make that watch. They're like an off the charts, at a level that makes me highly pissed off. They've been around about as long as us, and they've worked really hard to earn their success...",ABI9ZPA1SGP8F
|
195
|
+
http://webmasher.com/mturk/JoeGarrison.07.00.703d87e35386e2ffe34e22061d08d829.MILLWH.mp3,703d87e35386e2ffe34e22061d08d829,"logic analyzer, hardware, Kickstarter",Ryan,"",Joe,a maker of computer hardware,256GQSCM6IAAGBVU66L05OQLP78II0,2012-06-06 15:25:29 UTC,10800,http://webmasher.com/mturk/JoeGarrison.07.00.mp3.703d87e35386e2ffe34e22061d08d829.UQPRTG.html,"Joe: The other thing I want to say, though, is I want to do something that goes in a little, nice box and is made up of plastic or metal or something that looks nice and is actually consumer friendly. The ability to do that is a lot easier. If you can pull that off for less than [?] cost [?]. I don't know a whole lot about the cost and [holding and moving?]. I know that the costs have [?] signifigantly to more of like between one and 10 thousand dollars for different tools and things like that. What we were able to do is just to keep the whole injection molding, because to me, back then, 10 thousand was a lot of money. Almost like a � I think it was because I didn't save anything. I was like, �well, I'll just be rich instead of saving.�
|
196
|
+
|
197
|
+
So, rather than further doing that, what you can do, though, is start [end of audio]",A6L5IRWXQOFAZ
|
198
|
+
http://webmasher.com/mturk/JoeGarrison.12.00.703d87e35386e2ffe34e22061d08d829.REPCYI.mp3,703d87e35386e2ffe34e22061d08d829,"logic analyzer, hardware, Kickstarter",Ryan,"",Joe,a maker of computer hardware,2A4OFXRDS4ICFXFPZ9AFR11B7FZXUN,2012-06-06 15:25:33 UTC,10800,http://webmasher.com/mturk/JoeGarrison.12.00.mp3.703d87e35386e2ffe34e22061d08d829.INTXYE.html,"Joe: [?] you know, our current deal and very relevant to our current customers, thought it had the potential to be a [?] to what we're doing now.
|
199
|
+
|
200
|
+
Ryan: Interesting. Is there anything you can say about it, or it's under wraps?
|
201
|
+
|
202
|
+
Joe: Yeah, I'm kind of under wraps.
|
203
|
+
|
204
|
+
Ryan: Maybe in hardware or hardware/software hybrid again, like you're doing now?
|
205
|
+
|
206
|
+
Joe: Yeah, it's hardware and software. It's just really expanding into the system measurement market a lot more than we have been before, which is really, I think
|
207
|
+
|
208
|
+
Ryan: Which market?
|
209
|
+
|
210
|
+
Joe: System measurement.
|
211
|
+
|
212
|
+
Ryan: Oh, system measurement. Right, right.
|
213
|
+
|
214
|
+
Joe: I just think it's a lot more exciting; more effort, more people.
|
215
|
+
|
216
|
+
Ryan: When you're ready to talk about it �
|
217
|
+
|
218
|
+
Joe: It's going to be a pretty large deal.
|
219
|
+
|
220
|
+
Ryan: I mean, let me know when you're ready to talk about it. I'd love to write about it when you do get to that point. So, is Mark your brother? Is that how it works?
|
221
|
+
|
222
|
+
Joe: Yeah, mark's my brother. It's hard to believe we're brothers.
|
223
|
+
|
224
|
+
Ryan: Where're you guys from?
|
225
|
+
|
226
|
+
Joe: Arizona. I just got here like five, six, or I don't know how many years ago.",A6L5IRWXQOFAZ
|
@@ -0,0 +1,7 @@
|
|
1
|
+
MALE1: I think it's very fair to say that we make our products together with our customers ?? where he reviews the ??. I, too, think that's ?? business ?? to our customer ??. Agreed?
|
2
|
+
|
3
|
+
MALE2: The technology products like the iPhone and Macbooks seem to be getting a little more fashionable compared to the past. From the opposite direction, how has technology influenced fashion, particularly from where you sit from at Uniqlo?
|
4
|
+
|
5
|
+
MALE3: Yeah, technology more fashionable –Not English–
|
6
|
+
|
7
|
+
MALE4: -Not English- technology and fashion –Not English– fashion and technology –Not English–
|