diff --git a/.claude/memory/machine_windows_guru_setup_status.md b/.claude/memory/machine_windows_guru_setup_status.md index 30727c4..aa6736f 100644 --- a/.claude/memory/machine_windows_guru_setup_status.md +++ b/.claude/memory/machine_windows_guru_setup_status.md @@ -7,7 +7,7 @@ type: reference # Windows Machine Setup Status (GURU-BEAST-ROG) **Created:** 2026-03-23 -**Updated:** 2026-04-26 +**Updated:** 2026-04-27 **Machine:** GURU-BEAST-ROG (Windows 11 Pro, i9-14900K, 128GB DDR5, RTX 4090) ## Software Status @@ -50,4 +50,4 @@ type: reference ## Remaining TODO - [ ] Deploy SSH pubkey to infrastructure servers (OwnCloud, Jupiter, etc.) -- [ ] Vault rotation to add GURU-BEAST-ROG's own age key as recipient (currently using shared ACG-5070 key) +- [x] ~~Vault rotation to add GURU-BEAST-ROG's own age key as recipient~~ — Completed 2026-04-27 (vault commit 73de020). Public key `age17nqczmkmnqj970v96w6wsyu72556psmrzhps8vm90fn67p8vqu4s3ze4ms` added to `keys/recipients.txt` and `.sops.yaml` creation rules. diff --git a/.claude/scheduled_tasks.lock b/.claude/scheduled_tasks.lock index 0af4149..91cd9b5 100644 --- a/.claude/scheduled_tasks.lock +++ b/.claude/scheduled_tasks.lock @@ -1 +1 @@ -{"sessionId":"d6600899-b6a9-4073-b362-d7d5aa0dd8dd","pid":6332,"acquiredAt":1777065966112} \ No newline at end of file +{"sessionId":"4d2b9d2c-b660-489f-8598-0a87605389c2","pid":45148,"acquiredAt":1777321662742} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/download_test_episodes.py b/projects/radio-show/audio-processor/download_test_episodes.py new file mode 100644 index 0000000..2b2c5aa --- /dev/null +++ b/projects/radio-show/audio-processor/download_test_episodes.py @@ -0,0 +1,38 @@ +import os +import sys +import paramiko + +password = os.environ.get('IX_PASSWORD') +if not password: + print('IX_PASSWORD env var not set', file=sys.stderr) + sys.exit(1) + +client = paramiko.SSHClient() +client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) +client.connect('172.16.3.10', username='root', password=password, + look_for_keys=False, allow_agent=False, timeout=30) +sftp = client.open_sftp() + +os.makedirs('test-data/episodes', exist_ok=True) + +downloads = [ + ('/home/gurushow/public_html/archive/2011/3-12-11 HR 1.mp3', 'test-data/episodes/2011-03-12-hr1.mp3'), + ('/home/gurushow/public_html/archive/2012/3 - March/3-10-12HR1.mp3', 'test-data/episodes/2012-03-10-hr1.mp3'), + ('/home/gurushow/public_html/archive/2012/6 - June/6-9-12-HR1.mp3', 'test-data/episodes/2012-06-09-hr1.mp3'), + ('/home/gurushow/public_html/archive/2014/06/s6e19.mp3', 'test-data/episodes/2014-s6e19.mp3'), + ('/home/gurushow/public_html/archive/2016/06/s8e43.mp3', 'test-data/episodes/2016-s8e43.mp3'), + ('/home/gurushow/public_html/archive/2017/04/s9e30.mp3', 'test-data/episodes/2017-s9e30.mp3'), +] + +for remote, local in downloads: + if os.path.exists(local): + print(f'[skip] {local} already exists') + continue + size_mb = sftp.stat(remote).st_size / 1024 / 1024 + print(f'Downloading {local} ({size_mb:.1f} MB)...', flush=True) + sftp.get(remote, local) + print(' done', flush=True) + +sftp.close() +client.close() +print('All downloads complete.') diff --git a/projects/radio-show/audio-processor/session-logs/2026-04-27-4090-benchmark-and-test-set.md b/projects/radio-show/audio-processor/session-logs/2026-04-27-4090-benchmark-and-test-set.md new file mode 100644 index 0000000..2a64582 --- /dev/null +++ b/projects/radio-show/audio-processor/session-logs/2026-04-27-4090-benchmark-and-test-set.md @@ -0,0 +1,99 @@ +# Session Log — 2026-04-27 (continuation) + +**Project:** The Computer Guru Show — Archive Mining System +**Goal:** RTX 4090 perf comparison + run unseen test episodes through full pipeline (transcribe / diarize / Q&A) +**Machine:** GURU-BEAST-ROG (RTX 4090, 24GB) +**User:** Mike Swanson (mike) + +Companion to `2026-04-27-diarization-pipeline.md` (DESKTOP-0O8A1RL, RTX 5070 Ti). + +--- + +## Headline + +**Diarization on RTX 4090: 308.9x realtime — 2.07x the RTX 5070 Ti baseline (149.5x).** + +21,374s of audio across 6 unseen test episodes diarized in 69.2s wall time. + +--- + +## Setup Notes + +- ffmpeg/ffprobe not present on GURU-BEAST-ROG. Installed `Gyan.FFmpeg 8.1` via winget. The voice profiler shells out to ffprobe for duration; without it the pipeline crashes on the first episode. +- The repo already contained `benchmark.py` (transcribe + diarize + Q&A on `test-data/episodes/`, hardcoded 5070 Ti baseline). Used as-is. (BENCH_SETUP.md should mention ffmpeg as a prereq.) +- Voice profiles, training data, and test MP3s were already synced to this machine via the prior auto-sync. + +--- + +## Phase 1 — Whisper Transcription (large-v3, faster-whisper) + +| Episode | Audio | Wall | RTF | +|---|---|---|---| +| 2011-03-12-hr1 | 2509s | 198.2s | 12.7x | +| 2012-03-10-hr1 | 2634s | 208.7s | 12.6x | +| 2012-06-09-hr1 | 2648s | 192.5s | 13.8x | +| 2014-s6e19 | 2914s | 167.0s | 17.5x | +| 2016-s8e43 | 5326s | 339.1s | 15.7x | +| 2017-s9e30 | 5343s | 341.2s | 15.7x | +| **Total** | **21374s** | **1446.6s** | **14.8x** | + +Faster-whisper large-v3, beam_size=5, fp16 on the 4090. + +--- + +## Phase 2 — Diarization + +| Episode | Audio | Wall | RTF | Turns | HOST | CALLER | +|---|---|---|---|---|---|---| +| 2011-03-12-hr1 | 2509s | 16.1s | 155.6x | 19 | 2470s | 125s | +| 2012-03-10-hr1 | 2634s | 7.3s | 361.6x | 19 | 2615s | 105s | +| 2012-06-09-hr1 | 2648s | 7.8s | 338.3x | 11 | 2500s | 195s | +| 2014-s6e19 | 2914s | 8.3s | 352.6x | 28 | 2635s | 410s | +| 2016-s8e43 | 5326s | 14.7s | 361.8x | 112 | 4710s | 1170s | +| 2017-s9e30 | 5343s | 15.0s | 356.9x | 55 | 4950s | 660s | +| **Total** | **21374s** | **69.2s** | **308.9x** | 244 | 19880s | 2665s | + +**vs RTX 5070 Ti baseline: 149.5x → 308.9x (+159.4x, +106.6%).** + +Episode 1 carries the cold-start penalty (CUDA init + WavLM load): 155.6x. Warm episodes 2-6 cluster at 338-362x. The total averages 308.9x because the 5070 Ti measurement also included its first-episode cold start, so this is a fair comparison. + +--- + +## Phase 3 — Q&A Extraction + +| Episode | Q&A pairs | +|---|---| +| 2011-03-12-hr1 | 3 | +| 2012-03-10-hr1 | 2 | +| 2012-06-09-hr1 | 3 | +| 2014-s6e19 | 1 | +| 2016-s8e43 | 5 | +| 2017-s9e30 | 5 | +| **Total** | **19** | + +Density: **3.2 pairs/episode** on the unseen test set vs **3.0 pairs/episode** on the 9-episode training set (27 pairs). Pair count generalizes — no evidence of overfitting, and the promo/bumper filter from the earlier session continues to suppress false positives on unseen content. + +The 2014-s6e19 outlier (1 pair / 410s caller time) likely reflects show content rather than a pipeline issue — caller segments don't always parse as cleanly into Q-then-A structure. Worth ear-checking that one before drawing conclusions. + +--- + +## Generalization Findings + +- **Untrained year:** The two 2012 episodes (year never seen during training) produced clean HOST/CALLER labels and reasonable Q&A counts. Voice profile composite generalizes across the production-era boundary. +- **No all-HOST failures:** Every test episode hit caller segments. The 0.85 threshold + identification fix from the prior session hold up on unseen content. +- **Show duration scaling:** Both 89-minute episodes (s8e43, s9e30) hit ~360x realtime, indicating diarization wall time is dominated by audio duration, not turn count. + +--- + +## Files Written + +- `test-data/transcripts//transcript.json` (6 files) +- `test-data/transcripts//diarization.json` (6 files) + +No archive DB on this machine — test-set diarization is not patched anywhere. If we want the test episodes searchable in `archive.db`, that would happen on DESKTOP-0O8A1RL where the index lives. + +--- + +## Note for Mike + +`BENCH_SETUP.md` Step 2 (Python environment) should add `winget install Gyan.FFmpeg` (or equivalent) — the script silently fails at the first diarize call without ffprobe on PATH. Easy doc fix; flagging here so it doesn't get lost. diff --git a/projects/radio-show/audio-processor/test-data/episodes/2011-03-12-hr1.mp3 b/projects/radio-show/audio-processor/test-data/episodes/2011-03-12-hr1.mp3 new file mode 100644 index 0000000..0db3f0b Binary files /dev/null and b/projects/radio-show/audio-processor/test-data/episodes/2011-03-12-hr1.mp3 differ diff --git a/projects/radio-show/audio-processor/test-data/episodes/2012-03-10-hr1.mp3 b/projects/radio-show/audio-processor/test-data/episodes/2012-03-10-hr1.mp3 new file mode 100644 index 0000000..993e477 Binary files /dev/null and b/projects/radio-show/audio-processor/test-data/episodes/2012-03-10-hr1.mp3 differ diff --git a/projects/radio-show/audio-processor/test-data/episodes/2012-06-09-hr1.mp3 b/projects/radio-show/audio-processor/test-data/episodes/2012-06-09-hr1.mp3 new file mode 100644 index 0000000..757e95a Binary files /dev/null and b/projects/radio-show/audio-processor/test-data/episodes/2012-06-09-hr1.mp3 differ diff --git a/projects/radio-show/audio-processor/test-data/episodes/2014-s6e19.mp3 b/projects/radio-show/audio-processor/test-data/episodes/2014-s6e19.mp3 new file mode 100644 index 0000000..5ac2514 Binary files /dev/null and b/projects/radio-show/audio-processor/test-data/episodes/2014-s6e19.mp3 differ diff --git a/projects/radio-show/audio-processor/test-data/episodes/2016-s8e43.mp3 b/projects/radio-show/audio-processor/test-data/episodes/2016-s8e43.mp3 new file mode 100644 index 0000000..d3e0281 Binary files /dev/null and b/projects/radio-show/audio-processor/test-data/episodes/2016-s8e43.mp3 differ diff --git a/projects/radio-show/audio-processor/test-data/episodes/2017-s9e30.mp3 b/projects/radio-show/audio-processor/test-data/episodes/2017-s9e30.mp3 new file mode 100644 index 0000000..23c8bd0 Binary files /dev/null and b/projects/radio-show/audio-processor/test-data/episodes/2017-s9e30.mp3 differ diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2011-03-12-hr1/diarization.json b/projects/radio-show/audio-processor/test-data/transcripts/2011-03-12-hr1/diarization.json new file mode 100644 index 0000000..939ea06 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2011-03-12-hr1/diarization.json @@ -0,0 +1,123 @@ +{ + "num_speakers": 2, + "speaker_map": { + "HOST": "HOST", + "CALLER": "CALLER" + }, + "turns": [ + { + "speaker": "HOST", + "start": 0.0, + "end": 40.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 35.0, + "end": 45.0, + "confidence": 0.83 + }, + { + "speaker": "HOST", + "start": 40.0, + "end": 925.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 920.0, + "end": 935.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 930.0, + "end": 1000.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 995.0, + "end": 1005.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 1000.0, + "end": 1205.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 1200.0, + "end": 1215.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 1210.0, + "end": 1280.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 1275.0, + "end": 1285.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 1280.0, + "end": 1485.0, + "confidence": 0.91 + }, + { + "speaker": "CALLER", + "start": 1480.0, + "end": 1500.0, + "confidence": 0.65 + }, + { + "speaker": "HOST", + "start": 1495.0, + "end": 1835.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 1830.0, + "end": 1840.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 1835.0, + "end": 2160.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 2155.0, + "end": 2170.0, + "confidence": 0.8 + }, + { + "speaker": "HOST", + "start": 2165.0, + "end": 2295.0, + "confidence": 0.85 + }, + { + "speaker": "CALLER", + "start": 2290.0, + "end": 2310.0, + "confidence": 0.83 + }, + { + "speaker": "HOST", + "start": 2305.0, + "end": 2505.0, + "confidence": 0.88 + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2011-03-12-hr1/transcript.json b/projects/radio-show/audio-processor/test-data/transcripts/2011-03-12-hr1/transcript.json new file mode 100644 index 0000000..204e1c1 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2011-03-12-hr1/transcript.json @@ -0,0 +1 @@ +{"duration": 2509.32, "language": "en", "segments": [{"id": 1, "start": 0.0, "end": 4.58, "text": " From my heart and from my hand, why don't people understand my intention?"}, {"id": 2, "start": 5.24, "end": 6.34, "text": " Computer running slow?"}, {"id": 3, "start": 6.42, "end": 6.8, "text": " Quaking?"}, {"id": 4, "start": 7.08, "end": 7.68, "text": " Caught a virus?"}, {"id": 5, "start": 7.88, "end": 8.24, "text": " What?"}, {"id": 6, "start": 8.48, "end": 8.86, "text": " Yeah!"}, {"id": 7, "start": 9.18, "end": 9.44, "text": " Where?"}, {"id": 8, "start": 10.02, "end": 13.18, "text": " Does your computer seem to have a life of its own?"}, {"id": 9, "start": 13.68, "end": 14.24, "text": " Malfunction."}, {"id": 10, "start": 14.780000000000001, "end": 15.860000000000001, "text": " Being in good."}, {"id": 11, "start": 15.98, "end": 17.7, "text": " The computer guru is here."}, {"id": 12, "start": 17.740000000000002, "end": 18.98, "text": " My God, you're here!"}, {"id": 13, "start": 19.080000000000002, "end": 20.12, "text": " Call in now."}, {"id": 14, "start": 20.56, "end": 21.82, "text": " 751-1041."}, {"id": 15, "start": 22.12, "end": 24.14, "text": " That's 751-1041."}, {"id": 16, "start": 24.400000000000002, "end": 27.38, "text": " Now, it's Mike Swanson, your computer guru."}, {"id": 17, "start": 27.38, "end": 29.12, "text": " On 104.1 The Truth."}, {"id": 18, "start": 30.0, "end": 32.82, "text": " This is Deuce Talk FM."}, {"id": 19, "start": 60.0, "end": 61.76, "text": " That's how I party."}, {"id": 20, "start": 62.14, "end": 63.08, "text": " That's how I party."}, {"id": 21, "start": 63.44, "end": 65.1, "text": " I was banging seven grand locks."}, {"id": 22, "start": 65.22, "end": 66.02, "text": " That's how I roll."}, {"id": 23, "start": 66.7, "end": 67.68, "text": " I had one gear."}, {"id": 24, "start": 67.88, "end": 68.16, "text": " Go."}, {"id": 25, "start": 68.38, "end": 68.66, "text": " Epic."}, {"id": 26, "start": 68.86, "end": 70.3, "text": " Are you my partner?"}, {"id": 27, "start": 70.66, "end": 71.24, "text": " I'm your body."}, {"id": 28, "start": 71.34, "end": 71.7, "text": " Winning."}, {"id": 29, "start": 71.9, "end": 72.52, "text": " You're right there."}, {"id": 30, "start": 72.62, "end": 73.18, "text": " Right there."}, {"id": 31, "start": 73.28, "end": 73.82, "text": " Win, win."}, {"id": 32, "start": 73.92, "end": 74.32, "text": " Everywhere."}, {"id": 33, "start": 74.82, "end": 76.4, "text": " We're an absolute victory."}, {"id": 34, "start": 76.52, "end": 76.92, "text": " Everywhere."}, {"id": 35, "start": 77.48, "end": 79.16, "text": " We're an, we're an, we're an question."}, {"id": 36, "start": 79.16, "end": 80.38, "text": " We're gonna win everywhere."}, {"id": 37, "start": 81.06, "end": 82.64, "text": " Right every single wall."}, {"id": 38, "start": 83.34, "end": 84.38, "text": " Right every wall."}, {"id": 39, "start": 84.64, "end": 86.66, "text": " I'm the 12th second rock star of the march."}, {"id": 40, "start": 86.88, "end": 87.4, "text": " Winning."}, {"id": 41, "start": 87.4, "end": 88.3, "text": " Come on, bro."}, {"id": 42, "start": 88.42, "end": 89.48, "text": " We're not talking blood."}, {"id": 43, "start": 89.68, "end": 89.96000000000001, "text": " Winning."}, {"id": 44, "start": 90.06, "end": 92.72, "text": " You follow my brains and feel like, dude, can't handle it."}, {"id": 45, "start": 92.8, "end": 93.38, "text": " You're right there."}, {"id": 46, "start": 93.48, "end": 94.04, "text": " Winning there."}, {"id": 47, "start": 94.16, "end": 94.68, "text": " Win, win."}, {"id": 48, "start": 94.78, "end": 95.12, "text": " Everywhere."}, {"id": 49, "start": 95.58, "end": 96.42, "text": " I've got a mist."}, {"id": 50, "start": 96.7, "end": 97.7, "text": " Got me sore fist."}, {"id": 51, "start": 97.84, "end": 100.3, "text": " From the epic win to the desperate and weird fist."}, {"id": 52, "start": 100.56, "end": 101.3, "text": " Chicken nugget."}, {"id": 53, "start": 101.44, "end": 101.64, "text": " Winning."}, {"id": 54, "start": 101.92, "end": 102.56, "text": " Bubble cup."}, {"id": 55, "start": 102.68, "end": 102.9, "text": " Winning."}, {"id": 56, "start": 103.06, "end": 105.1, "text": " Pretending to dance to a poet's award."}, {"id": 57, "start": 105.24, "end": 105.48, "text": " Epic."}, {"id": 58, "start": 105.56, "end": 105.8, "text": " Winning."}, {"id": 59, "start": 105.88, "end": 106.53999999999999, "text": " Slow dancing."}, {"id": 60, "start": 107.02, "end": 107.84, "text": " Slow dancing."}, {"id": 61, "start": 108.22, "end": 110.36, "text": " Breaking the rules of the Geneva Convention."}, {"id": 62, "start": 110.46000000000001, "end": 110.82, "text": " Weak."}, {"id": 63, "start": 110.92, "end": 111.7, "text": " A dollar's worth."}, {"id": 64, "start": 111.8, "end": 112.1, "text": " Winning."}, {"id": 65, "start": 112.38, "end": 112.72, "text": " Positive."}, {"id": 66, "start": 113.08, "end": 113.36, "text": " Winning."}, {"id": 67, "start": 113.36, "end": 115.64, "text": " Give a need of women corrected for us."}, {"id": 68, "start": 115.68, "end": 115.94, "text": " Epic."}, {"id": 69, "start": 115.94, "end": 116.22, "text": " Winning."}, {"id": 70, "start": 116.3, "end": 116.9, "text": " Childbirth."}, {"id": 71, "start": 117.03999999999999, "end": 117.28, "text": " Winning."}, {"id": 72, "start": 117.56, "end": 118.2, "text": " Call the firm."}, {"id": 73, "start": 118.34, "end": 118.62, "text": " Winning."}, {"id": 74, "start": 118.88, "end": 119.86, "text": " Take a break at first."}, {"id": 75, "start": 120.68, "end": 121.2, "text": " Duh."}, {"id": 76, "start": 121.44, "end": 121.92, "text": " Winning."}, {"id": 77, "start": 122.12, "end": 122.56, "text": " Winning."}, {"id": 78, "start": 122.82, "end": 123.66, "text": " Bow, bow, bow, bow, bow."}, {"id": 79, "start": 123.66, "end": 125.12, "text": " I was banging seven grand rocks."}, {"id": 80, "start": 125.24, "end": 126.0, "text": " That's how I roll."}, {"id": 81, "start": 126.08, "end": 126.48, "text": " Winning."}, {"id": 82, "start": 126.74, "end": 127.68, "text": " I have one gear."}, {"id": 83, "start": 127.86, "end": 128.18, "text": " Go."}, {"id": 84, "start": 128.4, "end": 128.66, "text": " Epic."}, {"id": 85, "start": 128.72, "end": 129.04, "text": " Winning."}, {"id": 86, "start": 129.3, "end": 130.32, "text": " Parking at my corner."}, {"id": 87, "start": 130.66, "end": 131.24, "text": " I'm invited."}, {"id": 88, "start": 131.34, "end": 131.68, "text": " Winning."}, {"id": 89, "start": 131.96, "end": 132.52, "text": " I am here."}, {"id": 90, "start": 132.62, "end": 132.92, "text": " Winning."}, {"id": 91, "start": 132.96, "end": 133.18, "text": " There."}, {"id": 92, "start": 133.28, "end": 133.6, "text": " Winning."}, {"id": 93, "start": 133.6, "end": 133.94, "text": " Everywhere."}, {"id": 94, "start": 134.28, "end": 136.22, "text": " I'm the 12th pick of the rock star from Mars."}, {"id": 95, "start": 136.48, "end": 136.92000000000002, "text": " Winning."}, {"id": 96, "start": 137.14, "end": 137.86, "text": " Come on, bro."}, {"id": 97, "start": 137.86, "end": 139.06, "text": " I've got a type of blood."}, {"id": 98, "start": 139.16, "end": 139.52, "text": " Winning."}, {"id": 99, "start": 139.66, "end": 142.3, "text": " You follow my brains and feel like, dude, can't handle it."}, {"id": 100, "start": 142.4, "end": 142.96, "text": " I am here."}, {"id": 101, "start": 143.06, "end": 143.34, "text": " Winning."}, {"id": 102, "start": 143.42000000000002, "end": 143.62, "text": " There."}, {"id": 103, "start": 143.74, "end": 144.02, "text": " Winning."}, {"id": 104, "start": 144.06, "end": 144.34, "text": " Winning."}, {"id": 105, "start": 144.38, "end": 144.74, "text": " Everywhere."}, {"id": 106, "start": 145.28, "end": 145.6, "text": " Winning."}, {"id": 107, "start": 147.1, "end": 148.0, "text": " Welcome back, bro."}, {"id": 108, "start": 148.36, "end": 149.82, "text": " This is the Computer Guru Show."}, {"id": 109, "start": 150.5, "end": 151.24, "text": " Oh, man."}, {"id": 110, "start": 151.34, "end": 154.0, "text": " I had to throw some Charlie Sheen in at the beginning of the show just because..."}, {"id": 111, "start": 154.0, "end": 155.26, "text": " Everybody else is talking about him."}, {"id": 112, "start": 155.28, "end": 155.52, "text": " Why not?"}, {"id": 113, "start": 155.56, "end": 156.62, "text": " Wow, that dude's nuts."}, {"id": 114, "start": 156.76, "end": 157.18, "text": " Oh, yeah."}, {"id": 115, "start": 157.26, "end": 158.86, "text": " You know, I first watched the interview."}, {"id": 116, "start": 159.0, "end": 160.88, "text": " I had been hearing about the interview for..."}, {"id": 117, "start": 160.88, "end": 161.68, "text": " A week or so."}, {"id": 118, "start": 161.68, "end": 162.34, "text": " Yeah, a week or whatever."}, {"id": 119, "start": 162.48, "end": 163.84, "text": " And I'd actually never seen the interview."}, {"id": 120, "start": 164.4, "end": 165.76, "text": " And so I decided to go ahead and watch it."}, {"id": 121, "start": 165.76, "end": 168.86, "text": " And then Randall comes in the other day and he's like, they auto-tuned it."}, {"id": 122, "start": 170.8, "end": 172.78, "text": " So, yeah, we're going to throw that in there."}, {"id": 123, "start": 172.98, "end": 175.46, "text": " And it turns out I've got tiger blood."}, {"id": 124, "start": 175.72, "end": 175.94, "text": " Yes."}, {"id": 125, "start": 176.34, "end": 177.26, "text": " A tiger blood, do you?"}, {"id": 126, "start": 177.46, "end": 179.16, "text": " I hear that they're actually making tiger blood."}, {"id": 127, "start": 179.4, "end": 179.76, "text": " They're going to make an interview."}, {"id": 128, "start": 180.0, "end": 180.52, "text": " It's an energy drink."}, {"id": 129, "start": 180.82, "end": 181.32, "text": " Oh, really?"}, {"id": 130, "start": 181.4, "end": 182.36, "text": " Yeah, called tiger blood."}, {"id": 131, "start": 182.48, "end": 183.32, "text": " It's going to make you nutty."}, {"id": 132, "start": 183.48, "end": 183.74, "text": " Yeah."}, {"id": 133, "start": 184.46, "end": 184.78, "text": " Wow."}, {"id": 134, "start": 184.86, "end": 185.98, "text": " You know, here's my thing."}, {"id": 135, "start": 186.04, "end": 187.5, "text": " In that interview, he says he's off drugs."}, {"id": 136, "start": 187.56, "end": 189.3, "text": " He's been off drugs for about a month or something like that."}, {"id": 137, "start": 189.42, "end": 189.62, "text": " Right."}, {"id": 138, "start": 189.64, "end": 191.44, "text": " And they had him do a drug test there and everything."}, {"id": 139, "start": 192.14, "end": 194.68, "text": " If that's Charlie Sheen off drugs, wow."}, {"id": 140, "start": 194.68, "end": 195.48, "text": " Oh, my gosh."}, {"id": 141, "start": 195.48, "end": 197.18, "text": " Well, he needs some if that's him off drugs."}, {"id": 142, "start": 197.2, "end": 197.78, "text": " Oh, man."}, {"id": 143, "start": 197.82, "end": 198.72, "text": " Maybe it balanced him out."}, {"id": 144, "start": 198.78, "end": 199.22, "text": " I don't know."}, {"id": 145, "start": 199.54, "end": 199.86, "text": " Wow."}, {"id": 146, "start": 200.42000000000002, "end": 200.66, "text": " All right."}, {"id": 147, "start": 200.68, "end": 202.78, "text": " If you'd like to be part of the show, 751-1041."}, {"id": 148, "start": 202.94, "end": 205.56, "text": " We'd love to help you out with whatever technology issues you may be having."}, {"id": 149, "start": 206.52, "end": 206.72, "text": " Yeah."}, {"id": 150, "start": 206.92000000000002, "end": 208.46, "text": " Or Charlie Sheen issues you might be having."}, {"id": 151, "start": 208.9, "end": 209.52, "text": " I don't know."}, {"id": 152, "start": 210.0, "end": 210.98, "text": " Who's really having any Charlie Sheen issues?"}, {"id": 153, "start": 211.16, "end": 214.0, "text": " Well, you know, there's a couple of girls in L.A. that probably didn't ever know."}, {"id": 154, "start": 214.28, "end": 216.24, "text": " Well, you know, it's nobody here."}, {"id": 155, "start": 216.86, "end": 217.22, "text": " Yes."}, {"id": 156, "start": 217.36, "end": 217.74, "text": " Well, maybe."}, {"id": 157, "start": 217.92, "end": 218.26, "text": " Who knows?"}, {"id": 158, "start": 218.58, "end": 218.7, "text": " Yeah."}, {"id": 159, "start": 218.82, "end": 219.1, "text": " Who knows?"}, {"id": 160, "start": 219.84, "end": 221.54, "text": " I'm not having Charlie Sheen issues."}, {"id": 161, "start": 221.58, "end": 222.08, "text": " That's good."}, {"id": 162, "start": 222.32, "end": 222.6, "text": " All right."}, {"id": 163, "start": 223.32, "end": 225.1, "text": " Crystal has avoided the Charlie Sheen issues."}, {"id": 164, "start": 225.1, "end": 225.36, "text": " Good."}, {"id": 165, "start": 225.58, "end": 226.66, "text": " That's good to know."}, {"id": 166, "start": 227.98, "end": 228.42000000000002, "text": " Wow."}, {"id": 167, "start": 228.56, "end": 232.24, "text": " So, the big thing in the news this week, it's all Apple stuff."}, {"id": 168, "start": 232.7, "end": 233.56, "text": " Oh, okay."}, {"id": 169, "start": 233.8, "end": 234.04, "text": " All right."}, {"id": 170, "start": 234.06, "end": 236.64, "text": " So, Apple's been doing all kinds of interesting things."}, {"id": 171, "start": 236.66, "end": 237.0, "text": " Yes, they have."}, {"id": 172, "start": 237.0, "end": 238.26, "text": " One of which, the iPad 2."}, {"id": 173, "start": 239.26, "end": 239.7, "text": " Secondly."}, {"id": 174, "start": 240.0, "end": 245.98, "text": " There's a pre-release out for OS X Lion, which is going to be 10.7."}, {"id": 175, "start": 246.42, "end": 246.74, "text": " Right."}, {"id": 176, "start": 247.12, "end": 249.02, "text": " And that looks pretty interesting as well."}, {"id": 177, "start": 249.18, "end": 251.2, "text": " Well, is Lion going to be any different?"}, {"id": 178, "start": 251.4, "end": 255.54, "text": " I mean, I know from Leopard to Snow Leopard, I mean, it was essentially the same."}, {"id": 179, "start": 255.6, "end": 256.94, "text": " Except for you get an iOS interface."}, {"id": 180, "start": 257.14, "end": 257.42, "text": " Ooh."}, {"id": 181, "start": 258.22, "end": 260.2, "text": " So, in..."}, {"id": 182, "start": 260.2, "end": 262.52, "text": " So, Lion's going to have the App Store, obviously."}, {"id": 183, "start": 262.72, "end": 262.94, "text": " Right."}, {"id": 184, "start": 262.94, "end": 266.98, "text": " And you're going to be able to actually do the same things with your icons and desktops,"}, {"id": 185, "start": 267.06, "end": 268.22, "text": " put them together, make folders."}, {"id": 186, "start": 268.58, "end": 268.6, "text": " Oh."}, {"id": 187, "start": 269.02, "end": 269.56, "text": " It's going to..."}, {"id": 188, "start": 269.56, "end": 270.9, "text": " There's an option to do that."}, {"id": 189, "start": 270.96, "end": 271.92, "text": " It's not a mandatory interface."}, {"id": 190, "start": 271.92, "end": 272.46, "text": " Right, right."}, {"id": 191, "start": 272.6, "end": 273.58, "text": " And you can switch to that."}, {"id": 192, "start": 274.26, "end": 276.84, "text": " Some of the biggest changes are coming in the way that they're using touch."}, {"id": 193, "start": 277.36, "end": 277.68, "text": " Okay."}, {"id": 194, "start": 277.82, "end": 282.62, "text": " So, if you use, like, all four fingers and pinch, then it switches interfaces."}, {"id": 195, "start": 283.4, "end": 284.26, "text": " If you use three fingers..."}, {"id": 196, "start": 284.26, "end": 285.74, "text": " So, there are multi-touch pads that they have?"}, {"id": 197, "start": 285.92, "end": 286.04, "text": " Right."}, {"id": 198, "start": 286.4, "end": 291.28, "text": " So, a lot of the changes are going to be in how you interact with it as far as the touch is concerned."}, {"id": 199, "start": 291.42, "end": 291.94, "text": " Right, right."}, {"id": 200, "start": 292.78, "end": 293.92, "text": " But it looks pretty interesting."}, {"id": 201, "start": 294.56, "end": 296.6, "text": " Well, it'd be cool to look at."}, {"id": 202, "start": 296.6, "end": 296.68, "text": " Yeah."}, {"id": 203, "start": 296.68, "end": 299.52, "text": " There's some very significant improvements in things."}, {"id": 204, "start": 299.52, "end": 300.12, "text": " Like the Finder."}, {"id": 205, "start": 300.46, "end": 300.78, "text": " Right."}, {"id": 206, "start": 301.02, "end": 302.26, "text": " Or the Spotlight Search."}, {"id": 207, "start": 302.4, "end": 302.62, "text": " Mm-hmm."}, {"id": 208, "start": 303.79999999999995, "end": 306.85999999999996, "text": " So, I guess they're taking a page from the PC playbook and saying,"}, {"id": 209, "start": 306.85999999999996, "end": 313.15999999999997, "text": " well, some people want to be able to search for certain types of files and then a name within that type of, you know, that subset."}, {"id": 210, "start": 313.46, "end": 313.58, "text": " Right."}, {"id": 211, "start": 314.08, "end": 317.06, "text": " Which you couldn't do previously, which is kind of a bummer."}, {"id": 212, "start": 317.14, "end": 322.82, "text": " Because, like, say, for instance, you had a whole bunch of documents and a whole bunch of pictures that had the same names, you..."}, {"id": 213, "start": 322.82, "end": 325.47999999999996, "text": " You wanted to search it out through just .doc or whatever it is."}, {"id": 214, "start": 325.47999999999996, "end": 325.68, "text": " Right."}, {"id": 215, "start": 325.7, "end": 329.35999999999996, "text": " And you couldn't effectively do that previously in the Spotlight Search."}, {"id": 216, "start": 329.35999999999996, "end": 329.38, "text": " Right."}, {"id": 217, "start": 329.52, "end": 330.03999999999996, "text": " I see."}, {"id": 218, "start": 330.64, "end": 332.76, "text": " So, that's going to be massively improved."}, {"id": 219, "start": 333.21999999999997, "end": 336.76, "text": " Now, the iPad 2, lots of hype about the iPad 2."}, {"id": 220, "start": 337.35999999999996, "end": 337.5, "text": " Right."}, {"id": 221, "start": 337.62, "end": 338.7, "text": " It's fairly nifty."}, {"id": 222, "start": 338.91999999999996, "end": 344.88, "text": " I got to tell you, you know, for the same amount of money that the iPad 1 was, I mean, if it was more money, I'd be like, mm, I don't know."}, {"id": 223, "start": 345.24, "end": 347.88, "text": " But with the same amount of money, it's a pretty cool little deal."}, {"id": 224, "start": 348.0, "end": 349.26, "text": " I mean, I used it today."}, {"id": 225, "start": 349.44, "end": 351.35999999999996, "text": " I checked out the FaceTime."}, {"id": 226, "start": 351.74, "end": 354.62, "text": " My wife has a new iPhone 4, and so she has FaceTime."}, {"id": 227, "start": 354.62, "end": 357.4, "text": " So, I FaceTimed with her and saw the kids and everything like that."}, {"id": 228, "start": 357.53999999999996, "end": 358.52, "text": " It was really cool."}, {"id": 229, "start": 358.64, "end": 359.35999999999996, "text": " And the microphones seemed..."}, {"id": 230, "start": 359.36, "end": 362.8, "text": " It seemed to pick up really well, even though Mike told me I was yelling into it."}, {"id": 231, "start": 362.88, "end": 364.7, "text": " But, you know, I just yell all the time anyway, so."}, {"id": 232, "start": 366.1, "end": 370.1, "text": " No, but it seemed really good quality as far as cameras go over a Wi-Fi."}, {"id": 233, "start": 370.7, "end": 371.62, "text": " He was like..."}, {"id": 234, "start": 371.62, "end": 373.68, "text": " You know, he's got this thing out at arm's length, right?"}, {"id": 235, "start": 373.68, "end": 374.52000000000004, "text": " Can you hear me?"}, {"id": 236, "start": 376.02000000000004, "end": 377.88, "text": " He's like, how's the sound?"}, {"id": 237, "start": 378.18, "end": 379.34000000000003, "text": " Can you hear me?"}, {"id": 238, "start": 379.68, "end": 381.94, "text": " They're like, yeah, yeah, we can hear you just fine."}, {"id": 239, "start": 382.04, "end": 383.14, "text": " We can hear you without the microphone."}, {"id": 240, "start": 383.14, "end": 383.56, "text": " Oh, gosh."}, {"id": 241, "start": 384.84000000000003, "end": 385.82, "text": " Nine miles away."}, {"id": 242, "start": 385.84000000000003, "end": 386.46000000000004, "text": " Yeah, no kidding."}, {"id": 243, "start": 386.46000000000004, "end": 386.96000000000004, "text": " All right."}, {"id": 244, "start": 387.06, "end": 389.2, "text": " So, the iPad 2 is..."}, {"id": 245, "start": 389.2, "end": 389.92, "text": " It's sort of big news."}, {"id": 246, "start": 390.02, "end": 394.9, "text": " Now, of course, just like the iPhone 4, there's some issues with some of the screens."}, {"id": 247, "start": 395.32, "end": 396.3, "text": " Yeah, the bleed over."}, {"id": 248, "start": 396.47999999999996, "end": 398.7, "text": " Are you getting some light leaking around the edges?"}, {"id": 249, "start": 399.02, "end": 407.18, "text": " They're attributing that to the actual bonding agent that they use to hold the glass onto the front not being dry yet."}, {"id": 250, "start": 407.26, "end": 407.46, "text": " Right."}, {"id": 251, "start": 408.18, "end": 409.68, "text": " Okay, I can sort of go with that."}, {"id": 252, "start": 410.4, "end": 416.0, "text": " But it tends to cause some yellowing or distorting of the screen colors when you have that problem."}, {"id": 253, "start": 416.0, "end": 416.94, "text": " Is this primarily..."}, {"id": 254, "start": 416.94, "end": 418.64, "text": " I mean, does it matter which color that you got?"}, {"id": 255, "start": 418.98, "end": 419.0, "text": " Or is it..."}, {"id": 256, "start": 419.2, "end": 420.24, "text": " No, regardless."}, {"id": 257, "start": 420.42, "end": 422.14, "text": " Now, they actually did release the white ones."}, {"id": 258, "start": 422.18, "end": 422.71999999999997, "text": " I saw them."}, {"id": 259, "start": 422.78, "end": 423.26, "text": " They were there."}, {"id": 260, "start": 423.88, "end": 425.47999999999996, "text": " I don't think that they..."}, {"id": 261, "start": 425.47999999999996, "end": 427.12, "text": " They didn't specify in what I was reading."}, {"id": 262, "start": 427.24, "end": 427.44, "text": " Right."}, {"id": 263, "start": 427.62, "end": 432.58, "text": " You know, what's funny is when I was standing in line for this yesterday, the people behind me, they were like,"}, {"id": 264, "start": 432.96, "end": 436.44, "text": " oh, well, because they were handing out tickets and you had to choose which iPad you want."}, {"id": 265, "start": 436.9, "end": 439.84, "text": " So, the people behind me, they were buying like 12 iPads or something like that."}, {"id": 266, "start": 440.02, "end": 441.3, "text": " I mean, like two per person was allowed."}, {"id": 267, "start": 441.41999999999996, "end": 441.88, "text": " So, they're buying..."}, {"id": 268, "start": 441.88, "end": 443.12, "text": " You know, each person's buying like two."}, {"id": 269, "start": 443.59999999999997, "end": 443.78, "text": " Right."}, {"id": 270, "start": 444.41999999999996, "end": 447.86, "text": " And they're like, well, they're asking the people, can we see what the white ones look like?"}, {"id": 271, "start": 447.88, "end": 448.94, "text": " Because they don't have them out yet."}, {"id": 272, "start": 448.94, "end": 450.7, "text": " They were just going around asking which one they wanted."}, {"id": 273, "start": 451.21999999999997, "end": 453.04, "text": " They're like, no, no, we don't have them out."}, {"id": 274, "start": 453.14, "end": 455.42, "text": " You know, you'll be able to see them inside, but by that point, it's too late."}, {"id": 275, "start": 455.62, "end": 456.82, "text": " You have to make your choice now."}, {"id": 276, "start": 457.16, "end": 457.36, "text": " Right."}, {"id": 277, "start": 457.56, "end": 459.4, "text": " So, the guys were like, well, just have faith in Apple."}, {"id": 278, "start": 459.54, "end": 460.12, "text": " It looks nice."}, {"id": 279, "start": 460.12, "end": 464.68, "text": " I still want to say, yeah, just like having faith in the iPhone 4 and white will come out too, right?"}, {"id": 280, "start": 465.06, "end": 466.6, "text": " Well, speaking of standing in line..."}, {"id": 281, "start": 466.6, "end": 467.3, "text": " Yeah, what about it?"}, {"id": 282, "start": 467.38, "end": 470.4, "text": " It turns out that a lot of people turned that into a job yesterday."}, {"id": 283, "start": 470.92, "end": 471.5, "text": " Oh, dude."}, {"id": 284, "start": 471.78, "end": 474.96, "text": " There was ads on Craigslist and on other places..."}, {"id": 285, "start": 474.96, "end": 475.18, "text": " Really?"}, {"id": 286, "start": 475.32, "end": 478.12, "text": " Where people were offering to stand in line for you from anywhere from $100..."}, {"id": 287, "start": 478.12, "end": 479.48, "text": " $100 to $1,000."}, {"id": 288, "start": 479.86, "end": 481.26, "text": " I had the extra ticket, dude."}, {"id": 289, "start": 481.26, "end": 482.48, "text": " I should have sold that to Craigslist."}, {"id": 290, "start": 482.48, "end": 492.6, "text": " So, the interesting part about this is that there was a girl that was camped in line in Manhattan since Tuesday."}, {"id": 291, "start": 493.8, "end": 499.32, "text": " Camped in line, was first in line for the iPad 2, had no intention of buying an iPad."}, {"id": 292, "start": 499.88, "end": 503.0, "text": " She just sold her spot in line for $900."}, {"id": 293, "start": 503.48, "end": 504.4, "text": " Are you kidding me?"}, {"id": 294, "start": 504.4, "end": 504.8, "text": " $900?"}, {"id": 295, "start": 505.22, "end": 507.94, "text": " And then this guy, whoever bought it, spent $600?"}, {"id": 296, "start": 508.12, "end": 509.46, "text": " $600 on the iPad or however much?"}, {"id": 297, "start": 509.52, "end": 509.7, "text": " Right."}, {"id": 298, "start": 510.2, "end": 510.52, "text": " Wow."}, {"id": 299, "start": 511.4, "end": 511.68, "text": " So..."}, {"id": 300, "start": 511.68, "end": 513.26, "text": " I want to get paid for standing in line."}, {"id": 301, "start": 513.42, "end": 515.58, "text": " Well, the next time Apple releases something, go stand in line."}, {"id": 302, "start": 515.58, "end": 516.92, "text": " You should let me know because I never know."}, {"id": 303, "start": 516.96, "end": 517.76, "text": " All right, I'll let you know."}, {"id": 304, "start": 517.78, "end": 519.9, "text": " Let me know ahead of time so I can go stand in line and get paid."}, {"id": 305, "start": 520.02, "end": 521.3, "text": " Well, the people at the Alon..."}, {"id": 306, "start": 521.3, "end": 522.94, "text": " That's where I was, at the Alon Cantata."}, {"id": 307, "start": 523.92, "end": 526.92, "text": " The first person that was there showed up at 6 o'clock yesterday morning."}, {"id": 308, "start": 527.42, "end": 531.26, "text": " Now, I'm sure they would have showed up far sooner than that, but Alon Cantata doesn't let you line up overnight."}, {"id": 309, "start": 531.6, "end": 531.78, "text": " Right."}, {"id": 310, "start": 531.78, "end": 533.26, "text": " They run you off like, get out of here."}, {"id": 311, "start": 533.34, "end": 533.6800000000001, "text": " We're too bad."}, {"id": 312, "start": 533.74, "end": 534.32, "text": " Do good for you."}, {"id": 313, "start": 535.12, "end": 535.44, "text": " So..."}, {"id": 314, "start": 535.44, "end": 537.26, "text": " Well, I wouldn't want a whole bunch of people hanging out."}, {"id": 315, "start": 537.26, "end": 538.06, "text": " Yeah, of course."}, {"id": 316, "start": 538.22, "end": 538.9, "text": " I mean, yeah, come on."}, {"id": 317, "start": 539.0, "end": 541.1, "text": " Look at the stores they have at Alon Cantata."}, {"id": 318, "start": 541.3199999999999, "end": 543.58, "text": " Those stores, the owners don't want people hanging around there."}, {"id": 319, "start": 543.76, "end": 543.9399999999999, "text": " Nope."}, {"id": 320, "start": 544.24, "end": 544.34, "text": " No."}, {"id": 321, "start": 544.34, "end": 545.1, "text": " I mean, come on."}, {"id": 322, "start": 545.2, "end": 546.22, "text": " I mean, you got Tiffany and Company."}, {"id": 323, "start": 546.38, "end": 547.02, "text": " They don't want that."}, {"id": 324, "start": 547.68, "end": 549.88, "text": " Well, yeah, they've got a whole bunch of armed security guards."}, {"id": 325, "start": 551.4399999999999, "end": 553.4399999999999, "text": " So, standing in line apparently can be lucrative."}, {"id": 326, "start": 553.7, "end": 553.9399999999999, "text": " Right."}, {"id": 327, "start": 554.08, "end": 556.5, "text": " Next time that there's, you know, a launch."}, {"id": 328, "start": 556.62, "end": 557.26, "text": " You know, it's funny."}, {"id": 329, "start": 557.4, "end": 563.54, "text": " When I was working at the big box stores years and years ago when the PS3 was released, there was a guy."}, {"id": 330, "start": 563.62, "end": 566.06, "text": " The first guy standing in line, he started waiting in line about a week ahead of time."}, {"id": 331, "start": 566.0600000000001, "end": 569.36, "text": " And he didn't actually buy the PS3."}, {"id": 332, "start": 569.46, "end": 570.9200000000001, "text": " He actually sold his spot for like $1,200."}, {"id": 333, "start": 571.5400000000001, "end": 571.7800000000001, "text": " That's amazing."}, {"id": 334, "start": 571.7800000000001, "end": 573.12, "text": " So somebody can get the first PS3."}, {"id": 335, "start": 573.24, "end": 575.08, "text": " I mean, that was a bigger demand than the iPads at the time."}, {"id": 336, "start": 576.0600000000001, "end": 576.72, "text": " That's just amazing."}, {"id": 337, "start": 576.74, "end": 577.62, "text": " It boggles the mind."}, {"id": 338, "start": 577.6600000000001, "end": 578.1600000000001, "text": " It really does."}, {"id": 339, "start": 579.1600000000001, "end": 582.46, "text": " So, did you go out and get yourself an iPad too yesterday or any Apple devices?"}, {"id": 340, "start": 582.98, "end": 584.86, "text": " Because we're going to talk pretty much about Apple stuff today."}, {"id": 341, "start": 585.5200000000001, "end": 592.1200000000001, "text": " Of course, as always, if you have PC questions or issues or any type of computer problem and you want to talk about it, give us a call."}, {"id": 342, "start": 592.44, "end": 593.2, "text": " 751-1041."}, {"id": 343, "start": 593.34, "end": 593.86, "text": " We'll help you out."}, {"id": 344, "start": 594.72, "end": 595.94, "text": " We never hold everybody."}, {"id": 345, "start": 596.0600000000001, "end": 596.6800000000001, "text": " On topic."}, {"id": 346, "start": 596.86, "end": 597.0600000000001, "text": " No."}, {"id": 347, "start": 597.2800000000001, "end": 597.94, "text": " It just doesn't work that way."}, {"id": 348, "start": 597.94, "end": 598.8000000000001, "text": " We don't hold ourselves on topic."}, {"id": 349, "start": 598.8800000000001, "end": 599.0200000000001, "text": " What?"}, {"id": 350, "start": 599.2800000000001, "end": 600.1400000000001, "text": " What are we talking about?"}, {"id": 351, "start": 600.3000000000001, "end": 600.98, "text": " All right."}, {"id": 352, "start": 601.12, "end": 602.8800000000001, "text": " Oh, nice."}, {"id": 353, "start": 604.2, "end": 605.36, "text": " I am by winning."}, {"id": 354, "start": 605.3800000000001, "end": 606.12, "text": " You are by winning."}, {"id": 355, "start": 606.2, "end": 606.4200000000001, "text": " Yes."}, {"id": 356, "start": 606.6600000000001, "end": 607.32, "text": " Oh, wait, wait, wait."}, {"id": 357, "start": 608.5400000000001, "end": 609.2800000000001, "text": " Crystal's having fun."}, {"id": 358, "start": 611.0200000000001, "end": 612.0600000000001, "text": " Very nice, Crystal."}, {"id": 359, "start": 612.58, "end": 614.9000000000001, "text": " So, if you want to be part of the show, 751-1041."}, {"id": 360, "start": 615.0400000000001, "end": 615.98, "text": " We're going to take a quick break."}, {"id": 361, "start": 616.0000000000001, "end": 621.86, "text": " When we come back from the break, we're going to answer your phone calls and talk more about interesting stuff as far as Apple is concerned."}, {"id": 362, "start": 623.24, "end": 625.22, "text": " They're definitely holding down the news this week."}, {"id": 363, "start": 625.4000000000001, "end": 625.5000000000001, "text": " They are."}, {"id": 364, "start": 625.5000000000001, "end": 625.9200000000001, "text": " They do that."}, {"id": 365, "start": 626.0600000000001, "end": 626.36, "text": " Every year."}, {"id": 366, "start": 626.72, "end": 627.0000000000001, "text": " Yeah, of course."}, {"id": 367, "start": 627.12, "end": 628.1800000000001, "text": " It's that time of year."}, {"id": 368, "start": 628.5400000000001, "end": 631.7600000000001, "text": " This is the Computer Guru Show on 104.1 The Truth, Tucson's New Stock FM."}, {"id": 369, "start": 642.2, "end": 644.0600000000001, "text": " Welcome back to the Computer Guru Show."}, {"id": 370, "start": 644.1400000000001, "end": 644.62, "text": " My name is Mike."}, {"id": 371, "start": 644.6800000000001, "end": 647.72, "text": " Here to deal with your technology needs and treat you like a real person in the process."}, {"id": 372, "start": 647.84, "end": 651.0200000000001, "text": " Give us a call, 751-1041, if you'd like to be part of the show."}, {"id": 373, "start": 651.3000000000001, "end": 654.0400000000001, "text": " This week, we're sort of talking about a whole bunch of Apple stuff that's coming out."}, {"id": 374, "start": 654.34, "end": 654.6200000000001, "text": " We are?"}, {"id": 375, "start": 654.82, "end": 654.98, "text": " Yeah."}, {"id": 376, "start": 655.1400000000001, "end": 655.3800000000001, "text": " Yeah."}, {"id": 377, "start": 656.0600000000001, "end": 658.7, "text": " iPhone, iPad 3 coming out in November?"}, {"id": 378, "start": 658.82, "end": 659.7800000000001, "text": " It is not coming out in November."}, {"id": 379, "start": 659.7800000000001, "end": 660.6600000000001, "text": " That's the rumor, right?"}, {"id": 380, "start": 660.7, "end": 661.4200000000001, "text": " It is no way."}, {"id": 381, "start": 661.4200000000001, "end": 663.8000000000001, "text": " If they did that, they would burn so many of their customers."}, {"id": 382, "start": 664.0200000000001, "end": 664.8000000000001, "text": " They would never go back."}, {"id": 383, "start": 664.82, "end": 665.34, "text": " It ain't happening."}, {"id": 384, "start": 665.5600000000001, "end": 666.46, "text": " I sort of hope they do."}, {"id": 385, "start": 667.5600000000001, "end": 668.3800000000001, "text": " It's not happening."}, {"id": 386, "start": 668.7600000000001, "end": 671.22, "text": " I might see an iPhone 5."}, {"id": 387, "start": 671.6600000000001, "end": 671.94, "text": " Oh, yeah."}, {"id": 388, "start": 672.0000000000001, "end": 673.6, "text": " The iPhone 5 will definitely be out by November."}, {"id": 389, "start": 673.7, "end": 675.4200000000001, "text": " I don't think that they're going to do the iPad."}, {"id": 390, "start": 675.4200000000001, "end": 676.3800000000001, "text": " Will it be 4G, though?"}, {"id": 391, "start": 676.8800000000001, "end": 677.48, "text": " That's the trick."}, {"id": 392, "start": 677.5400000000001, "end": 678.1400000000001, "text": " Well, it better be."}, {"id": 393, "start": 678.2800000000001, "end": 678.84, "text": " Yeah, no kidding."}, {"id": 394, "start": 679.2, "end": 679.5000000000001, "text": " All right."}, {"id": 395, "start": 679.5600000000001, "end": 680.7600000000001, "text": " So, let's go ahead and take some calls here."}, {"id": 396, "start": 680.82, "end": 683.86, "text": " If you'd like to be part of the show, 751-1041, let's talk to Ted."}, {"id": 397, "start": 683.86, "end": 684.24, "text": " Hey, Ted."}, {"id": 398, "start": 684.2600000000001, "end": 684.6, "text": " How are you doing?"}, {"id": 399, "start": 684.6, "end": 685.64, "text": " Hiya, Mike."}, {"id": 400, "start": 685.84, "end": 686.78, "text": " Just a quickie."}, {"id": 401, "start": 687.0400000000001, "end": 690.74, "text": " I've been using Avast for about, oh, six or eight months."}, {"id": 402, "start": 691.46, "end": 697.0600000000001, "text": " And yesterday, when I started up my machine, you know, the usual Avast thing comes up,"}, {"id": 403, "start": 697.1, "end": 699.26, "text": " you know, updating your virus protection, blah, blah, blah."}, {"id": 404, "start": 699.52, "end": 699.74, "text": " Right."}, {"id": 405, "start": 699.74, "end": 706.82, "text": " And right on top of it was another red one that said, hey, your free trial is about to expire."}, {"id": 406, "start": 707.86, "end": 708.26, "text": " Okay."}, {"id": 407, "start": 708.46, "end": 709.0600000000001, "text": " What's with that?"}, {"id": 408, "start": 709.12, "end": 709.98, "text": " I thought it was free."}, {"id": 409, "start": 710.58, "end": 712.76, "text": " Well, they are free, and you can re-register."}, {"id": 410, "start": 713.26, "end": 714.58, "text": " Of course, they do want to pressure you."}, {"id": 411, "start": 714.6, "end": 717.36, "text": " They want to pressure you into purchasing their version, their paid version."}, {"id": 412, "start": 718.14, "end": 720.2, "text": " But it's a very small option."}, {"id": 413, "start": 720.34, "end": 721.5600000000001, "text": " It's a very small button."}, {"id": 414, "start": 722.02, "end": 725.0400000000001, "text": " It'll say, no thanks, continue with free trial, or something like that."}, {"id": 415, "start": 725.38, "end": 725.6, "text": " Okay."}, {"id": 416, "start": 725.72, "end": 733.14, "text": " There was an update button on the red icon that showed up, but it didn't work."}, {"id": 417, "start": 733.6800000000001, "end": 734.24, "text": " How do you mean?"}, {"id": 418, "start": 734.62, "end": 736.94, "text": " Well, I kept clicking on it, and nothing would happen."}, {"id": 419, "start": 737.64, "end": 738.38, "text": " That's interesting."}, {"id": 420, "start": 739.7, "end": 741.86, "text": " And you didn't see the option for, like, no thanks and all that?"}, {"id": 421, "start": 742.02, "end": 742.28, "text": " No."}, {"id": 422, "start": 742.34, "end": 743.72, "text": " Let me bring it up right now."}, {"id": 423, "start": 743.84, "end": 744.24, "text": " Okay."}, {"id": 424, "start": 744.24, "end": 744.3000000000001, "text": " Okay."}, {"id": 425, "start": 744.6, "end": 745.62, "text": " I'm sitting here at the machine."}, {"id": 426, "start": 746.0400000000001, "end": 746.74, "text": " That would be great."}, {"id": 427, "start": 746.9, "end": 752.72, "text": " You know, while he's doing that, I'm looking at pictures of the iPad lines in New York and San Francisco."}, {"id": 428, "start": 753.6, "end": 754.64, "text": " Man, this was crazy."}, {"id": 429, "start": 754.78, "end": 758.46, "text": " I mean, the one here wasn't this bad by no means."}, {"id": 430, "start": 758.6, "end": 759.44, "text": " This was nuts."}, {"id": 431, "start": 759.46, "end": 762.44, "text": " Apparently, there was all kinds of reports of people threatening each other."}, {"id": 432, "start": 762.58, "end": 763.58, "text": " Well, I can imagine."}, {"id": 433, "start": 763.88, "end": 767.26, "text": " I mean, it looks like a freaking riot out front of that store."}, {"id": 434, "start": 767.48, "end": 768.74, "text": " I mean, man alive."}, {"id": 435, "start": 769.0600000000001, "end": 770.0400000000001, "text": " Violence for an iPad."}, {"id": 436, "start": 770.28, "end": 770.58, "text": " Yeah."}, {"id": 437, "start": 770.94, "end": 773.74, "text": " It says registration will expire soon."}, {"id": 438, "start": 773.74, "end": 773.98, "text": " Oh, no."}, {"id": 439, "start": 773.98, "end": 775.74, "text": " Now, they do have a re-register button."}, {"id": 440, "start": 775.82, "end": 777.0, "text": " Let me see if it works today."}, {"id": 441, "start": 777.3000000000001, "end": 777.64, "text": " Okay."}, {"id": 442, "start": 778.74, "end": 779.78, "text": " It'd be nice if it worked today."}, {"id": 443, "start": 779.9200000000001, "end": 780.1800000000001, "text": " Yeah."}, {"id": 444, "start": 780.24, "end": 780.52, "text": " No kidding."}, {"id": 445, "start": 780.66, "end": 781.58, "text": " It did work."}, {"id": 446, "start": 781.7, "end": 782.1800000000001, "text": " There you go."}, {"id": 447, "start": 782.28, "end": 782.84, "text": " Problem solved."}, {"id": 448, "start": 783.1800000000001, "end": 785.7, "text": " Well, it says it wants me to buy something."}, {"id": 449, "start": 786.24, "end": 787.1, "text": " Oh, here it is."}, {"id": 450, "start": 787.14, "end": 787.8000000000001, "text": " Stay with free."}, {"id": 451, "start": 787.9200000000001, "end": 788.58, "text": " There it is."}, {"id": 452, "start": 788.58, "end": 789.4, "text": " It's a very small button."}, {"id": 453, "start": 789.46, "end": 790.22, "text": " You've got to look for that button."}, {"id": 454, "start": 790.34, "end": 790.7, "text": " Got it."}, {"id": 455, "start": 790.74, "end": 791.5, "text": " Thanks a lot, guys."}, {"id": 456, "start": 791.5600000000001, "end": 791.98, "text": " Not a problem."}, {"id": 457, "start": 792.2, "end": 792.52, "text": " Thanks."}, {"id": 458, "start": 793.44, "end": 796.5, "text": " As always, the free button is way smaller than the buy button."}, {"id": 459, "start": 796.5, "end": 796.82, "text": " Yes."}, {"id": 460, "start": 796.88, "end": 798.24, "text": " They usually hide it behind another button."}, {"id": 461, "start": 798.36, "end": 798.72, "text": " No, I'm kidding."}, {"id": 462, "start": 799.82, "end": 800.94, "text": " Well, let's take another call."}, {"id": 463, "start": 801.02, "end": 802.88, "text": " If you'd like to be part of the show, we'd love to hear from you."}, {"id": 464, "start": 802.9, "end": 803.82, "text": " 751-1041."}, {"id": 465, "start": 804.66, "end": 805.88, "text": " Let's talk to John."}, {"id": 466, "start": 805.98, "end": 806.48, "text": " Hello, John."}, {"id": 467, "start": 807.3000000000001, "end": 808.3000000000001, "text": " Good afternoon, guys."}, {"id": 468, "start": 808.48, "end": 808.82, "text": " Good afternoon."}, {"id": 469, "start": 809.48, "end": 813.5600000000001, "text": " Looking at setting up a wireless system for the house, actually upgrading it, is there"}, {"id": 470, "start": 813.5600000000001, "end": 816.9200000000001, "text": " any difference between a wireless N router and a wireless G router?"}, {"id": 471, "start": 817.2, "end": 817.5, "text": " Yes."}, {"id": 472, "start": 817.52, "end": 818.22, "text": " It's a different letter."}, {"id": 473, "start": 819.3000000000001, "end": 819.62, "text": " No."}, {"id": 474, "start": 819.86, "end": 820.86, "text": " Don't be like that."}, {"id": 475, "start": 821.34, "end": 821.5600000000001, "text": " No."}, {"id": 476, "start": 822.04, "end": 826.5, "text": " The N routers are, let's say, on paper, they're faster."}, {"id": 477, "start": 826.7, "end": 826.88, "text": " Yeah."}, {"id": 478, "start": 827.04, "end": 829.16, "text": " I mean, well, I don't think the N's mean faster."}, {"id": 479, "start": 829.22, "end": 833.3000000000001, "text": " I never try to tell people that N's are faster because regular G is always faster."}, {"id": 480, "start": 833.36, "end": 833.9, "text": " As I said."}, {"id": 481, "start": 834.5600000000001, "end": 835.78, "text": " On paper, they're faster."}, {"id": 482, "start": 835.86, "end": 836.2, "text": " Yeah, but."}, {"id": 483, "start": 836.58, "end": 836.94, "text": " Okay."}, {"id": 484, "start": 837.12, "end": 837.38, "text": " Okay."}, {"id": 485, "start": 837.4200000000001, "end": 838.16, "text": " Don't argue with me."}, {"id": 486, "start": 838.16, "end": 838.72, "text": " Hey, hey, quiet."}, {"id": 487, "start": 838.88, "end": 839.64, "text": " But in reality."}, {"id": 488, "start": 840.14, "end": 843.4200000000001, "text": " In reality, all they do is give you a little bit better signal boost."}, {"id": 489, "start": 843.6, "end": 844.8000000000001, "text": " Yeah, you're a little better range."}, {"id": 490, "start": 845.72, "end": 850.74, "text": " I would say that if you're in the market for a new router, right, you would probably want"}, {"id": 491, "start": 850.74, "end": 854.6800000000001, "text": " to go with the N just so you don't end up the way of the B, all right?"}, {"id": 492, "start": 854.6800000000001, "end": 860.4200000000001, "text": " So a wireless B was around for a long time, and then suddenly, almost overnight, disappeared."}, {"id": 493, "start": 861.54, "end": 861.74, "text": " Wow."}, {"id": 494, "start": 862.04, "end": 862.22, "text": " Okay."}, {"id": 495, "start": 862.4, "end": 863.9, "text": " Yeah, and G's been around for a while."}, {"id": 496, "start": 864.4200000000001, "end": 865.0600000000001, "text": " So it's."}, {"id": 497, "start": 865.58, "end": 866.6, "text": " Everything's moving into N."}, {"id": 498, "start": 866.74, "end": 869.12, "text": " Everything is now N as far as if you want to be current."}, {"id": 499, "start": 869.86, "end": 874.62, "text": " So I would get the N1C, and the price difference between G and N is not significant right now."}, {"id": 500, "start": 875.12, "end": 875.9, "text": " That's what I was saying."}, {"id": 501, "start": 876.04, "end": 876.28, "text": " Right."}, {"id": 502, "start": 876.72, "end": 877.0, "text": " Okay."}, {"id": 503, "start": 877.36, "end": 877.6800000000001, "text": " Great."}, {"id": 504, "start": 877.76, "end": 878.1800000000001, "text": " Thanks a lot, guys."}, {"id": 505, "start": 878.32, "end": 878.52, "text": " All right."}, {"id": 506, "start": 878.5600000000001, "end": 879.0600000000001, "text": " Thanks for the call."}, {"id": 507, "start": 879.26, "end": 881.32, "text": " Don't hospitals still use A and B?"}, {"id": 508, "start": 881.86, "end": 882.14, "text": " Oh, yeah."}, {"id": 509, "start": 882.3000000000001, "end": 884.0600000000001, "text": " Yeah, that's the biggest one they use."}, {"id": 510, "start": 884.0600000000001, "end": 887.28, "text": " Well, they're using A because they don't want to be in the 2.4 range."}, {"id": 511, "start": 887.38, "end": 887.82, "text": " Right, right."}, {"id": 512, "start": 887.88, "end": 889.6800000000001, "text": " So they're all up in the 5 gigahertz range."}, {"id": 513, "start": 889.7, "end": 890.32, "text": " Right, right."}, {"id": 514, "start": 890.48, "end": 892.36, "text": " And a lot of times, they're using even higher stuff."}, {"id": 515, "start": 892.52, "end": 893.0600000000001, "text": " They're using upwards."}, {"id": 516, "start": 893.98, "end": 894.4200000000001, "text": " They're using upwards of 7."}, {"id": 517, "start": 895.12, "end": 896.7, "text": " But they've got their own frequency for that."}, {"id": 518, "start": 896.84, "end": 896.9, "text": " Right."}, {"id": 519, "start": 896.9, "end": 897.58, "text": " Their own bandwidth."}, {"id": 520, "start": 898.16, "end": 900.1800000000001, "text": " And special routers to go along with it."}, {"id": 521, "start": 900.32, "end": 900.96, "text": " They're special."}, {"id": 522, "start": 901.16, "end": 901.62, "text": " They're special."}, {"id": 523, "start": 902.1800000000001, "end": 902.44, "text": " All right."}, {"id": 524, "start": 902.48, "end": 903.9200000000001, "text": " Well, you know, you don't want to cause heart attacks."}, {"id": 525, "start": 904.02, "end": 904.4200000000001, "text": " Yeah, well."}, {"id": 526, "start": 904.82, "end": 905.12, "text": " All right."}, {"id": 527, "start": 905.12, "end": 907.08, "text": " How can a Wi-Fi cause a heart attack?"}, {"id": 528, "start": 907.98, "end": 908.44, "text": " Well, yeah."}, {"id": 529, "start": 908.44, "end": 908.9200000000001, "text": " Well, I can."}, {"id": 530, "start": 908.96, "end": 909.12, "text": " No, no."}, {"id": 531, "start": 909.12, "end": 909.5, "text": " I got you."}, {"id": 532, "start": 909.52, "end": 911.4200000000001, "text": " You're not allowed to even turn on your cell phone in a hospital."}, {"id": 533, "start": 911.66, "end": 911.9, "text": " Yeah."}, {"id": 534, "start": 912.0600000000001, "end": 912.4, "text": " All right."}, {"id": 535, "start": 912.44, "end": 913.46, "text": " So don't."}, {"id": 536, "start": 913.48, "end": 913.9, "text": " This is true."}, {"id": 537, "start": 914.0600000000001, "end": 914.98, "text": " No, I understand now."}, {"id": 538, "start": 915.26, "end": 915.84, "text": " I didn't think about it."}, {"id": 539, "start": 915.86, "end": 916.5600000000001, "text": " You're argumentative."}, {"id": 540, "start": 916.6, "end": 917.2, "text": " Hey, stop it."}, {"id": 541, "start": 917.22, "end": 917.5600000000001, "text": " I'm telling you."}, {"id": 542, "start": 917.9200000000001, "end": 918.46, "text": " Let's talk to Jerry."}, {"id": 543, "start": 918.54, "end": 918.86, "text": " Hey, Jerry."}, {"id": 544, "start": 918.88, "end": 919.22, "text": " How are you doing?"}, {"id": 545, "start": 923.98, "end": 924.38, "text": " Internet Explorer."}, {"id": 546, "start": 924.98, "end": 925.34, "text": " Okay."}, {"id": 547, "start": 925.78, "end": 927.76, "text": " And I've got a Windows 7 machine."}, {"id": 548, "start": 928.88, "end": 933.96, "text": " And all of a sudden, I can't get to about 60% of my web pages."}, {"id": 549, "start": 934.4200000000001, "end": 935.94, "text": " What kind of error message do you get?"}, {"id": 550, "start": 935.98, "end": 939.1800000000001, "text": " It just comes up, Internet Explorer cannot display this web page."}, {"id": 551, "start": 939.24, "end": 940.82, "text": " And what kind of antivirus do you have?"}, {"id": 552, "start": 941.24, "end": 942.38, "text": " Avast, the paid version."}, {"id": 553, "start": 942.54, "end": 944.34, "text": " I'm wondering if you updated IE9."}, {"id": 554, "start": 945.46, "end": 946.36, "text": " No, that might be it."}, {"id": 555, "start": 946.7, "end": 947.0, "text": " Yeah."}, {"id": 556, "start": 947.02, "end": 948.46, "text": " Which version of IE are you using?"}, {"id": 557, "start": 950.4, "end": 951.48, "text": " Are you in front of it now?"}, {"id": 558, "start": 951.74, "end": 951.98, "text": " Eight."}, {"id": 559, "start": 952.34, "end": 953.14, "text": " Oh, you are using it."}, {"id": 560, "start": 953.1800000000001, "end": 953.96, "text": " Are you sure it's still eight?"}, {"id": 561, "start": 954.96, "end": 955.74, "text": " I hope so."}, {"id": 562, "start": 956.82, "end": 958.48, "text": " Because I did get pushed out recently."}, {"id": 563, "start": 958.7, "end": 958.86, "text": " All right."}, {"id": 564, "start": 958.9200000000001, "end": 962.22, "text": " So, nine is pretty easy to upgrade to, even on accident."}, {"id": 565, "start": 962.82, "end": 965.22, "text": " Now, I did try to upgrade to nine."}, {"id": 566, "start": 965.58, "end": 965.9, "text": " Okay."}, {"id": 567, "start": 966.0600000000001, "end": 967.0600000000001, "text": " And it made no difference."}, {"id": 568, "start": 968.0, "end": 970.24, "text": " So, then I found a website where I could get rid of nine."}, {"id": 569, "start": 971.1800000000001, "end": 972.7, "text": " You found a website to get rid of nine?"}, {"id": 570, "start": 974.1800000000001, "end": 978.88, "text": " Someplace online, you've got to go through a bunch of special stuff in order to get rid of nine."}, {"id": 571, "start": 979.3000000000001, "end": 981.82, "text": " You should just have to go to the add and remove programs to get rid of nine."}, {"id": 572, "start": 982.7, "end": 983.02, "text": " Okay."}, {"id": 573, "start": 983.02, "end": 984.9399999999999, "text": " Well, that concerns me a little bit."}, {"id": 574, "start": 985.3199999999999, "end": 985.46, "text": " All right."}, {"id": 575, "start": 985.52, "end": 986.88, "text": " So, red flags are going off over here."}, {"id": 576, "start": 987.3, "end": 987.56, "text": " All right."}, {"id": 577, "start": 987.6, "end": 988.78, "text": " Let me ask you some other questions."}, {"id": 578, "start": 989.34, "end": 994.66, "text": " Is there anything that is in common between all these websites that you can't get to anymore?"}, {"id": 579, "start": 995.36, "end": 996.22, "text": " Not that I know of."}, {"id": 580, "start": 996.42, "end": 998.56, "text": " One of them is my Earthlink email."}, {"id": 581, "start": 999.02, "end": 999.1999999999999, "text": " Okay."}, {"id": 582, "start": 1000.78, "end": 1005.42, "text": " Another one is a Studebaker truck forum that I get on."}, {"id": 583, "start": 1005.68, "end": 1007.9399999999999, "text": " Because already it sounds like to me there is a pattern."}, {"id": 584, "start": 1008.1999999999999, "end": 1009.6999999999999, "text": " These are websites that you have to log into."}, {"id": 585, "start": 1010.88, "end": 1011.28, "text": " Yes."}, {"id": 586, "start": 1011.42, "end": 1011.78, "text": " Okay."}, {"id": 587, "start": 1011.78, "end": 1012.02, "text": " Okay."}, {"id": 588, "start": 1012.02, "end": 1012.74, "text": " So, secured."}, {"id": 589, "start": 1013.38, "end": 1014.84, "text": " Probably security issues."}, {"id": 590, "start": 1015.98, "end": 1016.3199999999999, "text": " All right."}, {"id": 591, "start": 1016.4, "end": 1018.9, "text": " So, let's just as a test."}, {"id": 592, "start": 1019.1999999999999, "end": 1020.28, "text": " Are you near the machine?"}, {"id": 593, "start": 1021.18, "end": 1021.98, "text": " I can be."}, {"id": 594, "start": 1022.26, "end": 1022.52, "text": " Okay."}, {"id": 595, "start": 1022.8, "end": 1024.1, "text": " Make your way over to your machine."}, {"id": 596, "start": 1025.0, "end": 1030.1399999999999, "text": " One of the things we want to check for, whenever you're having issues where you've got a string of websites that you can't get to,"}, {"id": 597, "start": 1030.66, "end": 1032.6399999999999, "text": " oftentimes it has something to do with security."}, {"id": 598, "start": 1032.92, "end": 1037.72, "text": " Like whether they're either sites that you have to log into and it uses SSL security."}, {"id": 599, "start": 1038.06, "end": 1039.4, "text": " In some cases, it's not."}, {"id": 600, "start": 1039.4, "end": 1043.0, "text": " But we want to check to see if we can find the difference, you know, find out what's going on."}, {"id": 601, "start": 1043.04, "end": 1045.46, "text": " And sometimes it's something as simple as your date and time is wrong."}, {"id": 602, "start": 1045.84, "end": 1046.04, "text": " Yeah."}, {"id": 603, "start": 1046.18, "end": 1046.8799999999999, "text": " That could be it."}, {"id": 604, "start": 1047.0, "end": 1047.08, "text": " Yeah."}, {"id": 605, "start": 1047.22, "end": 1048.48, "text": " Now, I'll tell you what I did do."}, {"id": 606, "start": 1048.62, "end": 1050.48, "text": " I downloaded Google Chrome."}, {"id": 607, "start": 1050.78, "end": 1051.1, "text": " Okay."}, {"id": 608, "start": 1051.48, "end": 1053.3799999999999, "text": " And I can get to all the websites fine there."}, {"id": 609, "start": 1053.58, "end": 1053.84, "text": " Okay."}, {"id": 610, "start": 1053.84, "end": 1055.24, "text": " So, it should not be the date and time then."}, {"id": 611, "start": 1055.3799999999999, "end": 1056.4, "text": " Definitely not date and time."}, {"id": 612, "start": 1057.26, "end": 1057.46, "text": " All right."}, {"id": 613, "start": 1057.5, "end": 1060.72, "text": " So, Chrome actually works for you, i.e. does not."}, {"id": 614, "start": 1060.96, "end": 1061.26, "text": " Right."}, {"id": 615, "start": 1061.58, "end": 1062.4, "text": " Well, speaking of Chrome."}, {"id": 616, "start": 1062.74, "end": 1063.1, "text": " Yes."}, {"id": 617, "start": 1063.36, "end": 1065.4, "text": " Chrome was the only major browser."}, {"id": 618, "start": 1066.36, "end": 1066.86, "text": " Hold on."}, {"id": 619, "start": 1066.96, "end": 1067.42, "text": " Turn him down."}, {"id": 620, "start": 1067.68, "end": 1067.86, "text": " Yeah."}, {"id": 621, "start": 1067.86, "end": 1071.54, "text": " The only major browser to survive, pwned to own."}, {"id": 622, "start": 1072.1399999999999, "end": 1072.54, "text": " Oh, really?"}, {"id": 623, "start": 1072.72, "end": 1072.92, "text": " Yeah."}, {"id": 624, "start": 1073.18, "end": 1075.52, "text": " The newest one they just released or their older one?"}, {"id": 625, "start": 1075.6, "end": 1076.18, "text": " The newest one."}, {"id": 626, "start": 1076.18, "end": 1076.62, "text": " The newest one."}, {"id": 627, "start": 1076.7, "end": 1076.78, "text": " Right."}, {"id": 628, "start": 1076.78, "end": 1077.12, "text": " Very nice."}, {"id": 629, "start": 1077.3, "end": 1081.1, "text": " In fact, the guy that was supposed to come and hack Google Chrome for everybody."}, {"id": 630, "start": 1081.3, "end": 1087.02, "text": " Now, for those of you who don't know, pwned to own is a conference where all these hacking individuals get together"}, {"id": 631, "start": 1087.02, "end": 1093.8, "text": " and they reveal exploits that they found in various operating systems and software."}, {"id": 632, "start": 1094.28, "end": 1099.82, "text": " It allows them to sort of give direct feedback to the developers to say, go straight to Apple and say,"}, {"id": 633, "start": 1099.8799999999999, "end": 1100.28, "text": " hey, guess what?"}, {"id": 634, "start": 1100.3799999999999, "end": 1101.08, "text": " Safari fails."}, {"id": 635, "start": 1101.32, "end": 1101.44, "text": " Right."}, {"id": 636, "start": 1101.44, "end": 1101.94, "text": " And here's how."}, {"id": 637, "start": 1102.18, "end": 1102.26, "text": " Right."}, {"id": 638, "start": 1102.26, "end": 1109.04, "text": " And so the developers, like Microsoft and Apple and everybody else involved, is paying attention to this."}, {"id": 639, "start": 1109.86, "end": 1114.06, "text": " And so they pushed out some updates last week to Chrome, and the guy that was supposed to,"}, {"id": 640, "start": 1114.06, "end": 1117.28, "text": " who was scheduled to come and hack Chrome for the public, was a no-show."}, {"id": 641, "start": 1117.56, "end": 1118.0, "text": " Oh, really?"}, {"id": 642, "start": 1118.22, "end": 1118.62, "text": " Yeah, so."}, {"id": 643, "start": 1118.68, "end": 1119.12, "text": " He got scared?"}, {"id": 644, "start": 1119.74, "end": 1125.54, "text": " Apparently, he probably got defeated by the update."}, {"id": 645, "start": 1125.68, "end": 1126.0, "text": " Nice."}, {"id": 646, "start": 1126.06, "end": 1126.48, "text": " Very nice."}, {"id": 647, "start": 1126.8799999999999, "end": 1127.56, "text": " All right, John."}, {"id": 648, "start": 1128.02, "end": 1128.68, "text": " Oh, I'm sorry, Jerry."}, {"id": 649, "start": 1128.92, "end": 1130.1, "text": " Yeah, I'm in front of the computer."}, {"id": 650, "start": 1130.66, "end": 1130.96, "text": " Okay."}, {"id": 651, "start": 1130.96, "end": 1131.08, "text": " All right."}, {"id": 652, "start": 1131.08, "end": 1133.6599999999999, "text": " And so you can get to, like, Google, right?"}, {"id": 653, "start": 1135.06, "end": 1135.84, "text": " Google Chrome?"}, {"id": 654, "start": 1135.96, "end": 1136.12, "text": " Yeah."}, {"id": 655, "start": 1136.24, "end": 1139.3, "text": " Well, I mean, in Internet Explorer, you can get to Google.com."}, {"id": 656, "start": 1140.8799999999999, "end": 1141.32, "text": " Yeah."}, {"id": 657, "start": 1141.56, "end": 1141.82, "text": " Okay."}, {"id": 658, "start": 1142.4199999999998, "end": 1145.22, "text": " And you can't get to your mail."}, {"id": 659, "start": 1145.9399999999998, "end": 1146.36, "text": " Right."}, {"id": 660, "start": 1146.54, "end": 1146.76, "text": " Right."}, {"id": 661, "start": 1146.8, "end": 1148.24, "text": " Can you get to just regular Yahoo?"}, {"id": 662, "start": 1151.56, "end": 1156.24, "text": " I didn't try Yahoo, but because I don't have a Yahoo email account."}, {"id": 663, "start": 1156.26, "end": 1156.3999999999999, "text": " All right."}, {"id": 664, "start": 1156.3999999999999, "end": 1157.36, "text": " Who's your mail through?"}, {"id": 665, "start": 1157.46, "end": 1157.82, "text": " Your web mail?"}, {"id": 666, "start": 1158.46, "end": 1158.82, "text": " Earthlink."}, {"id": 667, "start": 1159.0, "end": 1159.34, "text": " Earthlink?"}, {"id": 668, "start": 1159.34, "end": 1159.4199999999998, "text": " Earthlink?"}, {"id": 669, "start": 1159.4199999999998, "end": 1159.62, "text": " Okay."}, {"id": 670, "start": 1160.22, "end": 1160.9399999999998, "text": " Try going to just..."}, {"id": 671, "start": 1161.08, "end": 1162.1399999999999, "text": " Earthlink.com."}, {"id": 672, "start": 1163.48, "end": 1163.8, "text": " Okay."}, {"id": 673, "start": 1167.1599999999999, "end": 1167.9199999999998, "text": " I'll try that."}, {"id": 674, "start": 1168.06, "end": 1168.28, "text": " All right."}, {"id": 675, "start": 1168.32, "end": 1168.82, "text": " Give it a shot."}, {"id": 676, "start": 1169.5, "end": 1173.48, "text": " What we're looking for, we want to see if the website itself has been blocked or if it's"}, {"id": 677, "start": 1173.48, "end": 1175.58, "text": " just the login part of it that's being blocked."}, {"id": 678, "start": 1175.6799999999998, "end": 1175.82, "text": " Right."}, {"id": 679, "start": 1175.8799999999999, "end": 1176.6, "text": " Because you can..."}, {"id": 680, "start": 1176.6, "end": 1178.3999999999999, "text": " There's two ways that this can be happening here."}, {"id": 681, "start": 1178.46, "end": 1182.3799999999999, "text": " One of which is it is a security problem where your computer just doesn't know how to switch"}, {"id": 682, "start": 1182.3799999999999, "end": 1187.58, "text": " into the secure mode in Internet Explorer, or you can have, like, a host problem or something"}, {"id": 683, "start": 1187.58, "end": 1188.1, "text": " like that."}, {"id": 684, "start": 1188.5, "end": 1188.9399999999998, "text": " Yeah."}, {"id": 685, "start": 1188.9399999999998, "end": 1189.0, "text": " Yeah."}, {"id": 686, "start": 1189.0, "end": 1189.02, "text": " Yeah."}, {"id": 687, "start": 1189.02, "end": 1189.06, "text": " Yeah."}, {"id": 688, "start": 1189.06, "end": 1189.08, "text": " Yeah."}, {"id": 689, "start": 1189.08, "end": 1189.1, "text": " Yeah."}, {"id": 690, "start": 1189.1, "end": 1189.1399999999999, "text": " Yeah."}, {"id": 691, "start": 1189.1399999999999, "end": 1189.24, "text": " Yeah."}, {"id": 692, "start": 1189.24, "end": 1189.26, "text": " Yeah."}, {"id": 693, "start": 1189.26, "end": 1189.3, "text": " Yeah."}, {"id": 694, "start": 1189.3, "end": 1189.32, "text": " Yeah."}, {"id": 695, "start": 1189.32, "end": 1189.3799999999999, "text": " Yeah."}, {"id": 696, "start": 1189.3799999999999, "end": 1189.46, "text": " Yeah."}, {"id": 697, "start": 1189.46, "end": 1189.5, "text": " Yeah."}, {"id": 698, "start": 1189.5, "end": 1189.56, "text": " Yeah."}, {"id": 699, "start": 1189.56, "end": 1189.58, "text": " Yeah."}, {"id": 700, "start": 1189.58, "end": 1189.62, "text": " Yeah."}, {"id": 701, "start": 1189.62, "end": 1189.6599999999999, "text": " Yeah."}, {"id": 702, "start": 1189.6599999999999, "end": 1189.6799999999998, "text": " Yeah."}, {"id": 703, "start": 1189.6799999999998, "end": 1189.74, "text": " Yeah."}, {"id": 704, "start": 1189.74, "end": 1189.76, "text": " Yeah."}, {"id": 705, "start": 1189.76, "end": 1192.3799999999999, "text": " Would also cause problems with Chrome."}, {"id": 706, "start": 1192.9, "end": 1197.96, "text": " So I'm leaning towards you've got some type of a, like, an SSL state problem or some type"}, {"id": 707, "start": 1197.96, "end": 1200.06, "text": " of other security issue on the machine."}, {"id": 708, "start": 1200.76, "end": 1201.2, "text": " Okay."}, {"id": 709, "start": 1201.76, "end": 1208.94, "text": " I went to earthlink.net and hit, and through Google, and it brought up, you know, a whole"}, {"id": 710, "start": 1208.94, "end": 1209.52, "text": " list of stuff."}, {"id": 711, "start": 1210.1, "end": 1214.02, "text": " But if I try to go to Earthlink webmail..."}, {"id": 712, "start": 1214.02, "end": 1214.2, "text": " Right."}, {"id": 713, "start": 1214.28, "end": 1217.16, "text": " But all I want to know is can you get to earthlink.net in Internet Explorer?"}, {"id": 714, "start": 1218.24, "end": 1218.54, "text": " Yes."}, {"id": 715, "start": 1218.8, "end": 1219.02, "text": " Okay."}, {"id": 716, "start": 1219.02, "end": 1219.2, "text": " Okay."}, {"id": 717, "start": 1219.76, "end": 1224.64, "text": " All right, so if that, if that functions, all right, click on tools and then Internet"}, {"id": 718, "start": 1224.64, "end": 1226.3, "text": " options at the top of the page there."}, {"id": 719, "start": 1226.3, "end": 1227.3, "text": " Okay."}, {"id": 720, "start": 1227.3, "end": 1232.0, "text": " All right, inside Internet options, there is a content tab."}, {"id": 721, "start": 1232.0, "end": 1233.0, "text": " Yes."}, {"id": 722, "start": 1233.0, "end": 1236.2, "text": " All right, and there should be a button that says clear SSL state."}, {"id": 723, "start": 1236.2, "end": 1239.0, "text": " Oh, yeah, I did that once too."}, {"id": 724, "start": 1239.0, "end": 1240.0, "text": " Okay."}, {"id": 725, "start": 1240.0, "end": 1241.0, "text": " When?"}, {"id": 726, "start": 1241.0, "end": 1243.0, "text": " Right after I started having this problem."}, {"id": 727, "start": 1243.0, "end": 1244.0, "text": " Okay."}, {"id": 728, "start": 1244.0, "end": 1244.9, "text": " Well, let's just run through it one more time."}, {"id": 729, "start": 1244.9, "end": 1245.9, "text": " Okay."}, {"id": 730, "start": 1245.9, "end": 1246.9, "text": " Just to be sure."}, {"id": 731, "start": 1246.9, "end": 1247.9, "text": " Now, on the connection tab..."}, {"id": 732, "start": 1247.9, "end": 1248.9, "text": " I want you to..."}, {"id": 733, "start": 1248.9, "end": 1254.14, "text": " I want you to go to connections and then look for the LAN settings button, and once"}, {"id": 734, "start": 1254.14, "end": 1257.94, "text": " you're there, hang out, we'll pick you back up after the break, and we'll see if we can"}, {"id": 735, "start": 1257.94, "end": 1258.94, "text": " help you out."}, {"id": 736, "start": 1258.94, "end": 1259.94, "text": " Okay."}, {"id": 737, "start": 1259.94, "end": 1260.94, "text": " All right."}, {"id": 738, "start": 1260.94, "end": 1261.94, "text": " Thanks for holding, and thanks for giving us a call."}, {"id": 739, "start": 1261.94, "end": 1265.46, "text": " If you want to be part of the show, 751-1041, we'll see what we can do to help you out with"}, {"id": 740, "start": 1265.46, "end": 1267.3600000000001, "text": " whatever computer issue you're having."}, {"id": 741, "start": 1267.3600000000001, "end": 1273.7800000000002, "text": " This is the Computer Guru Show on 104.1 The Truth, Tucson's News Talk FM."}, {"id": 742, "start": 1273.7800000000002, "end": 1276.7800000000002, "text": " ."}, {"id": 743, "start": 1276.7800000000002, "end": 1277.7800000000002, "text": " ."}, {"id": 744, "start": 1307.78, "end": 1308.78, "text": " Yes."}, {"id": 745, "start": 1308.78, "end": 1309.78, "text": " Okay."}, {"id": 746, "start": 1309.78, "end": 1312.82, "text": " So, you should be at the connections tab, right?"}, {"id": 747, "start": 1312.82, "end": 1313.82, "text": " Yes, I am."}, {"id": 748, "start": 1313.82, "end": 1314.82, "text": " All right."}, {"id": 749, "start": 1314.82, "end": 1317.82, "text": " And in the LAN settings button below that, is there anything check marked?"}, {"id": 750, "start": 1317.82, "end": 1318.82, "text": " No."}, {"id": 751, "start": 1318.82, "end": 1321.82, "text": " Okay, you got zero check marks in there."}, {"id": 752, "start": 1321.82, "end": 1322.82, "text": " Right."}, {"id": 753, "start": 1322.82, "end": 1326.82, "text": " And when you go to these pages that you can't see, what error code does it give you"}, {"id": 754, "start": 1326.82, "end": 1327.82, "text": " back?"}, {"id": 755, "start": 1327.82, "end": 1331.82, "text": " Because there should be a number associated with the can't display this web page."}, {"id": 756, "start": 1331.82, "end": 1336.78, "text": " All it says is Internet Explorer cannot display the web page."}, {"id": 757, "start": 1336.78, "end": 1340.82, "text": " What you can try, diagnose connection problems, and more information."}, {"id": 758, "start": 1340.82, "end": 1344.82, "text": " And no three-digit code, usually starting with a five in there somewhere?"}, {"id": 759, "start": 1344.82, "end": 1345.82, "text": " No code."}, {"id": 760, "start": 1345.82, "end": 1346.82, "text": " Okay."}, {"id": 761, "start": 1346.82, "end": 1347.82, "text": " Well, that's pretty interesting."}, {"id": 762, "start": 1347.82, "end": 1352.82, "text": " I would say that your first thing that we're going to start with is it's going to end up"}, {"id": 763, "start": 1352.82, "end": 1354.82, "text": " being like an antivirus issue."}, {"id": 764, "start": 1354.82, "end": 1358.82, "text": " Now, you have the paid version of Avast, right?"}, {"id": 765, "start": 1358.82, "end": 1359.82, "text": " Yes."}, {"id": 766, "start": 1359.82, "end": 1364.82, "text": " And is it the suite with the Internet security built into it also?"}, {"id": 767, "start": 1364.82, "end": 1367.86, "text": " Geez, I think so."}, {"id": 768, "start": 1367.86, "end": 1368.86, "text": " Okay."}, {"id": 769, "start": 1368.86, "end": 1369.86, "text": " It's the one for $19.95 a year."}, {"id": 770, "start": 1369.86, "end": 1372.86, "text": " I thought it was cheap enough, so I went ahead and did the paid version."}, {"id": 771, "start": 1372.86, "end": 1374.86, "text": " It is cheap enough, that's for sure."}, {"id": 772, "start": 1374.86, "end": 1379.86, "text": " But I think that that's probably where your problem is going to lie here."}, {"id": 773, "start": 1379.86, "end": 1383.86, "text": " And unfortunately, just disabling the antivirus won't give us an accurate test."}, {"id": 774, "start": 1383.86, "end": 1388.86, "text": " The only way to really get an accurate test to see if that's interfering with you browsing"}, {"id": 775, "start": 1388.86, "end": 1391.86, "text": " web pages is to uninstall the antivirus and then try it."}, {"id": 776, "start": 1391.86, "end": 1393.86, "text": " So, if that's the case."}, {"id": 777, "start": 1393.8600000000001, "end": 1395.9, "text": " If that's the case, here's what I would suggest."}, {"id": 778, "start": 1395.9, "end": 1399.9, "text": " Uninstall the antivirus because you still have your key file that you downloaded from"}, {"id": 779, "start": 1399.9, "end": 1400.9, "text": " Avast, right?"}, {"id": 780, "start": 1400.9, "end": 1401.9, "text": " I hope so."}, {"id": 781, "start": 1401.9, "end": 1404.9, "text": " And they sent it to you in email, so hopefully you still have it."}, {"id": 782, "start": 1404.9, "end": 1405.9, "text": " Yeah."}, {"id": 783, "start": 1405.9, "end": 1406.9, "text": " And so, uninstall Avast."}, {"id": 784, "start": 1406.9, "end": 1408.9, "text": " Make sure you have your key first."}, {"id": 785, "start": 1408.9, "end": 1412.9, "text": " And then reboot the machine and see if you can browse."}, {"id": 786, "start": 1412.9, "end": 1416.9, "text": " If you can, then go ahead and reinstall Avast and it should work."}, {"id": 787, "start": 1416.9, "end": 1420.9, "text": " What probably happened is one of the recent updates may have broken the compatibility"}, {"id": 788, "start": 1420.9, "end": 1422.9, "text": " between them and reinstalling the antivirus won't work."}, {"id": 789, "start": 1422.9, "end": 1424.94, "text": " And reinstalling the antivirus will fix it."}, {"id": 790, "start": 1424.94, "end": 1425.94, "text": " Okay."}, {"id": 791, "start": 1425.94, "end": 1427.94, "text": " So, give that a shot and let me know what happens."}, {"id": 792, "start": 1427.94, "end": 1428.94, "text": " Okay."}, {"id": 793, "start": 1428.94, "end": 1429.94, "text": " All right."}, {"id": 794, "start": 1429.94, "end": 1430.94, "text": " I appreciate the call."}, {"id": 795, "start": 1430.94, "end": 1431.94, "text": " Uh-huh."}, {"id": 796, "start": 1431.94, "end": 1432.94, "text": " Bye."}, {"id": 797, "start": 1432.94, "end": 1433.94, "text": " Real quick, I got to tell you."}, {"id": 798, "start": 1433.94, "end": 1434.94, "text": " You know, this whole Charlie Sheen thing going on."}, {"id": 799, "start": 1434.94, "end": 1438.02, "text": " For those people who are tired of hearing about Charlie Sheen, there's actually something"}, {"id": 800, "start": 1438.02, "end": 1439.02, "text": " out there for you."}, {"id": 801, "start": 1439.02, "end": 1444.02, "text": " If you're using Chrome or Firefox, there's a plug-in you can download and put it in there."}, {"id": 802, "start": 1444.02, "end": 1447.94, "text": " And it will effectively block Charlie Sheen from any search results."}, {"id": 803, "start": 1447.94, "end": 1450.94, "text": " If it brings, you know, if it brings..."}, {"id": 804, "start": 1450.94, "end": 1451.94, "text": " If Wikipedia comes up."}, {"id": 805, "start": 1451.94, "end": 1455.98, "text": " If you use Wikipedia Charlie Sheen, it blocks out his name, his picture, everything."}, {"id": 806, "start": 1455.98, "end": 1457.98, "text": " You could just put minus Charlie Sheen."}, {"id": 807, "start": 1457.98, "end": 1458.98, "text": " I understand that."}, {"id": 808, "start": 1458.98, "end": 1464.94, "text": " But this actually was developed by a guy who also made the, what is that, the shaved Bieber,"}, {"id": 809, "start": 1464.94, "end": 1468.98, "text": " which is the same thing to get rid of blocking, you know, Bieber fever thing."}, {"id": 810, "start": 1468.98, "end": 1470.98, "text": " And then the X blocker."}, {"id": 811, "start": 1470.98, "end": 1471.98, "text": " So, it's pretty cool."}, {"id": 812, "start": 1471.98, "end": 1472.98, "text": " I mean, I would never use it."}, {"id": 813, "start": 1472.98, "end": 1474.98, "text": " You guys got too much time on your hands."}, {"id": 814, "start": 1474.98, "end": 1475.98, "text": " Yeah."}, {"id": 815, "start": 1475.98, "end": 1478.98, "text": " Oh, well, we had somebody with an iPad topic, I think."}, {"id": 816, "start": 1478.98, "end": 1479.98, "text": " Oh, we lost him?"}, {"id": 817, "start": 1479.98, "end": 1480.98, "text": " He's gone."}, {"id": 818, "start": 1480.98, "end": 1482.02, "text": " Oh, he's gone."}, {"id": 819, "start": 1482.02, "end": 1483.02, "text": " Yeah, he's gone."}, {"id": 820, "start": 1483.02, "end": 1484.02, "text": " He's gone."}, {"id": 821, "start": 1484.02, "end": 1485.02, "text": " He's gone."}, {"id": 822, "start": 1485.02, "end": 1486.02, "text": " So, we won't answer that call."}, {"id": 823, "start": 1486.02, "end": 1487.02, "text": " Call back."}, {"id": 824, "start": 1487.02, "end": 1488.02, "text": " He had a question that I remember because he actually asked me the question."}, {"id": 825, "start": 1488.02, "end": 1489.02, "text": " I was like, I have no idea."}, {"id": 826, "start": 1489.02, "end": 1490.02, "text": " Go for it."}, {"id": 827, "start": 1490.02, "end": 1491.02, "text": " What is the question?"}, {"id": 828, "start": 1491.02, "end": 1494.02, "text": " He was wondering if you can use, if the iPad had the same capabilities as a phone, like"}, {"id": 829, "start": 1494.02, "end": 1495.02, "text": " you could actually make phone calls on it."}, {"id": 830, "start": 1495.02, "end": 1496.02, "text": " Oh, wow."}, {"id": 831, "start": 1496.02, "end": 1498.02, "text": " Well, there are hacks to make that work."}, {"id": 832, "start": 1498.02, "end": 1499.02, "text": " Or services."}, {"id": 833, "start": 1499.02, "end": 1500.02, "text": " And some services, right?"}, {"id": 834, "start": 1500.02, "end": 1501.02, "text": " Or you can use FaceTime."}, {"id": 835, "start": 1501.02, "end": 1502.02, "text": " Or you can use FaceTime or Skype."}, {"id": 836, "start": 1502.02, "end": 1503.02, "text": " Or Skype."}, {"id": 837, "start": 1503.02, "end": 1504.02, "text": " That's what I said."}, {"id": 838, "start": 1504.02, "end": 1505.02, "text": " Services would be Skype."}, {"id": 839, "start": 1505.02, "end": 1506.02, "text": " So, yeah, sort of."}, {"id": 840, "start": 1506.02, "end": 1507.02, "text": " Yeah."}, {"id": 841, "start": 1507.02, "end": 1508.02, "text": " Can you effectively use it as a cell phone?"}, {"id": 842, "start": 1508.02, "end": 1509.02, "text": " Probably not."}, {"id": 843, "start": 1509.02, "end": 1510.02, "text": " Not really."}, {"id": 844, "start": 1510.02, "end": 1511.02, "text": " No, no."}, {"id": 845, "start": 1511.02, "end": 1514.02, "text": " But if you want to use it in conjunction with a cell phone, yes, it will definitely do it."}, {"id": 846, "start": 1514.02, "end": 1515.02, "text": " In conjunction?"}, {"id": 847, "start": 1515.02, "end": 1516.02, "text": " Whatever."}, {"id": 848, "start": 1516.02, "end": 1517.02, "text": " Okay."}, {"id": 849, "start": 1517.02, "end": 1518.02, "text": " Stop correcting me."}, {"id": 850, "start": 1518.02, "end": 1519.02, "text": " You need to start speaking properly."}, {"id": 851, "start": 1519.02, "end": 1520.02, "text": " I'll just stop speaking."}, {"id": 852, "start": 1520.02, "end": 1521.02, "text": " I like that option."}, {"id": 853, "start": 1521.02, "end": 1522.02, "text": " Why you?"}, {"id": 854, "start": 1522.02, "end": 1523.02, "text": " You've got to talk good."}, {"id": 855, "start": 1523.02, "end": 1524.02, "text": " Talk good."}, {"id": 856, "start": 1524.02, "end": 1525.02, "text": " If you'd like to be a part of the show, 751-1041."}, {"id": 857, "start": 1525.02, "end": 1526.02, "text": " We'd love to talk with you."}, {"id": 858, "start": 1526.02, "end": 1527.02, "text": " Thank you."}, {"id": 859, "start": 1527.02, "end": 1528.02, "text": " Bye."}, {"id": 860, "start": 1528.02, "end": 1529.02, "text": " Bye."}, {"id": 861, "start": 1529.02, "end": 1530.02, "text": " Bye."}, {"id": 862, "start": 1530.02, "end": 1531.02, "text": " Bye."}, {"id": 863, "start": 1531.02, "end": 1532.02, "text": " Bye."}, {"id": 864, "start": 1532.02, "end": 1533.02, "text": " Bye."}, {"id": 865, "start": 1533.02, "end": 1534.02, "text": " Bye."}, {"id": 866, "start": 1534.02, "end": 1535.02, "text": " Bye."}, {"id": 867, "start": 1535.02, "end": 1536.02, "text": " Bye."}, {"id": 868, "start": 1536.02, "end": 1537.02, "text": " Bye."}, {"id": 869, "start": 1537.02, "end": 1538.02, "text": " Bye."}, {"id": 870, "start": 1539.02, "end": 1540.02, "text": " Bye."}, {"id": 871, "start": 1540.02, "end": 1541.02, "text": " What else is going on in the news today?"}, {"id": 872, "start": 1541.02, "end": 1542.02, "text": " I don't know."}, {"id": 873, "start": 1542.02, "end": 1543.02, "text": " Tell me what's going on."}, {"id": 874, "start": 1543.02, "end": 1544.02, "text": " All right, so"}, {"id": 875, "start": 1544.02, "end": 1545.02, "text": " Apple, Apple, Apple."}, {"id": 876, "start": 1545.02, "end": 1546.02, "text": " That's all I know about Apple."}, {"id": 877, "start": 1546.02, "end": 1547.02, "text": " Yep."}, {"id": 878, "start": 1547.02, "end": 1548.02, "text": " Lots of Apple."}, {"id": 879, "start": 1548.02, "end": 1549.02, "text": " Right."}, {"id": 880, "start": 1549.02, "end": 1550.02, "text": " And, of course, you know, now there's a bunch of head-to-head comparisons between"}, {"id": 881, "start": 1550.02, "end": 1554.02, "text": " the Motorola Zoom, you know, now that more people can get their hands directly on them"}, {"id": 882, "start": 1554.02, "end": 1555.22, "text": " and compare the two."}, {"id": 883, "start": 1555.22, "end": 1557.4, "text": " And the Zoom still stacks up pretty well."}, {"id": 884, "start": 1557.4, "end": 1558.48, "text": " I don't know."}, {"id": 885, "start": 1558.48, "end": 1560.84, "text": " I think these guys are all too late to the game."}, {"id": 886, "start": 1560.84, "end": 1561.84, "text": " You think so?"}, {"id": 887, "start": 1561.84, "end": 1562.84, "text": " They're way too late to the party."}, {"id": 888, "start": 1562.84, "end": 1563.84, "text": " I don't think so."}, {"id": 889, "start": 1563.84, "end": 1567.02, "text": " Okay, man, Zoom, the cheapest one you can buy is what, seven or a hundred bucks?"}, {"id": 890, "start": 1567.02, "end": 1568.02, "text": " Right."}, {"id": 891, "start": 1568.02, "end": 1570.24, "text": " How is anybody even going to think about buying one of those?"}, {"id": 892, "start": 1571.34, "end": 1571.96, "text": " Come on."}, {"id": 893, "start": 1572.06, "end": 1572.34, "text": " Seriously."}, {"id": 894, "start": 1572.52, "end": 1574.92, "text": " You think that there's already a bunch of them sold."}, {"id": 895, "start": 1576.0, "end": 1576.44, "text": " A bunch?"}, {"id": 896, "start": 1576.76, "end": 1582.76, "text": " Okay, Apple predictably sold, they released the numbers, 500,000 iPads 2s yesterday."}, {"id": 897, "start": 1583.3799999999999, "end": 1584.2, "text": " 500,000."}, {"id": 898, "start": 1584.36, "end": 1587.08, "text": " That's 200,000 more than they did the opening day last year."}, {"id": 899, "start": 1587.46, "end": 1590.46, "text": " And that was only because they didn't have enough."}, {"id": 900, "start": 1590.54, "end": 1591.2, "text": " Right, right, right."}, {"id": 901, "start": 1591.2, "end": 1596.24, "text": " I bet you the Zune, I mean, I don't even look at the numbers, but I bet you the Zune has sold less than 100,000 in total."}, {"id": 902, "start": 1596.24, "end": 1600.18, "text": " There is no way that they're, you can even call them competitive."}, {"id": 903, "start": 1600.56, "end": 1601.24, "text": " You think so, huh?"}, {"id": 904, "start": 1601.24, "end": 1601.56, "text": " Yeah."}, {"id": 905, "start": 1602.18, "end": 1604.08, "text": " All right, so here's something we can talk about."}, {"id": 906, "start": 1604.18, "end": 1607.24, "text": " You hear a lot about the post-PC era."}, {"id": 907, "start": 1607.7, "end": 1608.02, "text": " Right."}, {"id": 908, "start": 1608.22, "end": 1610.44, "text": " Right, like the PC is dead."}, {"id": 909, "start": 1611.32, "end": 1612.5, "text": " And I disagree."}, {"id": 910, "start": 1612.86, "end": 1613.32, "text": " Oh, yeah."}, {"id": 911, "start": 1613.64, "end": 1617.14, "text": " All right, I don't think that it's, you know, a lot of people are being like, yeah, PCs are so passe."}, {"id": 912, "start": 1617.84, "end": 1619.78, "text": " All right, it's all about tablets now."}, {"id": 913, "start": 1619.92, "end": 1620.32, "text": " Right, right."}, {"id": 914, "start": 1620.32, "end": 1624.34, "text": " And the thing is, is that what's going to happen is that the tablets, as they get more powerful and more complex,"}, {"id": 915, "start": 1624.34, "end": 1626.0, "text": " are just going to absorb the roles."}, {"id": 916, "start": 1626.0, "end": 1627.22, "text": " That's what the PCs currently hold."}, {"id": 917, "start": 1627.96, "end": 1630.9, "text": " All right, like, for instance, on the iPad, too, and you can do movie editing."}, {"id": 918, "start": 1631.7, "end": 1631.82, "text": " Right."}, {"id": 919, "start": 1632.34, "end": 1632.74, "text": " Right."}, {"id": 920, "start": 1632.94, "end": 1635.44, "text": " All right, so it's absorbing that role."}, {"id": 921, "start": 1636.04, "end": 1641.16, "text": " And at some point, the tablets will just become the PCs."}, {"id": 922, "start": 1641.44, "end": 1645.38, "text": " They'll be different PCs, but they're still personal computers."}, {"id": 923, "start": 1646.3, "end": 1646.36, "text": " All right."}, {"id": 924, "start": 1646.36, "end": 1647.52, "text": " Well, by definition, yes."}, {"id": 925, "start": 1647.92, "end": 1653.84, "text": " And so I don't like the notion, right, that the tablets are going to replace your desktop because they're not."}, {"id": 926, "start": 1653.84, "end": 1653.88, "text": " Right."}, {"id": 927, "start": 1654.1, "end": 1654.3, "text": " Right."}, {"id": 928, "start": 1654.3, "end": 1655.98, "text": " Although that phone that plugs in."}, {"id": 929, "start": 1656.0, "end": 1658.36, "text": " To the monitor and keyboard is pretty darn cool."}, {"id": 930, "start": 1658.36, "end": 1659.72, "text": " Yeah, you know, I've seen the advertisement."}, {"id": 931, "start": 1660.06, "end": 1661.12, "text": " That was a Motorola or something."}, {"id": 932, "start": 1661.28, "end": 1662.02, "text": " I've seen the advertisement."}, {"id": 933, "start": 1662.22, "end": 1664.82, "text": " I'm like, but really, how good does that work?"}, {"id": 934, "start": 1665.02, "end": 1665.26, "text": " I mean."}, {"id": 935, "start": 1665.34, "end": 1669.4, "text": " Well, I mean, if they can stick a dual-core processor in one of these, it's better than a netbook."}, {"id": 936, "start": 1669.76, "end": 1671.48, "text": " Well, yeah, you know, that's what really bugs me."}, {"id": 937, "start": 1671.52, "end": 1675.44, "text": " I hear some other tech shows that I listen to throughout the week, you know, and try and tell people,"}, {"id": 938, "start": 1675.58, "end": 1678.42, "text": " well, why don't you just save your money and spend $200 on a netbook?"}, {"id": 939, "start": 1678.6, "end": 1679.86, "text": " I'm like, because I want it to work."}, {"id": 940, "start": 1680.26, "end": 1684.72, "text": " I mean, netbooks, in my opinion, in my professional opinion, and we've been messing with them for years,"}, {"id": 941, "start": 1685.08, "end": 1685.82, "text": " are absolute garbage."}, {"id": 942, "start": 1686.84, "end": 1687.54, "text": " Some of them, man."}, {"id": 943, "start": 1687.6, "end": 1691.22, "text": " Yeah, I mean, you know, they're like, well, you can get a netbook with 120 gigs."}, {"id": 944, "start": 1691.38, "end": 1693.56, "text": " Yeah, but you can't do anything with 120 gigs."}, {"id": 945, "start": 1694.2, "end": 1695.92, "text": " I mean, they're just, to me, not very effective."}, {"id": 946, "start": 1696.16, "end": 1697.68, "text": " Well, like the netbook I have, right?"}, {"id": 947, "start": 1697.74, "end": 1699.92, "text": " It's a Dell 13, right?"}, {"id": 948, "start": 1699.94, "end": 1700.6, "text": " That's a netbook."}, {"id": 949, "start": 1700.68, "end": 1700.96, "text": " Right."}, {"id": 950, "start": 1701.08, "end": 1702.72, "text": " Right, because it doesn't have a CD-ROM drive."}, {"id": 951, "start": 1703.04, "end": 1704.7, "text": " Technically, yeah, I guess that is considered a netbook."}, {"id": 952, "start": 1704.7, "end": 1709.12, "text": " And it's sort of in between the laptop and standard netbook."}, {"id": 953, "start": 1709.6, "end": 1712.22, "text": " I don't classify that one as a netbook."}, {"id": 954, "start": 1712.36, "end": 1712.94, "text": " It is, though."}, {"id": 955, "start": 1712.94, "end": 1714.5, "text": " It has a full 15.4-inch screen."}, {"id": 956, "start": 1714.86, "end": 1715.88, "text": " The only thing that it's lacking."}, {"id": 957, "start": 1716.0, "end": 1717.04, "text": " The only thing that it's lacking is a CD drive."}, {"id": 958, "start": 1717.62, "end": 1717.86, "text": " Right."}, {"id": 959, "start": 1718.24, "end": 1720.16, "text": " And it's a non-removable battery."}, {"id": 960, "start": 1720.2, "end": 1725.12, "text": " I mean, in that case, the first netbook was available 20 years ago, then, because they didn't have CD drives 20 years ago."}, {"id": 961, "start": 1725.7, "end": 1726.24, "text": " So, I mean."}, {"id": 962, "start": 1726.32, "end": 1727.48, "text": " That is not a valid argument."}, {"id": 963, "start": 1727.66, "end": 1729.02, "text": " Well, I mean, that's your argument."}, {"id": 964, "start": 1729.14, "end": 1731.06, "text": " You're saying because it doesn't have a CD drive, it's a netbook."}, {"id": 965, "start": 1731.16, "end": 1733.78, "text": " By today's standards, it is a netbook."}, {"id": 966, "start": 1733.84, "end": 1734.4, "text": " Oh, okay."}, {"id": 967, "start": 1735.38, "end": 1736.38, "text": " 20 years ago."}, {"id": 968, "start": 1736.4, "end": 1736.9, "text": " Well, whatever."}, {"id": 969, "start": 1737.0, "end": 1737.74, "text": " You know what I mean."}, {"id": 970, "start": 1738.24, "end": 1738.56, "text": " Gosh."}, {"id": 971, "start": 1738.78, "end": 1740.72, "text": " That means that your car is a netbook."}, {"id": 972, "start": 1740.96, "end": 1741.98, "text": " It doesn't have a CD-ROM."}, {"id": 973, "start": 1741.98, "end": 1742.88, "text": " My car has a CD-ROM."}, {"id": 974, "start": 1743.28, "end": 1743.96, "text": " It does."}, {"id": 975, "start": 1744.6, "end": 1745.44, "text": " You don't know."}, {"id": 976, "start": 1745.44, "end": 1745.88, "text": " Oh, yes."}, {"id": 977, "start": 1746.0, "end": 1746.34, "text": " Okay."}, {"id": 978, "start": 1746.48, "end": 1746.98, "text": " Just checking."}, {"id": 979, "start": 1747.06, "end": 1747.82, "text": " I'm talking about my car."}, {"id": 980, "start": 1748.94, "end": 1750.48, "text": " Does that make my car a netbook?"}, {"id": 981, "start": 1750.7, "end": 1753.84, "text": " No, your car is a Commodore 64."}, {"id": 982, "start": 1754.42, "end": 1755.78, "text": " I don't even know what that means."}, {"id": 983, "start": 1756.12, "end": 1756.48, "text": " Exactly."}, {"id": 984, "start": 1758.14, "end": 1758.9, "text": " You know what?"}, {"id": 985, "start": 1759.32, "end": 1764.08, "text": " One of these days, Crystal, you're going to have to put on a fundraiser for PBS for you."}, {"id": 986, "start": 1764.78, "end": 1766.44, "text": " So I can get a new top for my car?"}, {"id": 987, "start": 1766.44, "end": 1770.48, "text": " My Crystal, something to make her car look like a car."}, {"id": 988, "start": 1770.54, "end": 1772.96, "text": " Although, in the summertime, I'm sure it's great because it's a commercial."}, {"id": 989, "start": 1773.28, "end": 1773.86, "text": " Oh, well, look."}, {"id": 990, "start": 1773.86, "end": 1774.42, "text": " It's down right now."}, {"id": 991, "start": 1774.6, "end": 1774.64, "text": " I know."}, {"id": 992, "start": 1774.78, "end": 1775.1, "text": " I saw it."}, {"id": 993, "start": 1775.12, "end": 1775.44, "text": " My car looks so good."}, {"id": 994, "start": 1775.44, "end": 1775.98, "text": " My car looks so good."}, {"id": 995, "start": 1775.98, "end": 1777.64, "text": " It looks so much better when the top's down."}, {"id": 996, "start": 1777.8600000000001, "end": 1779.1, "text": " It doesn't look ghetto at all."}, {"id": 997, "start": 1779.82, "end": 1780.7, "text": " It just looks old."}, {"id": 998, "start": 1780.72, "end": 1783.72, "text": " In the winter, her car sort of looks like a Fred Flintstone mobile."}, {"id": 999, "start": 1783.96, "end": 1784.28, "text": " Oh."}, {"id": 1000, "start": 1784.54, "end": 1788.66, "text": " It's got the ragged top on there."}, {"id": 1001, "start": 1789.58, "end": 1792.3, "text": " I'm missing the back window, and there's a giant hole in the side."}, {"id": 1002, "start": 1793.6, "end": 1793.96, "text": " Wow."}, {"id": 1003, "start": 1794.64, "end": 1797.2, "text": " She's got her feet down under there, making the car go."}, {"id": 1004, "start": 1797.3, "end": 1800.56, "text": " We should have Captain Kirk start a fundraiser for her."}, {"id": 1005, "start": 1800.66, "end": 1800.98, "text": " Yes."}, {"id": 1006, "start": 1801.16, "end": 1802.38, "text": " Yeah, the Hello Crystal."}, {"id": 1007, "start": 1802.52, "end": 1803.18, "text": " Hello Crystal."}, {"id": 1008, "start": 1803.44, "end": 1804.72, "text": " Yeah, he can start your fundraiser."}, {"id": 1009, "start": 1804.72, "end": 1805.74, "text": " It's been a while since we've heard from him."}, {"id": 1010, "start": 1805.74, "end": 1807.56, "text": " It could be the Hello Crystal fundraiser."}, {"id": 1011, "start": 1807.7, "end": 1808.24, "text": " There you go."}, {"id": 1012, "start": 1808.72, "end": 1809.18, "text": " That's right."}, {"id": 1013, "start": 1809.78, "end": 1812.56, "text": " So, if you want to be a part of the show, 751-1041."}, {"id": 1014, "start": 1812.82, "end": 1813.56, "text": " We'll take a quick break."}, {"id": 1015, "start": 1813.98, "end": 1817.1, "text": " And when we get back from that, well, we're going to talk about some different stuff because"}, {"id": 1016, "start": 1817.1, "end": 1818.64, "text": " I'm kind of burnt out on the Apple stuff already."}, {"id": 1017, "start": 1818.7, "end": 1819.32, "text": " Yeah, me too."}, {"id": 1018, "start": 1819.5, "end": 1819.84, "text": " All right."}, {"id": 1019, "start": 1819.88, "end": 1822.94, "text": " This is the Computer Guru Show on 104.1 The Truth, Tucson's New Stock FM."}, {"id": 1020, "start": 1822.94, "end": 1823.06, "text": " We'll be right back."}, {"id": 1021, "start": 1823.06, "end": 1823.1200000000001, "text": " We'll be right back."}, {"id": 1022, "start": 1823.1200000000001, "end": 1823.14, "text": " We'll be right back."}, {"id": 1023, "start": 1823.14, "end": 1823.24, "text": " We'll be right back."}, {"id": 1024, "start": 1823.24, "end": 1823.32, "text": " We'll be right back."}, {"id": 1025, "start": 1823.32, "end": 1823.34, "text": " We'll be right back."}, {"id": 1026, "start": 1823.34, "end": 1823.38, "text": " We'll be right back."}, {"id": 1027, "start": 1823.38, "end": 1823.4, "text": " We'll be right back."}, {"id": 1028, "start": 1823.4, "end": 1823.42, "text": " We'll be right back."}, {"id": 1029, "start": 1823.42, "end": 1823.44, "text": " We'll be right back."}, {"id": 1030, "start": 1823.44, "end": 1823.48, "text": " We'll be right back."}, {"id": 1031, "start": 1823.48, "end": 1823.52, "text": " We'll be right back."}, {"id": 1032, "start": 1835.74, "end": 1842.4, "text": " Welcome back to the Computer Guru Show."}, {"id": 1033, "start": 1842.44, "end": 1842.9, "text": " My name is Mike."}, {"id": 1034, "start": 1842.94, "end": 1845.6, "text": " Here to deal with your technology needs and treat you like a real person in the process,"}, {"id": 1035, "start": 1845.74, "end": 1848.06, "text": " give us a call, 751-1041."}, {"id": 1036, "start": 1849.02, "end": 1850.82, "text": " 751-1041."}, {"id": 1037, "start": 1852.32, "end": 1855.88, "text": " So, did you hear that USB 3.0 and ESAT and all that stuff is old news?"}, {"id": 1038, "start": 1856.34, "end": 1856.72, "text": " Oh, really?"}, {"id": 1039, "start": 1856.82, "end": 1857.9, "text": " Yeah, it's going away."}, {"id": 1040, "start": 1858.02, "end": 1858.98, "text": " Yeah, what's the new stuff?"}, {"id": 1041, "start": 1859.72, "end": 1860.36, "text": " What is it?"}, {"id": 1042, "start": 1860.88, "end": 1861.2, "text": " Thunderbolt."}, {"id": 1043, "start": 1861.74, "end": 1862.26, "text": " Thunderbolt, huh?"}, {"id": 1044, "start": 1862.28, "end": 1862.52, "text": " Yes."}, {"id": 1045, "start": 1862.7, "end": 1864.46, "text": " I love that name."}, {"id": 1046, "start": 1865.52, "end": 1865.72, "text": " I love that name."}, {"id": 1047, "start": 1865.74, "end": 1867.16, "text": " Was it named by a six-year-old?"}, {"id": 1048, "start": 1867.26, "end": 1867.5, "text": " Come on."}, {"id": 1049, "start": 1868.14, "end": 1868.5, "text": " Apparently."}, {"id": 1050, "start": 1868.82, "end": 1870.24, "text": " This is Intel's technology."}, {"id": 1051, "start": 1870.44, "end": 1870.8, "text": " Oh, okay."}, {"id": 1052, "start": 1870.86, "end": 1872.16, "text": " So, it was named by a six-year-old."}, {"id": 1053, "start": 1872.18, "end": 1872.24, "text": " Oh."}, {"id": 1054, "start": 1872.76, "end": 1873.3, "text": " All right."}, {"id": 1055, "start": 1874.54, "end": 1881.22, "text": " Yeah, so apparently it's supposed to be really, really fast, and it's going to make the 3.0"}, {"id": 1056, "start": 1881.22, "end": 1883.08, "text": " outdated as far as EM as well."}, {"id": 1057, "start": 1883.1200000000001, "end": 1884.66, "text": " It never really caught on anyway."}, {"id": 1058, "start": 1884.86, "end": 1885.16, "text": " Yeah."}, {"id": 1059, "start": 1885.22, "end": 1885.76, "text": " I'm just saying."}, {"id": 1060, "start": 1885.88, "end": 1886.36, "text": " Yeah, I know."}, {"id": 1061, "start": 1886.64, "end": 1888.54, "text": " All right, let's take some phone calls here."}, {"id": 1062, "start": 1888.96, "end": 1890.3, "text": " First, let's talk to you, Alan."}, {"id": 1063, "start": 1890.4, "end": 1890.8, "text": " Hello, Alan."}, {"id": 1064, "start": 1892.44, "end": 1892.8, "text": " Hello."}, {"id": 1065, "start": 1893.06, "end": 1893.58, "text": " Hello there."}, {"id": 1066, "start": 1894.84, "end": 1895.52, "text": " You're on the radio."}, {"id": 1067, "start": 1895.52, "end": 1895.6200000000001, "text": " You're on the radio."}, {"id": 1068, "start": 1895.74, "end": 1895.98, "text": " Talk."}, {"id": 1069, "start": 1896.74, "end": 1897.1, "text": " Okay."}, {"id": 1070, "start": 1897.36, "end": 1898.08, "text": " How's it going, Alan?"}, {"id": 1071, "start": 1898.22, "end": 1899.86, "text": " Well, you guys broke up, though."}, {"id": 1072, "start": 1899.94, "end": 1900.4, "text": " I mean..."}, {"id": 1073, "start": 1900.4, "end": 1901.52, "text": " Oh, we broke up."}, {"id": 1074, "start": 1901.58, "end": 1901.8, "text": " Right."}, {"id": 1075, "start": 1902.02, "end": 1902.44, "text": " Uh-huh."}, {"id": 1076, "start": 1902.58, "end": 1902.9, "text": " Yeah."}, {"id": 1077, "start": 1903.14, "end": 1903.9, "text": " Okay, go ahead."}, {"id": 1078, "start": 1904.3, "end": 1906.82, "text": " What's it make my car that has an 8-track player in it?"}, {"id": 1079, "start": 1908.02, "end": 1908.38, "text": " Well..."}, {"id": 1080, "start": 1908.38, "end": 1909.52, "text": " You know what?"}, {"id": 1081, "start": 1909.56, "end": 1911.2, "text": " I was just making fun of that earlier."}, {"id": 1082, "start": 1911.32, "end": 1912.76, "text": " Yeah, he probably does have an 8-track player."}, {"id": 1083, "start": 1912.76, "end": 1916.1200000000001, "text": " Yeah, well, I was telling Chris over here that they used to make cars years ago with"}, {"id": 1084, "start": 1916.1200000000001, "end": 1917.1, "text": " record players in them."}, {"id": 1085, "start": 1917.78, "end": 1919.46, "text": " Well, if you look hard enough."}, {"id": 1086, "start": 1921.2, "end": 1922.76, "text": " So, what are you calling about today, Alan?"}, {"id": 1087, "start": 1923.1, "end": 1925.72, "text": " He just wants to be, you know, trolled about how old he is."}, {"id": 1088, "start": 1925.74, "end": 1926.46, "text": " Oh, is he trolling?"}, {"id": 1089, "start": 1926.6, "end": 1926.78, "text": " Yeah."}, {"id": 1090, "start": 1927.06, "end": 1927.28, "text": " Oh."}, {"id": 1091, "start": 1927.76, "end": 1928.78, "text": " Thanks for trolling, Alan."}, {"id": 1092, "start": 1930.5, "end": 1931.42, "text": " See you next week."}, {"id": 1093, "start": 1931.94, "end": 1932.04, "text": " Bye."}, {"id": 1094, "start": 1933.1200000000001, "end": 1936.3, "text": " For you guys who don't know, Alan comes down to the shop and volunteers with us."}, {"id": 1095, "start": 1936.56, "end": 1937.52, "text": " So, he's a good guy."}, {"id": 1096, "start": 1937.98, "end": 1940.86, "text": " Yeah, and the guys are always, you know, teasing him about how old he is."}, {"id": 1097, "start": 1940.94, "end": 1941.66, "text": " Call him the old man."}, {"id": 1098, "start": 1941.86, "end": 1942.08, "text": " Right."}, {"id": 1099, "start": 1942.2, "end": 1947.0, "text": " They'll ask him, you know, stuff like, when the wheel was invented, how did you..."}, {"id": 1100, "start": 1947.0, "end": 1948.32, "text": " Before that, how did you guys get around?"}, {"id": 1101, "start": 1950.02, "end": 1950.92, "text": " Alan's a lot of fun, though."}, {"id": 1102, "start": 1950.92, "end": 1951.32, "text": " Yeah, he is."}, {"id": 1103, "start": 1951.38, "end": 1952.0, "text": " Let's talk to Bill."}, {"id": 1104, "start": 1952.16, "end": 1952.5, "text": " Hey, Bill."}, {"id": 1105, "start": 1954.18, "end": 1955.06, "text": " Bill, are you present?"}, {"id": 1106, "start": 1955.74, "end": 1956.68, "text": " Yes, Bill is here."}, {"id": 1107, "start": 1956.74, "end": 1957.5, "text": " How may I help you?"}, {"id": 1108, "start": 1958.18, "end": 1958.78, "text": " Yes, sir."}, {"id": 1109, "start": 1958.78, "end": 1969.6200000000001, "text": " I have a desktop Windows 7 64-bit, and I'm unable to use the Adobe Flash because there's"}, {"id": 1110, "start": 1969.6200000000001, "end": 1973.26, "text": " nothing yet ready or handy, the 64-bit, that I know of."}, {"id": 1111, "start": 1973.82, "end": 1976.8, "text": " So, I tried it on installing Mozilla."}, {"id": 1112, "start": 1977.32, "end": 1977.84, "text": " Right."}, {"id": 1113, "start": 1977.98, "end": 1978.44, "text": " Is that right?"}, {"id": 1114, "start": 1979.14, "end": 1980.48, "text": " And it still doesn't work."}, {"id": 1115, "start": 1980.9, "end": 1983.02, "text": " Right, because the 64-bit Flash has got some issues."}, {"id": 1116, "start": 1983.9, "end": 1984.1, "text": " Yeah."}, {"id": 1117, "start": 1984.1, "end": 1984.18, "text": " Oh, yeah."}, {"id": 1118, "start": 1984.18, "end": 1984.2, "text": " Yeah."}, {"id": 1119, "start": 1984.2, "end": 1984.24, "text": " Oh, yeah."}, {"id": 1120, "start": 1984.24, "end": 1984.3, "text": " Oh, yeah."}, {"id": 1121, "start": 1984.3, "end": 1984.36, "text": " Oh, yeah."}, {"id": 1122, "start": 1984.36, "end": 1984.38, "text": " Oh, yeah."}, {"id": 1123, "start": 1984.38, "end": 1984.4, "text": " Oh, yeah."}, {"id": 1124, "start": 1984.4, "end": 1984.42, "text": " Oh, yeah."}, {"id": 1125, "start": 1984.42, "end": 1984.44, "text": " Oh, yeah."}, {"id": 1126, "start": 1984.44, "end": 1984.46, "text": " Oh, yeah."}, {"id": 1127, "start": 1984.46, "end": 1984.48, "text": " Oh, yeah."}, {"id": 1128, "start": 1984.48, "end": 1984.5, "text": " Oh, yeah."}, {"id": 1129, "start": 1984.5, "end": 1984.52, "text": " Oh, yeah."}, {"id": 1130, "start": 1984.52, "end": 1984.56, "text": " Oh, yeah."}, {"id": 1131, "start": 1984.56, "end": 1984.6200000000001, "text": " Oh, yeah."}, {"id": 1132, "start": 1984.6200000000001, "end": 1984.64, "text": " Oh, yeah."}, {"id": 1133, "start": 1984.64, "end": 1984.68, "text": " Oh, yeah."}, {"id": 1134, "start": 1984.68, "end": 1984.9, "text": " Oh, yeah."}, {"id": 1135, "start": 1984.9, "end": 1987.0600000000002, "text": " Run the 32-bit version of Internet Explorer."}, {"id": 1136, "start": 1988.8600000000001, "end": 1990.64, "text": " Ah, okay."}, {"id": 1137, "start": 1990.8200000000002, "end": 1993.74, "text": " Which will allow you to install the 32-bit version of Flash."}, {"id": 1138, "start": 1994.5400000000002, "end": 1994.9, "text": " Okay."}, {"id": 1139, "start": 1994.96, "end": 1999.3600000000001, "text": " How do I get to that 32-bit of Internet Explorer?"}, {"id": 1140, "start": 1999.6200000000001, "end": 2002.1000000000001, "text": " Click on Start in All Programs, and it'll be in the list."}, {"id": 1141, "start": 2002.5800000000002, "end": 2004.14, "text": " It'll say Internet Explorer 32-bit."}, {"id": 1142, "start": 2005.1000000000001, "end": 2005.5400000000002, "text": " All right."}, {"id": 1143, "start": 2005.8400000000001, "end": 2006.0600000000002, "text": " Yeah?"}, {"id": 1144, "start": 2006.7800000000002, "end": 2007.14, "text": " Yeah."}, {"id": 1145, "start": 2007.18, "end": 2007.94, "text": " I'll give it a shot."}, {"id": 1146, "start": 2008.0800000000002, "end": 2009.22, "text": " The simple ones are always fun."}, {"id": 1147, "start": 2009.22, "end": 2009.76, "text": " I love that."}, {"id": 1148, "start": 2009.8200000000002, "end": 2010.0, "text": " Yeah."}, {"id": 1149, "start": 2010.5600000000002, "end": 2010.92, "text": " Yeah."}, {"id": 1150, "start": 2011.22, "end": 2012.22, "text": " Love the ones that can solve."}, {"id": 1151, "start": 2012.3600000000001, "end": 2013.6000000000001, "text": " But I'll certainly give it a shot."}, {"id": 1152, "start": 2013.6000000000001, "end": 2013.8600000000001, "text": " All right."}, {"id": 1153, "start": 2013.92, "end": 2014.3200000000002, "text": " Give it a shot."}, {"id": 1154, "start": 2014.38, "end": 2014.44, "text": " Give it a shot."}, {"id": 1155, "start": 2014.44, "end": 2014.48, "text": " Give it a shot."}, {"id": 1156, "start": 2014.48, "end": 2014.5, "text": " Give it a shot."}, {"id": 1157, "start": 2014.5, "end": 2014.5400000000002, "text": " Give it a shot."}, {"id": 1158, "start": 2014.5400000000002, "end": 2014.6000000000001, "text": " Give it a shot."}, {"id": 1159, "start": 2014.6000000000001, "end": 2014.6200000000001, "text": " Give it a shot."}, {"id": 1160, "start": 2014.6200000000001, "end": 2014.64, "text": " Give it a shot."}, {"id": 1161, "start": 2014.64, "end": 2014.88, "text": " Give it a shot."}, {"id": 1162, "start": 2014.88, "end": 2015.4, "text": " It works out for you."}, {"id": 1163, "start": 2015.88, "end": 2016.14, "text": " Okay."}, {"id": 1164, "start": 2016.24, "end": 2016.72, "text": " Thank you, guys."}, {"id": 1165, "start": 2016.7600000000002, "end": 2016.92, "text": " All right."}, {"id": 1166, "start": 2016.94, "end": 2017.3200000000002, "text": " Thank you."}, {"id": 1167, "start": 2018.1200000000001, "end": 2018.4, "text": " Yep."}, {"id": 1168, "start": 2018.42, "end": 2023.5200000000002, "text": " Luckily, if you have a 64-bit operating system, you have seven."}, {"id": 1169, "start": 2023.7, "end": 2025.3400000000001, "text": " Microsoft actually thought ahead on this."}, {"id": 1170, "start": 2025.3600000000001, "end": 2025.5200000000002, "text": " Right."}, {"id": 1171, "start": 2025.5600000000002, "end": 2029.48, "text": " They said, well, not everything's going to work in 64-bit, so let's give them the option"}, {"id": 1172, "start": 2029.48, "end": 2031.0400000000002, "text": " to run the 32-bit version also."}, {"id": 1173, "start": 2031.7, "end": 2038.3000000000002, "text": " So, if you're having issues with the 64-bit version of Flash, which some people do, the"}, {"id": 1174, "start": 2038.3000000000002, "end": 2042.1200000000001, "text": " way to get around it is, well, run the 32-bit version browser."}, {"id": 1175, "start": 2043.0800000000002, "end": 2044.1200000000001, "text": " Now, actually..."}, {"id": 1176, "start": 2044.1200000000001, "end": 2046.92, "text": " It comes down to it, that's all Adobe's fault."}, {"id": 1177, "start": 2047.48, "end": 2047.8200000000002, "text": " Yes."}, {"id": 1178, "start": 2048.08, "end": 2049.1, "text": " It's always Adobe's fault."}, {"id": 1179, "start": 2049.3, "end": 2051.04, "text": " Well, and a lot of times it is."}, {"id": 1180, "start": 2051.04, "end": 2053.06, "text": " And in this case, it's definitely their fault."}, {"id": 1181, "start": 2053.7200000000003, "end": 2058.94, "text": " It's their problem that their particular, you know, add-in for Internet Explorer does"}, {"id": 1182, "start": 2058.94, "end": 2060.76, "text": " not work under 64-bit properly."}, {"id": 1183, "start": 2061.2400000000002, "end": 2062.42, "text": " In some cases, it works fine."}, {"id": 1184, "start": 2062.78, "end": 2062.92, "text": " Right?"}, {"id": 1185, "start": 2062.98, "end": 2066.04, "text": " We've seen machines that we've put it on there, and it works beautifully."}, {"id": 1186, "start": 2066.62, "end": 2070.7200000000003, "text": " A lot of people have problems with the 64-bit side of things as far as Flash is concerned."}, {"id": 1187, "start": 2071.34, "end": 2074.1, "text": " And Adobe needs to get off their butt and fix it, is really what it comes down to."}, {"id": 1188, "start": 2074.1, "end": 2076.64, "text": " It's been like that for, like, five months."}, {"id": 1189, "start": 2077.1, "end": 2077.44, "text": " Oh, yeah."}, {"id": 1190, "start": 2077.58, "end": 2081.02, "text": " So, they need to sort of get on that and resolve the problem."}, {"id": 1191, "start": 2081.48, "end": 2084.02, "text": " Because, to me, it doesn't seem like a terribly difficult fix."}, {"id": 1192, "start": 2084.3199999999997, "end": 2085.7, "text": " But, you know, I'm no developer."}, {"id": 1193, "start": 2085.9, "end": 2088.06, "text": " Well, yeah, we don't know what all is involved in that."}, {"id": 1194, "start": 2088.24, "end": 2091.3199999999997, "text": " But, yeah, a lot of people don't understand, though, all these little problems that you"}, {"id": 1195, "start": 2091.3199999999997, "end": 2092.52, "text": " might, you know, like years ago with Vista."}, {"id": 1196, "start": 2092.66, "end": 2094.1, "text": " You know, my printers won't work with Vista."}, {"id": 1197, "start": 2094.56, "end": 2096.2999999999997, "text": " You know, those aren't Microsoft issues."}, {"id": 1198, "start": 2096.46, "end": 2098.04, "text": " Those aren't issues that Microsoft created."}, {"id": 1199, "start": 2098.38, "end": 2102.96, "text": " Those are problems that Hewlett-Packard or Lexmart or whoever decided not to address."}, {"id": 1200, "start": 2103.2999999999997, "end": 2103.5, "text": " Right."}, {"id": 1201, "start": 2103.5, "end": 2103.98, "text": " So."}, {"id": 1202, "start": 2104.1, "end": 2106.44, "text": " So, it's laziness on the part of the peripheral."}, {"id": 1203, "start": 2106.7599999999998, "end": 2106.88, "text": " Right."}, {"id": 1204, "start": 2106.94, "end": 2107.18, "text": " Exactly."}, {"id": 1205, "start": 2107.6, "end": 2107.7799999999997, "text": " All right."}, {"id": 1206, "start": 2107.86, "end": 2109.5, "text": " So, let's talk about Crazy for a second."}, {"id": 1207, "start": 2109.7599999999998, "end": 2109.94, "text": " Okay."}, {"id": 1208, "start": 2110.02, "end": 2110.38, "text": " Crazy who?"}, {"id": 1209, "start": 2110.44, "end": 2110.7799999999997, "text": " Charlie Sheen?"}, {"id": 1210, "start": 2110.96, "end": 2112.04, "text": " No, no, no."}, {"id": 1211, "start": 2112.18, "end": 2112.8199999999997, "text": " Not Crazy."}, {"id": 1212, "start": 2113.38, "end": 2114.2, "text": " Oh, she was ready."}, {"id": 1213, "start": 2114.2799999999997, "end": 2114.9, "text": " She missed it."}, {"id": 1214, "start": 2115.06, "end": 2116.36, "text": " Oh, she wasn't fast enough."}, {"id": 1215, "start": 2116.68, "end": 2117.0, "text": " Go ahead."}, {"id": 1216, "start": 2117.48, "end": 2118.06, "text": " But she's working."}, {"id": 1217, "start": 2118.36, "end": 2118.5, "text": " All right."}, {"id": 1218, "start": 2118.62, "end": 2126.12, "text": " So, SETI has released an app for your phone to help, you know, so you can help them search"}, {"id": 1219, "start": 2126.12, "end": 2126.64, "text": " for aliens."}, {"id": 1220, "start": 2127.04, "end": 2127.8399999999997, "text": " Search for aliens."}, {"id": 1221, "start": 2127.94, "end": 2129.08, "text": " So, it is Charlie Sheen."}, {"id": 1222, "start": 2130.02, "end": 2130.7999999999997, "text": " There you go."}, {"id": 1223, "start": 2130.8199999999997, "end": 2131.06, "text": " Yeah."}, {"id": 1224, "start": 2131.06, "end": 2131.8399999999997, "text": " So, she's on it now."}, {"id": 1225, "start": 2131.8399999999997, "end": 2132.14, "text": " Yeah."}, {"id": 1226, "start": 2132.98, "end": 2134.08, "text": " So, that's not really the question."}, {"id": 1227, "start": 2134.1, "end": 2134.44, "text": " That's not really the crazy part."}, {"id": 1228, "start": 2134.52, "end": 2136.18, "text": " The SETI part really isn't the crazy part."}, {"id": 1229, "start": 2136.2799999999997, "end": 2136.6, "text": " All right."}, {"id": 1230, "start": 2136.7, "end": 2136.96, "text": " All right."}, {"id": 1231, "start": 2137.0, "end": 2137.16, "text": " Because."}, {"id": 1232, "start": 2137.2799999999997, "end": 2137.7599999999998, "text": " That's not crazy?"}, {"id": 1233, "start": 2137.88, "end": 2139.94, "text": " Sure, looking for aliens is a little bit crazy."}, {"id": 1234, "start": 2140.38, "end": 2140.74, "text": " All right."}, {"id": 1235, "start": 2140.98, "end": 2143.22, "text": " Or a little bit fun, depending on how you look at it."}, {"id": 1236, "start": 2143.2799999999997, "end": 2144.2, "text": " Or crazy."}, {"id": 1237, "start": 2145.14, "end": 2152.24, "text": " So, if you, the crazy part to me is, why would you install an app on your phone that's going"}, {"id": 1238, "start": 2152.24, "end": 2154.72, "text": " to further decrease your battery life?"}, {"id": 1239, "start": 2155.06, "end": 2157.88, "text": " Well, you know, that's just like the app Crystal was talking about a couple weeks ago about"}, {"id": 1240, "start": 2157.88, "end": 2158.64, "text": " fighting ghosts."}, {"id": 1241, "start": 2158.88, "end": 2161.4, "text": " Are you making fun of my ghost hunting app?"}, {"id": 1242, "start": 2161.4, "end": 2161.66, "text": " Yeah."}, {"id": 1243, "start": 2161.74, "end": 2161.9, "text": " See?"}, {"id": 1244, "start": 2161.9, "end": 2166.0, "text": " It has an EMF detector on it."}, {"id": 1245, "start": 2166.02, "end": 2166.3, "text": " Yeah."}, {"id": 1246, "start": 2166.42, "end": 2166.6600000000003, "text": " See?"}, {"id": 1247, "start": 2167.04, "end": 2168.46, "text": " Has a ghost box."}, {"id": 1248, "start": 2168.76, "end": 2169.1600000000003, "text": " Crazy."}, {"id": 1249, "start": 2169.36, "end": 2169.6600000000003, "text": " Winning."}, {"id": 1250, "start": 2169.84, "end": 2170.02, "text": " Yeah."}, {"id": 1251, "start": 2170.02, "end": 2170.56, "text": " She's winning."}, {"id": 1252, "start": 2171.7400000000002, "end": 2172.84, "text": " I am winning."}, {"id": 1253, "start": 2173.1, "end": 2174.82, "text": " Oh, wow."}, {"id": 1254, "start": 2175.1600000000003, "end": 2175.32, "text": " Yeah."}, {"id": 1255, "start": 2175.38, "end": 2176.3, "text": " Donna's both over there, too."}, {"id": 1256, "start": 2176.5, "end": 2176.7400000000002, "text": " Yeah."}, {"id": 1257, "start": 2177.8, "end": 2178.94, "text": " She's a little nuts."}, {"id": 1258, "start": 2179.1600000000003, "end": 2179.54, "text": " All right."}, {"id": 1259, "start": 2179.64, "end": 2183.14, "text": " So, 751-1041 if you want to be part of the show."}, {"id": 1260, "start": 2184.1600000000003, "end": 2184.82, "text": " Oh, man."}, {"id": 1261, "start": 2185.0, "end": 2187.92, "text": " That's, I mean, the SETI thing is kind of cool."}, {"id": 1262, "start": 2188.2000000000003, "end": 2190.48, "text": " And I'll tell you what I like about it."}, {"id": 1263, "start": 2190.48, "end": 2191.6800000000003, "text": " I like the premise."}, {"id": 1264, "start": 2191.9, "end": 2193.6, "text": " I like the premise of the shared computing, right?"}, {"id": 1265, "start": 2193.78, "end": 2198.04, "text": " As far as the bunches of computers all teaming together to..."}, {"id": 1266, "start": 2198.04, "end": 2198.8, "text": " To do one thing."}, {"id": 1267, "start": 2198.84, "end": 2199.48, "text": " To do one thing."}, {"id": 1268, "start": 2199.52, "end": 2199.6800000000003, "text": " Right."}, {"id": 1269, "start": 2199.7000000000003, "end": 2203.8, "text": " To process little bits of the information and become, in effect, the world's largest supercomputer."}, {"id": 1270, "start": 2203.92, "end": 2205.32, "text": " Well, like that screensaver that I use."}, {"id": 1271, "start": 2205.6600000000003, "end": 2206.4, "text": " You use it, too."}, {"id": 1272, "start": 2206.62, "end": 2206.76, "text": " Yeah."}, {"id": 1273, "start": 2206.98, "end": 2207.1600000000003, "text": " Yeah."}, {"id": 1274, "start": 2207.2400000000002, "end": 2209.06, "text": " So, I mean, it's actually really cool."}, {"id": 1275, "start": 2209.36, "end": 2211.6, "text": " And, you know, PlayStation is even doing it now, too."}, {"id": 1276, "start": 2211.78, "end": 2215.1600000000003, "text": " So, we can actually use your PlayStation when it's not in use to do other things."}, {"id": 1277, "start": 2215.2400000000002, "end": 2215.4, "text": " Right."}, {"id": 1278, "start": 2215.42, "end": 2216.44, "text": " It's called Electric Sheep."}, {"id": 1279, "start": 2216.9, "end": 2217.88, "text": " Well, that's the screensaver."}, {"id": 1280, "start": 2217.98, "end": 2218.08, "text": " Yeah."}, {"id": 1281, "start": 2218.08, "end": 2218.2200000000003, "text": " Right."}, {"id": 1282, "start": 2218.2200000000003, "end": 2221.48, "text": " And what it does is it generates fractals, and then they all share."}, {"id": 1283, "start": 2221.9, "end": 2222.5, "text": " It's kind of interesting."}, {"id": 1284, "start": 2222.56, "end": 2226.5, "text": " Until you've seen fractals actually imaged, oh, yes, they're beautiful."}, {"id": 1285, "start": 2226.86, "end": 2229.84, "text": " So, I like the idea of the shared computing platform."}, {"id": 1286, "start": 2229.84, "end": 2229.96, "text": " Right."}, {"id": 1287, "start": 2230.14, "end": 2232.0, "text": " I mean, I think that's very cool."}, {"id": 1288, "start": 2232.36, "end": 2233.36, "text": " It's the way of the future, I think."}, {"id": 1289, "start": 2233.36, "end": 2241.8, "text": " I don't necessarily know that spending the extra cycles on SETI is really the way to effectively use those."}, {"id": 1290, "start": 2241.88, "end": 2242.14, "text": " Right."}, {"id": 1291, "start": 2242.14, "end": 2248.38, "text": " There's a couple of others out there where you can also use your computer to team up to cure cancer."}, {"id": 1292, "start": 2248.6, "end": 2250.08, "text": " See, now, that's a good use."}, {"id": 1293, "start": 2250.08, "end": 2251.2200000000003, "text": " That one I'm in on for."}, {"id": 1294, "start": 2251.4, "end": 2251.56, "text": " Right."}, {"id": 1295, "start": 2251.6800000000003, "end": 2251.82, "text": " Yes."}, {"id": 1296, "start": 2251.82, "end": 2251.84, "text": " Yes."}, {"id": 1297, "start": 2251.9, "end": 2252.6, "text": " That's pretty cool."}, {"id": 1298, "start": 2253.02, "end": 2257.2200000000003, "text": " And a lot of the newer ones are now utilizing unused GPU cycles."}, {"id": 1299, "start": 2257.76, "end": 2259.26, "text": " So, they're much, much faster."}, {"id": 1300, "start": 2259.3, "end": 2259.54, "text": " Wow."}, {"id": 1301, "start": 2259.58, "end": 2260.6800000000003, "text": " They're using GPU as well."}, {"id": 1302, "start": 2260.76, "end": 2261.0, "text": " Right."}, {"id": 1303, "start": 2261.06, "end": 2261.58, "text": " That's nice."}, {"id": 1304, "start": 2261.58, "end": 2266.26, "text": " So, if you're interested in that type of stuff, I'll add some of that stuff to the website so you guys can see some of that."}, {"id": 1305, "start": 2266.7000000000003, "end": 2268.02, "text": " It's very cool stuff."}, {"id": 1306, "start": 2268.5, "end": 2271.04, "text": " And especially if you're one of those people who leaves your computer on all the time,"}, {"id": 1307, "start": 2271.84, "end": 2274.84, "text": " then while your computer is having downtime, while you're not in front of it,"}, {"id": 1308, "start": 2274.96, "end": 2280.06, "text": " whenever the screensaver is active, it's going to participate in whatever project you decide to use."}, {"id": 1309, "start": 2280.14, "end": 2280.32, "text": " Right."}, {"id": 1310, "start": 2280.62, "end": 2280.82, "text": " Right."}, {"id": 1311, "start": 2280.88, "end": 2281.88, "text": " So, there's one."}, {"id": 1312, "start": 2281.9, "end": 2282.5, "text": " There's one for the fight to cure cancer."}, {"id": 1313, "start": 2282.7000000000003, "end": 2284.82, "text": " There's one for the fight to cure AIDS."}, {"id": 1314, "start": 2285.0, "end": 2286.46, "text": " There's SETI, of course."}, {"id": 1315, "start": 2287.1600000000003, "end": 2289.28, "text": " I'm sure there's something for ghost hunters out there."}, {"id": 1316, "start": 2289.4, "end": 2290.52, "text": " I mean, that would just be ridiculous."}, {"id": 1317, "start": 2290.8, "end": 2292.7200000000003, "text": " You know, you don't even know."}, {"id": 1318, "start": 2292.88, "end": 2293.44, "text": " You can't."}, {"id": 1319, "start": 2293.6, "end": 2297.26, "text": " You don't know about ghost hunting and ghosts and you're just being mean."}, {"id": 1320, "start": 2297.44, "end": 2299.26, "text": " I don't necessarily need to know about ghost hunting."}, {"id": 1321, "start": 2299.7000000000003, "end": 2301.02, "text": " You've got to have a belief in it first, right?"}, {"id": 1322, "start": 2302.06, "end": 2305.64, "text": " Well, just because you don't believe in something doesn't make it not real."}, {"id": 1323, "start": 2305.92, "end": 2306.08, "text": " Wait."}, {"id": 1324, "start": 2308.92, "end": 2310.36, "text": " That came out totally wrong."}, {"id": 1325, "start": 2310.36, "end": 2311.4, "text": " Very nice."}, {"id": 1326, "start": 2311.52, "end": 2311.88, "text": " Very nice."}, {"id": 1327, "start": 2312.5, "end": 2314.84, "text": " 7-5-1-1-0-4-1 if you want to be part of the show."}, {"id": 1328, "start": 2315.56, "end": 2317.44, "text": " So, we did our first class last week."}, {"id": 1329, "start": 2317.5, "end": 2318.92, "text": " We did do the first class last week."}, {"id": 1330, "start": 2318.96, "end": 2319.8, "text": " I think it was pretty epic."}, {"id": 1331, "start": 2320.04, "end": 2320.46, "text": " It was."}, {"id": 1332, "start": 2320.46, "end": 2320.92, "text": " It was winning."}, {"id": 1333, "start": 2321.1, "end": 2321.84, "text": " It was epic winning."}, {"id": 1334, "start": 2321.94, "end": 2322.36, "text": " It was."}, {"id": 1335, "start": 2324.6600000000003, "end": 2325.6600000000003, "text": " So, it went really well."}, {"id": 1336, "start": 2325.76, "end": 2328.0, "text": " We got a lot of people showed up, a lot of good feedback."}, {"id": 1337, "start": 2328.6600000000003, "end": 2329.2000000000003, "text": " Some decent feedback."}, {"id": 1338, "start": 2329.3, "end": 2330.54, "text": " We're not doing that one this weekend."}, {"id": 1339, "start": 2330.62, "end": 2331.02, "text": " No, no."}, {"id": 1340, "start": 2331.5, "end": 2333.76, "text": " Mike decided to take a weekend off."}, {"id": 1341, "start": 2333.96, "end": 2335.2200000000003, "text": " Well, you know, it's daughter weekend."}, {"id": 1342, "start": 2335.4, "end": 2336.76, "text": " Yeah, well, that's a good excuse."}, {"id": 1343, "start": 2336.94, "end": 2337.4, "text": " That is actually a good excuse."}, {"id": 1344, "start": 2337.4, "end": 2338.44, "text": " Spend time with the daughter."}, {"id": 1345, "start": 2338.54, "end": 2338.78, "text": " Yes."}, {"id": 1346, "start": 2340.36, "end": 2340.76, "text": " So..."}, {"id": 1347, "start": 2340.76, "end": 2341.38, "text": " But next week."}, {"id": 1348, "start": 2341.38, "end": 2342.2200000000003, "text": " Next week, yes."}, {"id": 1349, "start": 2342.3, "end": 2342.46, "text": " Right."}, {"id": 1350, "start": 2342.52, "end": 2343.62, "text": " We're doing online safety."}, {"id": 1351, "start": 2344.08, "end": 2349.1800000000003, "text": " So, if you want to be safe online and know that you're safe online as far as how to purchase"}, {"id": 1352, "start": 2349.1800000000003, "end": 2356.5, "text": " things online, how to deal with online disputes, how to make sure that you're not giving your"}, {"id": 1353, "start": 2356.5, "end": 2359.04, "text": " information to people who shouldn't have it."}, {"id": 1354, "start": 2359.08, "end": 2359.42, "text": " Right."}, {"id": 1355, "start": 2359.56, "end": 2359.7400000000002, "text": " Right."}, {"id": 1356, "start": 2359.84, "end": 2360.9, "text": " So, all that type of stuff."}, {"id": 1357, "start": 2361.08, "end": 2365.46, "text": " So, we're going to make sure that you know how to recognize that you're safe online and"}, {"id": 1358, "start": 2365.46, "end": 2368.7200000000003, "text": " how to become safe if you're not doing it right."}, {"id": 1359, "start": 2369.12, "end": 2370.12, "text": " Yeah, absolutely."}, {"id": 1360, "start": 2370.12, "end": 2370.2200000000003, "text": " Absolutely."}, {"id": 1361, "start": 2370.54, "end": 2370.62, "text": " Yeah."}, {"id": 1362, "start": 2370.62, "end": 2370.78, "text": " Yeah."}, {"id": 1363, "start": 2370.78, "end": 2370.94, "text": " Yeah."}, {"id": 1364, "start": 2370.94, "end": 2370.98, "text": " Yeah."}, {"id": 1365, "start": 2370.98, "end": 2371.02, "text": " Yeah."}, {"id": 1366, "start": 2371.02, "end": 2371.08, "text": " Yeah."}, {"id": 1367, "start": 2371.08, "end": 2371.1800000000003, "text": " Yeah."}, {"id": 1368, "start": 2371.1800000000003, "end": 2371.36, "text": " Yeah."}, {"id": 1369, "start": 2371.38, "end": 2371.42, "text": " Yeah."}, {"id": 1370, "start": 2371.44, "end": 2371.52, "text": " Yeah."}, {"id": 1371, "start": 2371.52, "end": 2371.7000000000003, "text": " Yeah."}, {"id": 1372, "start": 2371.7000000000003, "end": 2371.7400000000002, "text": " Yeah."}, {"id": 1373, "start": 2371.7400000000002, "end": 2371.76, "text": " Yeah."}, {"id": 1374, "start": 2371.76, "end": 2371.84, "text": " Yeah."}, {"id": 1375, "start": 2372.2000000000003, "end": 2372.32, "text": " Yeah."}, {"id": 1376, "start": 2372.8, "end": 2373.1, "text": " Yeah."}, {"id": 1377, "start": 2373.1, "end": 2373.7000000000003, "text": " Just like we did last week."}, {"id": 1378, "start": 2373.7400000000002, "end": 2375.98, "text": " And we had people stick around for a good half hour, 45 minutes last week."}, {"id": 1379, "start": 2376.08, "end": 2376.2200000000003, "text": " Right."}, {"id": 1380, "start": 2376.56, "end": 2376.94, "text": " Right."}, {"id": 1381, "start": 2376.94, "end": 2378.88, "text": " Just talking, you know, asking general questions."}, {"id": 1382, "start": 2379.04, "end": 2379.1600000000003, "text": " Right."}, {"id": 1383, "start": 2379.26, "end": 2380.28, "text": " So, that's going to be next Saturday."}, {"id": 1384, "start": 2380.54, "end": 2387.4, "text": " And then the following Saturday after that and every Saturday henceforth is just going"}, {"id": 1385, "start": 2387.4, "end": 2389.36, "text": " to be open forum after the show."}, {"id": 1386, "start": 2389.8, "end": 2390.1400000000003, "text": " Oh, really?"}, {"id": 1387, "start": 2390.2200000000003, "end": 2390.46, "text": " Right."}, {"id": 1388, "start": 2390.52, "end": 2392.6600000000003, "text": " So, we're going to do open forum after the show."}, {"id": 1389, "start": 2393.2200000000003, "end": 2394.76, "text": " And those are going to be free."}, {"id": 1390, "start": 2395.2000000000003, "end": 2399.1800000000003, "text": " You can just come down after the show and hang out and we'll answer questions for, you"}, {"id": 1391, "start": 2399.1800000000003, "end": 2399.76, "text": " know, a couple hours."}, {"id": 1392, "start": 2399.9, "end": 2400.1800000000003, "text": " Okay."}, {"id": 1393, "start": 2400.42, "end": 2401.12, "text": " Until I get tired."}, {"id": 1394, "start": 2401.12, "end": 2401.2200000000003, "text": " Okay."}, {"id": 1395, "start": 2401.38, "end": 2404.34, "text": " I'm going to decide that I don't want to talk anymore, and I kick everybody out."}, {"id": 1396, "start": 2404.98, "end": 2405.08, "text": " No."}, {"id": 1397, "start": 2405.48, "end": 2410.8, "text": " And then we're going to do classes on Sundays after that to try to free up some time,"}, {"id": 1398, "start": 2411.04, "end": 2414.1600000000003, "text": " because some people have some scheduling conflicts with Saturdays, we realize."}, {"id": 1399, "start": 2414.48, "end": 2414.7400000000002, "text": " Right."}, {"id": 1400, "start": 2414.94, "end": 2419.88, "text": " So I want to make sure that we can be as flexible in the schedule as possible."}, {"id": 1401, "start": 2420.1800000000003, "end": 2420.54, "text": " Right."}, {"id": 1402, "start": 2420.54, "end": 2427.08, "text": " And then the goal is if we can fill up a couple of Sunday classes, we'll start offering midweek classes."}, {"id": 1403, "start": 2427.28, "end": 2429.6, "text": " So we'll want to know what your availability is."}, {"id": 1404, "start": 2429.6, "end": 2436.62, "text": " So if you have any interest in the radio stuff or the classroom stuff, send us an e-mail, radio at azcomputerguru.com,"}, {"id": 1405, "start": 2437.22, "end": 2438.56, "text": " and we'll get you on the list."}, {"id": 1406, "start": 2438.7999999999997, "end": 2439.24, "text": " It'll be fun."}, {"id": 1407, "start": 2439.86, "end": 2440.36, "text": " Very cool."}, {"id": 1408, "start": 2440.44, "end": 2441.64, "text": " You'll learn stuff."}, {"id": 1409, "start": 2441.92, "end": 2442.42, "text": " You'll be learned."}, {"id": 1410, "start": 2442.98, "end": 2443.24, "text": " Right."}, {"id": 1411, "start": 2443.42, "end": 2449.44, "text": " And we've got one scheduled for \u2013 it's not official on the books yet as far as I can."}, {"id": 1412, "start": 2449.5, "end": 2452.12, "text": " I haven't been able to cement it down with the people we'll be working with,"}, {"id": 1413, "start": 2452.16, "end": 2456.5, "text": " but we're going to do a child safety course, how to keep your kids safe online,"}, {"id": 1414, "start": 2456.64, "end": 2458.74, "text": " and actually show you how this stuff works."}, {"id": 1415, "start": 2459.06, "end": 2459.58, "text": " And, again,"}, {"id": 1416, "start": 2459.6, "end": 2462.0, "text": " show you the ways that kids try to circumvent them"}, {"id": 1417, "start": 2462.0, "end": 2465.52, "text": " and make sure that you understand what's going on with your kids online."}, {"id": 1418, "start": 2465.72, "end": 2466.2, "text": " That's really cool."}, {"id": 1419, "start": 2466.42, "end": 2468.98, "text": " So I'm going to see if I can get a hold of Jackie, actually, and have her come down, too."}, {"id": 1420, "start": 2469.16, "end": 2473.08, "text": " You know, we have a new apprentice down at the shop who's in the age bracket."}, {"id": 1421, "start": 2473.24, "end": 2476.08, "text": " He can show us some tricks on how he and his friends would get around it."}, {"id": 1422, "start": 2476.2599999999998, "end": 2477.56, "text": " Oh, well, that would be interesting."}, {"id": 1423, "start": 2477.66, "end": 2478.2799999999997, "text": " It would be interesting."}, {"id": 1424, "start": 2478.48, "end": 2479.3399999999997, "text": " Let's see how that goes."}, {"id": 1425, "start": 2479.66, "end": 2485.12, "text": " If you want to be part of the show, 751-1041, we'd love to talk with you and deal with your computer issues,"}, {"id": 1426, "start": 2485.54, "end": 2486.64, "text": " get you all straightened out."}, {"id": 1427, "start": 2486.98, "end": 2487.56, "text": " Stuff and things."}, {"id": 1428, "start": 2487.56, "end": 2489.56, "text": " We're closing out the first hour of the Computer Guru."}, {"id": 1429, "start": 2489.66, "end": 2494.44, "text": " But we'll be back right after the news to make sure that we can help you out with all of your technology needs"}, {"id": 1430, "start": 2494.44, "end": 2496.96, "text": " and make sure that you're treated like a human, a real person."}, {"id": 1431, "start": 2497.18, "end": 2497.58, "text": " Not a Cylon."}, {"id": 1432, "start": 2497.72, "end": 2498.56, "text": " I'm a real boy."}, {"id": 1433, "start": 2498.64, "end": 2499.1, "text": " Not a Cylon?"}, {"id": 1434, "start": 2499.5, "end": 2500.3199999999997, "text": " Not a Cylon."}, {"id": 1435, "start": 2500.56, "end": 2500.86, "text": " Yeah."}, {"id": 1436, "start": 2501.24, "end": 2502.6, "text": " Randall in this Battlestar Galactica."}, {"id": 1437, "start": 2502.7, "end": 2503.02, "text": " Oh, yeah."}, {"id": 1438, "start": 2503.38, "end": 2503.9, "text": " I'm hooked on it."}, {"id": 1439, "start": 2503.92, "end": 2504.18, "text": " All right."}, {"id": 1440, "start": 2504.2599999999998, "end": 2505.3399999999997, "text": " This is the Computer Guru Show."}, {"id": 1441, "start": 2505.52, "end": 2506.2599999999998, "text": " We'll be right back."}]} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2012-03-10-hr1/diarization.json b/projects/radio-show/audio-processor/test-data/transcripts/2012-03-10-hr1/diarization.json new file mode 100644 index 0000000..b16c1cd --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2012-03-10-hr1/diarization.json @@ -0,0 +1,123 @@ +{ + "num_speakers": 2, + "speaker_map": { + "HOST": "HOST", + "CALLER": "CALLER" + }, + "turns": [ + { + "speaker": "HOST", + "start": 0.0, + "end": 20.0, + "confidence": 0.88 + }, + { + "speaker": "CALLER", + "start": 15.0, + "end": 30.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 25.0, + "end": 430.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 425.0, + "end": 435.0, + "confidence": 0.83 + }, + { + "speaker": "HOST", + "start": 430.0, + "end": 715.0, + "confidence": 0.85 + }, + { + "speaker": "CALLER", + "start": 710.0, + "end": 720.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 715.0, + "end": 935.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 930.0, + "end": 945.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 940.0, + "end": 990.0, + "confidence": 0.93 + }, + { + "speaker": "CALLER", + "start": 985.0, + "end": 995.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 990.0, + "end": 1020.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 1015.0, + "end": 1030.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 1025.0, + "end": 2120.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 2115.0, + "end": 2125.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 2120.0, + "end": 2150.0, + "confidence": 0.94 + }, + { + "speaker": "CALLER", + "start": 2145.0, + "end": 2155.0, + "confidence": 0.78 + }, + { + "speaker": "HOST", + "start": 2150.0, + "end": 2295.0, + "confidence": 0.93 + }, + { + "speaker": "CALLER", + "start": 2290.0, + "end": 2300.0, + "confidence": 0.8 + }, + { + "speaker": "HOST", + "start": 2295.0, + "end": 2630.0, + "confidence": 0.97 + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2012-03-10-hr1/transcript.json b/projects/radio-show/audio-processor/test-data/transcripts/2012-03-10-hr1/transcript.json new file mode 100644 index 0000000..f56edb6 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2012-03-10-hr1/transcript.json @@ -0,0 +1 @@ +{"duration": 2633.508, "language": "en", "segments": [{"id": 1, "start": 0.0, "end": 4.68, "text": " From my heart and from my hand, why don't people understand my intention?"}, {"id": 2, "start": 5.38, "end": 6.44, "text": " Computer running slow?"}, {"id": 3, "start": 6.5200000000000005, "end": 6.86, "text": " I'm waiting."}, {"id": 4, "start": 7.2, "end": 7.82, "text": " Caught a virus?"}, {"id": 5, "start": 8.02, "end": 8.38, "text": " Yes!"}, {"id": 6, "start": 9.26, "end": 9.98, "text": " Wait, wait."}, {"id": 7, "start": 10.44, "end": 13.280000000000001, "text": " Does your computer seem to have a life of its own?"}, {"id": 8, "start": 13.72, "end": 14.32, "text": " Malfunction."}, {"id": 9, "start": 14.88, "end": 17.78, "text": " The computer guru is here."}, {"id": 10, "start": 17.86, "end": 19.1, "text": " My God, you're here!"}, {"id": 11, "start": 19.2, "end": 20.22, "text": " Call in now."}, {"id": 12, "start": 20.62, "end": 21.92, "text": " 751-1041."}, {"id": 13, "start": 22.240000000000002, "end": 24.080000000000002, "text": " That's 751-1041."}, {"id": 14, "start": 24.5, "end": 27.48, "text": " Now, it's Mike Swanson, your computer guru."}, {"id": 15, "start": 27.48, "end": 29.22, "text": " On 104.1 The Truth."}, {"id": 16, "start": 30.0, "end": 32.92, "text": " The News Talk FM."}, {"id": 17, "start": 37.68, "end": 39.36, "text": " Welcome to the Computer Guru Show."}, {"id": 18, "start": 39.44, "end": 39.96, "text": " My name's Mike."}, {"id": 19, "start": 40.0, "end": 43.14, "text": " Here to deal with your technology needs and treat you like a real person in the process."}, {"id": 20, "start": 43.480000000000004, "end": 46.1, "text": " 520-751-1041 if you'd like to be part of the show."}, {"id": 21, "start": 46.22, "end": 49.64, "text": " That's 520-751-1041."}, {"id": 22, "start": 50.519999999999996, "end": 52.980000000000004, "text": " Take care of whatever technology issues are ailing you today."}, {"id": 23, "start": 54.260000000000005, "end": 54.46, "text": " What?"}, {"id": 24, "start": 54.54, "end": 55.28, "text": " Don't look at me like that."}, {"id": 25, "start": 55.400000000000006, "end": 55.900000000000006, "text": " I didn't say nothing."}, {"id": 26, "start": 55.96, "end": 56.260000000000005, "text": " All right."}, {"id": 27, "start": 57.58, "end": 59.66, "text": " It's already been a contentious morning in the studio."}, {"id": 28, "start": 59.760000000000005, "end": 59.980000000000004, "text": " Don't look at me like that."}, {"id": 29, "start": 60.00000000000001, "end": 60.720000000000006, "text": " Don't look at me in that tone of voice."}, {"id": 30, "start": 60.84, "end": 61.720000000000006, "text": " Yeah, that sounds right."}, {"id": 31, "start": 63.18000000000001, "end": 64.86, "text": " There's fighting going on in here today."}, {"id": 32, "start": 65.4, "end": 65.94, "text": " All right."}, {"id": 33, "start": 66.04, "end": 67.18, "text": " So, uh..."}, {"id": 34, "start": 67.18, "end": 70.60000000000001, "text": " It's because we're all hyped up with this iPad juice."}, {"id": 35, "start": 70.82000000000001, "end": 71.24000000000001, "text": " Like, ew!"}, {"id": 36, "start": 71.60000000000001, "end": 72.54, "text": " Don't even get me started."}, {"id": 37, "start": 72.66, "end": 73.56, "text": " Did you just say iPad juice?"}, {"id": 38, "start": 73.60000000000001, "end": 74.34, "text": " Yes, iPad juice."}, {"id": 39, "start": 74.4, "end": 76.08000000000001, "text": " That's what all iPads should be reduced to."}, {"id": 40, "start": 76.82000000000001, "end": 77.18, "text": " Juice."}, {"id": 41, "start": 77.38000000000001, "end": 77.54, "text": " Yep."}, {"id": 42, "start": 78.24000000000001, "end": 79.16, "text": " Wait, wait, wait."}, {"id": 43, "start": 79.32000000000001, "end": 81.24000000000001, "text": " Because I know that you were talking about buying one."}, {"id": 44, "start": 81.58000000000001, "end": 82.52000000000001, "text": " The iPad 1."}, {"id": 45, "start": 82.62, "end": 83.86, "text": " Because now it's, uh..."}, {"id": 46, "start": 83.86, "end": 86.38000000000001, "text": " It should be pretty cheap now that there's a new iPad out on the market."}, {"id": 47, "start": 86.92, "end": 87.18, "text": " Okay."}, {"id": 48, "start": 87.56, "end": 88.02000000000001, "text": " You know what I mean?"}, {"id": 49, "start": 88.02000000000001, "end": 89.96000000000001, "text": " I mean, my only gripe with the iPads ever was,"}, {"id": 50, "start": 90.0, "end": 93.36, "text": " is that they're just not worth the $7 million that they try to charge for them"}, {"id": 51, "start": 93.36, "end": 94.68, "text": " when they first come out."}, {"id": 52, "start": 95.4, "end": 95.72, "text": " Okay."}, {"id": 53, "start": 96.36, "end": 97.56, "text": " And, uh..."}, {"id": 54, "start": 97.56, "end": 98.9, "text": " What are you basing that on?"}, {"id": 55, "start": 99.68, "end": 103.72, "text": " Well, I mean, there's equivalent tablets on the market that are way cheaper."}, {"id": 56, "start": 103.98, "end": 104.46000000000001, "text": " I'm sorry."}, {"id": 57, "start": 104.80000000000001, "end": 105.2, "text": " You know what?"}, {"id": 58, "start": 105.22, "end": 106.16, "text": " I play with a lot of tablets."}, {"id": 59, "start": 106.28, "end": 109.24000000000001, "text": " I have yet to mess with a tablet that's equivalent to the iPad."}, {"id": 60, "start": 109.48, "end": 109.78, "text": " I'm sorry."}, {"id": 61, "start": 109.9, "end": 112.18, "text": " I don't like Apple, but there's nothing equivalent to the iPad."}, {"id": 62, "start": 112.38000000000001, "end": 114.06, "text": " Well, that's because you're playing with all the other tablets"}, {"id": 63, "start": 114.06, "end": 115.2, "text": " while you're still wearing your fedora."}, {"id": 64, "start": 115.5, "end": 116.72, "text": " And you've got to take that off."}, {"id": 65, "start": 117.30000000000001, "end": 118.56, "text": " These things could be in the hipster."}, {"id": 66, "start": 118.74000000000001, "end": 119.56, "text": " Yep, pretty much."}, {"id": 67, "start": 119.98, "end": 122.08, "text": " Oh, man."}, {"id": 68, "start": 122.08, "end": 122.44, "text": " That's awesome."}, {"id": 69, "start": 122.52000000000001, "end": 125.12, "text": " We're using PC safe words by calling you hipster, not the other word."}, {"id": 70, "start": 127.08, "end": 128.22, "text": " That's just so wrong."}, {"id": 71, "start": 129.06, "end": 129.6, "text": " Oh, man."}, {"id": 72, "start": 129.68, "end": 131.20000000000002, "text": " Okay, so the iPad 3 is big news."}, {"id": 73, "start": 131.20000000000002, "end": 132.0, "text": " Yeah, big news."}, {"id": 74, "start": 132.08, "end": 134.14000000000001, "text": " Or the new iPad, or whatever they're calling it."}, {"id": 75, "start": 134.14000000000001, "end": 135.24, "text": " Yeah, you can't call it the iPad 3."}, {"id": 76, "start": 136.24, "end": 136.44, "text": " No?"}, {"id": 77, "start": 136.6, "end": 136.78, "text": " No."}, {"id": 78, "start": 136.86, "end": 138.18, "text": " It's technically not the iPad 3."}, {"id": 79, "start": 138.18, "end": 138.42000000000002, "text": " Yep."}, {"id": 80, "start": 138.84, "end": 140.02, "text": " All right, third generation iPad."}, {"id": 81, "start": 140.94, "end": 141.6, "text": " There you go."}, {"id": 82, "start": 143.5, "end": 147.14000000000001, "text": " All right, so what are the hippest features of this?"}, {"id": 83, "start": 147.26, "end": 148.24, "text": " I mean, it's a hipster thing."}, {"id": 84, "start": 148.48000000000002, "end": 149.96, "text": " The big thing has got to be this."}, {"id": 85, "start": 149.98, "end": 153.16, "text": " I mean, that's the one thing that stands out to me the most out of anything."}, {"id": 86, "start": 153.17999999999998, "end": 155.57999999999998, "text": " Well, everybody was expecting a higher-res screen."}, {"id": 87, "start": 156.54, "end": 160.51999999999998, "text": " But the way, I mean, how they did it and how high-res is absolutely amazing."}, {"id": 88, "start": 160.62, "end": 161.17999999999998, "text": " It really is."}, {"id": 89, "start": 161.64, "end": 167.35999999999999, "text": " I mean, it has four times the pixels that the iPad 2 has, which is absolutely incredible."}, {"id": 90, "start": 167.85999999999999, "end": 170.0, "text": " I think they said to get the same sort of resolution,"}, {"id": 91, "start": 170.22, "end": 173.66, "text": " you'd have to go to like a 27-inch high-def TV to get the same sort of resolution."}, {"id": 92, "start": 173.66, "end": 177.26, "text": " They were even saying that the iPad has more pixels in it as far as density goes"}, {"id": 93, "start": 177.26, "end": 178.64, "text": " than most high-definition televisions."}, {"id": 94, "start": 178.64, "end": 179.95999999999998, "text": " As far as density goes."}, {"id": 95, "start": 179.98, "end": 180.38, "text": " As far as density goes, yes."}, {"id": 96, "start": 180.73999999999998, "end": 184.2, "text": " And the technology that they used to make this happen is absolutely amazing."}, {"id": 97, "start": 184.2, "end": 187.34, "text": " I saw a video on it, and I just couldn't believe it."}, {"id": 98, "start": 187.89999999999998, "end": 191.76, "text": " Okay, so you know when you get the electrical devices too close to each other,"}, {"id": 99, "start": 191.88, "end": 194.33999999999997, "text": " you get cross-interference, right?"}, {"id": 100, "start": 194.57999999999998, "end": 194.94, "text": " Right."}, {"id": 101, "start": 195.01999999999998, "end": 195.6, "text": " A lot of times."}, {"id": 102, "start": 195.98, "end": 199.76, "text": " Well, the same thing would happen if you try to pack so many pixels into one small area,"}, {"id": 103, "start": 199.82, "end": 202.67999999999998, "text": " you get cross-interference, especially on the board."}, {"id": 104, "start": 203.22, "end": 207.33999999999997, "text": " So what they had to do is they actually had to raise the LEDs themselves up off the board."}, {"id": 105, "start": 209.14, "end": 209.83999999999997, "text": " You know, so they're, I mean,"}, {"id": 106, "start": 209.98000000000002, "end": 211.60000000000002, "text": " it's minuscule, you probably can't see it,"}, {"id": 107, "start": 211.70000000000002, "end": 215.3, "text": " but they're actually raised up off the board so you don't get that cross-interference"}, {"id": 108, "start": 215.3, "end": 217.38000000000002, "text": " so they can jam more pixels into the board."}, {"id": 109, "start": 217.48000000000002, "end": 221.68, "text": " So is that why the new iPad is actually a fraction thicker than the old iPad?"}, {"id": 110, "start": 221.68, "end": 222.78000000000003, "text": " Than the iPad 2, yes."}, {"id": 111, "start": 222.78000000000003, "end": 227.84000000000003, "text": " I think it's about, it's still smaller than the iPad 1, but it is thicker than the iPad 2."}, {"id": 112, "start": 228.22000000000003, "end": 230.24, "text": " Well, I mean, you've got to have extra battery in there."}, {"id": 113, "start": 230.36, "end": 233.12, "text": " You've got, you know, lots of extra graphics in there."}, {"id": 114, "start": 233.24, "end": 233.42000000000002, "text": " Right."}, {"id": 115, "start": 233.70000000000002, "end": 239.84000000000003, "text": " So, I mean, like I said, the only real thing that really shocked people about the new iPad is, well, the 4G."}, {"id": 116, "start": 240.16000000000003, "end": 241.4, "text": " I mean, that shocked a lot of people."}, {"id": 117, "start": 241.44000000000003, "end": 243.60000000000002, "text": " I mean, the GPU in there is pretty awesome."}, {"id": 118, "start": 243.70000000000002, "end": 247.54000000000002, "text": " They're saying it might be the same one that Sony used in the PlayStation Vita."}, {"id": 119, "start": 247.68, "end": 247.86, "text": " Yeah."}, {"id": 120, "start": 247.96, "end": 249.18, "text": " It's a quad-core GPU."}, {"id": 121, "start": 249.4, "end": 249.66000000000003, "text": " Right."}, {"id": 122, "start": 249.74, "end": 251.06000000000003, "text": " Which is amazing in a handheld device."}, {"id": 123, "start": 251.06000000000003, "end": 253.56000000000003, "text": " You know, we've actually heard a lot of misquotes this last couple of days."}, {"id": 124, "start": 253.64000000000001, "end": 255.06000000000003, "text": " Some people were saying it had a quad-core processor."}, {"id": 125, "start": 255.8, "end": 256.44, "text": " It does not."}, {"id": 126, "start": 256.56, "end": 257.28000000000003, "text": " It's a dual-core."}, {"id": 127, "start": 258.14000000000004, "end": 261.52000000000004, "text": " And a quad-core graphics processor, or GPU."}, {"id": 128, "start": 262.16, "end": 262.3, "text": " Okay."}, {"id": 129, "start": 262.6, "end": 264.22, "text": " So, either way, there is a quad-core processor."}, {"id": 130, "start": 264.22, "end": 265.66, "text": " There is a quad-core of some nature in there, yes."}, {"id": 131, "start": 265.66, "end": 269.58000000000004, "text": " I mean, it still astounds me that, like, these new devices that are coming out of a dual-core processor,"}, {"id": 132, "start": 269.58, "end": 272.74, "text": " that's faster than, like, many computers that people are still using today."}, {"id": 133, "start": 272.82, "end": 273.03999999999996, "text": " Right."}, {"id": 134, "start": 273.58, "end": 273.94, "text": " Most."}, {"id": 135, "start": 274.24, "end": 274.46, "text": " Yeah."}, {"id": 136, "start": 274.9, "end": 278.21999999999997, "text": " Like, the dual-core in there is probably faster than the laptop I'm using right now."}, {"id": 137, "start": 278.34, "end": 278.96, "text": " I mean, don't get me wrong."}, {"id": 138, "start": 278.96, "end": 282.78, "text": " I can appreciate a display that is gorgeous, right?"}, {"id": 139, "start": 283.26, "end": 286.26, "text": " The problem is, is I think that you start packing the pixels in there like that,"}, {"id": 140, "start": 286.58, "end": 288.52, "text": " and then you look at most people, right?"}, {"id": 141, "start": 288.59999999999997, "end": 290.91999999999996, "text": " Or they're like, I've got to put my glasses on to see anything."}, {"id": 142, "start": 291.0, "end": 293.46, "text": " And even still, they've got the thing, like, four inches away from their face."}, {"id": 143, "start": 294.02, "end": 294.21999999999997, "text": " All right."}, {"id": 144, "start": 294.28, "end": 298.56, "text": " So, I mean, if you make the display that nice, there's a lot of people that it's going to be lost on,"}, {"id": 145, "start": 298.97999999999996, "end": 299.56, "text": " as far as..."}, {"id": 146, "start": 299.56, "end": 300.42, "text": " Well, there might be, yes."}, {"id": 147, "start": 300.44, "end": 304.66, "text": " What they should do is just hand out optometry certificates when you buy the iPad"}, {"id": 148, "start": 304.66, "end": 306.96, "text": " so that you can go down and get your eyes checked out."}, {"id": 149, "start": 307.44, "end": 308.42, "text": " Make sure that you can use it."}, {"id": 150, "start": 309.32, "end": 310.96, "text": " Otherwise, you should might as well just get the two."}, {"id": 151, "start": 311.32, "end": 311.82, "text": " Well, you know what?"}, {"id": 152, "start": 311.88, "end": 314.1, "text": " I mean, myself, I mean, that's why I never got the two,"}, {"id": 153, "start": 314.2, "end": 316.98, "text": " because I never saw enough benefit to go from the one to the two."}, {"id": 154, "start": 317.34000000000003, "end": 319.32, "text": " I mean, it was, yeah, it has a camera."}, {"id": 155, "start": 319.52, "end": 319.84000000000003, "text": " Whoopee."}, {"id": 156, "start": 319.9, "end": 320.62, "text": " It's a little bit thinner."}, {"id": 157, "start": 320.8, "end": 321.38, "text": " I don't care."}, {"id": 158, "start": 322.0, "end": 323.6, "text": " You know, there was really no big benefit."}, {"id": 159, "start": 323.6, "end": 325.34000000000003, "text": " The difference, by the way, is huge."}, {"id": 160, "start": 325.66, "end": 326.2, "text": " I don't see it."}, {"id": 161, "start": 326.2, "end": 328.88, "text": " I don't really notice it when I'm, like, if I'm..."}, {"id": 162, "start": 328.88, "end": 329.54, "text": " I have an iPad."}, {"id": 163, "start": 329.56, "end": 330.72, "text": " I have an iPad 1 and an iPad 2."}, {"id": 164, "start": 330.84, "end": 331.0, "text": " Right."}, {"id": 165, "start": 331.32, "end": 333.04, "text": " My daughter mainly uses the one."}, {"id": 166, "start": 333.1, "end": 333.38, "text": " Right."}, {"id": 167, "start": 333.52, "end": 337.2, "text": " All right, but, like, I think the battery's dead on the other one."}, {"id": 168, "start": 337.24, "end": 338.88, "text": " So I was using the one for a day."}, {"id": 169, "start": 338.96, "end": 339.24, "text": " Right."}, {"id": 170, "start": 339.6, "end": 341.46, "text": " And it was so much slower."}, {"id": 171, "start": 341.66, "end": 343.36, "text": " I was just, like, I was irritated with it."}, {"id": 172, "start": 343.4, "end": 344.78000000000003, "text": " I guess it's going back to one of those things."}, {"id": 173, "start": 344.8, "end": 346.94, "text": " You don't know what you're missing because you don't have it."}, {"id": 174, "start": 347.14, "end": 348.72, "text": " I never had the iPad 2."}, {"id": 175, "start": 348.74, "end": 350.92, "text": " I played with yours a few times, and I just wasn't impressed."}, {"id": 176, "start": 351.08, "end": 351.9, "text": " I mean, it was an iPad."}, {"id": 177, "start": 352.04, "end": 352.42, "text": " That's great."}, {"id": 178, "start": 352.42, "end": 357.62, "text": " I absolutely love it, but I couldn't justify buying a new one for, you know, a camera."}, {"id": 179, "start": 357.8, "end": 359.54, "text": " Now, is the overall speed supposed to be improved?"}, {"id": 180, "start": 359.56, "end": 360.78000000000003, "text": " On the new one, yes."}, {"id": 181, "start": 361.1, "end": 364.04, "text": " Yeah, the new one, overall speeds, graphics, everything is..."}, {"id": 182, "start": 364.04, "end": 366.22, "text": " They've got 4G in there now, so that's improving web speeds."}, {"id": 183, "start": 366.38, "end": 367.62, "text": " Yeah, that's what really surprised everybody."}, {"id": 184, "start": 367.78000000000003, "end": 372.46, "text": " Everybody was expecting the better battery life and, you know, the resolution and all that stuff."}, {"id": 185, "start": 372.94, "end": 379.56, "text": " What really surprised people was the 4G, and that's just a clue of things to come for the iPhone 5."}, {"id": 186, "start": 380.22, "end": 384.0, "text": " I mean, if the iPad's got the 4G, then the iPhone 5 definitely better have it."}, {"id": 187, "start": 384.0, "end": 385.18, "text": " You mean the iPhone 4T?"}, {"id": 188, "start": 385.18, "end": 389.18, "text": " The only reason I ended up with the Droid Razr versus the iPhone..."}, {"id": 189, "start": 389.56, "end": 393.26, "text": " My iPhone was that I could not go back to, you know, 3G."}, {"id": 190, "start": 393.38, "end": 394.08, "text": " Right, yeah, right."}, {"id": 191, "start": 394.24, "end": 397.32, "text": " I found myself sort of going, oh, no, I just can't do it."}, {"id": 192, "start": 397.6, "end": 398.7, "text": " You know, it's..."}, {"id": 193, "start": 398.7, "end": 400.8, "text": " I will get the Razr instead."}, {"id": 194, "start": 402.08, "end": 405.54, "text": " I wish I got the Max, though, because, man, I chewed through battery on this thing for a reason."}, {"id": 195, "start": 406.06, "end": 407.64, "text": " All right, let's take a call here."}, {"id": 196, "start": 407.66, "end": 410.48, "text": " If you'd like to be part of the show, 751-1041, we'd love to help you out."}, {"id": 197, "start": 410.52, "end": 411.2, "text": " This is Brian."}, {"id": 198, "start": 411.3, "end": 412.14, "text": " Hello, Brian, how are you?"}, {"id": 199, "start": 412.64, "end": 413.58, "text": " Hey, boys, how are you doing?"}, {"id": 200, "start": 414.22, "end": 414.52, "text": " Great."}, {"id": 201, "start": 415.1, "end": 415.6, "text": " Hey, good."}, {"id": 202, "start": 415.64, "end": 416.62, "text": " I'm calling you from New York."}, {"id": 203, "start": 416.96, "end": 417.72, "text": " Oh, thank you."}, {"id": 204, "start": 417.72, "end": 418.56, "text": " I appreciate that."}, {"id": 205, "start": 418.84000000000003, "end": 418.86, "text": " That's good."}, {"id": 206, "start": 418.86, "end": 419.34000000000003, "text": " I love it."}, {"id": 207, "start": 419.56, "end": 421.14, "text": " Our remote listeners call us."}, {"id": 208, "start": 421.52, "end": 422.02, "text": " Well, there you go."}, {"id": 209, "start": 422.12, "end": 424.22, "text": " Actually, my mother lives down here in Oro Valley."}, {"id": 210, "start": 424.62, "end": 426.74, "text": " I went to one of your classes down there on Fort Lowell."}, {"id": 211, "start": 426.86, "end": 427.38, "text": " Ah, nice."}, {"id": 212, "start": 427.82, "end": 431.8, "text": " And, Mike, if you remember, I don't know, I guess before Christmas, I showed up at the"}, {"id": 213, "start": 431.8, "end": 435.34000000000003, "text": " store over there waiting for a class, and I was the only one that showed up."}, {"id": 214, "start": 435.5, "end": 436.38, "text": " Yeah, I remember."}, {"id": 215, "start": 436.84000000000003, "end": 437.56, "text": " All right, very good."}, {"id": 216, "start": 437.62, "end": 438.62, "text": " Got a quick question for you."}, {"id": 217, "start": 438.7, "end": 438.92, "text": " Sure."}, {"id": 218, "start": 439.14, "end": 448.34000000000003, "text": " The family is running a Dell XP, I guess, from 2006, and it sounds like it's coming up to"}, {"id": 219, "start": 448.34000000000003, "end": 449.34000000000003, "text": " its useful life."}, {"id": 220, "start": 449.56, "end": 450.04, "text": " Right."}, {"id": 221, "start": 450.42, "end": 452.18, "text": " What would you suggest as far as a replacement?"}, {"id": 222, "start": 453.04, "end": 453.74, "text": " Well, what's the budget?"}, {"id": 223, "start": 454.8, "end": 456.26, "text": " Let's say $1,000 is a cutoff."}, {"id": 224, "start": 456.8, "end": 460.14, "text": " Oh, well, for $1,000, you can make yourself a really snazzy machine."}, {"id": 225, "start": 460.26, "end": 460.56, "text": " Oh, yeah."}, {"id": 226, "start": 460.94, "end": 463.34000000000003, "text": " All right, so we're talking about a desktop, right?"}, {"id": 227, "start": 463.68, "end": 463.92, "text": " Yeah."}, {"id": 228, "start": 464.5, "end": 464.76, "text": " All right."}, {"id": 229, "start": 464.84000000000003, "end": 472.58, "text": " Now, basically, anywhere between the $500 to around $1,000 mark, they're basically all"}, {"id": 230, "start": 472.58, "end": 473.5, "text": " cookie-cutter machines."}, {"id": 231, "start": 473.84000000000003, "end": 474.14, "text": " Okay."}, {"id": 232, "start": 474.2, "end": 476.7, "text": " So it doesn't really matter which brand you're looking at, for the most part."}, {"id": 233, "start": 476.98, "end": 477.42, "text": " Yeah."}, {"id": 234, "start": 477.42, "end": 477.48, "text": " Yeah."}, {"id": 235, "start": 477.48, "end": 477.52, "text": " Yeah."}, {"id": 236, "start": 477.52, "end": 477.54, "text": " Yeah."}, {"id": 237, "start": 477.54, "end": 477.56, "text": " Yeah."}, {"id": 238, "start": 477.56, "end": 477.58, "text": " Yeah."}, {"id": 239, "start": 477.58, "end": 477.6, "text": " Yeah."}, {"id": 240, "start": 477.6, "end": 477.62, "text": " Yeah."}, {"id": 241, "start": 477.62, "end": 477.66, "text": " Yeah."}, {"id": 242, "start": 477.66, "end": 477.68, "text": " Yeah."}, {"id": 243, "start": 477.68, "end": 477.7, "text": " Yeah."}, {"id": 244, "start": 477.7, "end": 477.76, "text": " Yeah."}, {"id": 245, "start": 477.76, "end": 477.78, "text": " Yeah."}, {"id": 246, "start": 477.78, "end": 477.8, "text": " Yeah."}, {"id": 247, "start": 477.8, "end": 477.82, "text": " Yeah."}, {"id": 248, "start": 477.82, "end": 477.84000000000003, "text": " Yeah."}, {"id": 249, "start": 477.84000000000003, "end": 477.86, "text": " Yeah."}, {"id": 250, "start": 477.86, "end": 477.9, "text": " Yeah."}, {"id": 251, "start": 477.90000000000003, "end": 478.74, "text": " Yeah."}, {"id": 252, "start": 484.82000000000005, "end": 484.94000000000005, "text": " Yeah."}, {"id": 253, "start": 484.94000000000005, "end": 485.08000000000004, "text": " Yeah."}, {"id": 254, "start": 485.08000000000004, "end": 485.1, "text": " Yeah."}, {"id": 255, "start": 485.1, "end": 485.12000000000006, "text": " Yeah."}, {"id": 256, "start": 485.12000000000006, "end": 485.14000000000004, "text": " Yeah."}, {"id": 257, "start": 485.14000000000004, "end": 485.18, "text": " Yeah."}, {"id": 258, "start": 485.18, "end": 485.20000000000005, "text": " Yeah."}, {"id": 259, "start": 485.20000000000005, "end": 485.22, "text": " Yeah."}, {"id": 260, "start": 485.22, "end": 485.26000000000005, "text": " Yeah."}, {"id": 261, "start": 485.26000000000005, "end": 489.02000000000004, "text": " Now, I know I get some grief because I've had some people come into the shop and be like,"}, {"id": 262, "start": 489.1, "end": 490.24, "text": " why are you bagging on AMDs?"}, {"id": 263, "start": 490.96000000000004, "end": 495.36, "text": " And the thing is, is that these people come and say, well, I've been using AMDs my whole"}, {"id": 264, "start": 495.36, "end": 496.74, "text": " life, and I've never had a problem."}, {"id": 265, "start": 497.26000000000005, "end": 501.74, "text": " But the thing is, is that when you put like 5,000 machines a year through my business,"}, {"id": 266, "start": 502.3, "end": 503.42, "text": " right, we see patterns."}, {"id": 267, "start": 503.84000000000003, "end": 503.92, "text": " Right."}, {"id": 268, "start": 504.08000000000004, "end": 507.66, "text": " And those patterns start to emerge the more machines you have come into the office."}, {"id": 269, "start": 507.90000000000003, "end": 511.50000000000006, "text": " So, you know, a lot of the AMD machines we see problems with."}, {"id": 270, "start": 511.8, "end": 523.14, "text": " Same thing when you're dealing with ATI video cards or, you know, these other types of things where, by itself, in a small, you know, control group, you're not going to see really large problems."}, {"id": 271, "start": 523.52, "end": 530.22, "text": " But when you start getting lots and lots of machines all together, you start to see, well, all those machines seem to have the same types of problems."}, {"id": 272, "start": 530.52, "end": 536.6600000000001, "text": " So I would say that you want to get yourself a nice, at the $1,000 mark, you're going to be looking at, like, an i7 machine."}, {"id": 273, "start": 536.66, "end": 545.6999999999999, "text": " You're going to have at least 8 gigs of RAM on it, probably more, and, you know, a couple terabytes of space, and preferably rated together,"}, {"id": 274, "start": 545.8, "end": 549.86, "text": " because I'm thinking that all machines now should have mirror rates in them at the very least."}, {"id": 275, "start": 550.3399999999999, "end": 550.4599999999999, "text": " Right."}, {"id": 276, "start": 551.38, "end": 554.24, "text": " And so you can do something really nice with that kind of a budget."}, {"id": 277, "start": 555.18, "end": 555.52, "text": " Okay."}, {"id": 278, "start": 555.5799999999999, "end": 561.42, "text": " Now, what about as far as where one should buy one up here, because I'm only going to be up here a couple of weeks, and I guess I'm the one that's going to be doing it."}, {"id": 279, "start": 561.5, "end": 561.86, "text": " Okay."}, {"id": 280, "start": 562.28, "end": 566.3399999999999, "text": " Either, like, the Best Buy deal or go, well, what would you suggest?"}, {"id": 281, "start": 566.66, "end": 570.4, "text": " You know, I hate telling you to go someplace like that, but if you're in a time crunch where you're looking at, you know,"}, {"id": 282, "start": 570.54, "end": 574.8, "text": " you want to get something done within a few days, then you're probably going to end up going to somewhere like, you know,"}, {"id": 283, "start": 574.8399999999999, "end": 579.76, "text": " to Costco or Sam's Club or even, if it comes down to it, Best Buy."}, {"id": 284, "start": 579.8399999999999, "end": 584.0, "text": " Yeah, I'm not a huge fan of Best Buy myself, but, I mean, if that's where the deal's at, that's where the deal's at."}, {"id": 285, "start": 584.0, "end": 584.56, "text": " You've got to go."}, {"id": 286, "start": 584.78, "end": 584.92, "text": " Right."}, {"id": 287, "start": 584.98, "end": 585.76, "text": " You've just got to go there."}, {"id": 288, "start": 586.0799999999999, "end": 587.8, "text": " I'm all about saving a buck, so."}, {"id": 289, "start": 587.86, "end": 588.0799999999999, "text": " Okay."}, {"id": 290, "start": 588.12, "end": 589.8199999999999, "text": " Would it be necessary to buy a new monitor?"}, {"id": 291, "start": 590.8199999999999, "end": 596.22, "text": " It's generally not necessary, but the new machines are going to come with, like, DVI and HDMI adapters on them."}, {"id": 292, "start": 596.66, "end": 600.1, "text": " Especially at that price point where you're looking at a $1,000 machine."}, {"id": 293, "start": 600.38, "end": 603.36, "text": " Right, and you can usually get it for $1,000 if you do go to Best Buy."}, {"id": 294, "start": 603.68, "end": 605.54, "text": " You're going to get a monitor and stuff like that."}, {"id": 295, "start": 605.98, "end": 606.1, "text": " Right."}, {"id": 296, "start": 606.66, "end": 608.92, "text": " So it would be nice, especially, you know, you're buying this for your mother."}, {"id": 297, "start": 609.0, "end": 611.54, "text": " You probably want a larger screen on there, make it easier for her to see."}, {"id": 298, "start": 612.0799999999999, "end": 612.3, "text": " Right."}, {"id": 299, "start": 612.8199999999999, "end": 617.98, "text": " So, yeah, you're not going to be wasting any money at that price point."}, {"id": 300, "start": 618.52, "end": 624.4399999999999, "text": " Now, the reason I say that is because a lot of people, they'll go out and they'll buy these $300 machines or $400 computers."}, {"id": 301, "start": 624.92, "end": 625.0799999999999, "text": " Right."}, {"id": 302, "start": 625.0799999999999, "end": 626.64, "text": " And when you do that, you know."}, {"id": 303, "start": 626.6999999999999, "end": 628.56, "text": " It's basically you're just burning money."}, {"id": 304, "start": 628.6999999999999, "end": 631.86, "text": " For example, I mean, we just had a business client of ours."}, {"id": 305, "start": 632.18, "end": 634.92, "text": " They buy a full office full of $300 machines."}, {"id": 306, "start": 635.2199999999999, "end": 635.4399999999999, "text": " Right."}, {"id": 307, "start": 635.66, "end": 638.74, "text": " And we already, and they must, I think they bought 12 of them or something like that."}, {"id": 308, "start": 638.76, "end": 638.92, "text": " Right."}, {"id": 309, "start": 638.98, "end": 640.24, "text": " We've already replaced four of them."}, {"id": 310, "start": 640.92, "end": 642.6999999999999, "text": " And that was, this was three weeks ago."}, {"id": 311, "start": 642.98, "end": 643.38, "text": " They bought them."}, {"id": 312, "start": 643.38, "end": 643.6999999999999, "text": " Right."}, {"id": 313, "start": 643.8199999999999, "end": 648.56, "text": " So if you, there's the adage that you get what you pay for is absolutely true."}, {"id": 314, "start": 648.8399999999999, "end": 649.1999999999999, "text": " Okay."}, {"id": 315, "start": 649.26, "end": 649.66, "text": " Very good."}, {"id": 316, "start": 649.78, "end": 656.38, "text": " And so, you know, if you're up at that, at that price point, then, you know, you're going to get yourself a $700 or $800 machine."}, {"id": 317, "start": 656.66, "end": 658.9399999999999, "text": " And a $150 monitor."}, {"id": 318, "start": 659.52, "end": 659.56, "text": " Right."}, {"id": 319, "start": 659.7199999999999, "end": 659.9599999999999, "text": " All right."}, {"id": 320, "start": 660.12, "end": 662.2199999999999, "text": " So that'll work out pretty well for her."}, {"id": 321, "start": 662.54, "end": 662.76, "text": " Good."}, {"id": 322, "start": 662.88, "end": 663.5, "text": " I appreciate it."}, {"id": 323, "start": 663.62, "end": 663.88, "text": " All right."}, {"id": 324, "start": 663.9399999999999, "end": 664.48, "text": " Thanks for the call."}, {"id": 325, "start": 664.54, "end": 664.9, "text": " I appreciate it."}, {"id": 326, "start": 664.9, "end": 665.66, "text": " We'll see you guys when we get back."}, {"id": 327, "start": 665.8399999999999, "end": 666.1, "text": " All right."}, {"id": 328, "start": 666.14, "end": 666.4599999999999, "text": " Thanks."}, {"id": 329, "start": 666.56, "end": 666.8199999999999, "text": " Take care."}, {"id": 330, "start": 666.92, "end": 667.12, "text": " Bye-bye."}, {"id": 331, "start": 667.54, "end": 669.9399999999999, "text": " If you'd like to be part of the show, 751-1041."}, {"id": 332, "start": 670.14, "end": 673.8399999999999, "text": " We'll see what we can do to help you out with whatever technology issues are ailing you."}, {"id": 333, "start": 674.5, "end": 675.78, "text": " And we'll be right back."}, {"id": 334, "start": 676.74, "end": 678.4599999999999, "text": " This is the Computer Guru."}, {"id": 335, "start": 679.1999999999999, "end": 680.0799999999999, "text": " When we get back."}, {"id": 336, "start": 680.64, "end": 681.9399999999999, "text": " What do we got going on here, Randall?"}, {"id": 337, "start": 681.9399999999999, "end": 682.16, "text": " Oh, man."}, {"id": 338, "start": 682.16, "end": 683.66, "text": " We got the FCC's mad at Verizon."}, {"id": 339, "start": 684.6, "end": 684.68, "text": " Oh."}, {"id": 340, "start": 684.68, "end": 686.64, "text": " We got Facebook is making money."}, {"id": 341, "start": 686.7199999999999, "end": 687.5799999999999, "text": " Marital problems."}, {"id": 342, "start": 687.9, "end": 689.66, "text": " I heard there was something with a cruise ship that we could talk about."}, {"id": 343, "start": 689.66, "end": 690.42, "text": " Yeah, the cruise ship."}, {"id": 344, "start": 690.56, "end": 690.7199999999999, "text": " Okay."}, {"id": 345, "start": 690.88, "end": 691.24, "text": " Mythbusters."}, {"id": 346, "start": 691.56, "end": 694.6999999999999, "text": " More to come when we get back on the Computer Guru Show right here on 104.1 The Truth."}, {"id": 347, "start": 695.12, "end": 696.18, "text": " Tucson's News Talk FM."}, {"id": 348, "start": 699.66, "end": 701.54, "text": " This is the Computer Guru."}, {"id": 349, "start": 701.8199999999999, "end": 704.54, "text": " Give them a call now at 751-1041."}, {"id": 350, "start": 704.54, "end": 707.92, "text": " Now back to more of the Computer Guru Radio Show."}, {"id": 351, "start": 707.9599999999999, "end": 709.76, "text": " On 104.1 The Truth."}, {"id": 352, "start": 716.66, "end": 720.66, "text": " Welcome back to the Computer Guru Show."}, {"id": 353, "start": 720.7199999999999, "end": 724.04, "text": " My name is Mike here to deal with your technology needs and treat you like a real person in the process."}, {"id": 354, "start": 724.48, "end": 726.16, "text": " 751-1041 if you'd like to be part of the show."}, {"id": 355, "start": 726.26, "end": 728.4399999999999, "text": " Once again, it's 520-751-1041."}, {"id": 356, "start": 729.48, "end": 730.74, "text": " And we will take another call here."}, {"id": 357, "start": 730.9399999999999, "end": 732.88, "text": " I've got to get to the name on the other screen."}, {"id": 358, "start": 733.14, "end": 733.3399999999999, "text": " Is that John?"}, {"id": 359, "start": 733.48, "end": 733.9399999999999, "text": " Yeah, it's John."}, {"id": 360, "start": 734.0, "end": 734.8199999999999, "text": " Hey, John, how are you?"}, {"id": 361, "start": 735.3399999999999, "end": 736.12, "text": " Yeah, just fine."}, {"id": 362, "start": 736.16, "end": 736.54, "text": " How are you today?"}, {"id": 363, "start": 736.7199999999999, "end": 737.6999999999999, "text": " I'm fantastic."}, {"id": 364, "start": 737.8199999999999, "end": 738.3199999999999, "text": " How can I help you?"}, {"id": 365, "start": 738.8, "end": 746.0799999999999, "text": " Well, I have a Pentium 4 with just a DVD drive and a couple of megabytes of RAM."}, {"id": 366, "start": 746.08, "end": 757.32, "text": " And, you know, it just died on me, you know, when I rebooted, you know, and only the power light came on and the hard drive light came on and stayed on."}, {"id": 367, "start": 758.1, "end": 761.82, "text": " And I replaced the power supply and immediately started working fine."}, {"id": 368, "start": 762.38, "end": 765.08, "text": " And I let it run and stand by for about three days."}, {"id": 369, "start": 765.1600000000001, "end": 766.1800000000001, "text": " It's in a room that's cold."}, {"id": 370, "start": 766.2800000000001, "end": 768.46, "text": " It's maybe 63, 64 degrees."}, {"id": 371, "start": 768.88, "end": 772.5600000000001, "text": " And I have exact same symptoms again, you know, so I'm pretty sure the power supply blew again."}, {"id": 372, "start": 772.5600000000001, "end": 775.98, "text": " But the question is, what could cause a power supply?"}, {"id": 373, "start": 776.08, "end": 779.3000000000001, "text": " Did it blow like that, you know, two in a row?"}, {"id": 374, "start": 780.22, "end": 781.94, "text": " Well, I'm not convinced that the power supply did blow."}, {"id": 375, "start": 782.2800000000001, "end": 787.34, "text": " Or the power supply was, I mean, usually when a power supply does go out, it usually takes something else with it."}, {"id": 376, "start": 788.0, "end": 792.0, "text": " So it's entirely possible if it was the power supply that it took something else out with it."}, {"id": 377, "start": 792.34, "end": 795.7, "text": " And when you replace the power supply, there's a momentary patch."}, {"id": 378, "start": 795.98, "end": 797.24, "text": " Then it got shot again."}, {"id": 379, "start": 797.4200000000001, "end": 798.0200000000001, "text": " Yeah, I don't think so."}, {"id": 380, "start": 798.1600000000001, "end": 799.6800000000001, "text": " But what are you thinking?"}, {"id": 381, "start": 799.6800000000001, "end": 804.5600000000001, "text": " I'm thinking that the board, the switching on the board is bad."}, {"id": 382, "start": 804.8000000000001, "end": 804.94, "text": " Okay."}, {"id": 383, "start": 805.1400000000001, "end": 805.44, "text": " So."}, {"id": 384, "start": 805.44, "end": 811.7600000000001, "text": " So simply the fact of unplugging the old power supply discharges it enough that it'll restart when you plug it back in."}, {"id": 385, "start": 811.96, "end": 812.12, "text": " Right."}, {"id": 386, "start": 812.7600000000001, "end": 817.1, "text": " Oh, so it's motherboard shot probably, then not the power supply."}, {"id": 387, "start": 817.1800000000001, "end": 822.0400000000001, "text": " The one I threw away, which is 450 instead of the 350 I put there, won't make any difference then."}, {"id": 388, "start": 822.1800000000001, "end": 822.8800000000001, "text": " Probably not."}, {"id": 389, "start": 823.1800000000001, "end": 824.2600000000001, "text": " Especially seeing it's in the trash."}, {"id": 390, "start": 825.0600000000001, "end": 826.1800000000001, "text": " Oh, it's long gone now."}, {"id": 391, "start": 826.1800000000001, "end": 829.9200000000001, "text": " Yeah, so I bet that it's a board problem rather than the power supply."}, {"id": 392, "start": 829.9200000000001, "end": 830.84, "text": " I'm sure it's not in the trash."}, {"id": 393, "start": 830.9200000000001, "end": 831.84, "text": " I'm sure he recycled it."}, {"id": 394, "start": 832.0200000000001, "end": 835.4200000000001, "text": " Yeah, he recycled it properly in accordance with all EPs."}, {"id": 395, "start": 835.44, "end": 839.0200000000001, "text": " It's not a VA violation or, you know, you know what I'm talking about."}, {"id": 396, "start": 839.5600000000001, "end": 839.82, "text": " Yeah."}, {"id": 397, "start": 840.3000000000001, "end": 844.8800000000001, "text": " Anyway, so, yeah, so you think it's likely that, and I just need to put a new board in it, then."}, {"id": 398, "start": 845.1400000000001, "end": 846.4000000000001, "text": " Or just get yourself a new machine."}, {"id": 399, "start": 846.4000000000001, "end": 849.32, "text": " Yeah, if you're looking at a penny and four, it's probably not going to be worth the repair."}, {"id": 400, "start": 850.0600000000001, "end": 852.22, "text": " Well, yeah, no, I agree with that."}, {"id": 401, "start": 852.22, "end": 856.08, "text": " I have, that was one I just had used for special use, you know."}, {"id": 402, "start": 856.36, "end": 856.48, "text": " Right."}, {"id": 403, "start": 857.22, "end": 863.24, "text": " And it's one of the few I have that will use my old LaserJet 4 or LaserJet 6."}, {"id": 404, "start": 863.36, "end": 863.86, "text": " Oh, wow."}, {"id": 405, "start": 863.96, "end": 864.6800000000001, "text": " It's the old 6."}, {"id": 406, "start": 864.7800000000001, "end": 865.0400000000001, "text": " Nice."}, {"id": 407, "start": 865.44, "end": 868.0, "text": " So even on a, there's a way of getting around that, by the way."}, {"id": 408, "start": 868.32, "end": 869.7800000000001, "text": " You'd still like to use the old 6."}, {"id": 409, "start": 871.6, "end": 880.5600000000001, "text": " So what you can do is you can get a parallel print server, and you can force, there's a driver that's out there for the older LaserJets."}, {"id": 410, "start": 881.0400000000001, "end": 881.4000000000001, "text": " Yeah."}, {"id": 411, "start": 881.4000000000001, "end": 883.7, "text": " For the 3, 4, 5, and 6 series."}, {"id": 412, "start": 884.5200000000001, "end": 884.72, "text": " Okay."}, {"id": 413, "start": 885.2600000000001, "end": 886.7600000000001, "text": " So you can get a parallel print server."}, {"id": 414, "start": 886.96, "end": 888.24, "text": " It's fairly inexpensive."}, {"id": 415, "start": 888.3800000000001, "end": 889.2600000000001, "text": " You can pick them up at SWS."}, {"id": 416, "start": 889.44, "end": 891.98, "text": " I think they're like $30 or $40 or something like that."}, {"id": 417, "start": 891.98, "end": 892.1400000000001, "text": " Yeah, $30 or $40, yeah."}, {"id": 418, "start": 892.5200000000001, "end": 895.32, "text": " Okay, well, most motherboards now, they've only got one slot on them."}, {"id": 419, "start": 895.32, "end": 899.5400000000001, "text": " So you put another card in them for anything."}, {"id": 420, "start": 899.98, "end": 900.2, "text": " Right."}, {"id": 421, "start": 900.2600000000001, "end": 902.82, "text": " Well, you won't need to put a card in if you're getting a parallel print server."}, {"id": 422, "start": 902.94, "end": 903.7600000000001, "text": " It'll do it over the network."}, {"id": 423, "start": 903.96, "end": 904.1800000000001, "text": " Right."}, {"id": 424, "start": 904.5400000000001, "end": 905.24, "text": " Oh, I see."}, {"id": 425, "start": 905.38, "end": 907.48, "text": " So I can, oh, I see what you're saying."}, {"id": 426, "start": 907.5400000000001, "end": 910.0600000000001, "text": " I can actually run that printer as a network printer."}, {"id": 427, "start": 910.24, "end": 910.5600000000001, "text": " Correct."}, {"id": 428, "start": 911.0600000000001, "end": 911.6600000000001, "text": " Yeah, okay."}, {"id": 429, "start": 912.0, "end": 913.24, "text": " And that's cheaper than a machine, too."}, {"id": 430, "start": 913.9000000000001, "end": 914.34, "text": " Oh, yeah."}, {"id": 431, "start": 914.58, "end": 914.8000000000001, "text": " All right."}, {"id": 432, "start": 915.5400000000001, "end": 917.0, "text": " Okay, well, thank you very much."}, {"id": 433, "start": 917.0600000000001, "end": 917.88, "text": " All right, well, good luck with that."}, {"id": 434, "start": 918.32, "end": 918.74, "text": " All right, bye."}, {"id": 435, "start": 918.94, "end": 919.12, "text": " Bye."}, {"id": 436, "start": 919.96, "end": 920.86, "text": " That's very nice."}, {"id": 437, "start": 921.58, "end": 925.2, "text": " Man, Pentium 4 processors are perfect for playing high-def games like Minesweeper."}, {"id": 438, "start": 925.32, "end": 925.98, "text": " It's always there."}, {"id": 439, "start": 926.3000000000001, "end": 926.6600000000001, "text": " Reversi."}, {"id": 440, "start": 926.86, "end": 927.22, "text": " Reversi."}, {"id": 441, "start": 927.44, "end": 927.6, "text": " Yeah, Reversi."}, {"id": 442, "start": 927.7800000000001, "end": 928.24, "text": " That's the big one."}, {"id": 443, "start": 928.24, "end": 929.74, "text": " That's high-speed Reversi right there."}, {"id": 444, "start": 930.5200000000001, "end": 931.4000000000001, "text": " Let's talk to Tom."}, {"id": 445, "start": 931.46, "end": 932.34, "text": " Hey, Tom, how are you?"}, {"id": 446, "start": 932.96, "end": 933.5200000000001, "text": " I'm fine."}, {"id": 447, "start": 933.58, "end": 937.34, "text": " I've got a desktop that's entering old age, and I'm considering converting to a Mac."}, {"id": 448, "start": 937.9000000000001, "end": 943.24, "text": " Can you tell me how complex it is to get those files and programs over onto a Mac from a desktop?"}, {"id": 449, "start": 943.5200000000001, "end": 945.0600000000001, "text": " Well, let me ask a couple questions first."}, {"id": 450, "start": 945.1600000000001, "end": 946.4000000000001, "text": " Why are you wanting a Mac?"}, {"id": 451, "start": 947.58, "end": 949.2800000000001, "text": " Are you really wanting to go the hater route already?"}, {"id": 452, "start": 949.2800000000001, "end": 952.24, "text": " No, I just want to know what his motive is."}, {"id": 453, "start": 952.32, "end": 953.74, "text": " All right, well, let's hear about the motivation."}, {"id": 454, "start": 953.96, "end": 955.3000000000001, "text": " Truth be told, my wife wants one."}, {"id": 455, "start": 955.32, "end": 957.3000000000001, "text": " Ah, well, you can't argue with that."}, {"id": 456, "start": 957.36, "end": 958.1400000000001, "text": " Then you're getting a Mac."}, {"id": 457, "start": 958.2800000000001, "end": 959.0200000000001, "text": " Literally can't."}, {"id": 458, "start": 959.5200000000001, "end": 960.22, "text": " Just cannot."}, {"id": 459, "start": 961.2600000000001, "end": 964.2600000000001, "text": " All right, so what are you looking to transfer over?"}, {"id": 460, "start": 965.84, "end": 971.5600000000001, "text": " My Word document files primarily, because that's what I have in my photographs."}, {"id": 461, "start": 972.0, "end": 972.24, "text": " Okay."}, {"id": 462, "start": 972.62, "end": 975.9000000000001, "text": " All right, so both of those things are easy to transfer as far as data is concerned."}, {"id": 463, "start": 976.0400000000001, "end": 980.5200000000001, "text": " In fact, when you first set up the Mac, it'll actually ask you if you want to do that from a PC."}, {"id": 464, "start": 980.72, "end": 983.5600000000001, "text": " It'll actually transfer it from your PC if they're both on the network at the same time."}, {"id": 465, "start": 983.96, "end": 984.32, "text": " Okay."}, {"id": 466, "start": 984.32, "end": 994.1400000000001, "text": " Now, how about the question about business platforms that are still, what software exists to make sure that a Mac can read?"}, {"id": 467, "start": 994.6800000000001, "end": 998.5600000000001, "text": " Well, if you're dealing with Office documents, there's Office for Mac."}, {"id": 468, "start": 999.4000000000001, "end": 1002.5600000000001, "text": " Microsoft makes a version of Office for the Macintosh platform."}, {"id": 469, "start": 1004.1800000000001, "end": 1012.48, "text": " And it'll come with a trial in most cases on those, or you can purchase a copy of Office for Mac, which will make all that stuff work."}, {"id": 470, "start": 1012.48, "end": 1014.3000000000001, "text": " Or you can import everything into Google Docs."}, {"id": 471, "start": 1014.32, "end": 1015.0400000000001, "text": " Google Docs would work."}, {"id": 472, "start": 1015.2, "end": 1016.6600000000001, "text": " Right, or you can go to Google Docs."}, {"id": 473, "start": 1016.6800000000001, "end": 1017.12, "text": " And that's free."}, {"id": 474, "start": 1018.0, "end": 1025.04, "text": " Okay, so you're telling me that my wife's encouragement is not a difficult decision to either implement or to convert."}, {"id": 475, "start": 1025.0800000000002, "end": 1026.22, "text": " Well, here's the difficult part."}, {"id": 476, "start": 1026.3200000000002, "end": 1027.48, "text": " Have you ever used a Mac before?"}, {"id": 477, "start": 1028.1200000000001, "end": 1029.16, "text": " Yeah, but not a lot."}, {"id": 478, "start": 1029.22, "end": 1031.28, "text": " Okay, everything's completely backwards when you know."}, {"id": 479, "start": 1032.2, "end": 1033.74, "text": " All right, you don't have to be that dramatic."}, {"id": 480, "start": 1033.78, "end": 1034.78, "text": " No, no, I'm just saying."}, {"id": 481, "start": 1035.18, "end": 1036.24, "text": " It's a little bit different."}, {"id": 482, "start": 1036.3600000000001, "end": 1037.14, "text": " It's a bit of a learning curve."}, {"id": 483, "start": 1037.14, "end": 1042.06, "text": " You have to think a little differently, as their logo says, in order to use the Mac."}, {"id": 484, "start": 1043.48, "end": 1043.88, "text": " Okay."}, {"id": 485, "start": 1043.88, "end": 1043.98, "text": " Okay."}, {"id": 486, "start": 1043.98, "end": 1044.0, "text": " Okay."}, {"id": 487, "start": 1044.0, "end": 1044.02, "text": " Okay."}, {"id": 488, "start": 1044.02, "end": 1044.04, "text": " Okay."}, {"id": 489, "start": 1044.04, "end": 1044.06, "text": " Okay."}, {"id": 490, "start": 1044.06, "end": 1044.0800000000002, "text": " Okay."}, {"id": 491, "start": 1044.0800000000002, "end": 1044.14, "text": " Okay."}, {"id": 492, "start": 1044.14, "end": 1044.16, "text": " Okay."}, {"id": 493, "start": 1044.16, "end": 1044.18, "text": " Okay."}, {"id": 494, "start": 1044.18, "end": 1044.24, "text": " Okay."}, {"id": 495, "start": 1044.32, "end": 1044.3999999999999, "text": " Okay."}, {"id": 496, "start": 1044.3999999999999, "end": 1044.56, "text": " Okay."}, {"id": 497, "start": 1044.56, "end": 1044.58, "text": " Okay."}, {"id": 498, "start": 1044.58, "end": 1044.62, "text": " Okay."}, {"id": 499, "start": 1044.62, "end": 1044.82, "text": " Okay."}, {"id": 500, "start": 1044.82, "end": 1044.84, "text": " Okay."}, {"id": 501, "start": 1045.8, "end": 1048.1799999999998, "text": " If that's what she wants, of course, that's what she's going to get."}, {"id": 502, "start": 1048.6, "end": 1050.1, "text": " And secondly, it's not all that hard to do."}, {"id": 503, "start": 1050.1599999999999, "end": 1051.78, "text": " So the answer is, it's not that difficult."}, {"id": 504, "start": 1052.8799999999999, "end": 1053.1599999999999, "text": " Okay."}, {"id": 505, "start": 1053.34, "end": 1054.96, "text": " I appreciate the words of encouragement."}, {"id": 506, "start": 1055.3, "end": 1056.46, "text": " My wife will be happy to hear that."}, {"id": 507, "start": 1056.82, "end": 1057.1, "text": " Excellent."}, {"id": 508, "start": 1057.2, "end": 1059.6599999999999, "text": " And when you guys do get lost, you know who to call."}, {"id": 509, "start": 1060.24, "end": 1061.02, "text": " Thanks very much."}, {"id": 510, "start": 1061.2, "end": 1061.3999999999999, "text": " All right."}, {"id": 511, "start": 1061.4399999999998, "end": 1062.08, "text": " Thanks for the call."}, {"id": 512, "start": 1062.46, "end": 1063.36, "text": " Bye-bye."}, {"id": 513, "start": 1063.98, "end": 1065.02, "text": " Dwight, why are you being a hater?"}, {"id": 514, "start": 1065.08, "end": 1065.9399999999998, "text": " I'm not trying to be a hater."}, {"id": 515, "start": 1066.12, "end": 1067.74, "text": " You're being awfully negative today."}, {"id": 516, "start": 1068.04, "end": 1070.1599999999999, "text": " I want to make sure people go into a Mac purchase."}, {"id": 517, "start": 1070.26, "end": 1071.1, "text": " That's a big purchase."}, {"id": 518, "start": 1071.1, "end": 1074.02, "text": " Go into a Mac purchase with their eyes completely open to what they're going to do."}, {"id": 519, "start": 1074.02, "end": 1078.12, "text": " going to go into it is a big purchase you gotta buy like a whole new wardrobe you start hanging"}, {"id": 520, "start": 1078.12, "end": 1086.12, "text": " out at starbucks all the time sorry my word all right james how are you james hello how can i help"}, {"id": 521, "start": 1086.12, "end": 1094.8799999999999, "text": " you uh i'm having a usb driver or usb failure on my pc where every single i've got like five usb"}, {"id": 522, "start": 1094.8799999999999, "end": 1102.66, "text": " ports and every single one of them quit working right and i've reformatted uh when my computer"}, {"id": 523, "start": 1102.66, "end": 1106.74, "text": " and reinstalled windows and that didn't correct right because the hardware is yeah because you"}, {"id": 524, "start": 1106.74, "end": 1111.0400000000002, "text": " killed the heart right now are you talking like all of them on the back or all of them on the"}, {"id": 525, "start": 1111.0400000000002, "end": 1118.98, "text": " front or both both all right so you killed the five volt bus is what happened okay okay so it"}, {"id": 526, "start": 1118.98, "end": 1123.3600000000001, "text": " is is that something that you guys can repair or is that like a motherboard it's a motherboard"}, {"id": 527, "start": 1123.3600000000001, "end": 1132.64, "text": " replacement okay so if i have so she's um so if i take that down you guys like"}, {"id": 528, "start": 1132.66, "end": 1138.6000000000001, "text": " it's the whole motherboard needs to be replaced and then i can re put in my graphics cards and"}, {"id": 529, "start": 1138.6000000000001, "end": 1143.44, "text": " everything like that or as long as you like board all right so you get a board that's similar to"}, {"id": 530, "start": 1143.44, "end": 1149.26, "text": " the one that you took out then yes okay all right we're happy to do that for you okay cool and what"}, {"id": 531, "start": 1149.26, "end": 1153.9, "text": " is something like that usually cost and arrange you're probably looking at about uh one to two"}, {"id": 532, "start": 1153.9, "end": 1159.5800000000002, "text": " hours of labor uh and then the cost of the board okay all righty okay uh excellent thank you very"}, {"id": 533, "start": 1159.5800000000002, "end": 1162.5, "text": " much all right appreciate the call and uh we can"}, {"id": 534, "start": 1162.66, "end": 1165.72, "text": " another one in here if you'd like to be part of the show seven five one one oh four one let's start"}, {"id": 535, "start": 1165.72, "end": 1170.46, "text": " to brian hey how you guys doing good how about yourself yeah i have uh i'm doing all right i"}, {"id": 536, "start": 1170.46, "end": 1177.3400000000001, "text": " have a lenovo uh v570 laptop um it has a fingerprint reader when i first bought it maybe"}, {"id": 537, "start": 1177.3400000000001, "end": 1182.28, "text": " about two months ago uh we used the fingerprint reader uh and it you know it opened up windows"}, {"id": 538, "start": 1182.28, "end": 1187.0600000000002, "text": " and all that kind of thing right it uh it started to freeze on me and i kept looking online forums"}, {"id": 539, "start": 1187.0600000000002, "end": 1192.3000000000002, "text": " and it said that there's a problem with the fingerprint reader so i uninstalled it reinstalled"}, {"id": 540, "start": 1192.3000000000002, "end": 1192.64, "text": " the driver and i had to re-install it and i had to re-install it and i had to re-install it and i"}, {"id": 541, "start": 1192.66, "end": 1196.8000000000002, "text": " all that whole deal but it still kept freezing on me so i finally like disabled it have you guys"}, {"id": 542, "start": 1196.8000000000002, "end": 1201.3200000000002, "text": " heard anything about that or another solution i know that there were some problems with the"}, {"id": 543, "start": 1201.3200000000002, "end": 1208.38, "text": " tpm modules and certain models of lenovo and ibm products um and you can just turn that off in the"}, {"id": 544, "start": 1208.38, "end": 1212.92, "text": " bios yeah yeah that's what i've done i just turned it off so it's kind of like a pointless"}, {"id": 545, "start": 1212.92, "end": 1219.0800000000002, "text": " now there is there a firmware upgrade for your model i've not seen i mean it's only a couple"}, {"id": 546, "start": 1219.0800000000002, "end": 1222.64, "text": " months old i want to think it yeah i'd check for a firmware upgrade firmware okay"}, {"id": 547, "start": 1222.66, "end": 1226.02, "text": " all right because especially when the machines are new that's when the firmwares are really going"}, {"id": 548, "start": 1226.02, "end": 1229.1000000000001, "text": " to start coming out because as soon as they start putting them into mass production they're going to"}, {"id": 549, "start": 1229.1000000000001, "end": 1234.78, "text": " start seeing all these other problems and usually in the in the first maybe two years of a new"}, {"id": 550, "start": 1234.78, "end": 1239.68, "text": " product a new laptop that's out there you'll see three or four bios updates oh okay where they're"}, {"id": 551, "start": 1239.68, "end": 1244.0800000000002, "text": " fixing stuff so i would check for a bios update and see if that fixes it for you okay okay all"}, {"id": 552, "start": 1244.0800000000002, "end": 1249.3000000000002, "text": " right i very much appreciate the call and if you'd like to be part of the show we'd love to hear from"}, {"id": 553, "start": 1249.3000000000002, "end": 1252.64, "text": " you 751-1041 now give me a"}, {"id": 554, "start": 1252.66, "end": 1256.02, "text": " preview of this cruise ship thing here what's what's this about rob oh that's a pretty interesting"}, {"id": 555, "start": 1256.02, "end": 1259.7, "text": " story um everybody heard about the cruise ship that uh that capsized i think it was a couple"}, {"id": 556, "start": 1259.7, "end": 1263.6000000000001, "text": " weeks ago or a couple months ago or something and then the the sister ship that had to be towed"}, {"id": 557, "start": 1263.6000000000001, "end": 1268.74, "text": " because of a generator fire right so apparently this ship has now been emptied of of all its"}, {"id": 558, "start": 1268.74, "end": 1273.0800000000002, "text": " chemicals and now they want to try to figure out what to do with it they're trying not to have to"}, {"id": 559, "start": 1273.0800000000002, "end": 1278.0, "text": " destroy it because it's a 600 million dollar ship and they only built it a couple years ago so they"}, {"id": 560, "start": 1278.0, "end": 1282.22, "text": " got a kind of interesting solution expensive artificial reef is what that is yeah pretty much"}, {"id": 561, "start": 1282.66, "end": 1288.98, "text": " this is the computer guru well at least they you know the fishes all have a nice place to to hang"}, {"id": 562, "start": 1288.98, "end": 1292.0, "text": " out now they got a cool way to how they want to get it up we'll talk about that after the break"}, {"id": 563, "start": 1292.0, "end": 1296.3600000000001, "text": " all right this is the computer guru show right here in wonderful one the truth tucson's new stock"}, {"id": 564, "start": 1296.3600000000001, "end": 1312.14, "text": " from viruses to spyware if your machine is acting strange the computer guru"}, {"id": 565, "start": 1312.66, "end": 1318.6000000000001, "text": " is here to help call 751-1041 and it's your problem solved on 1041 the truth"}, {"id": 566, "start": 1318.6000000000001, "end": 1324.0400000000002, "text": " welcome back to the computer guru show my name is mike here to deal with your technology needs"}, {"id": 567, "start": 1324.0400000000002, "end": 1328.0600000000002, "text": " and treat you like a real person in the process we'll do some roll call here we got randall and"}, {"id": 568, "start": 1328.0600000000002, "end": 1333.76, "text": " rob doing their thing here uh they're providing they're you guys are an integral part of the show"}, {"id": 569, "start": 1333.76, "end": 1336.9, "text": " except for i don't really need you and uh"}, {"id": 570, "start": 1336.9, "end": 1338.18, "text": " i knew there was a hook somewhere"}, {"id": 571, "start": 1338.18, "end": 1342.1000000000001, "text": " tony doing the boards and the phones very nice uh"}, {"id": 572, "start": 1342.66, "end": 1347.98, "text": " he uh he's he's getting so much better i'm very happy with the the with tony here now the pressure's"}, {"id": 573, "start": 1347.98, "end": 1353.14, "text": " on now he's gonna mess up yeah i was just gonna say great thanks thanks for that one let's find"}, {"id": 574, "start": 1353.14, "end": 1356.72, "text": " out if the epic fail button's working all right so let's go ahead and take another caller talk"}, {"id": 575, "start": 1356.72, "end": 1360.3600000000001, "text": " to adam hello adam how are you hey what's going on guys great show thanks for taking my call"}, {"id": 576, "start": 1360.3600000000001, "end": 1365.44, "text": " you're welcome how may i help you um i've had the blue screen of death twice today or yesterday"}, {"id": 577, "start": 1365.44, "end": 1372.5600000000002, "text": " actually and uh i actually copy and pasted it into notepad now um it's a bunch of bc code bc1"}, {"id": 578, "start": 1372.66, "end": 1381.98, "text": " bcp1 p2 p3 p4 i've never seen one like the start of the first one bc code 116 116 huh all right is it"}, {"id": 579, "start": 1381.98, "end": 1387.88, "text": " windows 7 i'm sorry yes it is 64 bit and when did this start happening just today uh yesterday"}, {"id": 580, "start": 1387.88, "end": 1391.92, "text": " yesterday what happened is there anything to change to get an update change hardware"}, {"id": 581, "start": 1391.92, "end": 1400.5, "text": " uh spill a soda on it no i think the only thing i did was on the floor updated my drivers for my"}, {"id": 582, "start": 1400.5, "end": 1402.64, "text": " video card aha what kind of video card did you get uh i don't know i don't know i don't know i don't know"}, {"id": 583, "start": 1402.66, "end": 1410.8400000000001, "text": " what do you have i have the dreaded amd ati yeah yeah yeah i have a but i haven't never had a"}, {"id": 584, "start": 1410.8400000000001, "end": 1415.5800000000002, "text": " problem with it okay until now until now this goes back you're assuming this goes back to what i've"}, {"id": 585, "start": 1415.5800000000002, "end": 1420.0800000000002, "text": " always said if it's not broke don't fix it if you're driving the driver's car is working good"}, {"id": 586, "start": 1420.0800000000002, "end": 1424.74, "text": " leave it alone what you know well he probably had to get an update for starcraft if you know"}, {"id": 587, "start": 1424.74, "end": 1428.5600000000002, "text": " don't don't want my pixels going bad on starcraft all right you gotta keep your pixels fresh"}, {"id": 588, "start": 1428.5600000000002, "end": 1432.5800000000002, "text": " but i have another i actually have another ati card in another machine and"}, {"id": 589, "start": 1432.66, "end": 1438.44, "text": " i've had that one for since 2005 and it works great no problems fantastic all right so 50 50"}, {"id": 590, "start": 1438.44, "end": 1441.78, "text": " all right here's what i would suggest that you try doing okay all right can you get in safe mode"}, {"id": 591, "start": 1441.78, "end": 1445.6200000000001, "text": " you get in the machine right just blue screens after a certain amount of time all right well"}, {"id": 592, "start": 1445.6200000000001, "end": 1449.8400000000001, "text": " yeah then i just have to you know hard correct read hard booted again and all right you need"}, {"id": 593, "start": 1449.8400000000001, "end": 1455.3400000000001, "text": " to do a driver rollback okay so you do you know how to do this do you not get into the device"}, {"id": 594, "start": 1455.3400000000001, "end": 1459.22, "text": " manager yeah but do i have to do from safe mode you don't necessarily have to if it lets you in"}, {"id": 595, "start": 1459.22, "end": 1462.64, "text": " in normal mode then you can do it from there okay so rollback"}, {"id": 596, "start": 1462.66, "end": 1465.6200000000001, "text": " drivers roll back to the previous driver and then see if your problem goes away"}, {"id": 597, "start": 1465.6200000000001, "end": 1471.78, "text": " okay and then wait for the next uh there'll be another update you know like next week there was"}, {"id": 598, "start": 1471.78, "end": 1478.22, "text": " also uh the first time it happened i went ahead and uh ran uh what is it you know a vast uh boot"}, {"id": 599, "start": 1478.22, "end": 1484.38, "text": " time scan right and it found a bunch of uh infected files in java and it deleted i deleted"}, {"id": 600, "start": 1484.38, "end": 1489.38, "text": " them all good um and that means you had an old java too that's about it all right so you need"}, {"id": 601, "start": 1489.38, "end": 1491.78, "text": " update your java okay roll back your video drivers"}, {"id": 602, "start": 1492.66, "end": 1496.26, "text": " okay and see if your problem goes away now if it does you're gonna wait like a week or two before"}, {"id": 603, "start": 1496.26, "end": 1501.5400000000002, "text": " for the next version of that video driver to come out okay now it was this through like a windows"}, {"id": 604, "start": 1501.5400000000002, "end": 1506.18, "text": " update or was this did you go to the manufacturer site i went to the site um my other computer for"}, {"id": 605, "start": 1506.18, "end": 1510.18, "text": " some reason automatically tells me when it needs it but my my main machine doesn't do that is there"}, {"id": 606, "start": 1510.18, "end": 1515.22, "text": " some setting i'm not using catalyst racing okay in the catalyst control center you can tell it"}, {"id": 607, "start": 1515.22, "end": 1519.46, "text": " hey i want updates or i don't all right and i was just wondering just curious what the other codes"}, {"id": 608, "start": 1519.46, "end": 1520.6200000000001, "text": " were bcp1 p2 p3 but those are just general codes that you can use to update your java driver so if"}, {"id": 609, "start": 1520.6200000000001, "end": 1521.6200000000001, "text": " you have a java driver and you want to update your java driver and you want to update your java driver"}, {"id": 610, "start": 1521.6200000000001, "end": 1521.7, "text": " and you want to update your java driver and you want to update your java driver and you want to update your java driver"}, {"id": 611, "start": 1521.7, "end": 1525.38, "text": " but those are just generally memory addresses okay so the first error is really the only"}, {"id": 612, "start": 1525.38, "end": 1529.78, "text": " important one okay and then the rest of it is just saying what was happening during that moment"}, {"id": 613, "start": 1530.42, "end": 1535.3, "text": " so go get and roll back your video driver hey i was rolling on the floor at the fedora joke"}, {"id": 614, "start": 1536.66, "end": 1541.06, "text": " have a great day thank you thanks man it seems funnier to us because we know somebody who wears"}, {"id": 615, "start": 1541.06, "end": 1547.78, "text": " a fedora hey and drives a prius prius suit hey and has a bluetooth usually not anymore because"}, {"id": 616, "start": 1547.78, "end": 1550.82, "text": " his prius has you know what's funny is that i've i've told a few people about the car"}, {"id": 617, "start": 1551.38, "end": 1551.54, "text": " yeah"}, {"id": 618, "start": 1551.7, "end": 1557.46, "text": " and they actually go are you serious actually our 104 one salesperson right you couldn't believe it"}, {"id": 619, "start": 1557.46, "end": 1563.3, "text": " she was just like you of all people is driving a liberal car that's what she said she didn't say"}, {"id": 620, "start": 1563.3, "end": 1571.94, "text": " that to me but uh yeah i spent a lot of money on fuel yes you do a lot so this this is definitely"}, {"id": 621, "start": 1571.94, "end": 1576.66, "text": " helping out am i and i i got the approval the validation that i needed to keep the car"}, {"id": 622, "start": 1576.66, "end": 1581.38, "text": " which was my daughter loves it oh okay she's just like yeah you can yeah you need to trade your car"}, {"id": 623, "start": 1581.38, "end": 1585.14, "text": " out for this one i've got a bet with randall that your next vehicle is a segway"}, {"id": 624, "start": 1587.7, "end": 1588.66, "text": " speaking of segways"}, {"id": 625, "start": 1591.14, "end": 1594.5800000000002, "text": " uh let's talk about your ship story because we've already teased it twice"}, {"id": 626, "start": 1594.5800000000002, "end": 1598.3400000000001, "text": " yeah um it's it's a pretty interesting story with the way that they're going to uh to try"}, {"id": 627, "start": 1598.3400000000001, "end": 1602.9, "text": " to re-float it so they don't have to destroy it so years ago there was a myth buster myth"}, {"id": 628, "start": 1602.9, "end": 1606.9, "text": " busters episode right where uh we couldn't figure we couldn't remember which what they refloated on"}, {"id": 629, "start": 1606.9, "end": 1610.3400000000001, "text": " myth but i believe it's like a tugboat or something it was about yeah some sort of small ping pong"}, {"id": 630, "start": 1610.3400000000001, "end": 1614.0200000000002, "text": " balls they did it using ping pong balls filling it up with ping pong balls because you know they're"}, {"id": 631, "start": 1614.0200000000002, "end": 1618.8200000000002, "text": " full of air and air floats in water apparently so apparently apparently i didn't know that until"}, {"id": 632, "start": 1618.8200000000002, "end": 1626.5800000000002, "text": " reading this story but his fart sank oh god but uh yeah so they want to fill it up with i think"}, {"id": 633, "start": 1626.5800000000002, "end": 1631.46, "text": " they said upwards of a million ping pong balls is what it's going to take to uh i think more"}, {"id": 634, "start": 1631.46, "end": 1634.9, "text": " no it probably will be that's a really big game they can't just go in there and fill up the"}, {"id": 635, "start": 1634.9, "end": 1639.8600000000001, "text": "uben balls they first have to go in there repair the parts to where the \u043e\u0433alls can flow out right"}, {"id": 636, "start": 1640.3400000000001, "end": 1642.88, "text": " That would contaminate the ocean for the second time."}, {"id": 637, "start": 1643.3600000000001, "end": 1648.18, "text": " Yeah, I don't know that ping-pong balls would be much of an environmental hazard."}, {"id": 638, "start": 1648.3600000000001, "end": 1650.1200000000001, "text": " Well, actually, you'd be surprised."}, {"id": 639, "start": 1650.2200000000003, "end": 1651.8200000000002, "text": " I bet you all the animals and stuff like that."}, {"id": 640, "start": 1651.8200000000002, "end": 1653.94, "text": " Seagulls, like, diving down to pick up the, you know."}, {"id": 641, "start": 1654.0400000000002, "end": 1654.44, "text": " Yeah, okay."}, {"id": 642, "start": 1655.64, "end": 1658.5200000000002, "text": " But, yeah, that's an interesting way of doing it."}, {"id": 643, "start": 1658.5600000000002, "end": 1659.3400000000001, "text": " It is, it is."}, {"id": 644, "start": 1659.3600000000001, "end": 1661.2800000000002, "text": " Actually, this is not a new theory, though."}, {"id": 645, "start": 1661.3600000000001, "end": 1665.8000000000002, "text": " I mean, back when Titanic sank, there was actually somebody who was saying that there's something like this."}, {"id": 646, "start": 1665.8000000000002, "end": 1669.88, "text": " Of course, not ping-pong balls at the time, but glass balls filled with air."}, {"id": 647, "start": 1669.88, "end": 1670.8400000000001, "text": " They did the same thing."}, {"id": 648, "start": 1671.0400000000002, "end": 1673.3600000000001, "text": " The problem is they couldn't figure out how to get that deep into the ocean."}, {"id": 649, "start": 1673.46, "end": 1673.7, "text": " Right."}, {"id": 650, "start": 1673.8200000000002, "end": 1679.2, "text": " Now, of course, we can, but in the course of Tanks, you know, to disassemble it, to do anything with it."}, {"id": 651, "start": 1679.4, "end": 1679.66, "text": " Right."}, {"id": 652, "start": 1680.3200000000002, "end": 1682.18, "text": " But, you know, so this is not a new theory."}, {"id": 653, "start": 1682.3600000000001, "end": 1685.64, "text": " It's been going out for a long time, so if they actually do it, it'll be absolutely amazing."}, {"id": 654, "start": 1685.74, "end": 1687.48, "text": " The only other option is they have two other options."}, {"id": 655, "start": 1687.68, "end": 1690.92, "text": " I'm going to check my ship facts report, though, to find out if that's going to flood it."}, {"id": 656, "start": 1692.3600000000001, "end": 1697.2, "text": " The other options are they could either, A, disassemble it on location, take it up piece by piece,"}, {"id": 657, "start": 1697.2, "end": 1699.8600000000001, "text": " a big giant magnet to get any fallen debris."}, {"id": 658, "start": 1700.42, "end": 1701.0200000000002, "text": " How does this work?"}, {"id": 659, "start": 1701.24, "end": 1701.92, "text": " Yeah, I don't know."}, {"id": 660, "start": 1701.98, "end": 1702.3400000000001, "text": " It's magic."}, {"id": 661, "start": 1702.7600000000002, "end": 1706.88, "text": " The other option, which is actually a cool option, but it's a very expensive loss,"}, {"id": 662, "start": 1707.24, "end": 1713.1000000000001, "text": " is they could actually strip it of all the vital components, all the components that can contaminate the ocean,"}, {"id": 663, "start": 1713.5800000000002, "end": 1717.38, "text": " and just push it off the cliff, because there actually is a 200-foot cliff that it's teetering on."}, {"id": 664, "start": 1717.5200000000002, "end": 1718.8400000000001, "text": " That really shouldn't be the solution."}, {"id": 665, "start": 1719.0200000000002, "end": 1719.7, "text": " No, no, no."}, {"id": 666, "start": 1719.74, "end": 1720.3200000000002, "text": " Push it away."}, {"id": 667, "start": 1720.6000000000001, "end": 1722.64, "text": " They could push it off the cliff and be a reef."}, {"id": 668, "start": 1722.7600000000002, "end": 1723.2600000000002, "text": " It turns into a reef."}, {"id": 669, "start": 1723.2600000000002, "end": 1723.44, "text": " Artificial reef."}, {"id": 670, "start": 1723.44, "end": 1724.64, "text": " And they do that with ships all the time."}, {"id": 671, "start": 1724.64, "end": 1728.0800000000002, "text": " And the Navy takes ships out into the middle of the ocean all the time and just sink them."}, {"id": 672, "start": 1728.22, "end": 1729.8600000000001, "text": " Did anybody ask the fish if they wanted the Navy?"}, {"id": 673, "start": 1730.42, "end": 1733.5200000000002, "text": " Well, what about all the fish that it's going to kill when it falls on them?"}, {"id": 674, "start": 1733.5800000000002, "end": 1734.16, "text": " Yeah, exactly."}, {"id": 675, "start": 1735.6000000000001, "end": 1736.68, "text": " Here's a new reef, guys."}, {"id": 676, "start": 1738.2600000000002, "end": 1738.6200000000001, "text": " Nemo!"}, {"id": 677, "start": 1738.8000000000002, "end": 1739.0600000000002, "text": " Oh, sorry."}, {"id": 678, "start": 1740.5600000000002, "end": 1745.6200000000001, "text": " As far as them, do you think it's really viable that they could reuse the ship if they can get it up right again?"}, {"id": 679, "start": 1745.6200000000001, "end": 1749.42, "text": " You know, I mean, it hasn't been down too long, and it's not fully submerged either."}, {"id": 680, "start": 1749.5200000000002, "end": 1750.8200000000002, "text": " Only part of it's underwater."}, {"id": 681, "start": 1751.2600000000002, "end": 1752.2600000000002, "text": " So could they?"}, {"id": 682, "start": 1752.7600000000002, "end": 1754.1000000000001, "text": " I mean, float it and put it on Craigslist."}, {"id": 683, "start": 1755.42, "end": 1755.7800000000002, "text": " Craigslist."}, {"id": 684, "start": 1755.98, "end": 1757.0600000000002, "text": " Like a normal person would do."}, {"id": 685, "start": 1757.0600000000002, "end": 1758.1200000000001, "text": " Look what they do with flooded cars."}, {"id": 686, "start": 1758.2600000000002, "end": 1759.46, "text": " They can reuse those."}, {"id": 687, "start": 1759.72, "end": 1759.8600000000001, "text": " So, yeah."}, {"id": 688, "start": 1759.8600000000001, "end": 1759.88, "text": " Yeah."}, {"id": 689, "start": 1760.0, "end": 1760.48, "text": " They can do it."}, {"id": 690, "start": 1760.6000000000001, "end": 1761.3200000000002, "text": " They shouldn't."}, {"id": 691, "start": 1761.4, "end": 1762.4, "text": " They shouldn't, but they could."}, {"id": 692, "start": 1762.5, "end": 1763.18, "text": " That's all I'm saying."}, {"id": 693, "start": 1763.2600000000002, "end": 1764.98, "text": " Do I get a discounted ticket if I go on that ship?"}, {"id": 694, "start": 1765.42, "end": 1766.14, "text": " I'm not going on that ship."}, {"id": 695, "start": 1767.5200000000002, "end": 1768.7, "text": " Apparently, none of them."}, {"id": 696, "start": 1768.92, "end": 1769.88, "text": " Yeah, not its ship."}, {"id": 697, "start": 1770.0600000000002, "end": 1773.2600000000002, "text": " I mean, the sister ships that go with it, they are all plagued."}, {"id": 698, "start": 1773.3200000000002, "end": 1774.48, "text": " Well, this right here, exactly."}, {"id": 699, "start": 1774.5600000000002, "end": 1779.8000000000002, "text": " This just proves that you can't go out and say stuff like, oh, it's unsinkable and stuff like that."}, {"id": 700, "start": 1779.8400000000001, "end": 1782.0200000000002, "text": " This thing was twice the size of Titanic, and they were proud of that."}, {"id": 701, "start": 1782.24, "end": 1783.42, "text": " Poseidon will get you every time."}, {"id": 702, "start": 1783.6000000000001, "end": 1784.5200000000002, "text": " Poseidon will get you."}, {"id": 703, "start": 1784.5600000000002, "end": 1785.14, "text": " Every time."}, {"id": 704, "start": 1785.94, "end": 1787.66, "text": " This proves there's this thing as a jinx."}, {"id": 705, "start": 1789.14, "end": 1789.46, "text": " Okay."}, {"id": 706, "start": 1789.46, "end": 1789.66, "text": " Okay."}, {"id": 707, "start": 1790.5, "end": 1792.8400000000001, "text": " So, the Kony 2012 thing."}, {"id": 708, "start": 1793.0, "end": 1793.5600000000002, "text": " The what?"}, {"id": 709, "start": 1794.1000000000001, "end": 1797.0600000000002, "text": " You haven't even heard it, which I find quite amazing, actually."}, {"id": 710, "start": 1797.0600000000002, "end": 1797.96, "text": " Yeah, I haven't heard this."}, {"id": 711, "start": 1797.96, "end": 1798.8200000000002, "text": " Considering you're doing show research."}, {"id": 712, "start": 1798.8400000000001, "end": 1799.3400000000001, "text": " What is this?"}, {"id": 713, "start": 1799.9, "end": 1802.68, "text": " So, there's this group called Invisible Children."}, {"id": 714, "start": 1802.9, "end": 1803.18, "text": " Okay."}, {"id": 715, "start": 1803.3200000000002, "end": 1812.0200000000002, "text": " They put together a 30-minute video talking about an African warlord that is enslaving children into a young person's militia."}, {"id": 716, "start": 1812.92, "end": 1815.2600000000002, "text": " And basically, he has a bunch of nine-year-olds in his army."}, {"id": 717, "start": 1815.94, "end": 1816.72, "text": " Now, there's a-"}, {"id": 718, "start": 1816.72, "end": 1817.7800000000002, "text": " Well, China does the same thing."}, {"id": 719, "start": 1817.8400000000001, "end": 1818.5600000000002, "text": " It's called Foxconn."}, {"id": 720, "start": 1818.7600000000002, "end": 1819.46, "text": " There's a-"}, {"id": 721, "start": 1819.46, "end": 1821.2, "text": " Sorry, sorry."}, {"id": 722, "start": 1821.64, "end": 1821.88, "text": " All right."}, {"id": 723, "start": 1821.92, "end": 1823.58, "text": " So, there's a couple of things wrong with this."}, {"id": 724, "start": 1823.6200000000001, "end": 1828.1000000000001, "text": " Now, first of all, it's been huge on Facebook and on, I mean, lots of Reddit stuff."}, {"id": 725, "start": 1828.26, "end": 1828.42, "text": " Right."}, {"id": 726, "start": 1829.1200000000001, "end": 1830.82, "text": " It's a big, big story."}, {"id": 727, "start": 1830.96, "end": 1831.24, "text": " Okay."}, {"id": 728, "start": 1831.3600000000001, "end": 1832.42, "text": " There's a couple of problems with it."}, {"id": 729, "start": 1832.58, "end": 1832.8400000000001, "text": " Mm-hmm."}, {"id": 730, "start": 1833.2, "end": 1834.74, "text": " First one, it's 10 years old."}, {"id": 731, "start": 1835.22, "end": 1835.54, "text": " Yeah."}, {"id": 732, "start": 1835.54, "end": 1835.72, "text": " Right."}, {"id": 733, "start": 1835.9, "end": 1837.3600000000001, "text": " And then, secondly, it's fake."}, {"id": 734, "start": 1837.44, "end": 1838.72, "text": " So, they're not children anymore."}, {"id": 735, "start": 1839.1200000000001, "end": 1840.1200000000001, "text": " Yeah, I thought it was 10 years old."}, {"id": 736, "start": 1840.1200000000001, "end": 1840.7, "text": " I thought it was nine years old."}, {"id": 737, "start": 1841.08, "end": 1841.28, "text": " Yeah."}, {"id": 738, "start": 1841.42, "end": 1847.82, "text": " So, the problem with it is that it's a social experiment that these people put together."}, {"id": 739, "start": 1847.98, "end": 1848.72, "text": " So, they can go viral."}, {"id": 740, "start": 1848.72, "end": 1851.14, "text": " They're donating to the Invisible Children group, by the way."}, {"id": 741, "start": 1851.22, "end": 1852.6200000000001, "text": " I mean, it's called Invisible Children."}, {"id": 742, "start": 1853.14, "end": 1854.24, "text": " Loads of money."}, {"id": 743, "start": 1854.6200000000001, "end": 1854.92, "text": " All right."}, {"id": 744, "start": 1855.02, "end": 1858.78, "text": " And it turns out that they're not the type of foundation that is required to turn over"}, {"id": 745, "start": 1858.78, "end": 1860.38, "text": " a certain percentage of money."}, {"id": 746, "start": 1860.6000000000001, "end": 1861.0, "text": " Nice."}, {"id": 747, "start": 1861.34, "end": 1865.34, "text": " So, they're estimating that only around 25% of the money that you donate to them is actually"}, {"id": 748, "start": 1865.34, "end": 1867.52, "text": " making it over to Uganda in the first place."}, {"id": 749, "start": 1868.0, "end": 1868.9, "text": " To nothing, though."}, {"id": 750, "start": 1868.92, "end": 1873.72, "text": " And beyond that, it goes to the Ugandan government and probably never reaches the people it's"}, {"id": 751, "start": 1873.72, "end": 1874.48, "text": " intended to help."}, {"id": 752, "start": 1875.3, "end": 1878.58, "text": " So, chill out on the Kony 2012."}, {"id": 753, "start": 1878.72, "end": 1882.24, "text": " So, the rest of the money is being used to build a giant middle finger, like in the middle"}, {"id": 754, "start": 1882.24, "end": 1882.72, "text": " of the desert."}, {"id": 755, "start": 1883.66, "end": 1884.5, "text": " I told you."}, {"id": 756, "start": 1885.32, "end": 1885.72, "text": " Blinking."}, {"id": 757, "start": 1885.92, "end": 1887.5, "text": " With that guy sitting right on the top."}, {"id": 758, "start": 1888.6000000000001, "end": 1894.66, "text": " So, the Kony 2012 thing is a social experiment these people put together to see if they can"}, {"id": 759, "start": 1894.66, "end": 1897.96, "text": " make a 30-minute video go viral, which they did in a huge way."}, {"id": 760, "start": 1897.96, "end": 1899.18, "text": " Which it definitely did."}, {"id": 761, "start": 1899.5, "end": 1901.78, "text": " 40 million views in like a couple days."}, {"id": 762, "start": 1902.2, "end": 1903.0, "text": " It wasn't on Equals 3."}, {"id": 763, "start": 1903.3, "end": 1904.84, "text": " If it wasn't on Equals 3, it doesn't count."}, {"id": 764, "start": 1905.64, "end": 1907.84, "text": " And the thing is, is that, you know, there's..."}, {"id": 765, "start": 1908.72, "end": 1910.42, "text": " They're just playing on people's heartstrings."}, {"id": 766, "start": 1910.52, "end": 1910.74, "text": " Right."}, {"id": 767, "start": 1910.92, "end": 1913.76, "text": " And it's unfortunate that so many people are falling for it."}, {"id": 768, "start": 1914.02, "end": 1916.78, "text": " You've got to be a lot more skeptical when you're dealing with anything when it comes"}, {"id": 769, "start": 1916.78, "end": 1917.26, "text": " to..."}, {"id": 770, "start": 1917.26, "end": 1918.1000000000001, "text": " It comes with money."}, {"id": 771, "start": 1918.6200000000001, "end": 1921.72, "text": " For that kind of money, though, I mean, next week, Computer Guru gets behind a cause."}, {"id": 772, "start": 1921.88, "end": 1922.64, "text": " Like, I don't know, you know?"}, {"id": 773, "start": 1922.8600000000001, "end": 1923.92, "text": " That's quite a bit of money."}, {"id": 774, "start": 1923.92, "end": 1928.58, "text": " You know, I would think about these things, but it's those darn ethics and morals that"}, {"id": 775, "start": 1928.58, "end": 1929.26, "text": " keep getting in the way."}, {"id": 776, "start": 1929.42, "end": 1931.02, "text": " So, next week, we're going to develop Invisible Gurus?"}, {"id": 777, "start": 1931.4, "end": 1931.68, "text": " Right."}, {"id": 778, "start": 1933.32, "end": 1937.72, "text": " So, just don't give them any money, first of all."}, {"id": 779, "start": 1937.84, "end": 1938.32, "text": " Now..."}, {"id": 780, "start": 1938.32, "end": 1943.82, "text": " Admittedly, they are actually donating money to the Ugandan government to help out with"}, {"id": 781, "start": 1943.82, "end": 1945.6399999999999, "text": " that area of the world."}, {"id": 782, "start": 1945.72, "end": 1945.9199999999998, "text": " Right."}, {"id": 783, "start": 1946.48, "end": 1950.6599999999999, "text": " But the reason that they're giving it up is, first of all, dated."}, {"id": 784, "start": 1950.96, "end": 1952.2, "text": " It's a 10-year-old story."}, {"id": 785, "start": 1952.32, "end": 1952.6, "text": " Right."}, {"id": 786, "start": 1952.6, "end": 1957.3999999999999, "text": " And secondly, it's a way to get you to give up your cash."}, {"id": 787, "start": 1958.04, "end": 1959.3, "text": " So, don't do it."}, {"id": 788, "start": 1959.36, "end": 1960.8, "text": " And no matter what Facebook says."}, {"id": 789, "start": 1960.8999999999999, "end": 1961.48, "text": " So, stop that."}, {"id": 790, "start": 1961.6599999999999, "end": 1961.84, "text": " Right."}, {"id": 791, "start": 1962.02, "end": 1962.34, "text": " Quit it."}, {"id": 792, "start": 1962.46, "end": 1965.58, "text": " No matter what your Mac tells you while you're at Starbucks, don't donate."}, {"id": 793, "start": 1966.1399999999999, "end": 1966.54, "text": " Wow."}, {"id": 794, "start": 1967.1, "end": 1968.1399999999999, "text": " You're really riding this one."}, {"id": 795, "start": 1968.32, "end": 1969.1, "text": " He is, man."}, {"id": 796, "start": 1969.26, "end": 1969.74, "text": " All right."}, {"id": 797, "start": 1969.84, "end": 1970.1799999999998, "text": " Okay."}, {"id": 798, "start": 1970.22, "end": 1970.72, "text": " That's fine."}, {"id": 799, "start": 1971.12, "end": 1971.62, "text": " What's next, man?"}, {"id": 800, "start": 1972.22, "end": 1972.98, "text": " Oh, gosh."}, {"id": 801, "start": 1973.0, "end": 1973.3799999999999, "text": " Let's see."}, {"id": 802, "start": 1973.48, "end": 1975.82, "text": " We already talked about the iPad and the iPhone."}, {"id": 803, "start": 1976.52, "end": 1977.36, "text": " Hey, guess what, guys?"}, {"id": 804, "start": 1977.46, "end": 1978.54, "text": " AOL might be going out of business."}, {"id": 805, "start": 1979.12, "end": 1979.48, "text": " What?"}, {"id": 806, "start": 1979.72, "end": 1979.9199999999998, "text": " What?"}, {"id": 807, "start": 1980.28, "end": 1980.52, "text": " Woo-hoo!"}, {"id": 808, "start": 1980.9399999999998, "end": 1981.9199999999998, "text": " This is news?"}, {"id": 809, "start": 1982.06, "end": 1982.3, "text": " Yeah."}, {"id": 810, "start": 1982.54, "end": 1983.3799999999999, "text": " Apparently, it is."}, {"id": 811, "start": 1983.4399999999998, "end": 1985.82, "text": " Apparently, AOL, they're laying off another 40 people."}, {"id": 812, "start": 1985.86, "end": 1986.74, "text": " So, that's half their staff."}, {"id": 813, "start": 1987.24, "end": 1987.7, "text": " No, I'm sorry."}, {"id": 814, "start": 1988.1599999999999, "end": 1988.84, "text": " Pretty much."}, {"id": 815, "start": 1988.84, "end": 1991.46, "text": " Here's the thing, though, is that I made that prediction 10 years ago."}, {"id": 816, "start": 1991.6399999999999, "end": 1991.8799999999999, "text": " We did."}, {"id": 817, "start": 1992.06, "end": 1992.8999999999999, "text": " Yeah, absolutely."}, {"id": 818, "start": 1993.2, "end": 1995.06, "text": " But, you know, AOL has recently acquired..."}, {"id": 819, "start": 1995.06, "end": 1998.1599999999999, "text": " I didn't know this until I read the story, but did you know AOL actually owns some of the..."}, {"id": 820, "start": 1998.1599999999999, "end": 1998.2, "text": " Yeah."}, {"id": 821, "start": 1998.32, "end": 1999.82, "text": " Some of the blog spots that you go to?"}, {"id": 822, "start": 2000.12, "end": 2001.46, "text": " They should not be acquiring anything."}, {"id": 823, "start": 2001.8999999999999, "end": 2003.1, "text": " Which one are you talking about?"}, {"id": 824, "start": 2003.1399999999999, "end": 2004.02, "text": " They own..."}, {"id": 825, "start": 2004.02, "end": 2004.8, "text": " Don't say Lifehacker."}, {"id": 826, "start": 2004.9199999999998, "end": 2005.54, "text": " No, no."}, {"id": 827, "start": 2005.58, "end": 2006.1, "text": " What's the other one?"}, {"id": 828, "start": 2006.98, "end": 2007.84, "text": " Gizmodo and Gadget."}, {"id": 829, "start": 2007.9199999999998, "end": 2008.58, "text": " They own Gadget."}, {"id": 830, "start": 2008.72, "end": 2009.4199999999998, "text": " They own Gadget."}, {"id": 831, "start": 2009.6, "end": 2010.4399999999998, "text": " As long as it's not Lifehacker."}, {"id": 832, "start": 2010.6, "end": 2012.0, "text": " Lifehacker's, like, my favorite website ever."}, {"id": 833, "start": 2012.26, "end": 2013.72, "text": " Well, Reddit's its own deal now."}, {"id": 834, "start": 2013.98, "end": 2015.06, "text": " Yeah, Reddit is its own deal."}, {"id": 835, "start": 2015.06, "end": 2020.24, "text": " Well, apparently, AOL, the new CEO, he's not turning the company around like he was supposed to."}, {"id": 836, "start": 2020.6599999999999, "end": 2022.84, "text": " How are you going to turn around that company?"}, {"id": 837, "start": 2023.1, "end": 2024.84, "text": " Their business model is completely ancient."}, {"id": 838, "start": 2025.3999999999999, "end": 2026.6399999999999, "text": " I mean, there's no point to it."}, {"id": 839, "start": 2026.6599999999999, "end": 2028.1599999999999, "text": " Well, the problem is that AOL..."}, {"id": 840, "start": 2028.16, "end": 2030.8600000000001, "text": " I mean, they're part of, like, Time Warner and all."}, {"id": 841, "start": 2030.8600000000001, "end": 2032.1200000000001, "text": " Well, no, they got rid of them, yeah."}, {"id": 842, "start": 2032.28, "end": 2037.3400000000001, "text": " So, I mean, they had all this big money behind them to be able to support that type of infrastructure."}, {"id": 843, "start": 2037.44, "end": 2037.5600000000002, "text": " Right."}, {"id": 844, "start": 2037.5600000000002, "end": 2038.26, "text": " To take a loss."}, {"id": 845, "start": 2038.3200000000002, "end": 2039.3000000000002, "text": " They call it the loss leader."}, {"id": 846, "start": 2039.48, "end": 2039.72, "text": " Right."}, {"id": 847, "start": 2039.8000000000002, "end": 2043.14, "text": " Right, where you can take a loss on one side of things to make up for it somewhere else."}, {"id": 848, "start": 2043.14, "end": 2043.64, "text": " Well, they're not."}, {"id": 849, "start": 2043.8400000000001, "end": 2044.9, "text": " They're not making up for it."}, {"id": 850, "start": 2044.9, "end": 2048.06, "text": " The Engadget investment has not paid off for them."}, {"id": 851, "start": 2048.1800000000003, "end": 2048.6, "text": " They lost..."}, {"id": 852, "start": 2048.6, "end": 2049.36, "text": " They've actually..."}, {"id": 853, "start": 2049.36, "end": 2052.28, "text": " Engadget's actually lost, like, ten writers since AOL's taken over."}, {"id": 854, "start": 2053.04, "end": 2053.98, "text": " You know, they're like, I'm done."}, {"id": 855, "start": 2053.98, "end": 2055.12, "text": " Engadget's pretty awesome."}, {"id": 856, "start": 2055.26, "end": 2055.6, "text": " They are."}, {"id": 857, "start": 2055.7400000000002, "end": 2057.64, "text": " It just kind of sucks that they're going to go downhill now."}, {"id": 858, "start": 2057.64, "end": 2058.0, "text": " Well, I mean..."}, {"id": 859, "start": 2058.0, "end": 2059.38, "text": " I mean, Engadget won't go away."}, {"id": 860, "start": 2059.82, "end": 2061.42, "text": " Engadget will be sold to somebody else or whatever."}, {"id": 861, "start": 2061.92, "end": 2065.46, "text": " But, yeah, I mean, AOL, they're a big surprise to everybody."}, {"id": 862, "start": 2065.7, "end": 2066.82, "text": " They may not be around for much longer."}, {"id": 863, "start": 2066.82, "end": 2068.08, "text": " So, what are you going to do?"}, {"id": 864, "start": 2068.7, "end": 2073.08, "text": " We're talking to people who, like, we had a guy that came into the shop last week."}, {"id": 865, "start": 2073.18, "end": 2073.36, "text": " Right."}, {"id": 866, "start": 2073.36, "end": 2073.96, "text": " I remember that."}, {"id": 867, "start": 2074.2, "end": 2075.4, "text": " He's fully ensconced in AOL."}, {"id": 868, "start": 2075.56, "end": 2075.78, "text": " Right."}, {"id": 869, "start": 2076.08, "end": 2076.32, "text": " All right."}, {"id": 870, "start": 2076.42, "end": 2081.66, "text": " So, what is the solution for people who are stuck in AOL?"}, {"id": 871, "start": 2081.72, "end": 2081.98, "text": " Gmail."}, {"id": 872, "start": 2081.98, "end": 2082.08, "text": " You know what?"}, {"id": 873, "start": 2082.72, "end": 2083.08, "text": " Exactly."}, {"id": 874, "start": 2083.26, "end": 2087.12, "text": " You know, a lot of my clients, I've been switching them over to Gmail, and Gmail's made it so"}, {"id": 875, "start": 2087.12, "end": 2087.98, "text": " easy to do that."}, {"id": 876, "start": 2088.0, "end": 2090.82, "text": " I mean, you can simply tell Gmail that you have an AOL account."}, {"id": 877, "start": 2090.92, "end": 2096.5, "text": " It'll go out and fetch your AOL email, and then you can tell all your contacts, this"}, {"id": 878, "start": 2096.5, "end": 2097.78, "text": " is your new email address."}, {"id": 879, "start": 2099.4, "end": 2101.28, "text": " Gmail, in my opinion, is the way to go."}, {"id": 880, "start": 2101.44, "end": 2104.22, "text": " You need to get away from AOL as soon as you possibly can."}, {"id": 881, "start": 2104.32, "end": 2106.64, "text": " No amount of ping pong balls is going to refloat the AOL ship."}, {"id": 882, "start": 2106.8, "end": 2106.96, "text": " No."}, {"id": 883, "start": 2107.02, "end": 2107.8, "text": " You're exactly right."}, {"id": 884, "start": 2107.9, "end": 2108.36, "text": " Good segue."}, {"id": 885, "start": 2108.62, "end": 2108.98, "text": " Absolutely."}, {"id": 886, "start": 2109.1, "end": 2110.46, "text": " There's no way it can happen."}, {"id": 887, "start": 2110.62, "end": 2111.12, "text": " It's dead."}, {"id": 888, "start": 2111.26, "end": 2112.14, "text": " Get on the Gmail boat."}, {"id": 889, "start": 2112.14, "end": 2112.86, "text": " I'm going to have to get a segue."}, {"id": 890, "start": 2113.54, "end": 2114.28, "text": " I told you."}, {"id": 891, "start": 2114.62, "end": 2115.36, "text": " I told you."}, {"id": 892, "start": 2115.36, "end": 2115.42, "text": " I told you."}, {"id": 893, "start": 2115.42, "end": 2115.48, "text": " I told you."}, {"id": 894, "start": 2115.48, "end": 2115.54, "text": " I told you."}, {"id": 895, "start": 2115.54, "end": 2115.56, "text": " I told you."}, {"id": 896, "start": 2115.56, "end": 2115.58, "text": " I told you."}, {"id": 897, "start": 2115.58, "end": 2115.62, "text": " I told you."}, {"id": 898, "start": 2115.62, "end": 2115.68, "text": " I told you."}, {"id": 899, "start": 2115.68, "end": 2115.7, "text": " I told you."}, {"id": 900, "start": 2115.7, "end": 2115.78, "text": " I told you."}, {"id": 901, "start": 2115.78, "end": 2118.7400000000002, "text": " You can write it around the shop."}, {"id": 902, "start": 2119.5600000000004, "end": 2120.76, "text": " We have a 1,200-foot shop."}, {"id": 903, "start": 2122.28, "end": 2124.02, "text": " This is the Computer Guru."}, {"id": 904, "start": 2125.86, "end": 2128.44, "text": " That's how I'm going to get from one side of the kitchen to the other."}, {"id": 905, "start": 2128.6400000000003, "end": 2128.96, "text": " Right?"}, {"id": 906, "start": 2129.1000000000004, "end": 2129.6400000000003, "text": " Good segue."}, {"id": 907, "start": 2130.3, "end": 2131.6800000000003, "text": " You're listening to the Computer Guru Show."}, {"id": 908, "start": 2131.7400000000002, "end": 2133.5400000000004, "text": " Give us a call, 751-1041."}, {"id": 909, "start": 2133.88, "end": 2134.5600000000004, "text": " We'll be right back."}, {"id": 910, "start": 2138.7400000000002, "end": 2141.7200000000003, "text": " Get your questions from software to hardware answered."}, {"id": 911, "start": 2141.7200000000003, "end": 2143.82, "text": " Call 751-1041."}, {"id": 912, "start": 2143.98, "end": 2145.02, "text": " The Computer Guru."}, {"id": 913, "start": 2145.28, "end": 2145.76, "text": " We'll solve your questions."}, {"id": 914, "start": 2145.78, "end": 2146.42, "text": " We'll solve your problem."}, {"id": 915, "start": 2146.6000000000004, "end": 2148.32, "text": " On 104.1, The Truth."}, {"id": 916, "start": 2156.6800000000003, "end": 2158.34, "text": " Welcome back to the Computer Guru Show."}, {"id": 917, "start": 2158.4, "end": 2158.82, "text": " My name is Mike."}, {"id": 918, "start": 2158.9, "end": 2162.78, "text": " Here to do what your technology needs and treat you like a real person in the process."}, {"id": 919, "start": 2163.2400000000002, "end": 2165.8, "text": " A little bit of confusion here because we've added a guest to the show."}, {"id": 920, "start": 2166.5, "end": 2167.78, "text": " And as soon as everybody gets..."}, {"id": 921, "start": 2168.46, "end": 2170.76, "text": " It's like musical chairs in here right now."}, {"id": 922, "start": 2170.8, "end": 2171.48, "text": " It's kind of interesting."}, {"id": 923, "start": 2171.7000000000003, "end": 2173.48, "text": " But I think we'll all get it all straightened out."}, {"id": 924, "start": 2173.6200000000003, "end": 2175.48, "text": " So if you'd like to be part of the show, 751-1041."}, {"id": 925, "start": 2175.78, "end": 2179.02, "text": " We'll see what we can do to help you out with whatever technology issues are ailing you."}, {"id": 926, "start": 2179.7000000000003, "end": 2184.38, "text": " And I'm going to welcome the guest into the show right now, Mr. James T. Harris."}, {"id": 927, "start": 2184.52, "end": 2186.0400000000004, "text": " I'm surrounded by PCs, man."}, {"id": 928, "start": 2186.6800000000003, "end": 2188.36, "text": " Well, there's just an iPad over here."}, {"id": 929, "start": 2188.38, "end": 2188.6200000000003, "text": " Okay."}, {"id": 930, "start": 2189.9, "end": 2191.84, "text": " I feel like you're all right."}, {"id": 931, "start": 2192.7200000000003, "end": 2194.02, "text": " So how are things going, man?"}, {"id": 932, "start": 2194.5600000000004, "end": 2194.92, "text": " Fantastic."}, {"id": 933, "start": 2195.32, "end": 2196.84, "text": " I'm glad to be a part of the crew."}, {"id": 934, "start": 2196.96, "end": 2198.46, "text": " I hear you guys on Saturdays."}, {"id": 935, "start": 2199.1200000000003, "end": 2203.28, "text": " And gosh, now I'm in the studio and there's so much more high-tech stuff in here."}, {"id": 936, "start": 2203.32, "end": 2204.2400000000002, "text": " Yeah, a little bit."}, {"id": 937, "start": 2204.5600000000004, "end": 2204.7200000000003, "text": " Yeah."}, {"id": 938, "start": 2204.7200000000003, "end": 2205.6800000000003, "text": " We try to keep it high-tech."}, {"id": 939, "start": 2205.78, "end": 2206.2400000000002, "text": " Where would we go?"}, {"id": 940, "start": 2206.36, "end": 2207.1200000000003, "text": " Well, yeah, I guess that would be..."}, {"id": 941, "start": 2207.1200000000003, "end": 2208.38, "text": " You're used to the Mac, so it's high-tech."}, {"id": 942, "start": 2208.6200000000003, "end": 2208.88, "text": " Oh!"}, {"id": 943, "start": 2210.8, "end": 2211.6000000000004, "text": " It starts!"}, {"id": 944, "start": 2211.9, "end": 2212.96, "text": " You're not swinging."}, {"id": 945, "start": 2214.5400000000004, "end": 2214.86, "text": " Nice."}, {"id": 946, "start": 2215.52, "end": 2215.88, "text": " All right."}, {"id": 947, "start": 2215.88, "end": 2221.0, "text": " So we've got sort of the ultimate of Mac aficionados over here."}, {"id": 948, "start": 2221.0, "end": 2221.7400000000002, "text": " I'm a fanboy."}, {"id": 949, "start": 2221.86, "end": 2222.7200000000003, "text": " Yeah, you're a fanboy."}, {"id": 950, "start": 2222.84, "end": 2224.76, "text": " And then we've got the ultimate Mac hater over here."}, {"id": 951, "start": 2224.76, "end": 2227.78, "text": " I think that it should be called the ultimate Mac troll because that's really what it's about."}, {"id": 952, "start": 2227.86, "end": 2230.32, "text": " It's just those Mac fanboys get so mad when you make fun of them."}, {"id": 953, "start": 2230.44, "end": 2231.5800000000004, "text": " You know, I'm already angry."}, {"id": 954, "start": 2231.7200000000003, "end": 2232.6000000000004, "text": " I'm looking at your computer."}, {"id": 955, "start": 2232.7400000000002, "end": 2234.82, "text": " You have the new iPad hands-on."}, {"id": 956, "start": 2234.94, "end": 2235.3, "text": " Little..."}, {"id": 957, "start": 2235.3, "end": 2237.0600000000004, "text": " Analysis here."}, {"id": 958, "start": 2237.2200000000003, "end": 2237.42, "text": " Yeah."}, {"id": 959, "start": 2238.86, "end": 2241.4, "text": " What is this, a pro or positive or negative here?"}, {"id": 960, "start": 2241.4, "end": 2244.0800000000004, "text": " Actually, I will say that I think the new iPad's pretty cool."}, {"id": 961, "start": 2244.36, "end": 2249.2000000000003, "text": " Because that was one of the questions I wanted to ask you guys because I have the first generation iPad."}, {"id": 962, "start": 2249.2000000000003, "end": 2252.3, "text": " And I'm looking at, you know, getting an iPad 3."}, {"id": 963, "start": 2253.02, "end": 2258.8, "text": " But, you know, the rollout for iPad 3 wasn't as exciting as 1, 2, or any..."}, {"id": 964, "start": 2258.8, "end": 2261.04, "text": " You know, with Steve and Jobs being gone now."}, {"id": 965, "start": 2261.1400000000003, "end": 2264.92, "text": " Well, you can only use the same hype game so many times before you sort of get..."}, {"id": 966, "start": 2264.92, "end": 2264.94, "text": " Right."}, {"id": 967, "start": 2264.94, "end": 2264.96, "text": " Right."}, {"id": 968, "start": 2264.96, "end": 2264.98, "text": " Right."}, {"id": 969, "start": 2264.98, "end": 2265.0, "text": " Right."}, {"id": 970, "start": 2265.0, "end": 2265.0600000000004, "text": " Right."}, {"id": 971, "start": 2265.0600000000004, "end": 2265.0800000000004, "text": " Right."}, {"id": 972, "start": 2265.0800000000004, "end": 2265.1000000000004, "text": " Right."}, {"id": 973, "start": 2265.1000000000004, "end": 2265.1200000000003, "text": " Right."}, {"id": 974, "start": 2265.1200000000003, "end": 2265.1400000000003, "text": " Right."}, {"id": 975, "start": 2265.1400000000003, "end": 2265.1600000000003, "text": " Right."}, {"id": 976, "start": 2265.1600000000003, "end": 2265.1800000000003, "text": " Right."}, {"id": 977, "start": 2265.1800000000003, "end": 2265.2400000000002, "text": " Right."}, {"id": 978, "start": 2265.3, "end": 2265.36, "text": " Right."}, {"id": 979, "start": 2265.36, "end": 2265.4, "text": " Right."}, {"id": 980, "start": 2265.4, "end": 2265.46, "text": " Right."}, {"id": 981, "start": 2265.46, "end": 2265.48, "text": " Right."}, {"id": 982, "start": 2265.48, "end": 2265.5, "text": " Right."}, {"id": 983, "start": 2265.5, "end": 2265.5600000000004, "text": " Right."}, {"id": 984, "start": 2265.5600000000004, "end": 2265.6800000000003, "text": " Right."}, {"id": 985, "start": 2265.6800000000003, "end": 2265.7000000000003, "text": " Right."}, {"id": 986, "start": 2265.7000000000003, "end": 2270.82, "text": " Well, you know things are bad when the Wall Street Journal does a report on how bad the"}, {"id": 987, "start": 2270.82, "end": 2275.84, "text": " Jobs report is going to be and they compare it to the rollout of the iPad 3."}, {"id": 988, "start": 2276.0800000000004, "end": 2278.1600000000003, "text": " That was a little bit disconcerting."}, {"id": 989, "start": 2278.7000000000003, "end": 2281.1000000000004, "text": " Well, you know, you get to tie the technology into the rest of the world."}, {"id": 990, "start": 2281.48, "end": 2285.0600000000004, "text": " It's amazing how much technology now is a part of everything that we do."}, {"id": 991, "start": 2285.1400000000003, "end": 2285.44, "text": " Absolutely."}, {"id": 992, "start": 2287.28, "end": 2287.9, "text": " Really, Rob?"}, {"id": 993, "start": 2287.92, "end": 2288.48, "text": " You okay over there?"}, {"id": 994, "start": 2288.6800000000003, "end": 2289.04, "text": " Yeah."}, {"id": 995, "start": 2289.04, "end": 2289.1200000000003, "text": " Yeah."}, {"id": 996, "start": 2289.2000000000003, "end": 2289.4, "text": " Sorry."}, {"id": 997, "start": 2292.0800000000004, "end": 2293.46, "text": " Our baby's got a little gas."}, {"id": 998, "start": 2294.76, "end": 2295.0800000000004, "text": " It's only a little gas."}, {"id": 999, "start": 2295.08, "end": 2296.1, "text": " It's all this Mac talk."}, {"id": 1000, "start": 2296.2799999999997, "end": 2297.44, "text": " It's just like, ugh."}, {"id": 1001, "start": 2298.2999999999997, "end": 2298.7, "text": " Wow."}, {"id": 1002, "start": 2299.02, "end": 2302.34, "text": " But it's amazing how this show has transformed over the years, right?"}, {"id": 1003, "start": 2302.4, "end": 2305.08, "text": " So we're three and a half years into this show."}, {"id": 1004, "start": 2305.54, "end": 2310.84, "text": " And when I first started the show, I envisioned it as just talking about just technology as"}, {"id": 1005, "start": 2310.84, "end": 2311.66, "text": " a whole, right?"}, {"id": 1006, "start": 2311.74, "end": 2314.2799999999997, "text": " And the devices that are involved with that."}, {"id": 1007, "start": 2314.34, "end": 2320.7799999999997, "text": " And it's sort of morphed over the years into something where the technology is so interwoven"}, {"id": 1008, "start": 2320.7799999999997, "end": 2323.98, "text": " into our lives that we end up talking more about social issues."}, {"id": 1009, "start": 2323.98, "end": 2324.2599999999998, "text": " Right."}, {"id": 1010, "start": 2324.2599999999998, "end": 2324.3199999999997, "text": " Right."}, {"id": 1011, "start": 2324.3199999999997, "end": 2324.36, "text": " Right."}, {"id": 1012, "start": 2324.36, "end": 2324.38, "text": " Right."}, {"id": 1013, "start": 2324.38, "end": 2324.4, "text": " Right."}, {"id": 1014, "start": 2324.4, "end": 2324.42, "text": " Right."}, {"id": 1015, "start": 2324.42, "end": 2324.44, "text": " Right."}, {"id": 1016, "start": 2324.44, "end": 2324.46, "text": " Right."}, {"id": 1017, "start": 2324.46, "end": 2324.48, "text": " Right."}, {"id": 1018, "start": 2324.48, "end": 2324.5, "text": " Right."}, {"id": 1019, "start": 2324.5, "end": 2324.52, "text": " Right."}, {"id": 1020, "start": 2324.52, "end": 2324.54, "text": " Right."}, {"id": 1021, "start": 2324.54, "end": 2324.56, "text": " Right."}, {"id": 1022, "start": 2324.56, "end": 2324.58, "text": " Right."}, {"id": 1023, "start": 2324.58, "end": 2324.6, "text": " Right."}, {"id": 1024, "start": 2324.6, "end": 2324.62, "text": " Right."}, {"id": 1025, "start": 2324.62, "end": 2324.64, "text": " Right."}, {"id": 1026, "start": 2324.64, "end": 2324.66, "text": " Right."}, {"id": 1027, "start": 2324.66, "end": 2324.68, "text": " Right."}, {"id": 1028, "start": 2324.68, "end": 2324.7, "text": " Right."}, {"id": 1029, "start": 2325.08, "end": 2326.08, "text": " Right."}, {"id": 1030, "start": 2326.08, "end": 2326.12, "text": " Right."}, {"id": 1031, "start": 2326.12, "end": 2326.58, "text": " Right."}, {"id": 1032, "start": 2331.0, "end": 2331.12, "text": " Right."}, {"id": 1033, "start": 2331.12, "end": 2331.16, "text": " Right."}, {"id": 1034, "start": 2331.16, "end": 2331.34, "text": " Right."}, {"id": 1035, "start": 2331.36, "end": 2331.38, "text": " Right."}, {"id": 1036, "start": 2331.38, "end": 2331.54, "text": " Right."}, {"id": 1037, "start": 2331.54, "end": 2331.56, "text": " Right."}, {"id": 1038, "start": 2331.56, "end": 2331.58, "text": " Right."}, {"id": 1039, "start": 2332.58, "end": 2332.9, "text": " Absolutely."}, {"id": 1040, "start": 2333.2, "end": 2338.7799999999997, "text": " I mean, on my show, maybe 20% of the time, I'm doing some type of issue that ties into"}, {"id": 1041, "start": 2338.7799999999997, "end": 2339.36, "text": " technology."}, {"id": 1042, "start": 2339.48, "end": 2340.46, "text": " And that's why I hear from you."}, {"id": 1043, "start": 2340.84, "end": 2343.7999999999997, "text": " So I guess it's only fair game that I just come in and bust up your stuff."}, {"id": 1044, "start": 2343.9, "end": 2344.06, "text": " Yeah."}, {"id": 1045, "start": 2344.06, "end": 2344.72, "text": " I was listening to it."}, {"id": 1046, "start": 2344.7599999999998, "end": 2348.1, "text": " I heard you call on his show a couple days ago about the solar flare."}, {"id": 1047, "start": 2348.42, "end": 2348.68, "text": " Right."}, {"id": 1048, "start": 2348.84, "end": 2349.24, "text": " And you know what?"}, {"id": 1049, "start": 2349.2999999999997, "end": 2350.92, "text": " That was a complete bust, too."}, {"id": 1050, "start": 2351.22, "end": 2352.66, "text": " The solar flare, it completely messed up."}, {"id": 1051, "start": 2352.66, "end": 2353.88, "text": " I mean, I got superpowers."}, {"id": 1052, "start": 2353.94, "end": 2354.64, "text": " I don't know about you guys."}, {"id": 1053, "start": 2355.08, "end": 2357.58, "text": " I flew over to the city."}, {"id": 1054, "start": 2357.58, "end": 2360.6, "text": " So we have one more day of the solar flare and nothing's really happened."}, {"id": 1055, "start": 2360.7999999999997, "end": 2364.52, "text": " If the thing is moving 4 million miles per hour, I mean, how long can it affect us?"}, {"id": 1056, "start": 2364.52, "end": 2366.62, "text": " I know, but apparently a week."}, {"id": 1057, "start": 2367.72, "end": 2369.46, "text": " But it really hasn't done anything at all."}, {"id": 1058, "start": 2369.56, "end": 2370.04, "text": " It has a big sun fart."}, {"id": 1059, "start": 2372.18, "end": 2374.38, "text": " So it is a solar maximum this year."}, {"id": 1060, "start": 2374.44, "end": 2377.46, "text": " By the way, if you'd like to call in and give us some grief or talk to James T."}, {"id": 1061, "start": 2377.48, "end": 2378.54, "text": " It's 751-1041."}, {"id": 1062, "start": 2379.06, "end": 2381.36, "text": " See what we can do to help you out with whatever your technology issues are."}, {"id": 1063, "start": 2381.36, "end": 2385.52, "text": " The solar maximum years are interesting, right?"}, {"id": 1064, "start": 2385.6, "end": 2390.86, "text": " Because they only happen about every 14 years on the high maximum side."}, {"id": 1065, "start": 2391.5, "end": 2393.06, "text": " You've got a seven-year cycle on the sun."}, {"id": 1066, "start": 2393.2400000000002, "end": 2394.86, "text": " So you've got a solar minimum, solar maximum."}, {"id": 1067, "start": 2396.2200000000003, "end": 2400.98, "text": " It's a pretty interesting thing to see as far as all the hype involved."}, {"id": 1068, "start": 2402.2400000000002, "end": 2407.42, "text": " Unfortunately, the last one was before the year 2000, which would have been interesting if those things could fall together."}, {"id": 1069, "start": 2407.9, "end": 2408.58, "text": " That would have been awesome."}, {"id": 1070, "start": 2408.58, "end": 2409.6600000000003, "text": " What was it?"}, {"id": 1071, "start": 2410.2400000000002, "end": 2411.2400000000002, "text": " I got a bicycle."}, {"id": 1072, "start": 2411.52, "end": 2413.04, "text": " Generators and extra tinfoil."}, {"id": 1073, "start": 2413.26, "end": 2415.48, "text": " Well, this year, it's the whole 2012 thing."}, {"id": 1074, "start": 2415.7200000000003, "end": 2418.06, "text": " We already had an end-of-the-world prediction last year."}, {"id": 1075, "start": 2418.48, "end": 2419.94, "text": " We had three last year."}, {"id": 1076, "start": 2420.58, "end": 2424.04, "text": " It's so mathematically debunked, it just can't even work."}, {"id": 1077, "start": 2424.82, "end": 2429.46, "text": " But it's like I had a friend who, in 1999, we're sitting here talking."}, {"id": 1078, "start": 2429.92, "end": 2432.1800000000003, "text": " And he's like, dude, it's the end of the world."}, {"id": 1079, "start": 2432.88, "end": 2435.4, "text": " And I'm like, you're kidding me, right?"}, {"id": 1080, "start": 2436.7000000000003, "end": 2438.1600000000003, "text": " Absolutely nothing is going to happen."}, {"id": 1081, "start": 2438.1600000000003, "end": 2440.04, "text": " All right, maybe, maybe."}, {"id": 1082, "start": 2440.1600000000003, "end": 2441.34, "text": " Well, what was it, the Y2K?"}, {"id": 1083, "start": 2441.36, "end": 2443.4, "text": " The Y2K thing was supposed to be freaking everybody out."}, {"id": 1084, "start": 2443.5, "end": 2444.9, "text": " That's what we're talking about, right?"}, {"id": 1085, "start": 2444.98, "end": 2448.26, "text": " So he's like, well, it's those extra two digits on the year."}, {"id": 1086, "start": 2448.34, "end": 2450.06, "text": " It's going to revert back to 1900."}, {"id": 1087, "start": 2450.38, "end": 2451.6800000000003, "text": " Yeah, computers just won't know what to do."}, {"id": 1088, "start": 2451.78, "end": 2453.54, "text": " Everything's going to fall apart except for the Mac."}, {"id": 1089, "start": 2454.1200000000003, "end": 2455.1200000000003, "text": " Except for the Mac."}, {"id": 1090, "start": 2456.6600000000003, "end": 2459.2000000000003, "text": " And, of course, Macs weren't really around back then."}, {"id": 1091, "start": 2459.2200000000003, "end": 2459.7200000000003, "text": " Well, they were."}, {"id": 1092, "start": 2460.26, "end": 2460.58, "text": " Oh!"}, {"id": 1093, "start": 2461.44, "end": 2461.54, "text": " Oh!"}, {"id": 1094, "start": 2463.06, "end": 2464.86, "text": " At least not in their present form."}, {"id": 1095, "start": 2464.9, "end": 2465.48, "text": " Right, right."}, {"id": 1096, "start": 2466.2400000000002, "end": 2468.7400000000002, "text": " They had like 1% of the share at the time."}, {"id": 1097, "start": 2468.7400000000002, "end": 2469.06, "text": " Right."}, {"id": 1098, "start": 2469.1600000000003, "end": 2470.02, "text": " Did you hear last week?"}, {"id": 1099, "start": 2470.1200000000003, "end": 2471.36, "text": " We talked about, you know, the..."}, {"id": 1100, "start": 2471.36, "end": 2471.7400000000002, "text": " Share?"}, {"id": 1101, "start": 2472.04, "end": 2472.38, "text": " Yes."}, {"id": 1102, "start": 2472.46, "end": 2474.1, "text": " Up to 6% now, I think, right?"}, {"id": 1103, "start": 2474.2400000000002, "end": 2476.2400000000002, "text": " No, they're higher than that, 12%."}, {"id": 1104, "start": 2476.2400000000002, "end": 2477.28, "text": " So it's..."}, {"id": 1105, "start": 2477.28, "end": 2479.92, "text": " But the thing is, is that, you know, nothing..."}, {"id": 1106, "start": 2479.92, "end": 2482.9, "text": " All this tech hype is always just ridiculous, right?"}, {"id": 1107, "start": 2482.9, "end": 2486.42, "text": " And Macintosh uses that tech hype every year, right?"}, {"id": 1108, "start": 2486.5, "end": 2487.9, "text": " As far as, hey, we're going to release..."}, {"id": 1109, "start": 2488.54, "end": 2489.54, "text": " Every product release, yeah."}, {"id": 1110, "start": 2489.56, "end": 2491.04, "text": " By the way, we've released this."}, {"id": 1111, "start": 2491.1600000000003, "end": 2492.52, "text": " And we're totally prepared for this."}, {"id": 1112, "start": 2492.98, "end": 2494.7000000000003, "text": " By the way, we don't have enough stock."}, {"id": 1113, "start": 2495.08, "end": 2499.08, "text": " Well, no, this is part of the same game that Nike plays with Air Jordan."}, {"id": 1114, "start": 2499.2200000000003, "end": 2499.44, "text": " Right."}, {"id": 1115, "start": 2499.58, "end": 2500.9, "text": " Except you don't have Mac..."}, {"id": 1116, "start": 2501.36, "end": 2503.4, "text": " You don't have Mac fans out shooting each other to get the..."}, {"id": 1117, "start": 2503.4, "end": 2504.0, "text": " Yeah, what's that all about?"}, {"id": 1118, "start": 2504.0, "end": 2505.36, "text": " We just wait in line very quietly."}, {"id": 1119, "start": 2505.42, "end": 2507.6400000000003, "text": " You do have them robbing each other in the parking lot, though."}, {"id": 1120, "start": 2507.8, "end": 2508.1600000000003, "text": " No!"}, {"id": 1121, "start": 2508.3, "end": 2509.2400000000002, "text": " No, we don't."}, {"id": 1122, "start": 2509.46, "end": 2509.6, "text": " What?"}, {"id": 1123, "start": 2510.02, "end": 2510.26, "text": " Yeah."}, {"id": 1124, "start": 2510.6600000000003, "end": 2510.94, "text": " Why?"}, {"id": 1125, "start": 2511.2200000000003, "end": 2514.6, "text": " The first iPad release, the guy got his thumb ripped off."}, {"id": 1126, "start": 2514.6200000000003, "end": 2514.8, "text": " Right."}, {"id": 1127, "start": 2514.9, "end": 2517.2000000000003, "text": " Because he had the iPad bag wrapped around his thumb,"}, {"id": 1128, "start": 2517.4, "end": 2519.6600000000003, "text": " and some guy came up and snatched it and ripped his whole thumb off."}, {"id": 1129, "start": 2519.6800000000003, "end": 2520.54, "text": " That was accidental."}, {"id": 1130, "start": 2522.82, "end": 2523.6, "text": " An accidental death."}, {"id": 1131, "start": 2523.6, "end": 2525.4, "text": " He was trying to help the guy out to his car, right?"}, {"id": 1132, "start": 2526.08, "end": 2528.94, "text": " Macs are much different with their whole, you know, religious cult aspect."}, {"id": 1133, "start": 2529.46, "end": 2530.6800000000003, "text": " Well, it is a religion."}, {"id": 1134, "start": 2530.68, "end": 2532.14, "text": " It is from God to man."}, {"id": 1135, "start": 2533.54, "end": 2533.94, "text": " Wow!"}, {"id": 1136, "start": 2534.52, "end": 2538.3799999999997, "text": " I don't know that I've ever actually heard a valid response to that."}, {"id": 1137, "start": 2538.8599999999997, "end": 2539.94, "text": " I still haven't."}, {"id": 1138, "start": 2540.3599999999997, "end": 2544.16, "text": " Anyway, 751-1041 if you'd like to be part of the show here."}, {"id": 1139, "start": 2544.7599999999998, "end": 2545.7, "text": " How much time I got, Tony?"}, {"id": 1140, "start": 2545.7999999999997, "end": 2546.5, "text": " Two minutes."}, {"id": 1141, "start": 2546.8599999999997, "end": 2547.64, "text": " About a minute and a half."}, {"id": 1142, "start": 2547.7799999999997, "end": 2548.14, "text": " About a minute."}, {"id": 1143, "start": 2548.2, "end": 2549.08, "text": " All right, let's squeeze this one in."}, {"id": 1144, "start": 2549.12, "end": 2549.96, "text": " Robert, how are you?"}, {"id": 1145, "start": 2550.72, "end": 2551.8599999999997, "text": " Hey, very good, thanks."}, {"id": 1146, "start": 2552.18, "end": 2555.68, "text": " Just recently, I voted for, hopefully, our new president,"}, {"id": 1147, "start": 2555.9199999999996, "end": 2558.8599999999997, "text": " and I was given the option of electronic voting."}, {"id": 1148, "start": 2559.52, "end": 2560.3199999999997, "text": " I declined."}, {"id": 1149, "start": 2560.32, "end": 2561.54, "text": " I didn't win with a paper ballot."}, {"id": 1150, "start": 2561.7000000000003, "end": 2563.44, "text": " I just don't still trust the technology."}, {"id": 1151, "start": 2563.6600000000003, "end": 2567.34, "text": " I just want to know if you guys know what any kind of safeguards they have in place"}, {"id": 1152, "start": 2567.34, "end": 2570.78, "text": " to prevent any kind of voter fraud for electronic voting."}, {"id": 1153, "start": 2571.34, "end": 2572.82, "text": " Nothing that we can tell you about, really."}, {"id": 1154, "start": 2573.2200000000003, "end": 2574.2000000000003, "text": " But, I mean..."}, {"id": 1155, "start": 2574.2000000000003, "end": 2576.02, "text": " We have to get a Democrat in here to talk about that."}, {"id": 1156, "start": 2576.52, "end": 2578.26, "text": " They don't have safeguards for actual voting."}, {"id": 1157, "start": 2579.6000000000004, "end": 2584.1000000000004, "text": " The next part of this was, is paper really more trustworthy?"}, {"id": 1158, "start": 2584.6600000000003, "end": 2589.2400000000002, "text": " As far as that's concerned, I would go with the electronic voting"}, {"id": 1159, "start": 2589.2400000000002, "end": 2590.26, "text": " just because I..."}, {"id": 1160, "start": 2590.26, "end": 2592.1200000000003, "text": " I don't trust either one of them."}, {"id": 1161, "start": 2592.2200000000003, "end": 2592.98, "text": " So, I haven't..."}, {"id": 1162, "start": 2592.98, "end": 2596.1000000000004, "text": " Well, speed and simplicity, and that's the way the world is going."}, {"id": 1163, "start": 2596.26, "end": 2598.76, "text": " I mean, I think it's kind of crazy that they still have the..."}, {"id": 1164, "start": 2598.76, "end": 2601.7400000000002, "text": " Or they started the mail-in ballot here in Tucson,"}, {"id": 1165, "start": 2602.34, "end": 2605.0, "text": " where, you know, other parts of the country, they're..."}, {"id": 1166, "start": 2605.0, "end": 2607.0600000000004, "text": " You know, you could, you know, do it through your iPhone."}, {"id": 1167, "start": 2607.5800000000004, "end": 2607.9, "text": " Sorry."}, {"id": 1168, "start": 2608.84, "end": 2610.5, "text": " This is the Computer Guru."}, {"id": 1169, "start": 2610.82, "end": 2612.28, "text": " I think it should be like American Idol."}, {"id": 1170, "start": 2612.36, "end": 2614.36, "text": " We should just call in who we want, and we will have to win."}, {"id": 1171, "start": 2614.84, "end": 2615.76, "text": " Thanks for the call."}, {"id": 1172, "start": 2616.2000000000003, "end": 2618.32, "text": " If you'd like to be a part of the show, 751-1041."}, {"id": 1173, "start": 2618.32, "end": 2620.0600000000004, "text": " This is the Computer Guru Show."}, {"id": 1174, "start": 2620.26, "end": 2622.6000000000004, "text": " You can hear it on 141 The Truth, Tucson's Newstalk FM."}]} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2012-06-09-hr1/diarization.json b/projects/radio-show/audio-processor/test-data/transcripts/2012-06-09-hr1/diarization.json new file mode 100644 index 0000000..20bd978 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2012-06-09-hr1/diarization.json @@ -0,0 +1,75 @@ +{ + "num_speakers": 2, + "speaker_map": { + "HOST": "HOST", + "CALLER": "CALLER" + }, + "turns": [ + { + "speaker": "HOST", + "start": 0.0, + "end": 20.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 15.0, + "end": 25.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 20.0, + "end": 690.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 685.0, + "end": 695.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 690.0, + "end": 1350.0, + "confidence": 0.92 + }, + { + "speaker": "CALLER", + "start": 1345.0, + "end": 1470.0, + "confidence": 0.69 + }, + { + "speaker": "HOST", + "start": 1465.0, + "end": 1520.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 1515.0, + "end": 1555.0, + "confidence": 0.59 + }, + { + "speaker": "HOST", + "start": 1550.0, + "end": 1825.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 1820.0, + "end": 1830.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 1825.0, + "end": 2645.0, + "confidence": 0.92 + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2012-06-09-hr1/transcript.json b/projects/radio-show/audio-processor/test-data/transcripts/2012-06-09-hr1/transcript.json new file mode 100644 index 0000000..53bd508 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2012-06-09-hr1/transcript.json @@ -0,0 +1 @@ +{"duration": 2648.484, "language": "en", "segments": [{"id": 1, "start": 0.0, "end": 6.42, "text": " from my heart and from my hand why don't people understand my intention computer running slow"}, {"id": 2, "start": 6.42, "end": 14.18, "text": " avoiding caught a virus does your computer seem to have a life of its own malfunction"}, {"id": 3, "start": 14.18, "end": 26.400000000000002, "text": " the computer guru is here call in now 751-1041 that's 751-1041 now it's mike swanson your"}, {"id": 4, "start": 26.400000000000002, "end": 37.760000000000005, "text": " computer guru on 104.1 the truth news talk fm it's showtime oh yeah it is showtime this is the"}, {"id": 5, "start": 37.760000000000005, "end": 41.34, "text": " computer guru show my name is mike here to deal with your technology needs and treat you like a"}, {"id": 6, "start": 41.34, "end": 45.6, "text": " real person in the process right here on the computer guru show give us a call 751-1041"}, {"id": 7, "start": 45.6, "end": 52.86, "text": " once again that's 520-751-1041 got the normal compliment of crew just recently back from e3"}, {"id": 8, "start": 52.86, "end": 56.2, "text": " surprisingly we're still alive that's right you survived"}, {"id": 9, "start": 56.4, "end": 61.86, "text": " whatever cd gas station that rob was apparently afraid of right yes yeah i gotta say though that"}, {"id": 10, "start": 61.86, "end": 66.17999999999999, "text": " that trip was quite eventful that's good and that's all i have to say that's it okay we're"}, {"id": 11, "start": 66.17999999999999, "end": 72.2, "text": " of course tony answering the phones and pushing the buttons over on the board doing his thing"}, {"id": 12, "start": 72.2, "end": 78.12, "text": " and uh he'll be answering your calls at 751-1041 come on randall yes i know you want to spew it"}, {"id": 13, "start": 78.12, "end": 83.6, "text": " about what spew what gaming man oh man gaming week so much gaming video games we covered so"}, {"id": 14, "start": 83.6, "end": 86.38, "text": " many games while we're out there um i mean you name it even"}, {"id": 15, "start": 86.38, "end": 90.89999999999999, "text": " from the little guys a little independent guys uh to the you know the big up-and-comers and of"}, {"id": 16, "start": 90.89999999999999, "end": 94.67999999999999, "text": " course the really big games that everybody covered like halo and everything oh you mean the one that"}, {"id": 17, "start": 94.67999999999999, "end": 98.32, "text": " no one got to play yeah the one that nobody got to play you know it was behind closed doors you"}, {"id": 18, "start": 98.32, "end": 102.41999999999999, "text": " gonna watch another video i'm gonna stay in line i'm not kidding there's people staying in line"}, {"id": 19, "start": 102.41999999999999, "end": 107.46, "text": " for four hours to watch a trailer yep i'm out oh and they were standing in line under a gigantic"}, {"id": 20, "start": 107.46, "end": 111.69999999999999, "text": " screen that was playing a trailer right the trailer wasn't the trailer i hope it wasn't"}, {"id": 21, "start": 111.69999999999999, "end": 116.34, "text": " the same trailer because that would be sad i'm just wondering how much trolling really"}, {"id": 22, "start": 116.38, "end": 121.52, "text": " goes on by the the game manufacturer oh well unless halo 4 is a game about standing in lines"}, {"id": 23, "start": 121.52, "end": 127.74, "text": " nobody got to play that game nice and if it is i gotta say though that you know they had some very"}, {"id": 24, "start": 127.74, "end": 133.01999999999998, "text": " accurate uh demos there yeah microsoft was just one of the uh companies that really really"}, {"id": 25, "start": 133.01999999999998, "end": 137.38, "text": " disappointed us with their booths set up although microsoft as a whole just like in my opinion"}, {"id": 26, "start": 137.38, "end": 142.76, "text": " failed miserably they did fail they did fail um i mean there's a couple things we'll get back in a"}, {"id": 27, "start": 142.76, "end": 145.76, "text": " little bit deeper but they they really did fail with their press conference"}, {"id": 28, "start": 146.38, "end": 150.14, "text": " they should have just said hey you know what guys we don't have anything for you we'll see you next"}, {"id": 29, "start": 150.14, "end": 154.56, "text": " year and then then next year come out the 720 typically i think that's pretty much what"}, {"id": 30, "start": 154.56, "end": 158.84, "text": " microsoft has to say every year well that's what they should have done this year they just put"}, {"id": 31, "start": 158.84, "end": 164.8, "text": " filler and try to say oh hey here's a cool gadget that nobody will freaking use ever after after a"}, {"id": 32, "start": 164.8, "end": 168.44, "text": " lot of people said that about uh about microsoft this year they've come forward and say well guess"}, {"id": 33, "start": 168.44, "end": 174.12, "text": " what guys the the 360 is going to be viable for at least two more years yeah well well we'll see"}, {"id": 34, "start": 174.12, "end": 176.32, "text": " if that actually happens the 720 they'll"}, {"id": 35, "start": 176.38, "end": 181.12, "text": " well i i'm i'm sure we'll have a 720 announcement by next year i seriously doubt it'll be called the"}, {"id": 36, "start": 181.12, "end": 184.28, "text": " 720 though well i know that's just a code name for i want to go ahead and take an opportunity"}, {"id": 37, "start": 184.28, "end": 188.57999999999998, "text": " to toss this out there that are good friends over at nerd junkies those guys are awesome"}, {"id": 38, "start": 188.57999999999998, "end": 195.1, "text": " they are they are great guys they were instrumental in me getting a lot of my ces stuff done and i"}, {"id": 39, "start": 195.1, "end": 200.22, "text": " just i really have to say thank you very much to them for you know hanging out with you guys and"}, {"id": 40, "start": 200.22, "end": 205.98, "text": " and maybe showing you guys how they do things because they really if you're into gaming at all"}, {"id": 41, "start": 206.38, "end": 210.28, "text": " right you should be checking out nerd junkies you know these guys are the up-and-comers these guys"}, {"id": 42, "start": 210.28, "end": 214.94, "text": " are going to be taking out some of these other really big gaming sites um these guys are the"}, {"id": 43, "start": 214.94, "end": 219.29999999999998, "text": " guys that are going to do it these are the next guys that are going to dominate the the gaming"}, {"id": 44, "start": 219.29999999999998, "end": 223.7, "text": " industry when it comes to reviews and stuff like that these guys are awesome um you know prior to"}, {"id": 45, "start": 223.7, "end": 229.12, "text": " e3 uh rob and i had not met them yeah it was just it was just mike and i was a little nervous"}, {"id": 46, "start": 229.12, "end": 233.06, "text": " because you know i was basically told well you're going to be sharing your you know your whole trip"}, {"id": 47, "start": 233.06, "end": 236.35999999999999, "text": " with them and i was like man they better be cool yeah i was worried i was worried about them and i"}, {"id": 48, "start": 236.38, "end": 243.16, "text": " they're going to pull up in a prius and a fedora wow anyway i mean they did get along with mike so"}, {"id": 49, "start": 243.16, "end": 247.16, "text": " i kind of figured i know that's what i was worried about they couldn't be that cool but it turns out"}, {"id": 50, "start": 247.16, "end": 250.72, "text": " that they were they were very cool guys and they made the trip for us we had a very good time they"}, {"id": 51, "start": 250.72, "end": 255.78, "text": " were really cool guys uh joe uh joel and clay over there nerd junkies you guys are awesome all the"}, {"id": 52, "start": 255.78, "end": 259.21999999999997, "text": " listeners should check them out crash their site again we crashed the first time let's crash it"}, {"id": 53, "start": 259.21999999999997, "end": 264.3, "text": " again nerdjunkies.com their their e3 coverage is ours we were with them the whole trip you know"}, {"id": 54, "start": 266.38, "end": 269.62, "text": " they were nice enough to share with us so a lot of the stuff that uh that we're going to be talking"}, {"id": 55, "start": 269.62, "end": 272.94, "text": " about wouldn't have been possible you know they gave us some pointers on video because they they"}, {"id": 56, "start": 272.94, "end": 276.48, "text": " do a lot of video they have that down pat and we gave them a lot of pointers on audio because well"}, {"id": 57, "start": 276.48, "end": 280.34, "text": " that's what we do so you're you're listening to us right now"}, {"id": 58, "start": 280.34, "end": 291.08, "text": " all right uh if you'd like to be part of the show 7511041 one of the things that we're going to"}, {"id": 59, "start": 291.08, "end": 295.2, "text": " talk about this week that i think that we need to sort of push out in addition to any of the gaming"}, {"id": 60, "start": 295.2, "end": 296.36, "text": " stuff now we know that they"}, {"id": 61, "start": 296.38, "end": 302.0, "text": " some of you had requested uh updates about your favorite games games we did our very best to cover"}, {"id": 62, "start": 302.0, "end": 306.04, "text": " that stuff for you guys right after the first break we're going to come to that stuff uh one"}, {"id": 63, "start": 306.04, "end": 309.52, "text": " of the things i want to throw out for the week though is that there's been a lot with weak"}, {"id": 64, "start": 309.52, "end": 314.7, "text": " passwords and wireless security or none yeah no passwords so uh it's one of the things that we"}, {"id": 65, "start": 314.7, "end": 319.88, "text": " want to fix for you what's the password so there's a lot of people out there that have these these"}, {"id": 66, "start": 319.88, "end": 324.76, "text": " wireless networks and they don't realize that uh they're really putting themselves at risk or"}, {"id": 67, "start": 324.76, "end": 326.36, "text": " exposing themselves right not only"}, {"id": 68, "start": 326.38, "end": 331.65999999999997, "text": " losing bandwidth but man there's security issues right and you can get in trouble oh yeah somebody"}, {"id": 69, "start": 331.65999999999997, "end": 335.15999999999997, "text": " else does on your wireless connection because it's your responsibility one of the things that"}, {"id": 70, "start": 335.15999999999997, "end": 340.36, "text": " we want to do is try to help you out with that so for the rest of this month all right uh so the"}, {"id": 71, "start": 340.36, "end": 349.04, "text": " rest of june june uh we're gonna do 65 wireless security setups at your home so if you have a"}, {"id": 72, "start": 349.04, "end": 353.26, "text": " wireless network already and you'd like it properly secured we'll come out and do it or if you don't"}, {"id": 73, "start": 353.26, "end": 356.36, "text": " even know if it's secured i mean if you don't know it's secured or whatever the case might be"}, {"id": 74, "start": 356.38, "end": 360.04, "text": " give us a call we'll come out check it out we'll drive out there as long as within city limits"}, {"id": 75, "start": 360.04, "end": 364.92, "text": " we'll drive out there we'll get checked out for you if it's not secured we'll secure it if it is"}, {"id": 76, "start": 364.92, "end": 369.4, "text": " secured but not properly secured you know for example if it's using uh wep standard when you"}, {"id": 77, "start": 369.4, "end": 375.18, "text": " should be using wpa standard which is much stronger um or wpa2 even uh we will go ahead"}, {"id": 78, "start": 375.18, "end": 380.5, "text": " and make those uh settings uh correct and for 65 bucks that's a great deal that is so you can give"}, {"id": 79, "start": 380.5, "end": 385.42, "text": " us a call down to shop at 304-8300 to get that scheduled if you're interested in the truth is a"}, {"id": 80, "start": 386.38, "end": 392.12, "text": " how their network is set up and really they could use a lot of help securing it and in addition you"}, {"id": 81, "start": 392.12, "end": 396.88, "text": " get us to sort of sit down and and teach you what it's what it's about to have stronger passwords"}, {"id": 82, "start": 396.88, "end": 402.32, "text": " and how to protect yourself online i got at least a dozen calls over the week about hacked yahoo"}, {"id": 83, "start": 402.32, "end": 406.78, "text": " accounts and hacked other mail accounts where they were wondering well what do i do to fix this"}, {"id": 84, "start": 406.78, "end": 412.0, "text": " and and it could it's easy to avoid in the first oh absolutely even the little things like how you"}, {"id": 85, "start": 412.0, "end": 415.6, "text": " what you name your network i mean you don't want your network named like your last name or anything"}, {"id": 86, "start": 416.38, "end": 420.1, "text": " because people are going to know exactly who you are at that point or your address or your address"}, {"id": 87, "start": 420.1, "end": 425.44, "text": " because yeah exactly so or like you know free wireless signal for anyone that's my that's mine"}, {"id": 88, "start": 425.44, "end": 432.0, "text": " and the password's password password come at me bro actually honestly if i saw a signal that said"}, {"id": 89, "start": 432.0, "end": 437.0, "text": " that i'd probably not probably stay away from it if it just said like free signal please use it"}, {"id": 90, "start": 437.0, "end": 442.94, "text": " i would definitely not use it but they're that's definitely not something that most"}, {"id": 91, "start": 442.94, "end": 445.5, "text": " you know normal users are thinking about especially the"}, {"id": 92, "start": 446.38, "end": 453.34, "text": " some of us that are you know meaning technically inclined people that are not necessarily all that"}, {"id": 93, "start": 453.34, "end": 460.4, "text": " nice right and they that's true you don't want somebody who's out war driving yeah to to show up"}, {"id": 94, "start": 460.4, "end": 465.82, "text": " in front of your house or in your alley using your wi-fi signal and and getting you in trouble right"}, {"id": 95, "start": 465.82, "end": 469.15999999999997, "text": " and this especially for businesses too i mean there's a lot of businesses out there who don't"}, {"id": 96, "start": 469.15999999999997, "end": 472.88, "text": " realize that they don't have secure businesses are especially small businesses and i have to"}, {"id": 97, "start": 472.88, "end": 476.36, "text": " say this because you know i a long time ago maybe 10 years ago i was in a business and i was in a"}, {"id": 98, "start": 476.38, "end": 476.64, "text": " business and i was in a small business and i was in a small business and i was in a small business"}, {"id": 99, "start": 476.64, "end": 480.21999999999997, "text": " years ago right i went around and i was just cruising down the road and there's all these"}, {"id": 100, "start": 480.21999999999997, "end": 483.98, "text": " open wi-fi's right i was just like okay i'm gonna go and tell these people and they got really mad"}, {"id": 101, "start": 483.98, "end": 487.54, "text": " and it was all of these little mom and pop businesses and they were they were the worst"}, {"id": 102, "start": 487.54, "end": 491.7, "text": " offenders you know it's funny before i met up with with the guru i was i did the same thing you know"}, {"id": 103, "start": 491.7, "end": 495.3, "text": " i went around drive around and see if i can help some help a business out and they got mad every"}, {"id": 104, "start": 495.3, "end": 498.52, "text": " single one of them whereas i like to go around and i'm not necessarily helping them out but no"}, {"id": 105, "start": 498.52, "end": 505.48, "text": " so i'm gonna go ahead and say this if you are a small business owner or somebody within a small"}, {"id": 106, "start": 506.38, "end": 510.8, "text": " you should probably get us down there to take a look at the networks because especially in the"}, {"id": 107, "start": 510.8, "end": 516.36, "text": " really small businesses right right they tend to have the worst security yeah it's very true and"}, {"id": 108, "start": 516.36, "end": 520.82, "text": " there are things that can happen right you can you can end up losing credit card information or"}, {"id": 109, "start": 520.82, "end": 525.18, "text": " all kinds of records that are on the network that people don't even think about let's say you have"}, {"id": 110, "start": 525.18, "end": 530.26, "text": " a coffee shop let's say this coffee shop's on campbell let's say you have a coffee shop and"}, {"id": 111, "start": 530.26, "end": 534.2, "text": " you want to provide free wireless to your to your page there's a way to there is a way to do that"}, {"id": 112, "start": 534.2, "end": 536.18, "text": " but a lot of these companies they provide free"}, {"id": 113, "start": 536.38, "end": 540.72, "text": " but it's also the same network as the rest of the computers it's not segregated you have to"}, {"id": 114, "start": 540.72, "end": 547.14, "text": " segregate that well i mean unless you're unless you i don't know feeling lucky yeah and if your"}, {"id": 115, "start": 547.14, "end": 551.82, "text": " password is password one two three you're doing it wrong oh yeah or hey mike change my password"}, {"id": 116, "start": 551.82, "end": 557.46, "text": " he's like stop the presses change all the passwords he has all his luggage"}, {"id": 117, "start": 557.46, "end": 564.5, "text": " so there's there's lots of news and passwords now what brought this up when we started thinking"}, {"id": 118, "start": 564.5, "end": 566.02, "text": " thing well"}, {"id": 119, "start": 566.38, "end": 569.9399999999999, "text": " somebody else one of my friends that likes to help provide content"}, {"id": 120, "start": 569.9399999999999, "end": 577.82, "text": " uh... they had emailed me and said did you see that thing about linkedin and all of that and i had heard about it but i really didn't pay a whole lot of attention to it"}, {"id": 121, "start": 577.82, "end": 581.76, "text": " uh... mainly because it's linkedin what are you gonna hack on linkedin really"}, {"id": 122, "start": 581.76, "end": 584.42, "text": " i mean you're gonna get my business contact"}, {"id": 123, "start": 584.42, "end": 588.48, "text": " come on over he went to stupid university"}, {"id": 124, "start": 588.48, "end": 594.42, "text": " uh... but it turns out that they they were using the same style of passwords as like e harmony and uh... there was one other place i can't remember the name of it"}, {"id": 125, "start": 594.42, "end": 595.06, "text": " i can't remember the name of it"}, {"id": 126, "start": 595.06, "end": 595.5, "text": " i can't remember the name of it"}, {"id": 127, "start": 595.5, "end": 595.96, "text": " i can't remember the name of it"}, {"id": 128, "start": 595.96, "end": 596.26, "text": " i can't remember the name of it"}, {"id": 129, "start": 596.26, "end": 596.36, "text": " i can't remember the name of it"}, {"id": 130, "start": 596.38, "end": 597.64, "text": " don't mess with somebody's e harmony account"}, {"id": 131, "start": 597.64, "end": 598.98, "text": " yeah they get all bent out of shape"}, {"id": 132, "start": 598.98, "end": 599.34, "text": " i'll tell ya"}, {"id": 133, "start": 599.34, "end": 600.92, "text": " she loves cats"}, {"id": 134, "start": 600.92, "end": 602.72, "text": " oh i was gonna say it"}, {"id": 135, "start": 602.72, "end": 604.08, "text": " oh i was gonna say it"}, {"id": 136, "start": 604.08, "end": 611.3, "text": " uh... but they were using unsalted hashes which means that when they stole the database right they stole millions of people's passwords"}, {"id": 137, "start": 611.3, "end": 615.96, "text": " and there are lots of people out there that use the same password for just about everything"}, {"id": 138, "start": 615.96, "end": 616.24, "text": " right"}, {"id": 139, "start": 616.24, "end": 620.38, "text": " so uh... you know in e harmony man that's at the top of the list"}, {"id": 140, "start": 620.38, "end": 622.68, "text": " did you say unsalted hashes"}, {"id": 141, "start": 622.68, "end": 623.14, "text": " yes"}, {"id": 142, "start": 623.14, "end": 624.44, "text": " i like my hash brown salted"}, {"id": 143, "start": 624.44, "end": 626.26, "text": " you can't get those in e harmony"}, {"id": 144, "start": 626.26, "end": 627.52, "text": " you can't get those in mcdonalds"}, {"id": 145, "start": 627.52, "end": 629.02, "text": " uh... maybe they're trying to save on cholesterol"}, {"id": 146, "start": 629.02, "end": 631.3, "text": " but they were weaker passwords is really what it came down to"}, {"id": 147, "start": 631.3, "end": 634.12, "text": " weaker encryption on the password database"}, {"id": 148, "start": 634.12, "end": 634.42, "text": " right"}, {"id": 149, "start": 634.42, "end": 639.56, "text": " and so they were pretty easy to hack and then you end up with passwords for just about everybody out there"}, {"id": 150, "start": 639.56, "end": 643.16, "text": " and if you get somebody's linkedin password as an example"}, {"id": 151, "start": 643.16, "end": 646.66, "text": " i mean there are things that you can do with that account to potentially hurt them"}, {"id": 152, "start": 646.66, "end": 648.46, "text": " or to get other information about them"}, {"id": 153, "start": 648.46, "end": 651.9399999999999, "text": " so it's it's really important that you have strong enough passwords"}, {"id": 154, "start": 651.9399999999999, "end": 653.1, "text": " and that you just"}, {"id": 155, "start": 653.1, "end": 654.78, "text": " there are rules"}, {"id": 156, "start": 654.78, "end": 655.64, "text": " there are rules"}, {"id": 157, "start": 655.64, "end": 656.04, "text": " it's like"}, {"id": 158, "start": 656.04, "end": 656.88, "text": " unwritten rules"}, {"id": 159, "start": 656.88, "end": 658.0999999999999, "text": " in fact most of them are written"}, {"id": 160, "start": 658.0999999999999, "end": 659.3199999999999, "text": " on how to"}, {"id": 161, "start": 659.3199999999999, "end": 661.3, "text": " and how to keep yourself safe online"}, {"id": 162, "start": 661.3, "end": 663.36, "text": " and so if you need any help with that you give us a call"}, {"id": 163, "start": 663.36, "end": 664.54, "text": " 751-1041"}, {"id": 164, "start": 664.54, "end": 666.3, "text": " we'll see what we can do to help with that"}, {"id": 165, "start": 666.3, "end": 667.14, "text": " in the meantime"}, {"id": 166, "start": 667.14, "end": 670.9, "text": " this is the computer guru"}, {"id": 167, "start": 670.9, "end": 672.9399999999999, "text": " it's definitely time to take a break"}, {"id": 168, "start": 672.9399999999999, "end": 674.1999999999999, "text": " 751-1041"}, {"id": 169, "start": 674.1999999999999, "end": 675.0799999999999, "text": " when we come back"}, {"id": 170, "start": 675.0799999999999, "end": 677.0999999999999, "text": " we're going to talk about the games that you requested"}, {"id": 171, "start": 677.0999999999999, "end": 679.1999999999999, "text": " and see if we can shed some light"}, {"id": 172, "start": 679.1999999999999, "end": 682.24, "text": " on all of the things that are gaming that you want to know about"}, {"id": 173, "start": 682.24, "end": 683.62, "text": " this is the computer guru show"}, {"id": 174, "start": 683.62, "end": 684.56, "text": " and we'll be right back"}, {"id": 175, "start": 686.04, "end": 693.04, "text": " so"}, {"id": 176, "start": 693.04, "end": 702.86, "text": " wow tony"}, {"id": 177, "start": 702.86, "end": 704.4, "text": " that was something man"}, {"id": 178, "start": 704.4, "end": 704.9599999999999, "text": " yeah"}, {"id": 179, "start": 704.9599999999999, "end": 706.92, "text": " welcome back to the show"}, {"id": 180, "start": 706.92, "end": 711.92, "text": " this is the computer guru show"}, {"id": 181, "start": 711.92, "end": 713.5999999999999, "text": " my name is mike here to deal with your technology needs"}, {"id": 182, "start": 713.5999999999999, "end": 715.1999999999999, "text": " and treat you like a real person in the process"}, {"id": 183, "start": 715.1999999999999, "end": 715.76, "text": " give us a call"}, {"id": 184, "start": 715.76, "end": 715.88, "text": " 751-1041"}, {"id": 185, "start": 715.88, "end": 716.02, "text": " we'll see you next time"}, {"id": 186, "start": 716.04, "end": 717.78, "text": " 751-1041"}, {"id": 187, "start": 717.78, "end": 720.3199999999999, "text": " we'll see what we can do to help you out with whatever is ailing you"}, {"id": 188, "start": 720.3199999999999, "end": 721.2199999999999, "text": " technology wise"}, {"id": 189, "start": 721.2199999999999, "end": 723.0799999999999, "text": " but today we're talking about games"}, {"id": 190, "start": 723.0799999999999, "end": 723.74, "text": " why does it have to be ale"}, {"id": 191, "start": 723.74, "end": 724.5999999999999, "text": " i'm not much of an ale person"}, {"id": 192, "start": 724.5999999999999, "end": 725.3, "text": " i like beer myself"}, {"id": 193, "start": 725.3, "end": 725.74, "text": " oh really"}, {"id": 194, "start": 725.74, "end": 727.78, "text": " well we're going to talk about vidya games"}, {"id": 195, "start": 727.78, "end": 734.0999999999999, "text": " if you guys don't know what that's about"}, {"id": 196, "start": 734.0999999999999, "end": 735.18, "text": " we'll have to put a link up"}, {"id": 197, "start": 735.18, "end": 736.4, "text": " yeah because it's hilarious"}, {"id": 198, "start": 736.4, "end": 739.8, "text": " you know what i think we're going to make a spot on the website somewhere"}, {"id": 199, "start": 739.8, "end": 740.38, "text": " it could be the forum"}, {"id": 200, "start": 740.38, "end": 740.88, "text": " for the random"}, {"id": 201, "start": 740.88, "end": 742.8199999999999, "text": " our favorite uh memes"}, {"id": 202, "start": 742.8199999999999, "end": 744.98, "text": " it's just gonna be called get learned on the internet"}, {"id": 203, "start": 744.98, "end": 745.88, "text": " get learned on the internet"}, {"id": 204, "start": 745.88, "end": 746.5, "text": " on the internet"}, {"id": 205, "start": 746.5, "end": 747.92, "text": " because we're going to teach you about the internet"}, {"id": 206, "start": 747.92, "end": 749.04, "text": " oh"}, {"id": 207, "start": 749.04, "end": 750.36, "text": " all right man so"}, {"id": 208, "start": 750.36, "end": 752.72, "text": " so where were we randall uh this last couple days"}, {"id": 209, "start": 752.72, "end": 755.18, "text": " oh well okay so we've been in we've been in california"}, {"id": 210, "start": 755.18, "end": 757.0, "text": " uh los angeles if you will"}, {"id": 211, "start": 757.0, "end": 758.48, "text": " uh at the la"}, {"id": 212, "start": 758.48, "end": 759.58, "text": " i won't actually"}, {"id": 213, "start": 759.58, "end": 760.6, "text": " la convention center"}, {"id": 214, "start": 760.6, "end": 763.08, "text": " um and uh you know it was fun"}, {"id": 215, "start": 763.08, "end": 764.42, "text": " we got down there monday"}, {"id": 216, "start": 764.42, "end": 765.98, "text": " of course we drove all through the night"}, {"id": 217, "start": 765.98, "end": 768.42, "text": " and uh man we were dead on our feet the first day weren't we"}, {"id": 218, "start": 768.42, "end": 769.2, "text": " yeah quite literally"}, {"id": 219, "start": 769.2, "end": 769.74, "text": " man"}, {"id": 220, "start": 769.74, "end": 771.34, "text": " that'll not protest too much"}, {"id": 221, "start": 771.34, "end": 773.6, "text": " we had to get like uh you know"}, {"id": 222, "start": 773.6, "end": 775.24, "text": " something i don't know"}, {"id": 223, "start": 775.24, "end": 775.72, "text": " yeah okay good night"}, {"id": 224, "start": 775.72, "end": 775.86, "text": " good night"}, {"id": 225, "start": 775.88, "end": 776.72, "text": " good job okay good job"}, {"id": 226, "start": 776.72, "end": 777.78, "text": " tell that story again bro"}, {"id": 227, "start": 777.78, "end": 778.64, "text": " yeah cool story bro"}, {"id": 228, "start": 778.64, "end": 782.1, "text": " anyway we were at e3 and it was actually pretty awesome"}, {"id": 229, "start": 782.1, "end": 785.12, "text": " because we got to play a lot of uh upcoming video games"}, {"id": 230, "start": 785.12, "end": 788.42, "text": " a lot of games that will be out this year and up into next year as well"}, {"id": 231, "start": 788.42, "end": 791.42, "text": " yeah actually i was kind of sad to see that a lot of the really fun games were like"}, {"id": 232, "start": 791.42, "end": 793.1, "text": " this game is so cool i can't wait to play it"}, {"id": 233, "start": 793.1, "end": 794.64, "text": " and it's like it'll be out in march 2013"}, {"id": 234, "start": 794.64, "end": 795.46, "text": " 2013 yeah"}, {"id": 235, "start": 795.46, "end": 798.24, "text": " you know um so you know we you gotta handle a lot of games"}, {"id": 236, "start": 798.24, "end": 799.96, "text": " a lot a couple of games that you guys requested"}, {"id": 237, "start": 799.96, "end": 802.38, "text": " one of which was i gotta put this one out there"}, {"id": 238, "start": 802.38, "end": 802.96, "text": " i don't say it"}, {"id": 239, "start": 802.96, "end": 804.32, "text": " from the very beginning i got you"}, {"id": 240, "start": 804.32, "end": 805.02, "text": " i got you"}, {"id": 241, "start": 805.02, "end": 805.86, "text": " um i got you"}, {"id": 242, "start": 805.88, "end": 807.2, "text": " um elder scrolls okay"}, {"id": 243, "start": 807.2, "end": 808.54, "text": " yeah there's somebody had called up"}, {"id": 244, "start": 808.54, "end": 810.24, "text": " said hey we want to know about the new elder scrolls"}, {"id": 245, "start": 810.24, "end": 810.76, "text": " check that out"}, {"id": 246, "start": 810.76, "end": 811.58, "text": " and you know what i gotta"}, {"id": 247, "start": 811.58, "end": 813.6, "text": " i gotta say a little bit of something here because"}, {"id": 248, "start": 813.6, "end": 815.52, "text": " you know if you guys have listened to the show"}, {"id": 249, "start": 815.52, "end": 818.92, "text": " bethesda in general is one of my favorite video game making companies"}, {"id": 250, "start": 818.92, "end": 820.62, "text": " because they made some awesome titles right"}, {"id": 251, "start": 820.62, "end": 822.72, "text": " the least of which lately has been you know skyrim"}, {"id": 252, "start": 822.72, "end": 825.08, "text": " and then there's the fallout series which is awesome"}, {"id": 253, "start": 825.08, "end": 828.14, "text": " and before that they had morrowind which is part of the elder scrolls"}, {"id": 254, "start": 828.14, "end": 830.92, "text": " and we knew going into e3 that they were going to be announcing"}, {"id": 255, "start": 830.92, "end": 831.7, "text": " something"}, {"id": 256, "start": 831.7, "end": 834.28, "text": " something and you know everybody had said it was going to be"}, {"id": 257, "start": 834.28, "end": 835.72, "text": " an mmo version of elder scrolls"}, {"id": 258, "start": 835.88, "end": 837.78, "text": " something along those lines"}, {"id": 259, "start": 837.78, "end": 840.48, "text": " and i said i didn't think it was going to be an online game"}, {"id": 260, "start": 840.48, "end": 842.2, "text": " because bethesda has never made one before"}, {"id": 261, "start": 842.2, "end": 842.48, "text": " right"}, {"id": 262, "start": 842.48, "end": 844.1, "text": " even though they've said that they were going to"}, {"id": 263, "start": 844.1, "end": 844.38, "text": " right"}, {"id": 264, "start": 844.38, "end": 847.84, "text": " uh it looks like it is going to be an elder scrolls online game"}, {"id": 265, "start": 847.84, "end": 848.74, "text": " well as far as we can tell"}, {"id": 266, "start": 848.74, "end": 850.34, "text": " and that's all we know about it"}, {"id": 267, "start": 850.34, "end": 853.84, "text": " yeah it's amazing we pulled into la and we get into the convention center to get our"}, {"id": 268, "start": 853.84, "end": 854.82, "text": " press passes and everything"}, {"id": 269, "start": 854.82, "end": 858.66, "text": " and one of the hotels hotel figueroa which is right across the street from the convention"}, {"id": 270, "start": 858.66, "end": 859.0, "text": " center"}, {"id": 271, "start": 859.0, "end": 862.7, "text": " um that every year somebody buys that spot"}, {"id": 272, "start": 862.7, "end": 863.7, "text": " to pay to pay"}, {"id": 273, "start": 863.7, "end": 865.48, "text": " or put their banners on or whatnot"}, {"id": 274, "start": 865.48, "end": 865.86, "text": " well this one is going to be an elder scrolls"}, {"id": 275, "start": 865.88, "end": 867.32, "text": " this year was elder scrolls"}, {"id": 276, "start": 867.32, "end": 871.2, "text": " and they actually hand painted for like two weeks"}, {"id": 277, "start": 871.2, "end": 875.0, "text": " you know two big old murals i mean i thought it was three it was three buildings"}, {"id": 278, "start": 875.0, "end": 878.7, "text": " three big murals i mean this building was a forty fifty story size building"}, {"id": 279, "start": 878.7, "end": 881.28, "text": " you can see a picture of it if you go to our website and go to the photo stream i took a picture of it"}, {"id": 280, "start": 881.28, "end": 885.72, "text": " so they definitely made sure they had a presence there at e3 i mean they advertised it all"}, {"id": 281, "start": 885.72, "end": 887.84, "text": " outside e3 and everything when you get in e3 though"}, {"id": 282, "start": 887.84, "end": 891.12, "text": " and when we were coming into town and i saw that i was like oh this is awesome"}, {"id": 283, "start": 891.12, "end": 892.68, "text": " we're going to get to know about it finally"}, {"id": 284, "start": 892.68, "end": 895.48, "text": " exactly and it even says elder scrolls online you know"}, {"id": 285, "start": 895.48, "end": 896.48, "text": " it was really cool"}, {"id": 286, "start": 896.48, "end": 900.44, "text": " we get into e3 and we're like alright we have the bethesda booth and we gotta check it out"}, {"id": 287, "start": 900.44, "end": 902.38, "text": " because on the map their booth looks huge"}, {"id": 288, "start": 902.38, "end": 903.38, "text": " it was a huge setup"}, {"id": 289, "start": 903.38, "end": 904.38, "text": " you gotta check this out"}, {"id": 290, "start": 904.38, "end": 906.8000000000001, "text": " so we get there and yeah the booth is pretty big"}, {"id": 291, "start": 906.8000000000001, "end": 907.8000000000001, "text": " but it was bleak"}, {"id": 292, "start": 907.8000000000001, "end": 911.44, "text": " it was it's a big black box surrounding the entire booth"}, {"id": 293, "start": 911.44, "end": 914.66, "text": " at one point there is a little uh desk"}, {"id": 294, "start": 914.66, "end": 915.78, "text": " uh for media"}, {"id": 295, "start": 915.78, "end": 916.78, "text": " which we are"}, {"id": 296, "start": 916.78, "end": 919.72, "text": " and if you go up to that desk and say hey uh i'm media can you tell me something about"}, {"id": 297, "start": 919.72, "end": 920.72, "text": " the"}, {"id": 298, "start": 920.72, "end": 921.72, "text": " they tell you to go to our website"}, {"id": 299, "start": 921.72, "end": 922.72, "text": " go to our website"}, {"id": 300, "start": 922.72, "end": 923.72, "text": " yeah"}, {"id": 301, "start": 923.72, "end": 924.72, "text": " because that's where the information is"}, {"id": 302, "start": 924.72, "end": 929.0600000000001, "text": " if you were at media uh one of the big medias like ign or something like that and you set"}, {"id": 303, "start": 929.0600000000001, "end": 930.0600000000001, "text": " up a meeting"}, {"id": 304, "start": 930.0600000000001, "end": 931.0600000000001, "text": " machinima yeah"}, {"id": 305, "start": 931.0600000000001, "end": 932.5600000000001, "text": " machinima you set up a meeting with them three weeks ago"}, {"id": 306, "start": 932.5600000000001, "end": 935.9, "text": " then you might have got been able to go in there and check it out but nobody else you"}, {"id": 307, "start": 935.9, "end": 936.9, "text": " know"}, {"id": 308, "start": 936.9, "end": 938.1600000000001, "text": " for everybody else they said just go to our website"}, {"id": 309, "start": 938.1600000000001, "end": 941.7, "text": " and i kind of want to be like you know this is e3 right this is where you announce video"}, {"id": 310, "start": 941.7, "end": 942.7, "text": " games"}, {"id": 311, "start": 942.7, "end": 946.12, "text": " right and i was like why are you even here i mean then they had some they had some people"}, {"id": 312, "start": 946.12, "end": 948.38, "text": " out front hanging out some terrible speakers"}, {"id": 313, "start": 948.38, "end": 951.76, "text": " i mean they didn't have to tell us everything about i didn't expect to know everything about"}, {"id": 314, "start": 951.76, "end": 952.76, "text": " the game right away"}, {"id": 315, "start": 952.76, "end": 953.72, "text": " no just something not even a trailer though not even a trailer"}, {"id": 316, "start": 953.72, "end": 954.72, "text": " not even a trailer though not even a trailer"}, {"id": 317, "start": 954.72, "end": 955.8000000000001, "text": " a trailer of the game"}, {"id": 318, "start": 955.8000000000001, "end": 956.08, "text": " nothing"}, {"id": 319, "start": 956.08, "end": 960.8000000000001, "text": " so bethesda i'm sorry but right now i'm not a fan of you guys at this current moment"}, {"id": 320, "start": 960.8000000000001, "end": 963.02, "text": " yeah they failed on that one that was absolute garbage"}, {"id": 321, "start": 963.02, "end": 967.26, "text": " now however bethesda did not set the tone for all of e3 because there were a lot of"}, {"id": 322, "start": 967.26, "end": 968.76, "text": " companies there that did it the right way"}, {"id": 323, "start": 968.76, "end": 975.5600000000001, "text": " yeah there was actually there was um you know i i liked um i'm sorry square enix i i like"}, {"id": 324, "start": 975.5600000000001, "end": 977.02, "text": " square enix they had a lot of good stuff"}, {"id": 325, "start": 977.02, "end": 978.5600000000001, "text": " they had a cool a bunch of new games to mention"}, {"id": 326, "start": 978.5600000000001, "end": 981.78, "text": " one of which i think mike's a big fan of hitman isn't that a square enix"}, {"id": 327, "start": 981.78, "end": 982.96, "text": " yeah i believe that was yeah yeah"}, {"id": 328, "start": 982.96, "end": 984.7, "text": " i completely dig the hitman series"}, {"id": 329, "start": 984.72, "end": 987.14, "text": " hitman 2 so you're you're a little stoked about that"}, {"id": 330, "start": 987.14, "end": 991.1, "text": " yeah you know and i could completely forgotten about the game because it's been many years"}, {"id": 331, "start": 991.1, "end": 996.6, "text": " since the last update for the game right and uh hitman is one of the i like that that entire"}, {"id": 332, "start": 996.6, "end": 1002.44, "text": " style of game where you get sort of the stealthy right i don't like the you know run around"}, {"id": 333, "start": 1002.44, "end": 1006.6600000000001, "text": " whatever and i want something that you have to think about because it's sort of a puzzle game"}, {"id": 334, "start": 1006.6600000000001, "end": 1010.36, "text": " right it is if you don't do if you don't do it exactly right you have to redo the mission in a"}, {"id": 335, "start": 1010.36, "end": 1014.7, "text": " lot of cases and so those are the kinds of games i like i like the the puzzly type game and i like"}, {"id": 336, "start": 1014.72, "end": 1019.14, "text": " the mostly poker games i mean the only exception to that would be team fortress right of course"}, {"id": 337, "start": 1019.14, "end": 1023.1, "text": " but and and you didn't hear anything about that no unfortunately valve they were not"}, {"id": 338, "start": 1023.1, "end": 1026.92, "text": " there in force but to be fair with valve they didn't say that they were going to right yeah"}, {"id": 339, "start": 1026.92, "end": 1030.3600000000001, "text": " they didn't they in fact came out and said we're not going to announce their thing is"}, {"id": 340, "start": 1030.3600000000001, "end": 1033.26, "text": " it was everybody else was like they're going to announce something valve said no we're"}, {"id": 341, "start": 1033.26, "end": 1039.26, "text": " not so as far as as as your favorite company over there rob i mean they weren't the only"}, {"id": 342, "start": 1039.26, "end": 1043.18, "text": " ones on the fail bus though right no there was a there was a ton of of companies that"}, {"id": 343, "start": 1043.18, "end": 1044.04, "text": " that did it the re that just really got the value of it no they had full control of the"}, {"id": 344, "start": 1044.04, "end": 1044.56, "text": " best of all the best in the world you'd be a problem if you have a really brilliant team"}, {"id": 345, "start": 1044.56, "end": 1044.6200000000001, "text": " there and they're going to be the best you know so i think a lot of companies had a lot more companies on that"}, {"id": 346, "start": 1044.6200000000001, "end": 1046.72, "text": " didn't do it right this time. And one of them"}, {"id": 347, "start": 1046.72, "end": 1048.66, "text": " was one of the biggest companies in the world, not even"}, {"id": 348, "start": 1048.66, "end": 1050.0400000000002, "text": " just in video games. It was Microsoft."}, {"id": 349, "start": 1050.7, "end": 1052.3000000000002, "text": " Their whole setup was just full of fail."}, {"id": 350, "start": 1052.64, "end": 1054.6200000000001, "text": " You know, if they had just not done a"}, {"id": 351, "start": 1054.6200000000001, "end": 1056.7600000000002, "text": " press conference at all and just had their booths out there,"}, {"id": 352, "start": 1057.0000000000002, "end": 1057.88, "text": " it would have been fine."}, {"id": 353, "start": 1058.2800000000002, "end": 1060.5600000000002, "text": " And, you know, the Halo 4, because there was a big presence"}, {"id": 354, "start": 1060.5600000000002, "end": 1061.6000000000001, "text": " there. That's great."}, {"id": 355, "start": 1062.5600000000002, "end": 1064.5800000000002, "text": " But the problem that I had with Microsoft"}, {"id": 356, "start": 1064.5800000000002, "end": 1066.0600000000002, "text": " was that, I mean, it's"}, {"id": 357, "start": 1066.0600000000002, "end": 1068.7, "text": " fine that they announced their smart glass,"}, {"id": 358, "start": 1068.7800000000002, "end": 1070.7600000000002, "text": " whatever. I may not like it, but it's still something."}, {"id": 359, "start": 1071.16, "end": 1072.72, "text": " It was the fact that they spent, I'd say"}, {"id": 360, "start": 1072.72, "end": 1074.2, "text": " probably 60% of their conference"}, {"id": 361, "start": 1074.2, "end": 1076.4, "text": " showing video games. And Microsoft"}, {"id": 362, "start": 1076.4, "end": 1078.6000000000001, "text": " is not a video game company. They make hardware."}, {"id": 363, "start": 1078.94, "end": 1080.6000000000001, "text": " And, you know, the software for the Xbox,"}, {"id": 364, "start": 1080.74, "end": 1082.7, "text": " they don't actually make the video games. And so I felt"}, {"id": 365, "start": 1082.7, "end": 1084.6200000000001, "text": " like it was kind of... Sometimes they do. I mean, Microsoft does have"}, {"id": 366, "start": 1084.6200000000001, "end": 1086.58, "text": " a game development division. Right, but"}, {"id": 367, "start": 1086.58, "end": 1088.3, "text": " I mean, they certainly aren't the ones who made"}, {"id": 368, "start": 1088.3, "end": 1090.44, "text": " Call of Duty 2 or Black Ops 2, you know,"}, {"id": 369, "start": 1090.5, "end": 1092.64, "text": " and they devoted 12 minutes of their time"}, {"id": 370, "start": 1092.64, "end": 1094.54, "text": " to that. If they're going to show video games, they should show"}, {"id": 371, "start": 1094.54, "end": 1096.56, "text": " games that are exclusive to their platform, like"}, {"id": 372, "start": 1096.56, "end": 1098.46, "text": " for example, Halo 4. Or Gears of War."}, {"id": 373, "start": 1098.54, "end": 1100.7, "text": " Or Gears of War. That's exclusive only to Microsoft."}, {"id": 374, "start": 1101.18, "end": 1102.52, "text": " But it was a footnote in"}, {"id": 375, "start": 1102.52, "end": 1104.72, "text": " their conference. I mean, literally"}, {"id": 376, "start": 1104.72, "end": 1106.4, "text": " Halo 4,"}, {"id": 377, "start": 1106.74, "end": 1108.54, "text": " they sort of teased it almost like a"}, {"id": 378, "start": 1108.54, "end": 1110.42, "text": " live-action movie at the very beginning. Yeah."}, {"id": 379, "start": 1110.5, "end": 1112.12, "text": " Which I was very excited about that originally."}, {"id": 380, "start": 1112.46, "end": 1114.5, "text": " But they were right into gameplay, and it was just..."}, {"id": 381, "start": 1114.5, "end": 1116.6, "text": " It was over with in a matter of minutes. It was actually garbage."}, {"id": 382, "start": 1116.92, "end": 1118.5, "text": " I mean, I know that we've said a lot of bad things"}, {"id": 383, "start": 1118.5, "end": 1120.18, "text": " about some of the people there, but there was..."}, {"id": 384, "start": 1120.18, "end": 1122.72, "text": " There were a bunch of games that I was really, really excited about."}, {"id": 385, "start": 1123.1, "end": 1124.48, "text": " And I kind of wanted to take a moment to mention"}, {"id": 386, "start": 1124.48, "end": 1126.56, "text": " those games, because they got me very excited."}, {"id": 387, "start": 1126.9, "end": 1128.16, "text": " Okay, we only have a little bit, so hurry up."}, {"id": 388, "start": 1128.3, "end": 1130.46, "text": " You got three minutes, man. Do it. Well, I'm not"}, {"id": 389, "start": 1130.46, "end": 1132.4, "text": " going to go into detail. I just want to say that the five games"}, {"id": 390, "start": 1132.4, "end": 1134.7, "text": " that made my list this time were Assassin's Creed 3."}, {"id": 391, "start": 1134.8200000000002, "end": 1136.6200000000001, "text": " Awesome. Then we had"}, {"id": 392, "start": 1136.6200000000001, "end": 1138.26, "text": " Planetside 2, which is"}, {"id": 393, "start": 1138.26, "end": 1140.42, "text": " an FPS MMO. That one's really"}, {"id": 394, "start": 1140.42, "end": 1142.3000000000002, "text": " surprised me. We'll only go into more detail about that one."}, {"id": 395, "start": 1142.38, "end": 1144.3200000000002, "text": " I have a giveaway for that one, too. Then there's"}, {"id": 396, "start": 1144.3200000000002, "end": 1146.1200000000001, "text": " Borderlands 2, which was awesome."}, {"id": 397, "start": 1146.5, "end": 1147.94, "text": " And we can talk more about that later."}, {"id": 398, "start": 1148.3200000000002, "end": 1150.38, "text": " The Metal Gear Solid, or the Metal Gear Rising"}, {"id": 399, "start": 1150.38, "end": 1152.5400000000002, "text": " game that's coming out. Right. And then, finally,"}, {"id": 400, "start": 1152.68, "end": 1154.76, "text": " the most exciting one was Quantum Conundrum"}, {"id": 401, "start": 1154.76, "end": 1156.5400000000002, "text": " for me. And this is a game that most of you probably have"}, {"id": 402, "start": 1156.5400000000002, "end": 1157.98, "text": " not heard of, but"}, {"id": 403, "start": 1157.98, "end": 1160.64, "text": " I promise you will within the next couple"}, {"id": 404, "start": 1160.64, "end": 1162.38, "text": " weeks. It's an absolutely"}, {"id": 405, "start": 1162.38, "end": 1164.5200000000002, "text": " amazing game if you're a Portal fan of any"}, {"id": 406, "start": 1164.5200000000002, "end": 1166.5, "text": " sorts. Or just even a puzzle game fan."}, {"id": 407, "start": 1166.66, "end": 1168.46, "text": " Yeah, if you're a Portal or original Tomb"}, {"id": 408, "start": 1168.46, "end": 1170.44, "text": " Raider fan or something like that of any sorts,"}, {"id": 409, "start": 1170.72, "end": 1172.6000000000001, "text": " this is the game for you. It's going to be amazing."}, {"id": 410, "start": 1172.7, "end": 1174.42, "text": " I think any game with the word"}, {"id": 411, "start": 1174.42, "end": 1176.4, "text": " Conundrum in the name is really worth playing."}, {"id": 412, "start": 1176.42, "end": 1177.8200000000002, "text": " And then Quantum? Come on."}, {"id": 413, "start": 1178.5800000000002, "end": 1180.5600000000002, "text": " That is some kind of"}, {"id": 414, "start": 1180.5600000000002, "end": 1181.5800000000002, "text": " word. Yeah, right?"}, {"id": 415, "start": 1183.0200000000002, "end": 1184.5400000000002, "text": " Quantum Conundrum. So we actually"}, {"id": 416, "start": 1184.5400000000002, "end": 1186.6200000000001, "text": " have a lot of hands-on with most of these games we're talking"}, {"id": 417, "start": 1186.6200000000001, "end": 1188.48, "text": " about right now. We have them."}, {"id": 418, "start": 1189.0400000000002, "end": 1190.5, "text": " We're going to have all the video up on our"}, {"id": 419, "start": 1190.5, "end": 1192.3000000000002, "text": " site probably by the later on this afternoon. There's also"}, {"id": 420, "start": 1192.38, "end": 1194.48, "text": " already a good amount of content on the site if you want to go check it out."}, {"id": 421, "start": 1194.66, "end": 1196.38, "text": " Right. We have a lot of articles on there, our picks"}, {"id": 422, "start": 1196.38, "end": 1198.42, "text": " and everything. We're going to go into more detail here after the break,"}, {"id": 423, "start": 1198.46, "end": 1200.5200000000002, "text": " I assume. But man, we had a lot of fun."}, {"id": 424, "start": 1200.68, "end": 1202.0200000000002, "text": " Really, a lot of pictures."}, {"id": 425, "start": 1202.42, "end": 1204.3000000000002, "text": " I just want to say, if you guys want to follow along"}, {"id": 426, "start": 1204.3000000000002, "end": 1206.44, "text": " with what we're talking about, go to gurushow.com"}, {"id": 427, "start": 1206.44, "end": 1208.3000000000002, "text": " slash E3, and you can"}, {"id": 428, "start": 1208.3000000000002, "end": 1210.3000000000002, "text": " see the stuff that we're talking about right now. There you go."}, {"id": 429, "start": 1210.4, "end": 1212.24, "text": " Rob's very proud of his PlayStation picture."}, {"id": 430, "start": 1212.74, "end": 1214.42, "text": " That picture came out great. I'm not"}, {"id": 431, "start": 1214.42, "end": 1216.44, "text": " a photographer by any means, and I was"}, {"id": 432, "start": 1216.44, "end": 1218.5200000000002, "text": " just snapping random pictures. You know, what's funny"}, {"id": 433, "start": 1218.5200000000002, "end": 1220.5, "text": " is when I first saw that go up on the site, I'm like,"}, {"id": 434, "start": 1220.5, "end": 1222.3200000000002, "text": " he stole that from someone. Where did he get"}, {"id": 435, "start": 1222.32, "end": 1224.4399999999998, "text": " that stock photo? It looks like"}, {"id": 436, "start": 1224.4399999999998, "end": 1226.04, "text": " a nice... It's a very nice"}, {"id": 437, "start": 1226.04, "end": 1228.1799999999998, "text": " picture. Okay. You done?"}, {"id": 438, "start": 1228.84, "end": 1230.3799999999999, "text": " I appreciate"}, {"id": 439, "start": 1230.3799999999999, "end": 1232.5, "text": " photography. I knew Mike would appreciate it, because"}, {"id": 440, "start": 1232.5, "end": 1234.4399999999998, "text": " when we came by his house before we"}, {"id": 441, "start": 1234.4399999999998, "end": 1236.6599999999999, "text": " left, he was literally taking photos of something."}, {"id": 442, "start": 1236.8999999999999, "end": 1238.52, "text": " He was. He was taking a picture of a"}, {"id": 443, "start": 1238.52, "end": 1240.48, "text": " spider. I was doing video of a spider"}, {"id": 444, "start": 1240.48, "end": 1242.02, "text": " that was making a spider web."}, {"id": 445, "start": 1242.28, "end": 1244.34, "text": " Right outside my door. Did you ever get that to make that happen?"}, {"id": 446, "start": 1244.76, "end": 1246.1599999999999, "text": " It's still on the camera. Still on the camera."}, {"id": 447, "start": 1246.24, "end": 1248.1599999999999, "text": " I haven't done anything with it yet. Good job. Good follow-through."}, {"id": 448, "start": 1248.1599999999999, "end": 1249.8799999999999, "text": " I haven't done anything with it. That's a great follow-through."}, {"id": 449, "start": 1250.46, "end": 1252.1599999999999, "text": " I think he was trying to train the spider to"}, {"id": 450, "start": 1252.16, "end": 1253.8600000000001, "text": " weave a fedora for him. Nice."}, {"id": 451, "start": 1255.92, "end": 1256.42, "text": " You know,"}, {"id": 452, "start": 1256.66, "end": 1258.5, "text": " I wore a fedora in public once."}, {"id": 453, "start": 1258.52, "end": 1259.94, "text": " One time, but that was enough. One time."}, {"id": 454, "start": 1260.0800000000002, "end": 1262.28, "text": " You know, it was funny. We told the nerd junkies about"}, {"id": 455, "start": 1262.28, "end": 1264.0600000000002, "text": " it, too, and I even admitted to them. I was like,"}, {"id": 456, "start": 1264.0800000000002, "end": 1266.16, "text": " he wore it once in public, and that was it, but we still"}, {"id": 457, "start": 1266.16, "end": 1267.92, "text": " give him a hard time about it every day. You know, to be fair, though,"}, {"id": 458, "start": 1267.92, "end": 1270.14, "text": " I have never worn a fedora. One time is"}, {"id": 459, "start": 1270.14, "end": 1272.24, "text": " too much, sir. You wear a"}, {"id": 460, "start": 1272.24, "end": 1273.66, "text": " mullet every day, though. A mullet."}, {"id": 461, "start": 1274.1000000000001, "end": 1275.0800000000002, "text": " A mullet. Wow."}, {"id": 462, "start": 1276.7, "end": 1278.22, "text": " Mullets. Oh, mullets are awesome, and if I"}, {"id": 463, "start": 1278.22, "end": 1279.5600000000002, "text": " did have one, I would be even cooler."}, {"id": 464, "start": 1279.9, "end": 1280.38, "text": " And you..."}, {"id": 465, "start": 1280.38, "end": 1280.5, "text": " Ha!"}, {"id": 466, "start": 1282.16, "end": 1284.26, "text": " And pork chops, really? Yeah, that's right."}, {"id": 467, "start": 1284.52, "end": 1285.96, "text": " You got some chops going? That's right."}, {"id": 468, "start": 1286.28, "end": 1287.38, "text": " I'm surprised you're not a vegetarian."}, {"id": 469, "start": 1288.28, "end": 1289.4, "text": " Let's go ahead and take a break."}, {"id": 470, "start": 1290.46, "end": 1292.24, "text": " This is the Computer Guru."}, {"id": 471, "start": 1292.6200000000001, "end": 1294.18, "text": " Alright, the news approaches."}, {"id": 472, "start": 1294.52, "end": 1296.2, "text": " When we come back for a little bit more gaming news,"}, {"id": 473, "start": 1296.26, "end": 1298.98, "text": " we're going to take some of your phone calls to 751-1041."}, {"id": 474, "start": 1299.52, "end": 1300.5800000000002, "text": " We're going to talk about ways"}, {"id": 475, "start": 1300.5800000000002, "end": 1302.52, "text": " that you can be a D-bag on the internet"}, {"id": 476, "start": 1302.52, "end": 1303.5800000000002, "text": " in the ways that you shouldn't be."}, {"id": 477, "start": 1304.0400000000002, "end": 1306.4, "text": " We can fix that. This is the Computer Guru"}, {"id": 478, "start": 1306.4, "end": 1308.16, "text": " Show, and we'll be right back."}, {"id": 479, "start": 1312.16, "end": 1321.94, "text": " Hello, PewDiePie."}, {"id": 480, "start": 1322.88, "end": 1323.8000000000002, "text": " Mac or PC?"}, {"id": 481, "start": 1324.1200000000001, "end": 1326.44, "text": " Desktop or laptop? The Computer Guru."}, {"id": 482, "start": 1326.72, "end": 1328.16, "text": " We'll get your problem solved."}, {"id": 483, "start": 1328.3400000000001, "end": 1330.02, "text": " Call 751-1041"}, {"id": 484, "start": 1330.02, "end": 1331.72, "text": " to talk with the Guru now."}, {"id": 485, "start": 1331.8000000000002, "end": 1333.78, "text": " On 104.1, the truth."}, {"id": 486, "start": 1334.26, "end": 1336.44, "text": " Oh, Tony, you didn't fail me on that one."}, {"id": 487, "start": 1336.48, "end": 1337.92, "text": " Almost, though. Almost."}, {"id": 488, "start": 1338.16, "end": 1340.3400000000001, "text": " 751-1041 if you'd like to be part of the show."}, {"id": 489, "start": 1340.3400000000001, "end": 1342.0, "text": " Let's get a couple calls out of the way."}, {"id": 490, "start": 1342.0, "end": 1344.14, "text": " Shall we? We shall. Let's talk to Kay."}, {"id": 491, "start": 1344.22, "end": 1346.3, "text": " Hello, Kay. How are you? I'm fine. How are you?"}, {"id": 492, "start": 1346.38, "end": 1348.3, "text": " I'm wonderful. Well, I am too,"}, {"id": 493, "start": 1348.4, "end": 1350.18, "text": " almost. Almost? By the way,"}, {"id": 494, "start": 1350.24, "end": 1352.26, "text": " I absolutely dislike the"}, {"id": 495, "start": 1352.26, "end": 1354.24, "text": " timeline. Oh, yeah. I'm not a big"}, {"id": 496, "start": 1354.24, "end": 1355.8, "text": " fan of the timeline, either. Oh, I think it's horrible."}, {"id": 497, "start": 1356.4, "end": 1358.3, "text": " Anyway, I've got a problem with my desktop."}, {"id": 498, "start": 1358.94, "end": 1359.92, "text": " Alright. Lay it on me."}, {"id": 499, "start": 1360.08, "end": 1361.64, "text": " I downloaded, well,"}, {"id": 500, "start": 1361.96, "end": 1363.88, "text": " it updated 20."}, {"id": 501, "start": 1364.04, "end": 1366.02, "text": " Good old Microsoft. Updated"}, {"id": 502, "start": 1366.02, "end": 1367.38, "text": " 20 updates."}, {"id": 503, "start": 1367.86, "end": 1369.5, "text": " You must have Windows XP still."}, {"id": 504, "start": 1370.08, "end": 1371.12, "text": " No, I don't."}, {"id": 505, "start": 1371.1200000000001, "end": 1373.24, "text": " I have Windows 7. And it didn't"}, {"id": 506, "start": 1373.24, "end": 1375.3200000000002, "text": " update automatically on its own like a long time"}, {"id": 507, "start": 1375.3200000000002, "end": 1376.92, "text": " ago? It didn't automatically. No."}, {"id": 508, "start": 1377.3600000000001, "end": 1379.2600000000002, "text": " No, it didn't. And"}, {"id": 509, "start": 1379.2600000000002, "end": 1381.0400000000002, "text": " I went to turn my computer on in the morning"}, {"id": 510, "start": 1381.0400000000002, "end": 1382.88, "text": " and it was crazy."}, {"id": 511, "start": 1383.44, "end": 1385.16, "text": " Crazy? I couldn't tell you what was on"}, {"id": 512, "start": 1385.16, "end": 1387.2800000000002, "text": " the screen anymore because this was a couple weeks ago."}, {"id": 513, "start": 1387.4, "end": 1388.92, "text": " Okay. So I tried it again."}, {"id": 514, "start": 1389.2, "end": 1390.2800000000002, "text": " I tried to restore"}, {"id": 515, "start": 1390.2800000000002, "end": 1393.2600000000002, "text": " and it didn't work. So describe"}, {"id": 516, "start": 1393.2600000000002, "end": 1394.14, "text": " the craziness, though."}, {"id": 517, "start": 1395.0800000000002, "end": 1396.6200000000001, "text": " It just came up with"}, {"id": 518, "start": 1396.6200000000001, "end": 1399.4, "text": " something was"}, {"id": 519, "start": 1399.4, "end": 1401.0200000000002, "text": " a driver. Something about a"}, {"id": 520, "start": 1401.1200000000001, "end": 1402.48, "text": " driver. Okay."}, {"id": 521, "start": 1402.7600000000002, "end": 1404.8600000000001, "text": " Okay. And so I did the"}, {"id": 522, "start": 1404.8600000000001, "end": 1405.48, "text": " restore."}, {"id": 523, "start": 1406.5000000000002, "end": 1409.16, "text": " They did their self-repair, you know."}, {"id": 524, "start": 1409.96, "end": 1411.38, "text": " Alright. And"}, {"id": 525, "start": 1411.38, "end": 1412.3600000000001, "text": " it didn't work."}, {"id": 526, "start": 1412.8400000000001, "end": 1414.5800000000002, "text": " So I pulled out my laptop"}, {"id": 527, "start": 1414.5800000000002, "end": 1417.0000000000002, "text": " and I've been using that."}, {"id": 528, "start": 1417.3200000000002, "end": 1418.9, "text": " And then one day I just said,"}, {"id": 529, "start": 1419.5400000000002, "end": 1420.8400000000001, "text": " Huh, I'm going to try it again."}, {"id": 530, "start": 1421.1200000000001, "end": 1423.2600000000002, "text": " So I did. I turned it on."}, {"id": 531, "start": 1423.3600000000001, "end": 1424.46, "text": " It did the restore"}, {"id": 532, "start": 1424.46, "end": 1426.94, "text": " and it was working. It was"}, {"id": 533, "start": 1426.94, "end": 1428.7600000000002, "text": " fantastic. And I was dancing."}, {"id": 534, "start": 1428.7600000000002, "end": 1430.2800000000002, "text": " I was dancing."}, {"id": 535, "start": 1431.1200000000001, "end": 1433.5800000000002, "text": " And that's really not"}, {"id": 536, "start": 1433.5800000000002, "end": 1434.68, "text": " my style anymore."}, {"id": 537, "start": 1435.22, "end": 1437.5800000000002, "text": " So anyway, I went"}, {"id": 538, "start": 1437.5800000000002, "end": 1438.98, "text": " to unplug my laptop"}, {"id": 539, "start": 1438.98, "end": 1441.88, "text": " and I unfortunately unplugged"}, {"id": 540, "start": 1441.88, "end": 1443.6000000000001, "text": " the power cord to my"}, {"id": 541, "start": 1443.6000000000001, "end": 1444.92, "text": " desktop. Oh, no."}, {"id": 542, "start": 1446.0200000000002, "end": 1446.92, "text": " Oh, no."}, {"id": 543, "start": 1447.18, "end": 1449.5600000000002, "text": " I went to plug it back"}, {"id": 544, "start": 1449.5600000000002, "end": 1451.4, "text": " in and I got the blue."}, {"id": 545, "start": 1452.24, "end": 1452.92, "text": " Yes, you did."}, {"id": 546, "start": 1453.0600000000002, "end": 1455.3200000000002, "text": " And it said,"}, {"id": 547, "start": 1455.5200000000002, "end": 1457.6200000000001, "text": " if you haven't gotten this before, we'll try"}, {"id": 548, "start": 1457.6200000000001, "end": 1459.48, "text": " the repair and"}, {"id": 549, "start": 1459.48, "end": 1461.0400000000002, "text": " did the whole thing."}, {"id": 550, "start": 1461.1200000000001, "end": 1463.5000000000002, "text": " And it came back up and it said"}, {"id": 551, "start": 1463.5000000000002, "end": 1465.22, "text": " I have an"}, {"id": 552, "start": 1465.22, "end": 1467.48, "text": " uncorrectable hardware"}, {"id": 553, "start": 1467.48, "end": 1469.22, "text": " error. Okay."}, {"id": 554, "start": 1469.8000000000002, "end": 1471.0800000000002, "text": " Okay. Now, first of all,"}, {"id": 555, "start": 1471.2600000000002, "end": 1473.24, "text": " you don't ever take the"}, {"id": 556, "start": 1473.24, "end": 1475.5000000000002, "text": " repair feature for Windows 7"}, {"id": 557, "start": 1475.5000000000002, "end": 1477.3200000000002, "text": " as truth."}, {"id": 558, "start": 1477.8000000000002, "end": 1479.5800000000002, "text": " Oh, okay. Because a lot of times it's like,"}, {"id": 559, "start": 1479.64, "end": 1481.66, "text": " I don't know what to do. So I'm just going to give you some type"}, {"id": 560, "start": 1481.66, "end": 1483.8600000000001, "text": " of vague error message. Devastating error."}, {"id": 561, "start": 1483.94, "end": 1485.2, "text": " I can't do anything."}, {"id": 562, "start": 1485.64, "end": 1486.96, "text": " Okay. So are you like me?"}, {"id": 563, "start": 1486.96, "end": 1488.46, "text": " Alright. So just"}, {"id": 564, "start": 1488.46, "end": 1490.2800000000002, "text": " did you try restarting after that?"}, {"id": 565, "start": 1491.1200000000001, "end": 1492.5000000000002, "text": " Did it work after that? No."}, {"id": 566, "start": 1492.66, "end": 1494.68, "text": " I have my laptop out again."}, {"id": 567, "start": 1494.92, "end": 1496.1200000000001, "text": " Okay. So"}, {"id": 568, "start": 1496.1200000000001, "end": 1498.92, "text": " usually what happens in this case where it says"}, {"id": 569, "start": 1498.92, "end": 1500.2, "text": " that type of problem,"}, {"id": 570, "start": 1500.48, "end": 1502.92, "text": " especially given that you unplugged it,"}, {"id": 571, "start": 1503.38, "end": 1505.0200000000002, "text": " usually means a corrupted"}, {"id": 572, "start": 1505.0200000000002, "end": 1507.24, "text": " registry. Oh, okay."}, {"id": 573, "start": 1507.38, "end": 1509.3200000000002, "text": " And luckily that's fairly recoverable"}, {"id": 574, "start": 1509.3200000000002, "end": 1511.16, "text": " but the built-in"}, {"id": 575, "start": 1511.16, "end": 1513.0600000000002, "text": " repair often has trouble doing"}, {"id": 576, "start": 1513.0600000000002, "end": 1514.7800000000002, "text": " that. Ah."}, {"id": 577, "start": 1515.3400000000001, "end": 1516.8400000000001, "text": " So I should bring it down to you?"}, {"id": 578, "start": 1516.8400000000001, "end": 1518.0600000000002, "text": " I think that's a pretty good idea."}, {"id": 579, "start": 1519.5200000000002, "end": 1520.64, "text": " I like this plan."}, {"id": 580, "start": 1521.1200000000001, "end": 1523.14, "text": " I don't know why I didn't do it"}, {"id": 581, "start": 1523.14, "end": 1525.0600000000002, "text": " right away. But I thought,"}, {"id": 582, "start": 1525.16, "end": 1526.74, "text": " well, I'll just call in and see."}, {"id": 583, "start": 1527.8600000000001, "end": 1529.0800000000002, "text": " Sometimes you need confirmation,"}, {"id": 584, "start": 1529.48, "end": 1530.98, "text": " right? Yes, exactly."}, {"id": 585, "start": 1530.98, "end": 1533.14, "text": " Exactly. And I certainly do."}, {"id": 586, "start": 1534.46, "end": 1534.8600000000001, "text": " Yes."}, {"id": 587, "start": 1534.98, "end": 1536.96, "text": " You need the confirmation, so bring it down here and we'll take"}, {"id": 588, "start": 1536.96, "end": 1538.6200000000001, "text": " care of you, okay? Okay."}, {"id": 589, "start": 1538.92, "end": 1540.8600000000001, "text": " Thank you. I appreciate the call."}, {"id": 590, "start": 1541.0600000000002, "end": 1543.0600000000002, "text": " Well, I appreciate the info."}, {"id": 591, "start": 1543.72, "end": 1545.0400000000002, "text": " I'm not going to"}, {"id": 592, "start": 1545.0400000000002, "end": 1546.3200000000002, "text": " trust Microsoft anymore."}, {"id": 593, "start": 1546.5000000000002, "end": 1549.0400000000002, "text": " Well, you can go ahead and still trust them. Just don't unplug it."}, {"id": 594, "start": 1549.1200000000001, "end": 1550.44, "text": " Don't unplug it. There you go."}, {"id": 595, "start": 1551.1200000000001, "end": 1553.3000000000002, "text": " Pretty stupid, wasn't it? I should follow the"}, {"id": 596, "start": 1553.3000000000002, "end": 1555.0400000000002, "text": " cord. All right. Follow the cord. There you go."}, {"id": 597, "start": 1555.16, "end": 1557.24, "text": " Okay. Thank you very much. Thank you."}, {"id": 598, "start": 1557.7, "end": 1559.1200000000001, "text": " What was it? We had that caller that"}, {"id": 599, "start": 1559.1200000000001, "end": 1561.18, "text": " said that they had a problem with their computer"}, {"id": 600, "start": 1561.18, "end": 1563.0600000000002, "text": " so they just put the computer in a closet for"}, {"id": 601, "start": 1563.0600000000002, "end": 1564.2, "text": " like a year. Yes. Yeah."}, {"id": 602, "start": 1564.3600000000001, "end": 1567.22, "text": " Did that behave? Well, they were hoping it would behave."}, {"id": 603, "start": 1567.74, "end": 1568.7, "text": " And it didn't work."}, {"id": 604, "start": 1568.8600000000001, "end": 1570.9, "text": " You can't put your computer on timeout and expect it to work."}, {"id": 605, "start": 1571.14, "end": 1572.6000000000001, "text": " Go sit in the corner"}, {"id": 606, "start": 1572.6000000000001, "end": 1575.3200000000002, "text": " until you know how to behave."}, {"id": 607, "start": 1575.96, "end": 1576.6200000000001, "text": " Oh, man."}, {"id": 608, "start": 1577.72, "end": 1579.18, "text": " Whoa. Wow. I tell my kids"}, {"id": 609, "start": 1579.18, "end": 1580.88, "text": " that. Sir. It doesn't work for them either."}, {"id": 610, "start": 1581.1200000000001, "end": 1583.42, "text": " What are you doing"}, {"id": 611, "start": 1583.42, "end": 1584.68, "text": " over here? Thrashing in the studio?"}, {"id": 612, "start": 1585.5400000000002, "end": 1586.5600000000002, "text": " Randall's going insane."}, {"id": 613, "start": 1587.0200000000002, "end": 1587.9, "text": " Okay. All right."}, {"id": 614, "start": 1588.5000000000002, "end": 1590.92, "text": " All right. Let's talk to Tom."}, {"id": 615, "start": 1590.98, "end": 1592.7800000000002, "text": " Hey, Tom. How are you? Good. How are you?"}, {"id": 616, "start": 1592.92, "end": 1594.24, "text": " I'm great. How can I help you?"}, {"id": 617, "start": 1594.7600000000002, "end": 1597.2, "text": " I just set up a new business domain"}, {"id": 618, "start": 1597.2, "end": 1598.88, "text": " for my small business through"}, {"id": 619, "start": 1598.88, "end": 1601.1000000000001, "text": " GoDaddy. And I wanted to get my email"}, {"id": 620, "start": 1601.1000000000001, "end": 1602.8200000000002, "text": " set up on some new service"}, {"id": 621, "start": 1602.8200000000002, "end": 1604.94, "text": " and wanted to see if you could provide any"}, {"id": 622, "start": 1604.94, "end": 1605.6200000000001, "text": " recommendations."}, {"id": 623, "start": 1606.7800000000002, "end": 1608.64, "text": " I've been using Gmail for a while"}, {"id": 624, "start": 1608.64, "end": 1610.8400000000001, "text": " and I wanted to see if there's any other options"}, {"id": 625, "start": 1611.1200000000001, "end": 1612.88, "text": " like maybe Microsoft"}, {"id": 626, "start": 1612.88, "end": 1615.1200000000001, "text": " 365, something where"}, {"id": 627, "start": 1615.1200000000001, "end": 1617.0800000000002, "text": " I can set up a website, just real basic"}, {"id": 628, "start": 1617.0800000000002, "end": 1619.1200000000001, "text": " and use Outlook for my"}, {"id": 629, "start": 1619.1200000000001, "end": 1621.1000000000001, "text": " email client. Or if you had any"}, {"id": 630, "start": 1621.1000000000001, "end": 1623.0800000000002, "text": " other options, it would"}, {"id": 631, "start": 1623.0800000000002, "end": 1624.68, "text": " be decent for somebody on a budget."}, {"id": 632, "start": 1625.0000000000002, "end": 1626.94, "text": " So when it comes to your mail services you currently"}, {"id": 633, "start": 1626.94, "end": 1629.0400000000002, "text": " have, are there features right now that you wish"}, {"id": 634, "start": 1629.0400000000002, "end": 1630.8000000000002, "text": " you had? Well,"}, {"id": 635, "start": 1631.0400000000002, "end": 1633.0000000000002, "text": " you know, when I first started with"}, {"id": 636, "start": 1633.0000000000002, "end": 1635.0200000000002, "text": " business email, I was pretty"}, {"id": 637, "start": 1635.0200000000002, "end": 1637.16, "text": " much born and bred on Outlook 2003."}, {"id": 638, "start": 1637.66, "end": 1639.0200000000002, "text": " And I got really used to"}, {"id": 639, "start": 1639.0200000000002, "end": 1640.96, "text": " that and then trying to switch over to anything"}, {"id": 640, "start": 1640.96, "end": 1641.96, "text": " other like Gmail,"}, {"id": 641, "start": 1642.56, "end": 1645.04, "text": " like with reading pains, the conversation"}, {"id": 642, "start": 1645.04, "end": 1647.06, "text": " thread, even if you turn off"}, {"id": 643, "start": 1647.06, "end": 1648.98, "text": " the conversation view with Gmail, it just still"}, {"id": 644, "start": 1648.98, "end": 1650.6000000000001, "text": " doesn't have the same"}, {"id": 645, "start": 1650.6000000000001, "end": 1653.06, "text": " feel as Outlook. Well, as it turns out,"}, {"id": 646, "start": 1653.42, "end": 1654.64, "text": " we offer a"}, {"id": 647, "start": 1654.64, "end": 1657.04, "text": " hosted exchange. How about"}, {"id": 648, "start": 1657.04, "end": 1659.1000000000001, "text": " that? Which you might be interested"}, {"id": 649, "start": 1659.1000000000001, "end": 1661.02, "text": " in. Now, as far as the website"}, {"id": 650, "start": 1661.02, "end": 1662.9, "text": " portion of it, what"}, {"id": 651, "start": 1662.9, "end": 1664.32, "text": " kind of budget are you talking about over here?"}, {"id": 652, "start": 1665.3400000000001, "end": 1666.26, "text": " Well, you know,"}, {"id": 653, "start": 1666.66, "end": 1669.0, "text": " like any startup business, a shoestring"}, {"id": 654, "start": 1669.0, "end": 1670.88, "text": " budget. So I'm definitely"}, {"id": 655, "start": 1670.88, "end": 1672.98, "text": " willing to talk about it, I guess"}, {"id": 656, "start": 1672.98, "end": 1674.8600000000001, "text": " probably offline. Of course, of course."}, {"id": 657, "start": 1675.0600000000002, "end": 1677.0200000000002, "text": " Right. Well, one of the things that you can at least look at,"}, {"id": 658, "start": 1677.1000000000001, "end": 1678.0600000000002, "text": " I mean, at least for the"}, {"id": 659, "start": 1678.0600000000002, "end": 1680.96, "text": " very limited budget, is that"}, {"id": 660, "start": 1680.96, "end": 1682.8400000000001, "text": " you already registered your domain with"}, {"id": 661, "start": 1682.8400000000001, "end": 1684.8600000000001, "text": " GoDaddy. Right. And for a"}, {"id": 662, "start": 1684.8600000000001, "end": 1686.7800000000002, "text": " very nominal fee, they do have"}, {"id": 663, "start": 1686.7800000000002, "end": 1688.7800000000002, "text": " their built-in templates, which aren't all that great."}, {"id": 664, "start": 1688.92, "end": 1690.5600000000002, "text": " I'll tell you that right now. And if you wanted"}, {"id": 665, "start": 1690.5600000000002, "end": 1693.18, "text": " to go a little bit better than GoDaddy"}, {"id": 666, "start": 1693.18, "end": 1694.6200000000001, "text": " and not have to still pay a bunch of money,"}, {"id": 667, "start": 1694.8000000000002, "end": 1696.7600000000002, "text": " there's do-it-yourself places like Squarespace."}, {"id": 668, "start": 1697.5800000000002, "end": 1698.8200000000002, "text": " You know, that's a little bit better than"}, {"id": 669, "start": 1698.8200000000002, "end": 1700.5200000000002, "text": " GoDaddy. But"}, {"id": 670, "start": 1700.52, "end": 1702.68, "text": " you still apply, you know, it's better to have a little"}, {"id": 671, "start": 1702.68, "end": 1704.66, "text": " bit of skill to be able to do that."}, {"id": 672, "start": 1705.18, "end": 1706.34, "text": " Yeah, I'm trying to, you know,"}, {"id": 673, "start": 1706.54, "end": 1708.46, "text": " not just insult GoDaddy here, but"}, {"id": 674, "start": 1708.46, "end": 1710.46, "text": " almost anything is better than GoDaddy's website"}, {"id": 675, "start": 1710.46, "end": 1712.66, "text": " builder. Yeah, we're asking the web developer."}, {"id": 676, "start": 1712.66, "end": 1714.6, "text": " Yeah, Rob's the web dude. In fact, like,"}, {"id": 677, "start": 1714.66, "end": 1716.42, "text": " yeah, if I just went to a website"}, {"id": 678, "start": 1716.42, "end": 1718.54, "text": " and it didn't have anything on it, it was just a blank white page,"}, {"id": 679, "start": 1718.6399999999999, "end": 1720.54, "text": " and then the person said, well, the alternative was GoDaddy"}, {"id": 680, "start": 1720.54, "end": 1722.04, "text": " stuff, I would have been like, oh, good job. Good call."}, {"id": 681, "start": 1722.7, "end": 1722.94, "text": " Yeah."}, {"id": 682, "start": 1723.84, "end": 1726.58, "text": " That is for the extremely impaired"}, {"id": 683, "start": 1726.58, "end": 1728.16, "text": " budget. Right, right. But"}, {"id": 684, "start": 1728.16, "end": 1730.46, "text": " there are some options that we can talk with you about."}, {"id": 685, "start": 1730.54, "end": 1731.68, "text": " You can give us a call down at the shop"}, {"id": 686, "start": 1731.68, "end": 1734.5, "text": " and set that up with Rob. Rob will be"}, {"id": 687, "start": 1734.5, "end": 1735.98, "text": " in on Monday"}, {"id": 688, "start": 1735.98, "end": 1738.5, "text": " and Wednesday, Thursday, Friday. There you go."}, {"id": 689, "start": 1738.6399999999999, "end": 1740.76, "text": " In fact, if you like, hang on the line right now."}, {"id": 690, "start": 1741.08, "end": 1742.6, "text": " Tony will get on the phone with you, get your"}, {"id": 691, "start": 1742.6, "end": 1744.34, "text": " contact information, and Rob will make contact with you."}, {"id": 692, "start": 1744.34, "end": 1746.3, "text": " I will. Sounds good. Sounds great."}, {"id": 693, "start": 1746.5, "end": 1747.46, "text": " All right. Appreciate the call."}, {"id": 694, "start": 1748.02, "end": 1750.34, "text": " All right. And, yeah, I didn't hang up on him."}, {"id": 695, "start": 1750.4, "end": 1752.36, "text": " Yeah, what line was that? You remember? No, but Tony does."}, {"id": 696, "start": 1753.0, "end": 1754.36, "text": " So, that was line four."}, {"id": 697, "start": 1754.76, "end": 1755.54, "text": " Look. All right."}, {"id": 698, "start": 1756.44, "end": 1758.3799999999999, "text": " All right. So, now let's go. Tony's like, I have no"}, {"id": 699, "start": 1758.3799999999999, "end": 1759.9, "text": " idea what you're talking about. Line four."}, {"id": 700, "start": 1760.24, "end": 1760.44, "text": " All right."}, {"id": 701, "start": 1760.52, "end": 1762.42, "text": " Let's talk to Robert. Hello, Robert."}, {"id": 702, "start": 1762.46, "end": 1764.26, "text": " How are you? Very good."}, {"id": 703, "start": 1764.3, "end": 1766.54, "text": " This may sound cynical, but"}, {"id": 704, "start": 1766.54, "end": 1768.42, "text": " that GoDaddy thing,"}, {"id": 705, "start": 1768.5, "end": 1770.32, "text": " those templates are set up to"}, {"id": 706, "start": 1770.32, "end": 1772.4, "text": " frustrate you enough to want"}, {"id": 707, "start": 1772.4, "end": 1774.26, "text": " to buy their web design"}, {"id": 708, "start": 1774.26, "end": 1775.62, "text": " service. You know, you're exactly right."}, {"id": 709, "start": 1775.7, "end": 1778.3, "text": " I just got to give you bonus points because you said something"}, {"id": 710, "start": 1778.3, "end": 1780.28, "text": " bad about GoDaddy and your name is my name, so"}, {"id": 711, "start": 1780.28, "end": 1782.42, "text": " you're awesome. Okay, then."}, {"id": 712, "start": 1782.8, "end": 1784.3, "text": " Hey, is there any difference between"}, {"id": 713, "start": 1784.3, "end": 1786.34, "text": " shut down and restart"}, {"id": 714, "start": 1786.34, "end": 1787.7, "text": " in terms of"}, {"id": 715, "start": 1787.7, "end": 1790.44, "text": " straightening your computer out?"}, {"id": 716, "start": 1790.52, "end": 1792.5, "text": " I mean, should you shut it down every once in a while?"}, {"id": 717, "start": 1792.6399999999999, "end": 1794.3799999999999, "text": " Well, shut down makes your computer not come back"}, {"id": 718, "start": 1794.3799999999999, "end": 1796.4, "text": " on and then restart. Really, Rob? Really?"}, {"id": 719, "start": 1796.6399999999999, "end": 1796.92, "text": " Really?"}, {"id": 720, "start": 1797.86, "end": 1799.94, "text": " Sort of the answer I had, too, so yeah."}, {"id": 721, "start": 1799.98, "end": 1802.34, "text": " That's not what he was asking. Functionally, they're"}, {"id": 722, "start": 1802.34, "end": 1804.4, "text": " no different, right? With the exception of"}, {"id": 723, "start": 1804.4, "end": 1806.56, "text": " there, you could have some latent memory problems."}, {"id": 724, "start": 1807.08, "end": 1807.98, "text": " However, that"}, {"id": 725, "start": 1807.98, "end": 1810.3799999999999, "text": " really only applies to older machines."}, {"id": 726, "start": 1810.5, "end": 1812.22, "text": " Right. So, on the newer machines, they're"}, {"id": 727, "start": 1812.22, "end": 1814.22, "text": " functionally identical with the exception of"}, {"id": 728, "start": 1814.22, "end": 1815.58, "text": " one of them comes back up."}, {"id": 729, "start": 1817.04, "end": 1817.44, "text": " Okay."}, {"id": 730, "start": 1818.4, "end": 1819.3799999999999, "text": " Second question."}, {"id": 731, "start": 1820.52, "end": 1820.96, "text": " My"}, {"id": 732, "start": 1820.96, "end": 1824.48, "text": " backup hard drive just sits there"}, {"id": 733, "start": 1824.48, "end": 1826.48, "text": " blinking at me when it's plugged in."}, {"id": 734, "start": 1826.56, "end": 1828.8, "text": " I assume that thing is heated and moving. Am I right?"}, {"id": 735, "start": 1828.9, "end": 1830.44, "text": " Well, it depends on the drive."}, {"id": 736, "start": 1830.54, "end": 1832.36, "text": " Is it sort of like a really slow, like"}, {"id": 737, "start": 1832.36, "end": 1833.8, "text": " kind of a breathing blink?"}, {"id": 738, "start": 1834.66, "end": 1836.1399999999999, "text": " Or is it... Yes. Right."}, {"id": 739, "start": 1836.24, "end": 1838.3799999999999, "text": " Slow breathing blink. Right. So, is there anything"}, {"id": 740, "start": 1838.3799999999999, "end": 1840.44, "text": " preventing me from popping the USB"}, {"id": 741, "start": 1840.44, "end": 1842.54, "text": " out of the front of my computer and letting that thing cool"}, {"id": 742, "start": 1842.54, "end": 1844.5, "text": " down? Well, it's probably not doing anything"}, {"id": 743, "start": 1844.5, "end": 1846.42, "text": " if it's sleeping. Now, most of the"}, {"id": 744, "start": 1846.42, "end": 1848.6, "text": " USB drives, if you're using your standard"}, {"id": 745, "start": 1848.6, "end": 1850.34, "text": " power settings under, like, Windows 7,"}, {"id": 746, "start": 1850.96, "end": 1852.56, "text": " the drive will go to sleep"}, {"id": 747, "start": 1852.56, "end": 1854.48, "text": " after it's not been used for a while, which means that"}, {"id": 748, "start": 1854.48, "end": 1856.3799999999999, "text": " it stops spinning and it's just sitting there waiting"}, {"id": 749, "start": 1856.3799999999999, "end": 1858.4, "text": " for you to use it. Oh, okay."}, {"id": 750, "start": 1858.98, "end": 1860.36, "text": " Sounds great. In most cases,"}, {"id": 751, "start": 1860.62, "end": 1862.48, "text": " is it a newer external"}, {"id": 752, "start": 1862.48, "end": 1863.6399999999999, "text": " drive, or how old is it? Yeah."}, {"id": 753, "start": 1864.46, "end": 1866.46, "text": " It's under a year. Right. So, it's going"}, {"id": 754, "start": 1866.46, "end": 1868.62, "text": " to sleep. Even though it's blinking?"}, {"id": 755, "start": 1868.94, "end": 1870.46, "text": " Yeah, and the blinking just says, hey, I'm"}, {"id": 756, "start": 1870.46, "end": 1872.22, "text": " plugged in and waiting for commands. Hey, blinkin'."}, {"id": 757, "start": 1872.22, "end": 1874.5, "text": " But it does generate heat in there"}, {"id": 758, "start": 1874.5, "end": 1876.34, "text": " and those backup drives can fail."}, {"id": 759, "start": 1876.46, "end": 1878.34, "text": " Am I right? Oh, yes. Oh, okay."}, {"id": 760, "start": 1878.68, "end": 1880.04, "text": " So, you need a backup for your backup?"}, {"id": 761, "start": 1880.52, "end": 1882.6399999999999, "text": " So, you can back up all your backup? That's right."}, {"id": 762, "start": 1882.78, "end": 1884.74, "text": " Your primary copy, which"}, {"id": 763, "start": 1884.74, "end": 1886.84, "text": " is on your hard drive, is your backup for the backup."}, {"id": 764, "start": 1887.92, "end": 1888.62, "text": " Ah, yeah."}, {"id": 765, "start": 1888.8799999999999, "end": 1890.18, "text": " Alright, so you have two copies."}, {"id": 766, "start": 1891.56, "end": 1892.32, "text": " Oh, good."}, {"id": 767, "start": 1893.1, "end": 1894.34, "text": " See, more meme stuff."}, {"id": 768, "start": 1894.46, "end": 1896.78, "text": " That was perfect. Yo, dog. We just like backups."}, {"id": 769, "start": 1897.1399999999999, "end": 1898.02, "text": " Put a drive in your drive."}, {"id": 770, "start": 1898.62, "end": 1900.74, "text": " Alright. Did you have another question on there?"}, {"id": 771, "start": 1900.96, "end": 1902.78, "text": " No, that's it. Thanks for everything, guys."}, {"id": 772, "start": 1902.78, "end": 1904.16, "text": " No problem. Thanks for the call."}, {"id": 773, "start": 1904.34, "end": 1907.08, "text": " It's funny. That was an ongoing joke the whole time we were at E3 with Nerd Junkies."}, {"id": 774, "start": 1907.1399999999999, "end": 1908.76, "text": " We were like, yo, dog, we heard you like scaffolding,"}, {"id": 775, "start": 1908.8, "end": 1910.28, "text": " so we put scaffolding in your scaffolding so you can..."}, {"id": 776, "start": 1910.28, "end": 1911.1, "text": " Build what you build."}, {"id": 777, "start": 1912.18, "end": 1914.6399999999999, "text": " We gotta put... Rob, we gotta make that happen."}, {"id": 778, "start": 1914.6399999999999, "end": 1916.72, "text": " Alright. You know what? My boss telling me to build"}, {"id": 779, "start": 1916.72, "end": 1918.8999999999999, "text": " a section on a site for memes, I can do that."}, {"id": 780, "start": 1920.24, "end": 1920.56, "text": " This,"}, {"id": 781, "start": 1920.7, "end": 1922.7, "text": " this, I think, is going to be fun."}, {"id": 782, "start": 1924.12, "end": 1924.44, "text": " This"}, {"id": 783, "start": 1924.44, "end": 1925.96, "text": " is the Computer Guru."}, {"id": 784, "start": 1926.54, "end": 1928.36, "text": " That'll be the only thing I get done this week."}, {"id": 785, "start": 1928.58, "end": 1930.8999999999999, "text": " No, it's not going to be the only thing you get done this week."}, {"id": 786, "start": 1931.18, "end": 1932.16, "text": " Alright, give us a call."}, {"id": 787, "start": 1932.48, "end": 1934.8, "text": " 751-1041. We're going to talk about being"}, {"id": 788, "start": 1934.8, "end": 1937.32, "text": " online D-bags when it comes to"}, {"id": 789, "start": 1937.32, "end": 1938.84, "text": " advertising on Google"}, {"id": 790, "start": 1938.8400000000001, "end": 1940.42, "text": " and ways that you can"}, {"id": 791, "start": 1940.42, "end": 1942.7200000000003, "text": " better advertise yourself. That's it."}, {"id": 792, "start": 1942.96, "end": 1944.4800000000002, "text": " Search engine optimization."}, {"id": 793, "start": 1945.2, "end": 1947.1200000000001, "text": " The do's and don'ts and the truths about it"}, {"id": 794, "start": 1947.1200000000001, "end": 1949.3200000000002, "text": " because a lot of times you're being lied to."}, {"id": 795, "start": 1949.44, "end": 1950.8400000000001, "text": " This is the Computer Guru Show"}, {"id": 796, "start": 1950.8400000000001, "end": 1952.0200000000002, "text": " and we'll be right back."}, {"id": 797, "start": 1958.7400000000002, "end": 1960.16, "text": " Hello, cutie pie."}, {"id": 798, "start": 1965.8400000000001, "end": 1967.6200000000001, "text": " I know you are, but what am I?"}, {"id": 799, "start": 1968.8400000000001, "end": 1972.3000000000002, "text": " I know you are, but what am I?"}, {"id": 800, "start": 1972.3000000000002, "end": 1972.96, "text": " I know you are, but what am I?"}, {"id": 801, "start": 1972.96, "end": 1974.3000000000002, "text": " I know you are, but what am I?"}, {"id": 802, "start": 1974.3000000000002, "end": 1974.66, "text": " I know you are, but what am I?"}, {"id": 803, "start": 1974.66, "end": 1974.96, "text": " I know you are, but what am I?"}, {"id": 804, "start": 1974.96, "end": 1975.0200000000002, "text": " I know you are, but what am I?"}, {"id": 805, "start": 1975.0200000000002, "end": 1976.66, "text": " Alright, Tony, you gotta turn on your mic for this one."}, {"id": 806, "start": 1976.7600000000002, "end": 1977.4800000000002, "text": " What just happened?"}, {"id": 807, "start": 1977.5600000000002, "end": 1978.4, "text": " Yeah, what was that?"}, {"id": 808, "start": 1978.6000000000001, "end": 1980.0000000000002, "text": " Tony's going to explain right now."}, {"id": 809, "start": 1980.2200000000003, "end": 1981.2400000000002, "text": " Does it have Tourette's or something?"}, {"id": 810, "start": 1981.66, "end": 1982.7, "text": " Yeah, pretty much."}, {"id": 811, "start": 1983.64, "end": 1986.5000000000002, "text": " No, I put in extra things again"}, {"id": 812, "start": 1986.5000000000002, "end": 1987.7400000000002, "text": " and for some reason"}, {"id": 813, "start": 1987.7400000000002, "end": 1989.7800000000002, "text": " it fires off"}, {"id": 814, "start": 1989.7800000000002, "end": 1991.64, "text": " one of those little"}, {"id": 815, "start": 1991.64, "end": 1993.7600000000002, "text": " sound effects that you just heard."}, {"id": 816, "start": 1994.8000000000002, "end": 1997.18, "text": " And I don't know"}, {"id": 817, "start": 1997.18, "end": 1998.6200000000001, "text": " why it fired them all at the same time."}, {"id": 818, "start": 1998.7600000000002, "end": 1998.8200000000002, "text": " Why?"}, {"id": 819, "start": 1998.8400000000001, "end": 2000.7400000000002, "text": " No, after I fired the first one and two"}, {"id": 820, "start": 2000.7400000000002, "end": 2002.7200000000003, "text": " I went, oh, my, I'm just"}, {"id": 821, "start": 2002.7200000000003, "end": 2003.6200000000001, "text": " I'm committed now."}, {"id": 822, "start": 2004.16, "end": 2006.9800000000002, "text": " Ladies and gentlemen,"}, {"id": 823, "start": 2007.2600000000002, "end": 2007.7800000000002, "text": " Too Tough Tony."}, {"id": 824, "start": 2008.0000000000002, "end": 2010.1200000000001, "text": " Thank you, thank you very much."}, {"id": 825, "start": 2010.16, "end": 2011.0400000000002, "text": " Assistant producer."}, {"id": 826, "start": 2012.4800000000002, "end": 2014.3200000000002, "text": " Drop that down to"}, {"id": 827, "start": 2014.3200000000002, "end": 2015.1200000000001, "text": " a board op."}, {"id": 828, "start": 2016.2600000000002, "end": 2017.8400000000001, "text": " Sorry, ladies, he's taken."}, {"id": 829, "start": 2021.0800000000002, "end": 2022.0800000000002, "text": " Alright, so"}, {"id": 830, "start": 2022.0800000000002, "end": 2024.3000000000002, "text": " part of that, I think, was"}, {"id": 831, "start": 2024.3000000000002, "end": 2026.44, "text": " there's some subconscious in there that"}, {"id": 832, "start": 2026.44, "end": 2028.3200000000002, "text": " when I was on James T's show on Thursday"}, {"id": 833, "start": 2028.3200000000002, "end": 2028.7600000000002, "text": " Right."}, {"id": 834, "start": 2028.8400000000001, "end": 2030.38, "text": " for our Tech Thursday bet"}, {"id": 835, "start": 2030.38, "end": 2032.68, "text": " I was sort of giving him grief, right?"}, {"id": 836, "start": 2032.8000000000002, "end": 2033.8600000000001, "text": " I was saying, wow, you know,"}, {"id": 837, "start": 2034.3200000000002, "end": 2037.2800000000002, "text": " James' show, his producer"}, {"id": 838, "start": 2037.2800000000002, "end": 2039.2200000000003, "text": " is all over the sound effects"}, {"id": 839, "start": 2039.2200000000003, "end": 2040.96, "text": " as far as making sure that there's stuff in there"}, {"id": 840, "start": 2040.96, "end": 2042.2200000000003, "text": " to make it a little more interesting."}, {"id": 841, "start": 2042.3400000000001, "end": 2044.0400000000002, "text": " For example, when James T says,"}, {"id": 842, "start": 2044.18, "end": 2044.8600000000001, "text": " it's a celebration."}, {"id": 843, "start": 2045.14, "end": 2047.42, "text": " Right, there's usually something there."}, {"id": 844, "start": 2047.9800000000002, "end": 2049.2200000000003, "text": " Yeah, which Tony wasn't ready for."}, {"id": 845, "start": 2049.38, "end": 2050.88, "text": " No, we're on a different podcast."}, {"id": 846, "start": 2050.88, "end": 2051.76, "text": " I know, I know, I know."}, {"id": 847, "start": 2051.76, "end": 2052.54, "text": " So he can't get that."}, {"id": 848, "start": 2052.54, "end": 2052.88, "text": " I know that."}, {"id": 849, "start": 2053.06, "end": 2056.6600000000003, "text": " But I was just really kind of messing with him, right?"}, {"id": 850, "start": 2056.76, "end": 2058.6000000000004, "text": " But now I think he's just hitting buttons."}, {"id": 851, "start": 2058.84, "end": 2059.44, "text": " Random now."}, {"id": 852, "start": 2059.58, "end": 2060.02, "text": " Just randomly."}, {"id": 853, "start": 2061.8, "end": 2063.44, "text": " I need some sort of gif of him."}, {"id": 854, "start": 2064.02, "end": 2066.0, "text": " Yeah, just pulling levers."}, {"id": 855, "start": 2067.0, "end": 2068.58, "text": " I had something to say, but it's too mean."}, {"id": 856, "start": 2068.6600000000003, "end": 2069.1200000000003, "text": " I can't say it."}, {"id": 857, "start": 2069.1600000000003, "end": 2070.58, "text": " That smile on his face over there just means"}, {"id": 858, "start": 2070.58, "end": 2071.7200000000003, "text": " I have no idea what I'm doing."}, {"id": 859, "start": 2071.9, "end": 2074.1200000000003, "text": " I always want to do a Clark's True reference."}, {"id": 860, "start": 2074.26, "end": 2075.6000000000004, "text": " He's like, this monitor's not even a touch screen."}, {"id": 861, "start": 2075.6000000000004, "end": 2077.1800000000003, "text": " You just wait until after the show."}, {"id": 862, "start": 2077.44, "end": 2078.3, "text": " That's what's going to happen."}, {"id": 863, "start": 2078.52, "end": 2079.6400000000003, "text": " Tony's going to take us outside"}, {"id": 864, "start": 2079.6400000000003, "end": 2081.36, "text": " and kick our butts in the parking lot."}, {"id": 865, "start": 2081.48, "end": 2081.94, "text": " That's what's going to happen."}, {"id": 866, "start": 2081.94, "end": 2082.98, "text": " Because he's too tough."}, {"id": 867, "start": 2083.1600000000003, "end": 2083.6200000000003, "text": " Too tough."}, {"id": 868, "start": 2083.98, "end": 2085.7200000000003, "text": " Alright, 751-1041"}, {"id": 869, "start": 2085.7200000000003, "end": 2087.28, "text": " if you'd like to be part of the show."}, {"id": 870, "start": 2087.28, "end": 2089.6600000000003, "text": " So, Ermagerd, video game."}, {"id": 871, "start": 2089.94, "end": 2090.34, "text": " Ermagerd."}, {"id": 872, "start": 2090.52, "end": 2091.9, "text": " Alright, Assassin's Creed."}, {"id": 873, "start": 2092.6000000000004, "end": 2093.32, "text": " Assassin's Creed, yeah."}, {"id": 874, "start": 2093.78, "end": 2094.52, "text": " So let's talk..."}, {"id": 875, "start": 2094.52, "end": 2095.44, "text": " Assassin's..."}, {"id": 876, "start": 2095.44, "end": 2097.48, "text": " So the new Assassin's Creed,"}, {"id": 877, "start": 2097.6000000000004, "end": 2098.36, "text": " Assassin's Creed 3."}, {"id": 878, "start": 2099.1400000000003, "end": 2100.26, "text": " You know, it looks really good."}, {"id": 879, "start": 2100.46, "end": 2101.3, "text": " A lot of good graphics."}, {"id": 880, "start": 2101.5, "end": 2103.7000000000003, "text": " You know, everything you expect from Assassin's Creed."}, {"id": 881, "start": 2103.88, "end": 2105.48, "text": " Yeah, you don't have to fight dinosaurs in this one."}, {"id": 882, "start": 2105.5600000000004, "end": 2106.82, "text": " No, no, no."}, {"id": 883, "start": 2106.86, "end": 2108.92, "text": " This one actually is based all around"}, {"id": 884, "start": 2108.92, "end": 2109.92, "text": " the American Revolution, though."}, {"id": 885, "start": 2110.1600000000003, "end": 2110.5600000000004, "text": " Yes, it is."}, {"id": 886, "start": 2110.5600000000004, "end": 2111.42, "text": " So it looks really good."}, {"id": 887, "start": 2111.5400000000004, "end": 2112.42, "text": " And I'm excited about it."}, {"id": 888, "start": 2112.48, "end": 2114.1000000000004, "text": " Actually, the PlayStation Vita"}, {"id": 889, "start": 2114.1000000000004, "end": 2116.0, "text": " has a little spin-off of it as well."}, {"id": 890, "start": 2116.0, "end": 2117.1400000000003, "text": " Only available for the Vita."}, {"id": 891, "start": 2117.14, "end": 2118.04, "text": " It's a female assassin."}, {"id": 892, "start": 2118.7, "end": 2120.2, "text": " So, yeah, it might be pretty good."}, {"id": 893, "start": 2120.2799999999997, "end": 2120.56, "text": " I don't know."}, {"id": 894, "start": 2120.96, "end": 2122.24, "text": " The jury's still out on that."}, {"id": 895, "start": 2122.3599999999997, "end": 2124.56, "text": " Of course, that franchise..."}, {"id": 896, "start": 2124.56, "end": 2126.22, "text": " What are you guys laughing about?"}, {"id": 897, "start": 2126.2799999999997, "end": 2126.52, "text": " What?"}, {"id": 898, "start": 2126.7599999999998, "end": 2128.3599999999997, "text": " Mean, horrible jokes that I can't say."}, {"id": 899, "start": 2128.3599999999997, "end": 2130.16, "text": " There's just so many things that cannot be said."}, {"id": 900, "start": 2130.48, "end": 2132.08, "text": " So many things I can't say."}, {"id": 901, "start": 2132.58, "end": 2134.0, "text": " The Assassin's Creed franchise"}, {"id": 902, "start": 2134.0, "end": 2135.3799999999997, "text": " is a really good franchise."}, {"id": 903, "start": 2136.0, "end": 2138.16, "text": " And it should be very good."}, {"id": 904, "start": 2138.3199999999997, "end": 2140.46, "text": " I don't know how they're going to portray, you know..."}, {"id": 905, "start": 2140.46, "end": 2141.2, "text": " What?"}, {"id": 906, "start": 2141.58, "end": 2142.7799999999997, "text": " What are you looking at me for?"}, {"id": 907, "start": 2142.8799999999997, "end": 2143.58, "text": " You're talking."}, {"id": 908, "start": 2143.74, "end": 2144.8799999999997, "text": " I'm making eye contact."}, {"id": 909, "start": 2144.88, "end": 2147.86, "text": " Anyway, I'm just going to be quiet."}, {"id": 910, "start": 2147.86, "end": 2149.1800000000003, "text": " That's how communication works there, buddy."}, {"id": 911, "start": 2149.44, "end": 2151.28, "text": " I'm just going to be quiet for like a little bit."}, {"id": 912, "start": 2151.82, "end": 2153.12, "text": " The burnish are curming."}, {"id": 913, "start": 2153.1800000000003, "end": 2153.96, "text": " The burnish are curming."}, {"id": 914, "start": 2154.46, "end": 2155.28, "text": " I almost..."}, {"id": 915, "start": 2155.28, "end": 2157.6600000000003, "text": " Anyways."}, {"id": 916, "start": 2158.06, "end": 2159.48, "text": " I had something a little bit meaner,"}, {"id": 917, "start": 2159.54, "end": 2160.52, "text": " but I'll tell you guys later."}, {"id": 918, "start": 2160.58, "end": 2162.1800000000003, "text": " I'm really looking forward to Assassin's Creed 3."}, {"id": 919, "start": 2162.42, "end": 2163.46, "text": " It should be a very good game."}, {"id": 920, "start": 2163.88, "end": 2165.2400000000002, "text": " Though I know the one Rob's excited about"}, {"id": 921, "start": 2165.2400000000002, "end": 2166.1, "text": " is Planetside 2, though."}, {"id": 922, "start": 2166.5, "end": 2166.7200000000003, "text": " Yeah."}, {"id": 923, "start": 2166.84, "end": 2167.2200000000003, "text": " Oh, man."}, {"id": 924, "start": 2167.34, "end": 2168.4, "text": " So what is Planetside 2?"}, {"id": 925, "start": 2168.4, "end": 2169.9, "text": " I didn't even know about this game"}, {"id": 926, "start": 2169.9, "end": 2170.92, "text": " before we went to E3."}, {"id": 927, "start": 2171.08, "end": 2171.32, "text": " Right."}, {"id": 928, "start": 2171.4, "end": 2172.32, "text": " And we're walking by"}, {"id": 929, "start": 2172.32, "end": 2174.42, "text": " and there's this big old line for Planetside."}, {"id": 930, "start": 2174.42, "end": 2174.86, "text": " And we're like,"}, {"id": 931, "start": 2174.86, "end": 2175.46, "text": " what's this about?"}, {"id": 932, "start": 2175.9, "end": 2176.44, "text": " So we go up there"}, {"id": 933, "start": 2176.44, "end": 2176.82, "text": " and the guy's like,"}, {"id": 934, "start": 2176.88, "end": 2177.38, "text": " well, you guys are media."}, {"id": 935, "start": 2177.52, "end": 2178.88, "text": " Yeah, we flash our media passes."}, {"id": 936, "start": 2179.1600000000003, "end": 2179.5, "text": " All right, well,"}, {"id": 937, "start": 2179.88, "end": 2180.52, "text": " Planets are round."}, {"id": 938, "start": 2180.6, "end": 2181.38, "text": " They don't really have size."}, {"id": 939, "start": 2181.7000000000003, "end": 2182.88, "text": " Ooh, nice."}, {"id": 940, "start": 2183.28, "end": 2184.1600000000003, "text": " Well, anyway,"}, {"id": 941, "start": 2184.9, "end": 2186.6200000000003, "text": " Mr. Jokey Jokerson over there."}, {"id": 942, "start": 2186.78, "end": 2187.6800000000003, "text": " Sony, SOE,"}, {"id": 943, "start": 2187.88, "end": 2188.6800000000003, "text": " Sony Online Entertainment,"}, {"id": 944, "start": 2189.04, "end": 2190.94, "text": " because they have such bad security problems,"}, {"id": 945, "start": 2190.98, "end": 2192.54, "text": " they're just having to give the games away for free."}, {"id": 946, "start": 2192.6800000000003, "end": 2193.46, "text": " That's not why."}, {"id": 947, "start": 2193.52, "end": 2194.2200000000003, "text": " That's not why."}, {"id": 948, "start": 2194.34, "end": 2194.82, "text": " But no,"}, {"id": 949, "start": 2194.92, "end": 2196.06, "text": " they have a bunch of games"}, {"id": 950, "start": 2196.06, "end": 2197.2200000000003, "text": " that are doing free-to-plays now."}, {"id": 951, "start": 2197.3, "end": 2198.58, "text": " And it's not just free just to play,"}, {"id": 952, "start": 2198.6400000000003, "end": 2199.44, "text": " but it's also free to buy."}, {"id": 953, "start": 2199.56, "end": 2200.34, "text": " You don't have to buy them at all."}, {"id": 954, "start": 2200.36, "end": 2201.02, "text": " You have the game."}, {"id": 955, "start": 2201.06, "end": 2202.02, "text": " Everything about the game is free."}, {"id": 956, "start": 2202.1400000000003, "end": 2202.36, "text": " Right."}, {"id": 957, "start": 2202.36, "end": 2203.38, "text": " Now, a lot of these games"}, {"id": 958, "start": 2203.38, "end": 2205.02, "text": " are going to feature micro-purchases,"}, {"id": 959, "start": 2205.1600000000003, "end": 2207.46, "text": " which means you can purchase weapon upgrades."}, {"id": 960, "start": 2208.06, "end": 2208.6, "text": " Things like that,"}, {"id": 961, "start": 2208.6400000000003, "end": 2210.06, "text": " but there's no upfront cost"}, {"id": 962, "start": 2210.06, "end": 2211.26, "text": " and you don't have a subscription fee."}, {"id": 963, "start": 2211.34, "end": 2213.94, "text": " And the guy who we talked to from Sony said,"}, {"id": 964, "start": 2214.1200000000003, "end": 2215.1800000000003, "text": " yes, there are micro-purchases,"}, {"id": 965, "start": 2215.26, "end": 2216.7400000000002, "text": " but you can get all those same things"}, {"id": 966, "start": 2216.7400000000002, "end": 2217.78, "text": " just by playing the game."}, {"id": 967, "start": 2217.92, "end": 2218.44, "text": " Yeah, by playing harder."}, {"id": 968, "start": 2218.44, "end": 2219.98, "text": " So you don't actually have to purchase anything"}, {"id": 969, "start": 2219.98, "end": 2220.52, "text": " if you don't want to,"}, {"id": 970, "start": 2220.56, "end": 2221.2400000000002, "text": " you just want to play harder."}, {"id": 971, "start": 2221.34, "end": 2222.44, "text": " That's like the Team Fortress model."}, {"id": 972, "start": 2222.5, "end": 2223.56, "text": " Just like Team Fortress, exactly."}, {"id": 973, "start": 2223.7200000000003, "end": 2225.6600000000003, "text": " And I actually like that model of a game"}, {"id": 974, "start": 2225.6600000000003, "end": 2226.6, "text": " because there's some nights"}, {"id": 975, "start": 2226.6, "end": 2228.02, "text": " where I don't want to grind a quest"}, {"id": 976, "start": 2228.02, "end": 2229.02, "text": " over and over to get one item"}, {"id": 977, "start": 2229.02, "end": 2230.28, "text": " and I can just go purchase it or something."}, {"id": 978, "start": 2230.28, "end": 2230.84, "text": " As an example,"}, {"id": 979, "start": 2230.98, "end": 2232.32, "text": " my favorite game on the,"}, {"id": 980, "start": 2232.36, "end": 2234.1800000000003, "text": " on the iPad is similar to that."}, {"id": 981, "start": 2234.4, "end": 2235.06, "text": " Tower Madness."}, {"id": 982, "start": 2235.32, "end": 2235.96, "text": " Right, yeah, right."}, {"id": 983, "start": 2235.98, "end": 2237.84, "text": " Where you can purchase upgraded weapons"}, {"id": 984, "start": 2237.84, "end": 2240.34, "text": " and extra map packs."}, {"id": 985, "start": 2240.48, "end": 2240.82, "text": " Yeah, right."}, {"id": 986, "start": 2241.08, "end": 2243.94, "text": " And I, really, seriously,"}, {"id": 987, "start": 2244.08, "end": 2244.4, "text": " I still play it."}, {"id": 988, "start": 2244.4, "end": 2245.3, "text": " He still plays it today, yeah."}, {"id": 989, "start": 2245.3, "end": 2247.88, "text": " Like, I've had that game for two years, right?"}, {"id": 990, "start": 2248.0, "end": 2248.92, "text": " And I still play it."}, {"id": 991, "start": 2248.92, "end": 2250.1200000000003, "text": " Yeah, I can't believe you still play that game."}, {"id": 992, "start": 2250.1600000000003, "end": 2250.52, "text": " That's crazy."}, {"id": 993, "start": 2250.58, "end": 2251.02, "text": " It's awesome."}, {"id": 994, "start": 2251.2000000000003, "end": 2252.38, "text": " But anyway, the thing that makes"}, {"id": 995, "start": 2252.38, "end": 2254.08, "text": " Planetside 2 so amazing"}, {"id": 996, "start": 2254.08, "end": 2255.76, "text": " is that it's a persistent world"}, {"id": 997, "start": 2255.76, "end": 2256.58, "text": " first-person shooter."}, {"id": 998, "start": 2256.98, "end": 2257.88, "text": " Meaning that most of the time"}, {"id": 999, "start": 2257.88, "end": 2259.36, "text": " when you play a first-person shooter online,"}, {"id": 1000, "start": 2259.36, "end": 2259.76, "text": " it resets."}, {"id": 1001, "start": 2259.96, "end": 2260.7400000000002, "text": " It's instant space."}, {"id": 1002, "start": 2260.7400000000002, "end": 2261.7200000000003, "text": " So you load into a level"}, {"id": 1003, "start": 2261.7200000000003, "end": 2262.34, "text": " and then everybody,"}, {"id": 1004, "start": 2262.42, "end": 2262.6400000000003, "text": " everybody plays"}, {"id": 1005, "start": 2262.6400000000003, "end": 2263.1600000000003, "text": " and then when you're done,"}, {"id": 1006, "start": 2263.2400000000002, "end": 2263.78, "text": " it's all gone."}, {"id": 1007, "start": 2263.88, "end": 2264.06, "text": " Right."}, {"id": 1008, "start": 2264.2200000000003, "end": 2264.92, "text": " In Planetside,"}, {"id": 1009, "start": 2265.2000000000003, "end": 2267.1200000000003, "text": " you could log in six months later"}, {"id": 1010, "start": 2267.1200000000003, "end": 2269.1200000000003, "text": " and something that you blew up in the game"}, {"id": 1011, "start": 2269.1200000000003, "end": 2269.76, "text": " is still blown up."}, {"id": 1012, "start": 2269.76, "end": 2271.0, "text": " So it's like an MMO first-person."}, {"id": 1013, "start": 2271.1600000000003, "end": 2271.6200000000003, "text": " It is, yeah."}, {"id": 1014, "start": 2271.6800000000003, "end": 2272.78, "text": " It's an MMO FPS."}, {"id": 1015, "start": 2273.02, "end": 2273.88, "text": " So is it just going to be"}, {"id": 1016, "start": 2273.88, "end": 2275.28, "text": " like a pile of rubble after, like,"}, {"id": 1017, "start": 2275.32, "end": 2276.08, "text": " Eventually, yeah."}, {"id": 1018, "start": 2276.08, "end": 2277.1600000000003, "text": " Eventually, the whole planet"}, {"id": 1019, "start": 2277.1600000000003, "end": 2278.34, "text": " will just be leveled."}, {"id": 1020, "start": 2278.6200000000003, "end": 2279.56, "text": " But it's just so cool."}, {"id": 1021, "start": 2279.6600000000003, "end": 2280.52, "text": " And then they tied it in"}, {"id": 1022, "start": 2280.52, "end": 2281.1200000000003, "text": " with their website"}, {"id": 1023, "start": 2281.1200000000003, "end": 2282.1600000000003, "text": " and they have an Android app"}, {"id": 1024, "start": 2282.1600000000003, "end": 2283.46, "text": " so you can voice chat"}, {"id": 1025, "start": 2283.46, "end": 2284.04, "text": " with your friends"}, {"id": 1026, "start": 2284.04, "end": 2285.4, "text": " even when you're not playing the game."}, {"id": 1027, "start": 2285.58, "end": 2286.06, "text": " Are there missions"}, {"id": 1028, "start": 2286.06, "end": 2287.3, "text": " that you have to go rebuild stuff"}, {"id": 1029, "start": 2287.3, "end": 2287.98, "text": " that's been blown up?"}, {"id": 1030, "start": 2288.1, "end": 2288.6400000000003, "text": " I hope so."}, {"id": 1031, "start": 2288.84, "end": 2290.42, "text": " There are engineers, though."}, {"id": 1032, "start": 2290.42, "end": 2291.7400000000002, "text": " There's no world reset"}, {"id": 1033, "start": 2291.7400000000002, "end": 2292.88, "text": " that you can log in there"}, {"id": 1034, "start": 2292.88, "end": 2293.82, "text": " and it's just a wasteland."}, {"id": 1035, "start": 2293.98, "end": 2294.9, "text": " Where in the wasteland?"}, {"id": 1036, "start": 2295.1, "end": 2295.66, "text": " In the wasteland."}, {"id": 1037, "start": 2296.02, "end": 2298.92, "text": " No, this game is actually really cool."}, {"id": 1038, "start": 2299.0, "end": 2302.34, "text": " We have some behind-closed-door video"}, {"id": 1039, "start": 2302.34, "end": 2303.54, "text": " exclusive to E3."}, {"id": 1040, "start": 2303.66, "end": 2304.3, "text": " Yeah, I couldn't believe"}, {"id": 1041, "start": 2304.3, "end": 2305.44, "text": " that the guys were nice enough."}, {"id": 1042, "start": 2305.56, "end": 2306.98, "text": " You know, I kind of jokingly was like,"}, {"id": 1043, "start": 2307.1800000000003, "end": 2308.0, "text": " Can I film this?"}, {"id": 1044, "start": 2308.06, "end": 2308.3, "text": " And they're like,"}, {"id": 1045, "start": 2308.3, "end": 2309.28, "text": " Yeah, sure, go for it."}, {"id": 1046, "start": 2309.36, "end": 2310.36, "text": " So we have good video,"}, {"id": 1047, "start": 2310.5, "end": 2311.12, "text": " good audio."}, {"id": 1048, "start": 2311.34, "end": 2312.34, "text": " Go to our website,"}, {"id": 1049, "start": 2312.92, "end": 2314.52, "text": " gurushow.com slash E3."}, {"id": 1050, "start": 2314.76, "end": 2316.42, "text": " It'll be in the top five category."}, {"id": 1051, "start": 2316.76, "end": 2317.06, "text": " Yes, it will."}, {"id": 1052, "start": 2317.06, "end": 2317.78, "text": " And you'll scroll down."}, {"id": 1053, "start": 2317.84, "end": 2318.34, "text": " It'll be there."}, {"id": 1054, "start": 2318.36, "end": 2319.28, "text": " You can watch the full video."}, {"id": 1055, "start": 2319.28, "end": 2320.1, "text": " It's actually really,"}, {"id": 1056, "start": 2320.3, "end": 2320.4, "text": " really cool."}, {"id": 1057, "start": 2320.42, "end": 2321.46, "text": " I'm really excited about it."}, {"id": 1058, "start": 2321.66, "end": 2322.8, "text": " And it's not going to be out"}, {"id": 1059, "start": 2322.8, "end": 2323.86, "text": " for several more months."}, {"id": 1060, "start": 2324.44, "end": 2324.96, "text": " Actually, I don't think"}, {"id": 1061, "start": 2324.96, "end": 2325.3, "text": " it's going to be around"}, {"id": 1062, "start": 2325.3, "end": 2326.28, "text": " until the end of next year."}, {"id": 1063, "start": 2326.52, "end": 2328.6, "text": " However, I have several beta keys"}, {"id": 1064, "start": 2328.6, "end": 2329.2200000000003, "text": " that I will be giving away."}, {"id": 1065, "start": 2329.2200000000003, "end": 2329.64, "text": " Yeah, I was going to say,"}, {"id": 1066, "start": 2329.7200000000003, "end": 2330.38, "text": " I think we have something"}, {"id": 1067, "start": 2330.38, "end": 2331.08, "text": " a little bit exciting"}, {"id": 1068, "start": 2331.08, "end": 2332.3, "text": " to the listeners here."}, {"id": 1069, "start": 2332.3, "end": 2332.44, "text": " I do."}, {"id": 1070, "start": 2332.48, "end": 2333.64, "text": " I got some beta keys for this game."}, {"id": 1071, "start": 2333.6800000000003, "end": 2334.4, "text": " Now, the game hasn't even"}, {"id": 1072, "start": 2334.4, "end": 2335.3, "text": " gone out into beta yet."}, {"id": 1073, "start": 2335.3, "end": 2336.62, "text": " It's not even in closed beta yet."}, {"id": 1074, "start": 2336.64, "end": 2337.7400000000002, "text": " Right, but as soon as it does,"}, {"id": 1075, "start": 2337.84, "end": 2339.16, "text": " these keys will give you that invite."}, {"id": 1076, "start": 2339.36, "end": 2340.48, "text": " So let's go ahead"}, {"id": 1077, "start": 2340.48, "end": 2340.98, "text": " and give away a couple"}, {"id": 1078, "start": 2340.98, "end": 2341.98, "text": " of the forums this weekend."}, {"id": 1079, "start": 2342.06, "end": 2342.38, "text": " What do you think?"}, {"id": 1080, "start": 2342.5, "end": 2343.1, "text": " Yeah, that sounds good."}, {"id": 1081, "start": 2343.1, "end": 2343.2000000000003, "text": " Excellent."}, {"id": 1082, "start": 2343.28, "end": 2343.6800000000003, "text": " We've got a bunch."}, {"id": 1083, "start": 2343.6800000000003, "end": 2344.58, "text": " So Rob will make that happen."}, {"id": 1084, "start": 2350.42, "end": 2350.84, "text": " We don't know when it's going"}, {"id": 1085, "start": 2350.84, "end": 2352.02, "text": " to be open for beta."}, {"id": 1086, "start": 2352.5, "end": 2353.1800000000003, "text": " But when it is,"}, {"id": 1087, "start": 2353.28, "end": 2354.36, "text": " if you guys are interested in that,"}, {"id": 1088, "start": 2354.64, "end": 2355.84, "text": " check out the forums this week"}, {"id": 1089, "start": 2355.84, "end": 2356.52, "text": " and you'll see,"}, {"id": 1090, "start": 2356.66, "end": 2357.7400000000002, "text": " we'll be talking about it on there."}, {"id": 1091, "start": 2357.86, "end": 2358.42, "text": " We'll tell you how you can..."}, {"id": 1092, "start": 2358.42, "end": 2359.02, "text": " We'll figure something out."}, {"id": 1093, "start": 2359.1, "end": 2359.76, "text": " We'll give it away."}, {"id": 1094, "start": 2360.04, "end": 2361.38, "text": " We'll figure out how you can get one"}, {"id": 1095, "start": 2361.38, "end": 2362.26, "text": " and get your hands on it."}, {"id": 1096, "start": 2362.34, "end": 2362.9, "text": " And you'll probably be able"}, {"id": 1097, "start": 2362.9, "end": 2363.36, "text": " to play with us"}, {"id": 1098, "start": 2363.36, "end": 2364.04, "text": " because I know I'm going to be playing."}, {"id": 1099, "start": 2364.04, "end": 2364.46, "text": " I'll be there."}, {"id": 1100, "start": 2364.6, "end": 2364.88, "text": " Absolutely."}, {"id": 1101, "start": 2365.38, "end": 2365.66, "text": " Excellent."}, {"id": 1102, "start": 2365.8, "end": 2366.56, "text": " So let's go ahead and recap"}, {"id": 1103, "start": 2366.56, "end": 2367.7400000000002, "text": " on some of the specials"}, {"id": 1104, "start": 2367.7400000000002, "end": 2368.26, "text": " that we've got going on."}, {"id": 1105, "start": 2368.28, "end": 2369.64, "text": " We still have the existing special"}, {"id": 1106, "start": 2369.64, "end": 2370.64, "text": " of No Diagon Shop"}, {"id": 1107, "start": 2370.64, "end": 2373.08, "text": " at least until next week,"}, {"id": 1108, "start": 2373.2400000000002, "end": 2375.12, "text": " until the end of this upcoming week."}, {"id": 1109, "start": 2375.5, "end": 2375.6800000000003, "text": " Right."}, {"id": 1110, "start": 2375.68, "end": 2377.9199999999996, "text": " And then for the rest of the month now,"}, {"id": 1111, "start": 2378.06, "end": 2379.96, "text": " if you have a wireless network"}, {"id": 1112, "start": 2379.96, "end": 2381.0, "text": " and you want to make sure"}, {"id": 1113, "start": 2381.0, "end": 2381.66, "text": " that it's secured"}, {"id": 1114, "start": 2381.66, "end": 2383.3599999999997, "text": " or get it properly set up"}, {"id": 1115, "start": 2383.3599999999997, "end": 2383.9199999999996, "text": " and secured,"}, {"id": 1116, "start": 2384.48, "end": 2385.1, "text": " $65."}, {"id": 1117, "start": 2385.8199999999997, "end": 2387.16, "text": " As long as you're in the city limits"}, {"id": 1118, "start": 2387.16, "end": 2387.8999999999996, "text": " and it's travel,"}, {"id": 1119, "start": 2388.02, "end": 2388.8399999999997, "text": " if you're outside,"}, {"id": 1120, "start": 2388.94, "end": 2389.56, "text": " we'll still do it."}, {"id": 1121, "start": 2389.66, "end": 2389.9199999999996, "text": " Right."}, {"id": 1122, "start": 2390.12, "end": 2391.12, "text": " But you just have to pay"}, {"id": 1123, "start": 2391.12, "end": 2391.8999999999996, "text": " for travel at that point."}, {"id": 1124, "start": 2392.08, "end": 2392.7999999999997, "text": " It's a smoking deal."}, {"id": 1125, "start": 2392.9199999999996, "end": 2394.3199999999997, "text": " So if you want to get in"}, {"id": 1126, "start": 2394.3199999999997, "end": 2394.98, "text": " on that deal,"}, {"id": 1127, "start": 2395.08, "end": 2395.8799999999997, "text": " go ahead and call the shop"}, {"id": 1128, "start": 2395.8799999999997, "end": 2397.16, "text": " at 304-8300"}, {"id": 1129, "start": 2397.16, "end": 2398.02, "text": " or you can go by"}, {"id": 1130, "start": 2398.02, "end": 2399.66, "text": " and see us at 510 East Fort Lowell."}, {"id": 1131, "start": 2399.8599999999997, "end": 2400.46, "text": " Howard's down there"}, {"id": 1132, "start": 2400.46, "end": 2401.0, "text": " waiting for you."}, {"id": 1133, "start": 2401.3399999999997, "end": 2402.14, "text": " He better be."}, {"id": 1134, "start": 2402.7799999999997, "end": 2403.46, "text": " Or else."}, {"id": 1135, "start": 2403.48, "end": 2403.8799999999997, "text": " If not,"}, {"id": 1136, "start": 2403.8799999999997, "end": 2404.7, "text": " I need to hire somebody"}, {"id": 1137, "start": 2404.7, "end": 2405.2, "text": " to let me know."}, {"id": 1138, "start": 2405.2000000000003, "end": 2411.76, "text": " You guys have no idea"}, {"id": 1139, "start": 2411.76, "end": 2412.28, "text": " what we're talking about."}, {"id": 1140, "start": 2412.7200000000003, "end": 2413.6400000000003, "text": " 751-1041"}, {"id": 1141, "start": 2413.6400000000003, "end": 2414.84, "text": " if you'd like to be part of the show"}, {"id": 1142, "start": 2414.84, "end": 2417.36, "text": " and put your technology issues"}, {"id": 1143, "start": 2417.36, "end": 2417.82, "text": " on the table."}, {"id": 1144, "start": 2417.94, "end": 2418.86, "text": " We'll see if we can help you out"}, {"id": 1145, "start": 2418.86, "end": 2419.2000000000003, "text": " with them."}, {"id": 1146, "start": 2419.88, "end": 2420.4, "text": " No promises."}, {"id": 1147, "start": 2420.6000000000004, "end": 2421.0800000000004, "text": " No, I'm just kidding."}, {"id": 1148, "start": 2422.2200000000003, "end": 2422.7200000000003, "text": " Yeah, really."}, {"id": 1149, "start": 2424.9600000000005, "end": 2426.2200000000003, "text": " Google has done something"}, {"id": 1150, "start": 2426.2200000000003, "end": 2426.8, "text": " that they haven't done"}, {"id": 1151, "start": 2426.8, "end": 2428.1400000000003, "text": " ever, really."}, {"id": 1152, "start": 2428.4, "end": 2429.1600000000003, "text": " They're giving us information"}, {"id": 1153, "start": 2429.1600000000003, "end": 2430.4800000000005, "text": " about their search engine."}, {"id": 1154, "start": 2430.6600000000003, "end": 2431.28, "text": " Well, sort of."}, {"id": 1155, "start": 2431.32, "end": 2431.9, "text": " They're clearing up"}, {"id": 1156, "start": 2431.9, "end": 2433.1400000000003, "text": " some misconceptions about it."}, {"id": 1157, "start": 2433.4, "end": 2434.2000000000003, "text": " Now, they're not necessarily"}, {"id": 1158, "start": 2434.2000000000003, "end": 2435.1800000000003, "text": " giving you the skinny idea"}, {"id": 1159, "start": 2435.18, "end": 2436.9199999999996, "text": " on how they actually do it."}, {"id": 1160, "start": 2437.02, "end": 2438.3599999999997, "text": " But what they're doing right now"}, {"id": 1161, "start": 2438.3599999999997, "end": 2440.72, "text": " is the most that they've ever revealed"}, {"id": 1162, "start": 2440.72, "end": 2442.02, "text": " about how their search engine works."}, {"id": 1163, "start": 2442.02, "end": 2442.7, "text": " Up until now,"}, {"id": 1164, "start": 2442.8199999999997, "end": 2443.8599999999997, "text": " if anybody were to ask Google,"}, {"id": 1165, "start": 2444.04, "end": 2445.3199999999997, "text": " how does your search engine work,"}, {"id": 1166, "start": 2445.3799999999997, "end": 2445.8999999999996, "text": " they would say,"}, {"id": 1167, "start": 2446.1, "end": 2446.3399999999997, "text": " well,"}, {"id": 1168, "start": 2446.64, "end": 2447.3799999999997, "text": " and then they'd run away."}, {"id": 1169, "start": 2447.54, "end": 2448.0, "text": " They'd say magic."}, {"id": 1170, "start": 2448.3199999999997, "end": 2449.3199999999997, "text": " They'd walk away."}, {"id": 1171, "start": 2449.3799999999997, "end": 2449.98, "text": " More importantly,"}, {"id": 1172, "start": 2450.1, "end": 2450.56, "text": " what they're doing"}, {"id": 1173, "start": 2450.56, "end": 2451.06, "text": " is they're saying"}, {"id": 1174, "start": 2451.06, "end": 2452.12, "text": " how it's not working."}, {"id": 1175, "start": 2452.68, "end": 2453.56, "text": " They're destroying"}, {"id": 1176, "start": 2453.56, "end": 2454.3799999999997, "text": " the misconceptions"}, {"id": 1177, "start": 2454.3799999999997, "end": 2455.56, "text": " that people have put in place"}, {"id": 1178, "start": 2455.56, "end": 2456.7799999999997, "text": " because people basically said,"}, {"id": 1179, "start": 2456.8399999999997, "end": 2457.7999999999997, "text": " well, if Google's not going to tell us,"}, {"id": 1180, "start": 2458.04, "end": 2458.8599999999997, "text": " we're just going to make stuff up."}, {"id": 1181, "start": 2459.02, "end": 2460.56, "text": " Well, we're going to speculate."}, {"id": 1182, "start": 2460.8999999999996, "end": 2461.18, "text": " Right."}, {"id": 1183, "start": 2461.3599999999997, "end": 2462.08, "text": " And Google's taking"}, {"id": 1184, "start": 2462.08, "end": 2462.7599999999998, "text": " these speculations"}, {"id": 1185, "start": 2462.7599999999998, "end": 2463.18, "text": " and saying,"}, {"id": 1186, "start": 2463.22, "end": 2463.8999999999996, "text": " well, wait, wait, wait."}, {"id": 1187, "start": 2464.06, "end": 2464.72, "text": " You're wrong."}, {"id": 1188, "start": 2464.72, "end": 2465.02, "text": " You're hot."}, {"id": 1189, "start": 2465.18, "end": 2465.2999999999997, "text": " You're hot."}, {"id": 1190, "start": 2465.3599999999997, "end": 2465.7599999999998, "text": " You're warm."}, {"id": 1191, "start": 2465.7999999999997, "end": 2466.18, "text": " You're cold."}, {"id": 1192, "start": 2466.2999999999997, "end": 2466.54, "text": " Right."}, {"id": 1193, "start": 2466.62, "end": 2467.8399999999997, "text": " And that's pretty much what it is."}, {"id": 1194, "start": 2468.14, "end": 2469.8199999999997, "text": " They're not given specific details,"}, {"id": 1195, "start": 2469.96, "end": 2470.64, "text": " but they are saying,"}, {"id": 1196, "start": 2471.0, "end": 2472.2999999999997, "text": " well, it doesn't really work that day,"}, {"id": 1197, "start": 2472.3399999999997, "end": 2473.14, "text": " and this is why,"}, {"id": 1198, "start": 2473.2799999999997, "end": 2475.2599999999998, "text": " or here's where our focus is."}, {"id": 1199, "start": 2475.8599999999997, "end": 2477.08, "text": " And a lot of people"}, {"id": 1200, "start": 2477.08, "end": 2478.48, "text": " who are in web development"}, {"id": 1201, "start": 2478.48, "end": 2479.16, "text": " and whatever,"}, {"id": 1202, "start": 2479.3999999999996, "end": 2480.6, "text": " or at least have web pages."}, {"id": 1203, "start": 2480.6, "end": 2481.52, "text": " They all have their own theories."}, {"id": 1204, "start": 2481.66, "end": 2484.14, "text": " They have these misconceptions about it"}, {"id": 1205, "start": 2484.14, "end": 2484.7, "text": " because they feel"}, {"id": 1206, "start": 2484.7, "end": 2485.5, "text": " that they're being punished"}, {"id": 1207, "start": 2485.5, "end": 2486.12, "text": " for some reason."}, {"id": 1208, "start": 2486.2999999999997, "end": 2486.3799999999997, "text": " Right."}, {"id": 1209, "start": 2486.52, "end": 2487.58, "text": " Now, don't get me wrong."}, {"id": 1210, "start": 2487.8599999999997, "end": 2489.14, "text": " Google does rank you"}, {"id": 1211, "start": 2489.14, "end": 2490.6, "text": " based off of certain elements"}, {"id": 1212, "start": 2490.6, "end": 2491.7599999999998, "text": " within the page."}, {"id": 1213, "start": 2491.7799999999997, "end": 2493.0, "text": " But if you're doing everything correctly"}, {"id": 1214, "start": 2493.0, "end": 2493.6, "text": " and you know"}, {"id": 1215, "start": 2493.6, "end": 2494.68, "text": " that you're not doing anything"}, {"id": 1216, "start": 2494.68, "end": 2495.16, "text": " specifically,"}, {"id": 1217, "start": 2495.18, "end": 2495.74, "text": " specifically wrong,"}, {"id": 1218, "start": 2496.04, "end": 2496.9199999999996, "text": " Google's not going to punish you"}, {"id": 1219, "start": 2496.9199999999996, "end": 2497.8399999999997, "text": " just because they don't like you."}, {"id": 1220, "start": 2498.06, "end": 2498.14, "text": " Right."}, {"id": 1221, "start": 2498.2599999999998, "end": 2499.3399999999997, "text": " And they're also not going to,"}, {"id": 1222, "start": 2499.62, "end": 2499.94, "text": " you know,"}, {"id": 1223, "start": 2499.98, "end": 2500.62, "text": " a lot of people are saying,"}, {"id": 1224, "start": 2500.68, "end": 2501.2, "text": " well, you know,"}, {"id": 1225, "start": 2501.24, "end": 2502.7799999999997, "text": " the people with paid advertisements"}, {"id": 1226, "start": 2502.7799999999997, "end": 2503.62, "text": " show up ahead of us"}, {"id": 1227, "start": 2503.62, "end": 2504.0, "text": " and they're like,"}, {"id": 1228, "start": 2504.06, "end": 2504.98, "text": " well, they always show up"}, {"id": 1229, "start": 2504.98, "end": 2505.72, "text": " in the paid areas,"}, {"id": 1230, "start": 2505.8199999999997, "end": 2508.06, "text": " but they don't get any boost"}, {"id": 1231, "start": 2508.06, "end": 2509.2599999999998, "text": " in the regular search."}, {"id": 1232, "start": 2509.3199999999997, "end": 2509.4199999999996, "text": " Right."}, {"id": 1233, "start": 2509.4199999999996, "end": 2510.3599999999997, "text": " In the natural searches,"}, {"id": 1234, "start": 2510.5, "end": 2512.54, "text": " you don't get any benefit there."}, {"id": 1235, "start": 2513.58, "end": 2515.46, "text": " So it's these types of things,"}, {"id": 1236, "start": 2515.48, "end": 2516.4199999999996, "text": " and we'll put a link to that"}, {"id": 1237, "start": 2516.4199999999996, "end": 2517.6, "text": " on the website also"}, {"id": 1238, "start": 2517.6, "end": 2518.3599999999997, "text": " just so you can get"}, {"id": 1239, "start": 2518.3599999999997, "end": 2519.58, "text": " to that particular article."}, {"id": 1240, "start": 2519.7799999999997, "end": 2520.54, "text": " And it's pretty interesting."}, {"id": 1241, "start": 2520.7, "end": 2522.08, "text": " It's not very long of a read,"}, {"id": 1242, "start": 2522.46, "end": 2523.16, "text": " but at least it gives you"}, {"id": 1243, "start": 2523.16, "end": 2523.8399999999997, "text": " a better idea"}, {"id": 1244, "start": 2523.8399999999997, "end": 2524.54, "text": " of what Google,"}, {"id": 1245, "start": 2524.54, "end": 2526.18, "text": " what their focus is."}, {"id": 1246, "start": 2526.4, "end": 2527.34, "text": " And the bigger part,"}, {"id": 1247, "start": 2527.46, "end": 2528.54, "text": " at least for me,"}, {"id": 1248, "start": 2528.6, "end": 2529.46, "text": " what I got out of it,"}, {"id": 1249, "start": 2529.7799999999997, "end": 2530.54, "text": " was that Google's,"}, {"id": 1250, "start": 2531.18, "end": 2533.9, "text": " their focus is on making sure"}, {"id": 1251, "start": 2533.9, "end": 2534.2799999999997, "text": " that you,"}, {"id": 1252, "start": 2534.4, "end": 2535.7, "text": " the user doing the search,"}, {"id": 1253, "start": 2535.7599999999998, "end": 2537.62, "text": " gets the most relevant data possible"}, {"id": 1254, "start": 2537.62, "end": 2539.68, "text": " from them in the shortest amount of time."}, {"id": 1255, "start": 2540.22, "end": 2541.22, "text": " And whereas a lot of people"}, {"id": 1256, "start": 2541.22, "end": 2542.12, "text": " are saying,"}, {"id": 1257, "start": 2542.24, "end": 2542.64, "text": " well, you know,"}, {"id": 1258, "start": 2542.82, "end": 2544.72, "text": " I feel that I should be ranked higher"}, {"id": 1259, "start": 2544.72, "end": 2547.38, "text": " because of whatever factors,"}, {"id": 1260, "start": 2547.56, "end": 2548.84, "text": " but that's really not the case."}, {"id": 1261, "start": 2549.04, "end": 2549.1, "text": " Right."}, {"id": 1262, "start": 2549.18, "end": 2550.3, "text": " They're trying to be neutral."}, {"id": 1263, "start": 2550.56, "end": 2550.84, "text": " You know,"}, {"id": 1264, "start": 2550.86, "end": 2551.64, "text": " they're trying to take in"}, {"id": 1265, "start": 2551.64, "end": 2552.7, "text": " all these things into account,"}, {"id": 1266, "start": 2552.7, "end": 2553.9, "text": " like geographic location."}, {"id": 1267, "start": 2554.36, "end": 2554.52, "text": " Basically,"}, {"id": 1268, "start": 2554.58, "end": 2555.64, "text": " it's on where the user is"}, {"id": 1269, "start": 2555.64, "end": 2556.16, "text": " that's searching."}, {"id": 1270, "start": 2556.34, "end": 2556.52, "text": " Right."}, {"id": 1271, "start": 2556.62, "end": 2557.9, "text": " And also off of things"}, {"id": 1272, "start": 2557.9, "end": 2559.46, "text": " that the user has previously searched for."}, {"id": 1273, "start": 2559.98, "end": 2561.54, "text": " So there's lots going on there"}, {"id": 1274, "start": 2561.54, "end": 2562.9, "text": " when it comes to how"}, {"id": 1275, "start": 2562.9, "end": 2563.98, "text": " they're making that determination"}, {"id": 1276, "start": 2563.98, "end": 2564.84, "text": " of information"}, {"id": 1277, "start": 2564.84, "end": 2566.06, "text": " to show the particular user."}, {"id": 1278, "start": 2566.8, "end": 2566.98, "text": " Now,"}, {"id": 1279, "start": 2567.1, "end": 2568.84, "text": " while we're on the subject of SEO"}, {"id": 1280, "start": 2568.84, "end": 2570.12, "text": " before we get to the break here,"}, {"id": 1281, "start": 2570.4, "end": 2570.46, "text": " Yes."}, {"id": 1282, "start": 2571.54, "end": 2572.74, "text": " there are a lot of misconceptions"}, {"id": 1283, "start": 2572.74, "end": 2573.54, "text": " about SEO."}, {"id": 1284, "start": 2573.7599999999998, "end": 2574.7799999999997, "text": " I'd say that there are,"}, {"id": 1285, "start": 2574.88, "end": 2575.02, "text": " like,"}, {"id": 1286, "start": 2575.1, "end": 2576.24, "text": " most of it is misconceptions."}, {"id": 1287, "start": 2576.54, "end": 2576.68, "text": " Right."}, {"id": 1288, "start": 2576.82, "end": 2578.24, "text": " And there's a lot of companies out there"}, {"id": 1289, "start": 2578.24, "end": 2579.04, "text": " that they are"}, {"id": 1290, "start": 2579.04, "end": 2580.5, "text": " just quite literally"}, {"id": 1291, "start": 2580.5, "end": 2581.2799999999997, "text": " ripping you off."}, {"id": 1292, "start": 2581.4, "end": 2582.04, "text": " SEO is"}, {"id": 1293, "start": 2582.04, "end": 2583.48, "text": " Search Engine Optimization."}, {"id": 1294, "start": 2583.7, "end": 2584.12, "text": " It's kind of like"}, {"id": 1295, "start": 2584.12, "end": 2584.96, "text": " the magical stuff"}, {"id": 1296, "start": 2584.96, "end": 2585.72, "text": " that makes you higher"}, {"id": 1297, "start": 2585.72, "end": 2586.72, "text": " on Google, supposedly."}, {"id": 1298, "start": 2586.8599999999997, "end": 2587.04, "text": " Right."}, {"id": 1299, "start": 2587.14, "end": 2588.2599999999998, "text": " And here's the thing about it."}, {"id": 1300, "start": 2588.42, "end": 2589.48, "text": " See how nobody knows"}, {"id": 1301, "start": 2589.48, "end": 2590.64, "text": " exactly what works for Google?"}, {"id": 1302, "start": 2590.88, "end": 2591.58, "text": " It's all"}, {"id": 1303, "start": 2591.58, "end": 2592.7, "text": " just guessing."}, {"id": 1304, "start": 2592.7, "end": 2593.06, "text": " Well, you know,"}, {"id": 1305, "start": 2593.4, "end": 2593.96, "text": " and I'm okay"}, {"id": 1306, "start": 2593.96, "end": 2595.0, "text": " with the one-time deals."}, {"id": 1307, "start": 2595.18, "end": 2595.44, "text": " Right."}, {"id": 1308, "start": 2595.44, "end": 2596.2, "text": " I'm okay with"}, {"id": 1309, "start": 2596.2, "end": 2597.8199999999997, "text": " charging a certain amount of money"}, {"id": 1310, "start": 2597.8199999999997, "end": 2599.7, "text": " for a one-time deal"}, {"id": 1311, "start": 2599.7, "end": 2602.22, "text": " that you're going to get"}, {"id": 1312, "start": 2602.22, "end": 2602.74, "text": " better placement"}, {"id": 1313, "start": 2602.74, "end": 2603.3199999999997, "text": " or somebody's going to"}, {"id": 1314, "start": 2603.3199999999997, "end": 2603.7799999999997, "text": " take the time"}, {"id": 1315, "start": 2603.7799999999997, "end": 2604.42, "text": " to go through your page,"}, {"id": 1316, "start": 2604.5, "end": 2605.7599999999998, "text": " especially on a complex page."}, {"id": 1317, "start": 2605.8199999999997, "end": 2606.02, "text": " Right."}, {"id": 1318, "start": 2606.44, "end": 2608.2799999999997, "text": " And make all of that work"}, {"id": 1319, "start": 2608.2799999999997, "end": 2609.0, "text": " to your advantage."}, {"id": 1320, "start": 2609.18, "end": 2609.74, "text": " Because there are"}, {"id": 1321, "start": 2609.74, "end": 2610.66, "text": " specific things"}, {"id": 1322, "start": 2610.66, "end": 2611.46, "text": " that need to be done"}, {"id": 1323, "start": 2611.46, "end": 2611.94, "text": " to a website"}, {"id": 1324, "start": 2611.94, "end": 2613.02, "text": " to have it be higher ranked."}, {"id": 1325, "start": 2613.22, "end": 2613.42, "text": " Now,"}, {"id": 1326, "start": 2613.54, "end": 2614.04, "text": " the ones that,"}, {"id": 1327, "start": 2614.12, "end": 2614.7999999999997, "text": " I'm just going to go ahead"}, {"id": 1328, "start": 2614.7999999999997, "end": 2615.3599999999997, "text": " and single out"}, {"id": 1329, "start": 2615.3599999999997, "end": 2616.7999999999997, "text": " one particular group"}, {"id": 1330, "start": 2616.7999999999997, "end": 2617.8599999999997, "text": " of individuals"}, {"id": 1331, "start": 2617.8599999999997, "end": 2618.9, "text": " doing this type of stuff."}, {"id": 1332, "start": 2619.2999999999997, "end": 2620.1, "text": " And that's going to be"}, {"id": 1333, "start": 2620.1, "end": 2621.2999999999997, "text": " the phone book companies."}, {"id": 1334, "start": 2621.52, "end": 2621.62, "text": " Yes."}, {"id": 1335, "start": 2621.72, "end": 2622.64, "text": " And when we come back"}, {"id": 1336, "start": 2622.64, "end": 2623.12, "text": " from the break,"}, {"id": 1337, "start": 2623.14, "end": 2624.2, "text": " we're going to talk about that."}, {"id": 1338, "start": 2625.08, "end": 2626.8599999999997, "text": " This is the Computer Guru."}, {"id": 1339, "start": 2627.3199999999997, "end": 2628.24, "text": " Those guys"}, {"id": 1340, "start": 2628.24, "end": 2629.4, "text": " are a rip-off"}, {"id": 1341, "start": 2629.4, "end": 2631.06, "text": " in every sense of the word."}, {"id": 1342, "start": 2631.18, "end": 2631.8599999999997, "text": " I do not like them."}, {"id": 1343, "start": 2631.8599999999997, "end": 2632.3199999999997, "text": " That's right."}, {"id": 1344, "start": 2632.58, "end": 2633.3199999999997, "text": " If you are still"}, {"id": 1345, "start": 2633.3199999999997, "end": 2634.0, "text": " in the phone book,"}, {"id": 1346, "start": 2634.16, "end": 2635.2799999999997, "text": " oh, I feel for you."}, {"id": 1347, "start": 2635.38, "end": 2636.8199999999997, "text": " I feel so bad for you."}, {"id": 1348, "start": 2637.18, "end": 2637.7, "text": " But we're going to"}, {"id": 1349, "start": 2637.7, "end": 2638.44, "text": " straighten you out"}, {"id": 1350, "start": 2638.44, "end": 2638.98, "text": " after the break."}, {"id": 1351, "start": 2639.1, "end": 2640.58, "text": " This is the Computer Guru show"}, {"id": 1352, "start": 2640.58, "end": 2641.18, "text": " right here on"}, {"id": 1353, "start": 2641.18, "end": 2642.02, "text": " 104.1 The Truth,"}, {"id": 1354, "start": 2642.5, "end": 2643.72, "text": " Tucson's News Talk FM."}, {"id": 1355, "start": 2644.12, "end": 2648.42, "text": " We'll be right back."}]} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2014-s6e19/diarization.json b/projects/radio-show/audio-processor/test-data/transcripts/2014-s6e19/diarization.json new file mode 100644 index 0000000..a3a53a6 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2014-s6e19/diarization.json @@ -0,0 +1,177 @@ +{ + "num_speakers": 2, + "speaker_map": { + "HOST": "HOST", + "CALLER": "CALLER" + }, + "turns": [ + { + "speaker": "CALLER", + "start": 0.0, + "end": 40.0, + "confidence": 0.6 + }, + { + "speaker": "HOST", + "start": 35.0, + "end": 200.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 195.0, + "end": 260.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 255.0, + "end": 325.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 320.0, + "end": 425.0, + "confidence": 0.61 + }, + { + "speaker": "HOST", + "start": 420.0, + "end": 605.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 600.0, + "end": 650.0, + "confidence": 0.74 + }, + { + "speaker": "HOST", + "start": 645.0, + "end": 655.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 650.0, + "end": 665.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 660.0, + "end": 680.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 675.0, + "end": 710.0, + "confidence": 0.76 + }, + { + "speaker": "HOST", + "start": 705.0, + "end": 985.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 980.0, + "end": 990.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 985.0, + "end": 1320.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 1315.0, + "end": 1330.0, + "confidence": 0.76 + }, + { + "speaker": "HOST", + "start": 1325.0, + "end": 1505.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 1500.0, + "end": 1510.0, + "confidence": 0.8 + }, + { + "speaker": "HOST", + "start": 1505.0, + "end": 1515.0, + "confidence": 0.85 + }, + { + "speaker": "CALLER", + "start": 1510.0, + "end": 1520.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 1515.0, + "end": 1550.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 1545.0, + "end": 1555.0, + "confidence": 0.76 + }, + { + "speaker": "HOST", + "start": 1550.0, + "end": 1810.0, + "confidence": 0.91 + }, + { + "speaker": "CALLER", + "start": 1805.0, + "end": 1820.0, + "confidence": 0.77 + }, + { + "speaker": "HOST", + "start": 1815.0, + "end": 2155.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 2150.0, + "end": 2170.0, + "confidence": 0.5 + }, + { + "speaker": "HOST", + "start": 2165.0, + "end": 2700.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 2695.0, + "end": 2705.0, + "confidence": 0.58 + }, + { + "speaker": "HOST", + "start": 2700.0, + "end": 2910.0, + "confidence": 0.87 + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2014-s6e19/transcript.json b/projects/radio-show/audio-processor/test-data/transcripts/2014-s6e19/transcript.json new file mode 100644 index 0000000..21bcffa --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2014-s6e19/transcript.json @@ -0,0 +1 @@ +{"duration": 2914.481625, "language": "en", "segments": [{"id": 1, "start": 0.0, "end": 7.16, "text": " computer running slow has your machine somehow acquired a life of its own"}, {"id": 2, "start": 7.16, "end": 13.36, "text": " or do you simply desire a deeper and more meaningful connection be one with your operating"}, {"id": 3, "start": 13.36, "end": 20.92, "text": " system it's arizona's computer guru mike swanson and his show starts now listen in chat in and"}, {"id": 4, "start": 20.92, "end": 26.64, "text": " watch live streaming at gurushow.com want your voice to be heard instead call in with your"}, {"id": 5, "start": 26.64, "end": 35.92, "text": " questions and riddles the number is 520-790-2040 this is a computer guru show on am 10 30 kvy the"}, {"id": 6, "start": 35.92, "end": 41.46, "text": " voice hello welcome to the computer guru show my name is mike here to deal with your technology"}, {"id": 7, "start": 41.46, "end": 46.019999999999996, "text": " needs and treat you like a person in the process as a one-of-a-kind show where we're here to help"}, {"id": 8, "start": 46.019999999999996, "end": 50.480000000000004, "text": " you it's a focus on making sure that your technology needs are solved you can give us"}, {"id": 9, "start": 50.480000000000004, "end": 56.120000000000005, "text": " a call if you'd like to be part of the show or have your uh abrupt music change just"}, {"id": 10, "start": 56.120000000000005, "end": 56.480000000000004, "text": " you know"}, {"id": 11, "start": 56.64, "end": 59.2, "text": " what are you doing tom you gotta settle down over there"}, {"id": 12, "start": 59.2, "end": 66.46000000000001, "text": " it's two weeks in a row now see last week i didn't mean to be abrupt i thought i was"}, {"id": 13, "start": 66.46000000000001, "end": 71.18, "text": " fading it but maybe my fader needs to be cleaned yeah i think your fader's dirty man"}, {"id": 14, "start": 71.18, "end": 76.06, "text": " uh 790-2040 that's 520-790-2040 if you'd like to be part of the show"}, {"id": 15, "start": 76.06, "end": 83.28, "text": " uh the focus of the show is is mainly to solve your problems the end user the person listening"}, {"id": 16, "start": 83.28, "end": 86.5, "text": " all right this is free tech support that you just you know you"}, {"id": 17, "start": 86.5, "end": 86.62, "text": " just you know you just you know you just you know you just you know you just you know you"}, {"id": 18, "start": 86.62, "end": 86.64, "text": " you just you know you just you know you just you know you just you know you just you know you just"}, {"id": 19, "start": 86.64, "end": 92.2, "text": " you don't get an opportunity to get very often there are other radio programs about computers"}, {"id": 20, "start": 92.2, "end": 98.44, "text": " in the world but they really don't have anything to do with you other than they want you to spend"}, {"id": 21, "start": 98.44, "end": 104.96000000000001, "text": " some money right like in phoenix but i'm not going to say her name uh anyway give us a call"}, {"id": 22, "start": 104.96000000000001, "end": 110.32, "text": " 520-790-2040 we'll see what we can do to help you out with whatever technology issues are ailing you"}, {"id": 23, "start": 110.32000000000001, "end": 122.0, "text": " now we are freshly back from e3 uh three solid days of e3 or four or four right um i managed to"}, {"id": 24, "start": 122.0, "end": 128.58, "text": " to see tara for about 10 minutes yeah in four days um but uh we were running all over the"}, {"id": 25, "start": 128.58, "end": 134.94, "text": " convention center and uh along with the nerd junkies guys and and senshuto tv and senshuto"}, {"id": 26, "start": 134.94, "end": 140.18, "text": " and ran into some very cool people that are in the gaming and"}, {"id": 27, "start": 140.18, "end": 140.3, "text": " uh"}, {"id": 28, "start": 140.32, "end": 148.22, "text": " entertainment industries uh what was your favorite thing about e3 like name the product"}, {"id": 29, "start": 148.22, "end": 153.54, "text": " or game that you thought was just that's the one that raised your eyebrows evolve evolve hands down"}, {"id": 30, "start": 153.54, "end": 159.94, "text": " evolve is an interesting game and a nice concept it's a four-on-one game yes where you have a"}, {"id": 31, "start": 159.94, "end": 167.42, "text": " group of four that have to team up to beat the one guy that's playing the monster and uh there's"}, {"id": 32, "start": 167.64, "end": 170.26, "text": " interesting dynamics in the game some mechanics that are that are pretty"}, {"id": 33, "start": 170.32, "end": 177.22, "text": " interesting is that the longer that the the beast the monster is around it evolves into a more and"}, {"id": 34, "start": 177.22, "end": 183.23999999999998, "text": " more powerful creature so you have to basically in the beginning the whoever's playing the monster"}, {"id": 35, "start": 183.23999999999998, "end": 188.88, "text": " their job is to hide from the people trying to to kill it and it has to evolve to strong enough"}, {"id": 36, "start": 188.88, "end": 194.16, "text": " to take on the four people yeah and it's a it's a cool i mean it was a very good looking game it's"}, {"id": 37, "start": 194.16, "end": 199.35999999999999, "text": " a very fun fun fun game to play now you get to play i didn't get to play yeah i just got to watch"}, {"id": 38, "start": 199.35999999999999, "end": 200.29999999999998, "text": " it but uh it's a very good looking game it's a very fun fun fun game to play it's a very fun fun game to play"}, {"id": 39, "start": 200.32, "end": 208.0, "text": " what'd you think oh my gosh okay so i was the trapper the trapper's job is to trap the monster"}, {"id": 40, "start": 208.0, "end": 214.29999999999998, "text": " you put up barriers and such yeah um you put traps down to hold him down you put a dome up so that he"}, {"id": 41, "start": 214.29999999999998, "end": 220.62, "text": " can't escape the area and then you also have this alien dog thing named daisy and daisy will take"}, {"id": 42, "start": 220.62, "end": 227.14, "text": " the shortest route to the monster so you can track him down all right so i was the trapper so i got"}, {"id": 43, "start": 227.14, "end": 230.29999999999998, "text": " to track the monster it was really awesome um i don't know if you've heard of the monster"}, {"id": 44, "start": 230.32, "end": 235.7, "text": " unfortunately we had our assault person was not really on par he kept kind of going off on his own"}, {"id": 45, "start": 235.7, "end": 243.34, "text": " and not assaulting yeah no not so much and uh so we lost because of that but it was still a really"}, {"id": 46, "start": 243.34, "end": 249.32, "text": " fun game to play um i mean the teamwork that is needed for this game and i think that's the"}, {"id": 47, "start": 249.32, "end": 254.74, "text": " biggest thing for that for this game and i've noticed a lot of other games is teamwork they're"}, {"id": 48, "start": 254.74, "end": 260.32, "text": " really pushing that teamwork really hard right now i'm perfectly okay with the whole teamwork"}, {"id": 49, "start": 260.32, "end": 267.28, "text": " aspect of these games but there were several of them like uh uh the top uh the rainbow six um"}, {"id": 50, "start": 267.28, "end": 278.08, "text": " assault game uh which on the last day of e3 they did the live play demo yes and it it's great i"}, {"id": 51, "start": 278.08, "end": 284.62, "text": " guess uh but on all of these games where they're promoting uh the teamwork like the crew and uh"}, {"id": 52, "start": 284.62, "end": 289.26, "text": " assassin's creed unity right a few of these other games that are out there i mean edios apparently"}, {"id": 53, "start": 290.32, "end": 296.62, "text": " and ubisoft and as a whole is really about let's do multiplayer multiplayer everything a lot of the"}, {"id": 54, "start": 296.62, "end": 302.26, "text": " games were multiplayer this year um and i'm okay with multiplayer but the thing that really bothers"}, {"id": 55, "start": 302.26, "end": 308.15999999999997, "text": " me about the multiplayer games is that you end up in their sort of multiplayer queue system and"}, {"id": 56, "start": 308.15999999999997, "end": 313.82, "text": " most of them are terrible right and then you think if you're going to go spend 60 on a game right a"}, {"id": 57, "start": 313.82, "end": 318.82, "text": " year from now you're not going to be able to complete anything in the game because you won't"}, {"id": 58, "start": 318.82, "end": 320.28, "text": " be able to find any players you know"}, {"id": 59, "start": 320.32, "end": 324.65999999999997, "text": " that's actually something i appreciated about sunset overdrive did you get to see that game"}, {"id": 60, "start": 324.65999999999997, "end": 329.5, "text": " did not see it uh the way i've been describing it to people is kind of an adam west batman"}, {"id": 61, "start": 329.5, "end": 334.94, "text": " combined with jet set radio future which is a game where you skate around and graffiti things"}, {"id": 62, "start": 334.94, "end": 342.34, "text": " combined with left for dead it's an amalgamation of those three things because you'll go around"}, {"id": 63, "start": 342.34, "end": 348.96, "text": " skating on lines and jumping off walls and jumping off buildings and right you're you're shooting"}, {"id": 64, "start": 350.32, "end": 354.44, "text": " and it's it's it's human beings that have been turned into mutants by an energy drink"}, {"id": 65, "start": 354.44, "end": 361.4, "text": " so mike watch out because it's electrolytes it's what plants need so there's this energy drink"}, {"id": 66, "start": 361.4, "end": 366.1, "text": " that's out and it's turning people into mutants and you have to go and fight so you're jumping"}, {"id": 67, "start": 366.1, "end": 370.2, "text": " around you're skating on things you're doing like these parkour type moves and you're also"}, {"id": 68, "start": 370.2, "end": 375.28, "text": " shooting these mutants which is like a left for dead feel so those are the two games but then"}, {"id": 69, "start": 375.28, "end": 380.2, "text": " when you're shooting them or you throw a giant bomb or something like that in the mushroom cloud"}, {"id": 70, "start": 380.32, "end": 386.59999999999997, "text": " it'll say boom or you freeze them and it's all and like adam west batman and it's amazingly fun"}, {"id": 71, "start": 386.59999999999997, "end": 393.9, "text": " it's not as like dark and dreary as like a left for dead or dead rising or one of those where"}, {"id": 72, "start": 393.9, "end": 398.12, "text": " it's a more serious game this is a lot of humor but it's the same thing where you're shooting"}, {"id": 73, "start": 398.12, "end": 402.68, "text": " mutants so what about the multiplayer on that one you can either play alone"}, {"id": 74, "start": 402.68, "end": 409.26, "text": " in that which is nice or you can play with up to eight people so you know you can actually"}, {"id": 75, "start": 410.32, "end": 414.78, "text": " do a little bit of both which a lot of the games it seemed like it was either multiplayer or solo"}, {"id": 76, "start": 414.78, "end": 421.06, "text": " mostly multiplayer so i appreciated that about sunset overdrive where you get to either play"}, {"id": 77, "start": 421.06, "end": 428.52, "text": " solo or with people if you choose to all right right now the game that had the most number of"}, {"id": 78, "start": 428.52, "end": 435.62, "text": " players involved that i saw at e3 was just dance now yes all right where they uh now if you're not"}, {"id": 79, "start": 435.62, "end": 440.3, "text": " familiar with the just dance uh franchise they released one of the most popular games in the"}, {"id": 80, "start": 440.32, "end": 446.18, "text": " game they released one every year with new songs and new dances in it and uh historically it's been"}, {"id": 81, "start": 446.18, "end": 451.94, "text": " sort of a wii game yeah all right because you use the remote from the nintendo wii and it kind of"}, {"id": 82, "start": 451.94, "end": 459.58, "text": " figures out where you're at now xbox has a uh a version of it um but uses the camera right uh the"}, {"id": 83, "start": 459.58, "end": 466.53999999999996, "text": " connect camera to to kind of watch you dance to make sure you're doing it right well uh this year"}, {"id": 84, "start": 466.53999999999996, "end": 470.1, "text": " with the just dance now they've decided to make it so that's just an app on your phone"}, {"id": 85, "start": 470.32, "end": 474.84, "text": " so that you can use the accelerometer it's built into your cell phone if you have a smartphone yeah"}, {"id": 86, "start": 474.84, "end": 480.86, "text": " uh that will allow you to play the game and uh they're saying an unlimited number of players in"}, {"id": 87, "start": 480.86, "end": 488.78, "text": " game yeah um and the demo that we saw on sunday they had about 400 people oh yeah uh all playing"}, {"id": 88, "start": 488.78, "end": 494.65999999999997, "text": " in this very same time packed area um i was i was worried about getting hit in the face of the"}, {"id": 89, "start": 494.65999999999997, "end": 500.3, "text": " cell phone but uh it was it was really interesting to watch um and they've"}, {"id": 90, "start": 500.32, "end": 505.0, "text": " got a bunch of new songs that uh and new dances that looked pretty cool they were demoing those"}, {"id": 91, "start": 505.0, "end": 510.84, "text": " the entire time so every 45 minutes they were out there doing these demos um the just dance now thing"}, {"id": 92, "start": 510.84, "end": 515.38, "text": " i mean i've never considered buying a console really other than maybe to play watchdogs when"}, {"id": 93, "start": 515.38, "end": 522.18, "text": " they said they weren't going to release it for pc yeah um but uh that's very cool looking yeah and"}, {"id": 94, "start": 522.18, "end": 529.18, "text": " what i like about the wii games is that they tend to have a common theme which is you need to get up"}, {"id": 95, "start": 530.32, "end": 535.72, "text": " they don't want you sitting on your butt yes and and you know stuffing down the cheetos and drinking"}, {"id": 96, "start": 535.72, "end": 541.46, "text": " mountain dew right they want you to get up and move and do something and i mean in these dances"}, {"id": 97, "start": 541.46, "end": 547.74, "text": " that these people are doing they're hard it's a workout they're really hard uh so i actually have"}, {"id": 98, "start": 547.74, "end": 552.22, "text": " a video of the just dance now stuff that we're going to post on youtube and of course we'll put"}, {"id": 99, "start": 552.22, "end": 557.4000000000001, "text": " the links up to it i'm going to try to get that posted today or tomorrow but it's very cool"}, {"id": 100, "start": 560.32, "end": 564.82, "text": " get up and move yeah elements of those games and there seems to be a lot of i mean like when we"}, {"id": 101, "start": 564.82, "end": 571.1800000000001, "text": " went to ces there was all these concepts uh you know concept games are saying let's use the connect"}, {"id": 102, "start": 571.1800000000001, "end": 577.44, "text": " camera let's use the wii uh remotes or use your cell phone as a way to track your movement and"}, {"id": 103, "start": 577.44, "end": 585.4000000000001, "text": " then get people up to to do stuff right now xbox xbox has really taken this to a whole new level"}, {"id": 104, "start": 585.4000000000001, "end": 588.82, "text": " they've got that sports game that they've just released and it's all about standing in front"}, {"id": 105, "start": 590.32, "end": 596.7600000000001, "text": " to make things happen so i like the idea that you know we're not uh xbox and we and nintendo are"}, {"id": 106, "start": 596.7600000000001, "end": 603.6400000000001, "text": " really trying to avoid um you know severe amounts of obesity in the future so and then aside from"}, {"id": 107, "start": 603.6400000000001, "end": 608.5600000000001, "text": " the games i don't know if you made it to the peripheral corner i did um some of the things"}, {"id": 108, "start": 608.5600000000001, "end": 615.0, "text": " that these people are coming out with are amazing uh the augmented reality where you're using the"}, {"id": 109, "start": 615.0, "end": 619.32, "text": " camera on your phone to play the game and so you're seeing you know the floor the table that's"}, {"id": 110, "start": 619.32, "end": 620.2600000000001, "text": " right in front of you but"}, {"id": 111, "start": 620.32, "end": 626.46, "text": " there's also a dragon that you're trying to shoot right or um the uh they had some insole stuff to"}, {"id": 112, "start": 626.46, "end": 633.44, "text": " track your movement in your shoes i think that was called boingo or something right and uh yeah and"}, {"id": 113, "start": 633.44, "end": 639.12, "text": " you you go and it goes in your shoe and then it tracks like where you're leaning and stuff and"}, {"id": 114, "start": 639.12, "end": 644.44, "text": " you could use that for games or you know athletic type stuff to see you know how many steps you've"}, {"id": 115, "start": 644.44, "end": 648.3800000000001, "text": " made in a day or whatnot well there was plenty of stuff to see at e3 and we're going to be putting"}, {"id": 116, "start": 648.3800000000001, "end": 650.2600000000001, "text": " articles and videos up about the game and we're going to be putting articles and videos up about"}, {"id": 117, "start": 650.2600000000001, "end": 650.3000000000001, "text": " the game and we're going to be putting articles and videos up about the game and we're going to"}, {"id": 118, "start": 650.32, "end": 655.48, "text": " things that we saw uh over the course of the next couple of weeks and i'm also going to be putting"}, {"id": 119, "start": 655.48, "end": 659.74, "text": " up some reviews of some actual peripherals that were given to me as well and those will be on the"}, {"id": 120, "start": 659.74, "end": 664.5, "text": " arizona computer guru site excellent in the meantime tom uh we're going to take a quick"}, {"id": 121, "start": 664.5, "end": 670.36, "text": " break and then we'll come back and we've got some interesting news to talk about maybe a little more"}, {"id": 122, "start": 670.36, "end": 676.0400000000001, "text": " coverage but more importantly your phone calls at 790-2040 that's 520-790-2040 we'll be right back"}, {"id": 123, "start": 680.32, "end": 686.32, "text": " your computer guru mike swanson is here to help you tame that beast of a machine"}, {"id": 124, "start": 686.32, "end": 693.7800000000001, "text": " join the chat right now at gurushow.com or call in this is the computer guru show on kvoy the voice"}, {"id": 125, "start": 693.7800000000001, "end": 704.9200000000001, "text": " you're listening to the computer guru show on am 10 30 kvoy the voice"}, {"id": 126, "start": 710.32, "end": 718.74, "text": " give us a call down here at the studio 520-790-2040 this is the computer guru show here"}, {"id": 127, "start": 718.74, "end": 721.72, "text": " to help you with all of your technology needs while treating you like a person in the process"}, {"id": 128, "start": 721.72, "end": 726.84, "text": " because that's what we do you can join the chat room at gurushow.com type in your two cents that"}, {"id": 129, "start": 726.84, "end": 733.88, "text": " we will most likely see and uh try to address on there uh but uh if you if you want to if you want"}, {"id": 130, "start": 733.88, "end": 739.8800000000001, "text": " to be able to uh tom's all gunshot now about fading out um"}, {"id": 131, "start": 740.32, "end": 746.96, "text": " you just threw me off tom that's all it's no big deal just you are the man you're the computer"}, {"id": 132, "start": 746.96, "end": 756.86, "text": " guru i will do your bidding you can direct me all right well well in that case all right 790-2040"}, {"id": 133, "start": 756.86, "end": 762.9000000000001, "text": " if you want to be part of the show um anybody who know who elon musk is yes do you know who that is"}, {"id": 134, "start": 762.9000000000001, "end": 768.2600000000001, "text": " tom do you even know isn't that a man's deodorant it does sound like a man's deodorant i don't know"}, {"id": 135, "start": 768.2600000000001, "end": 770.1800000000001, "text": " uh but uh he's a really"}, {"id": 136, "start": 770.32, "end": 778.38, "text": " really rich dude and uh i don't know any rich people yeah you start most importantly as it"}, {"id": 137, "start": 778.38, "end": 783.2, "text": " connects to the story i'm going to talk about right now think tesla motors all right so the"}, {"id": 138, "start": 783.2, "end": 788.82, "text": " guy who owns that elon musk yeah that guy yeah that's what it smells like and their new car"}, {"id": 139, "start": 788.82, "end": 797.2, "text": " smell is elon musk um but uh tesla is doing some really cool stuff and i mean not just the cars"}, {"id": 140, "start": 797.2, "end": 800.1600000000001, "text": " which are cool enough in themselves and i've decided that the if"}, {"id": 141, "start": 800.32, "end": 804.88, "text": " if if i can afford it in the next three years i'm going to have to buy it you know who who likes"}, {"id": 142, "start": 804.88, "end": 812.8000000000001, "text": " the tesla um four-door sedan the s the model s right consumer reports yes they do they have"}, {"id": 143, "start": 812.8000000000001, "end": 821.48, "text": " rated that as the top sedan uh over the v6s and the v8s of mercedes and nissan and toyota well"}, {"id": 144, "start": 821.48, "end": 826.9000000000001, "text": " they're very very good cars they're just very very expensive cars so i mean apparently they're"}, {"id": 145, "start": 826.9000000000001, "end": 830.1600000000001, "text": " well designed they use quality materials and they're well made"}, {"id": 146, "start": 830.32, "end": 836.88, "text": " yes they are and they are like it's it's the future of cars is really what it comes down to"}, {"id": 147, "start": 836.88, "end": 844.24, "text": " and you know they decided over at tesla that the future of cars is i mean not just about them"}, {"id": 148, "start": 844.24, "end": 848.6, "text": " selling cars the future of cars to them is zero emission vehicles right right where they want"}, {"id": 149, "start": 848.6, "end": 855.0600000000001, "text": " they want no gasoline used in cars ever again and they decided that that future is not happening"}, {"id": 150, "start": 855.0600000000001, "end": 859.96, "text": " fast enough for them even though that they're anticipating to have two billion cars on the road"}, {"id": 151, "start": 860.32, "end": 865.6600000000001, "text": " wow pretty soon i mean they're apparently they basically they're saying we cannot keep up with"}, {"id": 152, "start": 865.6600000000001, "end": 872.1800000000001, "text": " the number of orders we have right no way that we can build them fast enough and that's not two"}, {"id": 153, "start": 872.1800000000001, "end": 878.9200000000001, "text": " billion teslas they're talking about two billion cars they want two billion tesla they're anticipating"}, {"id": 154, "start": 878.9200000000001, "end": 883.38, "text": " two billion teslas on the road that's pretty ambitious what period of time pretty soon like"}, {"id": 155, "start": 883.38, "end": 887.96, "text": " within the next 10 years wow so they're they're and they're going to have to build a an assembly"}, {"id": 156, "start": 887.96, "end": 890.3000000000001, "text": " plant here and well that's exactly what they're going to have to do they're going to have to build"}, {"id": 157, "start": 890.32, "end": 895.32, "text": " exactly why we're talking about this story now they're saying that you know they want in order"}, {"id": 158, "start": 895.32, "end": 903.2, "text": " enough to do enough uh to offset the carbon output and everything involved with global warming and"}, {"id": 159, "start": 903.2, "end": 910.1800000000001, "text": " you know change in general as it pertains to killing ourselves on the planet um they'd say"}, {"id": 160, "start": 910.1800000000001, "end": 914.72, "text": " well you know what we were worried at first that the big manufacturers would steal our technology"}, {"id": 161, "start": 914.72, "end": 919.32, "text": " and then using the the muscle that they have would basically put us out of business"}, {"id": 162, "start": 920.32, "end": 925.5, "text": " now they've done this about face and they said we realize that first of all they can't put us out"}, {"id": 163, "start": 925.5, "end": 931.2800000000001, "text": " of business and secondly um they you know the patents that are involved with this nobody wants"}, {"id": 164, "start": 931.2800000000001, "end": 936.72, "text": " to go up and fight against it because tesla has some awesome patents right so tesla decided that"}, {"id": 165, "start": 936.72, "end": 942.0400000000001, "text": " they are now open source they have taken all of their patents and said anybody who wants to use"}, {"id": 166, "start": 942.0400000000001, "end": 948.62, "text": " these in good faith to build electric vehicles can use our technology even the big guys you're"}, {"id": 167, "start": 948.62, "end": 950.3000000000001, "text": " saying build electric electric vehicles and they're saying build electric vehicles and they're saying"}, {"id": 168, "start": 950.32, "end": 955.4000000000001, "text": " build electric cars is this mainly for their uh battery technology or for the batteries and the"}, {"id": 169, "start": 955.4000000000001, "end": 961.6800000000001, "text": " electric motors and everything every patent that tesla has is now open source so aren't they kind"}, {"id": 170, "start": 961.6800000000001, "end": 966.96, "text": " of giving it away to general motors and ford if you want because they're they don't care they're"}, {"id": 171, "start": 966.96, "end": 972.24, "text": " just saying we want to see more electric cars on the road and we are open to competition whoever"}, {"id": 172, "start": 972.24, "end": 979.1800000000001, "text": " builds the best car wins and and that's really cool to see in a manufacturer right in an auto"}, {"id": 173, "start": 980.32, "end": 985.98, "text": " well that way it doesn't have to get stolen by a company that comes up called edison motors or"}, {"id": 174, "start": 985.98, "end": 990.3000000000001, "text": " something right well they sort of mentioned that they said that anybody who really wants to use"}, {"id": 175, "start": 990.3000000000001, "end": 995.0200000000001, "text": " this technology is going to find a creative way to get around the patent anyway so rather than"}, {"id": 176, "start": 995.0200000000001, "end": 1000.4200000000001, "text": " let's not turn this into a war like with the apple samsung thing where it was a patent war"}, {"id": 177, "start": 1000.4200000000001, "end": 1007.1800000000001, "text": " let's just say you go ahead and and the patents are available just use the technology right just"}, {"id": 178, "start": 1007.1800000000001, "end": 1010.3000000000001, "text": " build something that will help the world"}, {"id": 179, "start": 1010.32, "end": 1015.9000000000001, "text": " and that is a cool idea in my opinion now i was talking with rob the other day in the shop saying"}, {"id": 180, "start": 1015.9000000000001, "end": 1022.5200000000001, "text": " you know if i had my input as to how the whole patent thing should be working is that there"}, {"id": 181, "start": 1022.5200000000001, "end": 1029.6200000000001, "text": " should be they should institute a second um system within the patent system right where you get to"}, {"id": 182, "start": 1029.6200000000001, "end": 1036.5, "text": " choose all right you can you can patent for money right saying that if anybody uses this that uh you"}, {"id": 183, "start": 1036.5, "end": 1039.22, "text": " get to sue them right for cold hard cash"}, {"id": 184, "start": 1040.32, "end": 1046.54, "text": " in in in return for that uh there's a huge tax penalty and it says that if you do sue somebody"}, {"id": 185, "start": 1046.54, "end": 1050.9199999999998, "text": " for this that the the patent office of the government is going to take a whole bunch of"}, {"id": 186, "start": 1050.9199999999998, "end": 1057.78, "text": " the whatever you make off of it right a lot of it um i'm talking like you know less than half still"}, {"id": 187, "start": 1057.78, "end": 1063.3799999999999, "text": " but a lot yeah all right and then that you have the option to then say well or or additionally"}, {"id": 188, "start": 1063.3799999999999, "end": 1068.06, "text": " to say well i'm going to take this patent i'm going to put it up for for notoriety for science"}, {"id": 189, "start": 1068.06, "end": 1070.3, "text": " all right we're to say get to say the truth and then say well i'm going to take this patent i'm"}, {"id": 190, "start": 1070.32, "end": 1077.04, "text": " going to say that i invented it i science right i invented it i uh developed this particular process"}, {"id": 191, "start": 1077.04, "end": 1083.4399999999998, "text": " or device or product or whatever um and i get a point for it a point system and if anybody else"}, {"id": 192, "start": 1083.4399999999998, "end": 1088.46, "text": " uses it it gives me points it gives that person points and those points can then be turned into"}, {"id": 193, "start": 1088.46, "end": 1095.6, "text": " either tax credits or uh some other type of uh you know something something worth something"}, {"id": 194, "start": 1095.6, "end": 1100.1599999999999, "text": " worth something right so uh but that way it ends the whole war"}, {"id": 195, "start": 1100.32, "end": 1106.36, "text": " thing it just says yes you develop that now everybody gets to use it right and and the"}, {"id": 196, "start": 1106.36, "end": 1112.24, "text": " reason that's important is because there is a certain amount of once something is out there"}, {"id": 197, "start": 1112.24, "end": 1117.48, "text": " in the world right it becomes a commodity at a certain point where it's just it becomes part"}, {"id": 198, "start": 1117.48, "end": 1124.2, "text": " of life it becomes part of every day at what point does that technology or that patent"}, {"id": 199, "start": 1124.2, "end": 1133.6200000000001, "text": " belong to the people rather than to the the inventor right so uh as an example uh"}, {"id": 200, "start": 1133.6200000000001, "end": 1139.82, "text": " the one that rob used the example that rob used of star wars oh yeah right so i have to pay a"}, {"id": 201, "start": 1139.82, "end": 1145.9, "text": " premium for my phone because it has the word droid in it yeah right because lucas patented the word"}, {"id": 202, "start": 1145.9, "end": 1151.5800000000002, "text": " or copyrighted the the word droid forever ago all right so first of all you gotta put some"}, {"id": 203, "start": 1151.5800000000002, "end": 1154.18, "text": " reasonable time limits on this stuff right it's because"}, {"id": 204, "start": 1154.2, "end": 1159.98, "text": " part of the regular vernacular right or that he invented droid you know short for android"}, {"id": 205, "start": 1159.98, "end": 1166.02, "text": " which i think he invented also or somebody else did but he was the first one to to copyright it"}, {"id": 206, "start": 1166.02, "end": 1172.32, "text": " or patent it um or trademark that um there needs to be some sort of reasonable limits"}, {"id": 207, "start": 1172.32, "end": 1176.1200000000001, "text": " and if you if you take the system out and just say well you can't make money off of this"}, {"id": 208, "start": 1176.1200000000001, "end": 1183.22, "text": " anymore right yes you you'll get the credit you know the photo credit the somewhere there"}, {"id": 209, "start": 1183.22, "end": 1184.18, "text": " will be a little asterisk"}, {"id": 210, "start": 1184.18, "end": 1191.1000000000001, "text": " that says george lucas while drunk one day in mexico came up with the word droid drinking tequila"}, {"id": 211, "start": 1191.1000000000001, "end": 1197.92, "text": " all right so it there needs to be some limits on that and and and find a way to uh advance"}, {"id": 212, "start": 1197.92, "end": 1203.52, "text": " technology because literally the copyright patenting and trademarking trademarking i can"}, {"id": 213, "start": 1203.52, "end": 1209.44, "text": " live with but the the the patenting and copywriting is stifling technology yeah right because nobody"}, {"id": 214, "start": 1209.44, "end": 1213.16, "text": " everybody's afraid to build something because somebody's going to sue them because somebody"}, {"id": 215, "start": 1213.16, "end": 1214.1000000000001, "text": " else already owns that idea"}, {"id": 216, "start": 1214.18, "end": 1215.66, "text": " there are no new ideas in the world"}, {"id": 217, "start": 1215.66, "end": 1223.18, "text": " all right let's talk to charles hey charles how are you good mike um your system uh first of all"}, {"id": 218, "start": 1223.18, "end": 1229.74, "text": " i i admire your acknowledgement of uh of tesla i think they did a very courageous thing but your"}, {"id": 219, "start": 1229.74, "end": 1234.8400000000001, "text": " idea sort of strikes at the root of capitalism the main idea of capitalism is that you're"}, {"id": 220, "start": 1234.8400000000001, "end": 1239.96, "text": " supposed to be able to enjoy the fruits of your own labor and if you allow government an avenue"}, {"id": 221, "start": 1239.96, "end": 1244.02, "text": " to tax that labor and uh just because you have the idea"}, {"id": 222, "start": 1244.18, "end": 1249.14, "text": " what you will do is kill incentive it'll have the perverse effect of doing the opposite of what it is"}, {"id": 223, "start": 1249.14, "end": 1254.66, "text": " you seek to to it's already doing that though right the copyright and patent system in it as"}, {"id": 224, "start": 1254.66, "end": 1260.3, "text": " itself is already stifling innovation is already stifling other people who are trying to build"}, {"id": 225, "start": 1260.3, "end": 1265.72, "text": " products themselves and i agree with you on that but there's a way to handle it without without"}, {"id": 226, "start": 1265.72, "end": 1271.68, "text": " the thieving hand of government being introduced into it and that's shortened the patent uh the"}, {"id": 227, "start": 1271.68, "end": 1274.16, "text": " patent period so that it doesn't stifle innovation and it doesn't stifle innovation and it doesn't"}, {"id": 228, "start": 1274.18, "end": 1281.54, "text": " let me give you a a really good example of that and that is the 1911 colt that patent has long"}, {"id": 229, "start": 1281.54, "end": 1285.96, "text": " expired you know the colt 45 semi-automatic right everybody everybody kind of knows even if they"}, {"id": 230, "start": 1285.96, "end": 1292.5600000000002, "text": " don't like guns what it is a gi 45 it's called the 1911 the patents are long expired on that"}, {"id": 231, "start": 1292.5600000000002, "end": 1298.48, "text": " and today even though it's 105 year old technology maybe even a little older than that uh there are"}, {"id": 232, "start": 1298.48, "end": 1303.98, "text": " it is the most copied firearm in the world today right because the patents"}, {"id": 233, "start": 1304.18, "end": 1309.68, "text": " are long expired so if you run the patents shorter but don't tax anybody on on their on"}, {"id": 234, "start": 1309.68, "end": 1314.76, "text": " their their the product of their mind you will have a much better system and you won't have"}, {"id": 235, "start": 1314.76, "end": 1320.18, "text": " creeping socialism and incentive killing uh government regulation well and i'm sure there's"}, {"id": 236, "start": 1320.18, "end": 1325.5800000000002, "text": " several ways that you can go about doing it i mean it's it's just an idea i mean i mentioned"}, {"id": 237, "start": 1325.5800000000002, "end": 1331.4, "text": " something and i did mention that i i think that the terms of of these things are unreasonable i"}, {"id": 238, "start": 1331.4, "end": 1334.16, "text": " think that they're way too long and yeah they should be shortened and they should be shortened"}, {"id": 239, "start": 1334.18, "end": 1340.78, "text": " as a whole i think i think a patent now is i think is 56 years and it also can be renewed once"}, {"id": 240, "start": 1340.78, "end": 1347.48, "text": " but if you made it a much shorter term and then it became in essence public domain uh i agree with"}, {"id": 241, "start": 1347.48, "end": 1352.48, "text": " you i'm in favor of public domain but only if it's voluntary i'll give you an example i don't"}, {"id": 242, "start": 1352.48, "end": 1357.5800000000002, "text": " copyright my uh my radio programs right i put them on the internet and i say these are public"}, {"id": 243, "start": 1357.5800000000002, "end": 1363.22, "text": " domain take them just don't change my words i think i'm in favor of the effusion of knowledge"}, {"id": 244, "start": 1363.22, "end": 1364.16, "text": " i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i i"}, {"id": 245, "start": 1364.18, "end": 1369.38, "text": " i'm in favor of taking your creative energy and giving it away for free because what goes around"}, {"id": 246, "start": 1369.38, "end": 1373.0800000000002, "text": " because of the law of soiling and reaping right because that's how people learn and that's how"}, {"id": 247, "start": 1373.0800000000002, "end": 1379.8400000000001, "text": " society as a whole benefits from one person's knowledge or or even collective knowledge so it's"}, {"id": 248, "start": 1379.8400000000001, "end": 1385.6200000000001, "text": " it's important that the that corporations and people like you and i charles that we put our"}, {"id": 249, "start": 1385.6200000000001, "end": 1390.78, "text": " information out there and it's available for everybody to learn from and to utilize themselves"}, {"id": 250, "start": 1390.78, "end": 1394.16, "text": " right uh the mannerisms or the format of the"}, {"id": 251, "start": 1394.18, "end": 1401.2, "text": " show or any of that stuff or or yours even um you know i'm at least for my case i don't mind"}, {"id": 252, "start": 1401.2, "end": 1408.48, "text": " somebody copying the show i don't mind people taking my this idea and using it but the thing is"}, {"id": 253, "start": 1408.48, "end": 1413.42, "text": " the thing is is how do you promote that and what i'm telling you is it needs to be promoted through"}, {"id": 254, "start": 1413.42, "end": 1420.3200000000002, "text": " uh through incentive not through coercion because if you anytime you give government coercive power"}, {"id": 255, "start": 1420.3200000000002, "end": 1424.1000000000001, "text": " you always diminish freedom i'm with you on that and i will agree with that"}, {"id": 256, "start": 1424.18, "end": 1428.42, "text": " what i was trying to illustrate was not necessarily the coercive power of government but"}, {"id": 257, "start": 1428.42, "end": 1435.72, "text": " a disincentive for corporations to own knowledge all right and i think that i think that they"}, {"id": 258, "start": 1435.72, "end": 1439.1200000000001, "text": " shouldn't own that knowledge for a certain amount of time sure you go ahead and you build your"}, {"id": 259, "start": 1439.1200000000001, "end": 1443.26, "text": " process you developed it you you you build what you need to build with it but at a certain point"}, {"id": 260, "start": 1443.26, "end": 1448.64, "text": " when it becomes popular enough all right where it becomes if you are very truly interested in the"}, {"id": 261, "start": 1448.64, "end": 1452.48, "text": " product that you've created because hopefully whatever product you've created you've brought"}, {"id": 262, "start": 1454.18, "end": 1458.6000000000001, "text": " positive change to that world and like tesla's doing right in their particular case where they're"}, {"id": 263, "start": 1458.6000000000001, "end": 1463.78, "text": " saying we want to see a positive change affected on the world with our technology and we don't care"}, {"id": 264, "start": 1463.78, "end": 1468.7, "text": " to to sue people over it we're saying that we've we've developed these patents we've developed the"}, {"id": 265, "start": 1468.7, "end": 1474.28, "text": " technology and now that we're stable and in ourselves it's free to use for everyone now if"}, {"id": 266, "start": 1474.28, "end": 1479.54, "text": " that whether that be just because the the patent terms are shorter or because or or because"}, {"id": 267, "start": 1479.54, "end": 1484.16, "text": " government or corporations are somehow incentivized to free that knowledge and to"}, {"id": 268, "start": 1484.18, "end": 1489.1000000000001, "text": " promote that knowledge um it doesn't matter to me what i want to see is i want to see a positive"}, {"id": 269, "start": 1489.1000000000001, "end": 1493.6000000000001, "text": " change in the world but it does matter people don't do things to make a positive difference in"}, {"id": 270, "start": 1493.6000000000001, "end": 1498.7, "text": " the world people do things for a profit it's a side benefit of the profit that it makes a positive"}, {"id": 271, "start": 1498.7, "end": 1504.4, "text": " change in the world and the problem is is that what you call incentivized with incentivized in"}, {"id": 272, "start": 1504.4, "end": 1511.3600000000001, "text": " quotes to government incentive equals coercion and so while your idea is noble the government's"}, {"id": 273, "start": 1511.3600000000001, "end": 1513.88, "text": " execution of it will usually be ignoble"}, {"id": 274, "start": 1514.18, "end": 1522.02, "text": " i can agree with that and that's why i'm saying that they should that if you change it to a point"}, {"id": 275, "start": 1522.02, "end": 1527.16, "text": " system rather than you know having it be in a monetary based system i mean i personally i think"}, {"id": 276, "start": 1527.16, "end": 1532.8, "text": " that there shouldn't be any money involved in it anyway all right where you can say yeah i built"}, {"id": 277, "start": 1532.8, "end": 1538.64, "text": " that and you can do like a lot of companies have done where they've built uh bridges between them"}, {"id": 278, "start": 1538.64, "end": 1542.02, "text": " and said listen we're gonna let you use our technology and we just would like a cut out of"}, {"id": 279, "start": 1542.02, "end": 1544.16, "text": " it if that's cool and they come to an agreement and they're like oh we're gonna let you use our"}, {"id": 280, "start": 1544.18, "end": 1549.44, "text": " agreement that doesn't have to involve courts or government or you know use our technology but"}, {"id": 281, "start": 1549.44, "end": 1556.96, "text": " don't you don't make our exact product just you know change it or license it or or license it i"}, {"id": 282, "start": 1556.96, "end": 1562.16, "text": " agree with you licensing makes a lot more sense but what i'm telling you is is if you say people"}, {"id": 283, "start": 1562.16, "end": 1568.78, "text": " make things not for profit you just completely set capitalism on its ear and yank the rug out"}, {"id": 284, "start": 1568.78, "end": 1573.8400000000001, "text": " from under the creative energy from all but a very few nerds who will make things there is a"}, {"id": 285, "start": 1574.18, "end": 1581.0600000000002, "text": " certain amount of uh what's the best way to put this there's a certain amount of you know the"}, {"id": 286, "start": 1581.0600000000002, "end": 1587.66, "text": " people that are out in the world right now that are incentivized themselves not necessarily in"}, {"id": 287, "start": 1587.66, "end": 1596.64, "text": " quotes only by profit but not to to do good in this world like my company was created to do good"}, {"id": 288, "start": 1596.64, "end": 1603.8, "text": " in the world right i'd like to keep the lights on sure right but sure i i could be like geek squad"}, {"id": 289, "start": 1604.18, "end": 1609.46, "text": " i could be like a number of people who i won't name right and say well i'm just i'm just going to"}, {"id": 290, "start": 1609.46, "end": 1614.38, "text": " screw the customers left and right right just because i can and nobody can stop me right but"}, {"id": 291, "start": 1614.38, "end": 1619.68, "text": " i don't but the market though the market will stop you no the market see the thing is eventually the"}, {"id": 292, "start": 1619.68, "end": 1623.1200000000001, "text": " market will stop you right but the market the market isn't stopping the people that are screwing"}, {"id": 293, "start": 1623.1200000000001, "end": 1628.16, "text": " people now right so that's not a good enough incentive but they're giving them an equal an"}, {"id": 294, "start": 1628.16, "end": 1633.64, "text": " equal and opposite benefit even if they're screwing them and it's enough that benefit is enough that"}, {"id": 295, "start": 1634.18, "end": 1638.24, "text": " if they know they're getting screwed we'll take the we'll take the benefit i don't know about that i"}, {"id": 296, "start": 1638.24, "end": 1643.7, "text": " mean if that were the case then there are some big box stores that would not be in existence at all"}, {"id": 297, "start": 1643.7, "end": 1651.48, "text": " today i have some two words i have two syllables for you android what about the android i mean"}, {"id": 298, "start": 1651.48, "end": 1657.9, "text": " people are but people are getting to some extent screwed by a system but they think the benefit is"}, {"id": 299, "start": 1657.9, "end": 1664.16, "text": " greater and so they buy it you lost me on that one to explain to me what you're saying the android"}, {"id": 300, "start": 1664.18, "end": 1670.1000000000001, "text": " system forces you to do certain things are we talking about the phones yeah okay"}, {"id": 301, "start": 1670.1000000000001, "end": 1677.3, "text": " i don't have time to go into it but it forces you to do things in certain ways it forces you"}, {"id": 302, "start": 1677.3, "end": 1682.3200000000002, "text": " in many cases to do business with google it there's just a lot of things it forces you that"}, {"id": 303, "start": 1682.3200000000002, "end": 1686.8, "text": " you have to find workarounds to try not to have happen with that system which is why i'm calling"}, {"id": 304, "start": 1686.8, "end": 1692.16, "text": " you from a palm phone okay even though i have an android i try not to use it unless it's something"}, {"id": 305, "start": 1694.18, "end": 1700.72, "text": " my mom won't do okay that's a great example of it okay i have one i bought the technology i have it"}, {"id": 306, "start": 1700.72, "end": 1705.64, "text": " i just don't like it but i realize there's important things it does for me so even though"}, {"id": 307, "start": 1705.64, "end": 1710.8400000000001, "text": " it screws me in some ways that i don't the things i don't forces me to do the things i don't want to"}, {"id": 308, "start": 1710.8400000000001, "end": 1717.02, "text": " do i have one so i guess my question is to follow up on your point from earlier is is the market"}, {"id": 309, "start": 1717.02, "end": 1724.16, "text": " stopping android all right no what the market what the no what the no the market is stopping"}, {"id": 310, "start": 1724.18, "end": 1730.8, "text": " android except to the extent that i'm calling you on a palm phone right now i get that and and"}, {"id": 311, "start": 1730.8, "end": 1736.14, "text": " there's a what i'm saying though is that there yes capitalism is alive and well in america and"}, {"id": 312, "start": 1736.14, "end": 1741.8200000000002, "text": " and should be preserved to to make sure that people can make money right to make sure that"}, {"id": 313, "start": 1741.8200000000002, "end": 1748.6000000000001, "text": " people can regulate themselves and yes society needs to regulate itself in a big way the the"}, {"id": 314, "start": 1748.6000000000001, "end": 1753.9, "text": " problem with some of this right is and and where we tend to bump heads charles is not"}, {"id": 315, "start": 1754.18, "end": 1761.98, "text": " where capitalism what the role of capitalism is in the united states um i think that we differ on"}, {"id": 316, "start": 1761.98, "end": 1767.7, "text": " on what the role of government is which is it's supposed to be at least as i read the constitution"}, {"id": 317, "start": 1767.7, "end": 1772.96, "text": " and as i read it and you know when i took my courses in college it basically said that there"}, {"id": 318, "start": 1772.96, "end": 1779.54, "text": " is a protection element that needs to be there and and as we did with net neutrality you know"}, {"id": 319, "start": 1779.54, "end": 1784.14, "text": " it wasn't about it was not about providing equal"}, {"id": 320, "start": 1784.18, "end": 1790.2, "text": " outcome it's about providing equal opportunity and so there's this is where i think that you know"}, {"id": 321, "start": 1790.2, "end": 1796.1200000000001, "text": " where changes in the patent system are concerned or changes in net neutrality these are where we"}, {"id": 322, "start": 1796.1200000000001, "end": 1801.8400000000001, "text": " really need to to find that edge that razor's edge of what what are we really trying to define here"}, {"id": 323, "start": 1801.8400000000001, "end": 1807.02, "text": " and i think you have a good concept but i think it's a little out of focus it may be right you"}, {"id": 324, "start": 1807.02, "end": 1812.88, "text": " know i haven't been around all that long and it's just an idea too and i can i'm sorry go ahead i"}, {"id": 325, "start": 1812.88, "end": 1814.16, "text": " was just saying it's just an idea and it's just an idea and it's just an idea and it's just an idea"}, {"id": 326, "start": 1814.18, "end": 1819.04, "text": " he popped up with too i mean he's not sending a bill out to congress to get signed or anything"}, {"id": 327, "start": 1819.04, "end": 1823.04, "text": " but it's just a thought that's true and i put it on the radio and it's my fault for doing it but i"}, {"id": 328, "start": 1823.04, "end": 1827.7, "text": " yes i you you and i you know we we tend to talk about these things but when you know what charles"}, {"id": 329, "start": 1827.7, "end": 1833.38, "text": " when i'm when i get to be your age i'll probably be wise too i don't know that i'm wise i know that"}, {"id": 330, "start": 1833.38, "end": 1838.3200000000002, "text": " i've acquired some knowledge but i would encourage encourage you on the next break look up in"}, {"id": 331, "start": 1838.3200000000002, "end": 1844.04, "text": " arizona arizona's constitution article two section two it is the purpose of government"}, {"id": 332, "start": 1844.18, "end": 1849.1000000000001, "text": " and i think it may give some clarity to your idea about what the constitution is supposed to do"}, {"id": 333, "start": 1849.1000000000001, "end": 1854.02, "text": " article two section two of arizona's constitution thanks for calling charles i appreciate it have a"}, {"id": 334, "start": 1854.02, "end": 1857.64, "text": " great day thanks let's talk to mark real quick and we'll take a break hey mark how are you"}, {"id": 335, "start": 1857.64, "end": 1862.94, "text": " hey guys yeah i was just wondering now is the dos 3.3 in public domain yet that's right yeah"}, {"id": 336, "start": 1862.94, "end": 1872.2, "text": " no anyway hey i've had a rash and i mean a rash within the last i know a doctor i know the rash"}, {"id": 337, "start": 1872.2, "end": 1873.94, "text": " a couple of weeks here of these"}, {"id": 338, "start": 1874.18, "end": 1881.5800000000002, "text": " uh phony microsoft boiler room calls yeah did you ever get to do a uh follow them along they"}, {"id": 339, "start": 1881.5800000000002, "end": 1886.98, "text": " don't call me they won't call you no i mean i want them to call me just desperately i want"}, {"id": 340, "start": 1886.98, "end": 1891.14, "text": " them to call me but they never do yeah yeah so i don't know whatever i'm doing i'm getting them on"}, {"id": 341, "start": 1891.14, "end": 1894.64, "text": " all kinds of different lines you know different phones and everything you get them on your cell"}, {"id": 342, "start": 1894.64, "end": 1900.02, "text": " phone i think i've had them on my cell phone yeah i'm thinking that we need to we need to find a way"}, {"id": 343, "start": 1900.02, "end": 1904.16, "text": " that makes it easy for people to transfer those calls to me right that's what i was"}, {"id": 344, "start": 1904.18, "end": 1908.6200000000001, "text": " trying to think of you boy you and i were zeroed in together on that one well at least i get along"}, {"id": 345, "start": 1908.6200000000001, "end": 1912.9, "text": " with somebody on here yeah right no i was thinking of if i had a way where i could say just a minute"}, {"id": 346, "start": 1912.9, "end": 1918.1200000000001, "text": " here while i go to the computer right and then do it uh but i should build my own you know virgin"}, {"id": 347, "start": 1918.1200000000001, "end": 1923.66, "text": " install computer and just see where they go but uh and now uh you know what i'm going to do i'm"}, {"id": 348, "start": 1923.66, "end": 1930.28, "text": " going to put on the website this week i'm going to put on the website a uh a windows 7 virtual box"}, {"id": 349, "start": 1930.28, "end": 1934.16, "text": " that people can log into when they get these calls and it'll record them and they'll see them"}, {"id": 350, "start": 1934.18, "end": 1939.1000000000001, "text": " record what's happening yeah that would be awesome right i mean i've gotten a little ways with a"}, {"id": 351, "start": 1939.1000000000001, "end": 1942.74, "text": " couple of them there where you know essentially what they were doing is you know you're setting"}, {"id": 352, "start": 1942.74, "end": 1947.74, "text": " you up to remote access or some kind of thing like that right but uh that was you know kind"}, {"id": 353, "start": 1947.74, "end": 1952.98, "text": " of where they were going my latest and greatest has been i just tell them that i'm a microsoft"}, {"id": 354, "start": 1952.98, "end": 1958.3200000000002, "text": " certified systems engineer and this phone call is not going to work right now about half of them"}, {"id": 355, "start": 1958.3200000000002, "end": 1963.7, "text": " just don't even know what that means and just keep on going with the spiel right they got a script"}, {"id": 356, "start": 1964.18, "end": 1969.78, "text": " yeah and the other half just say oh okay and hang up well i i think that uh let's use it"}, {"id": 357, "start": 1969.78, "end": 1981.3, "text": " 344 guru so 520-344-GURU that's 4878 um that number uh i i would say that you know if we can"}, {"id": 358, "start": 1981.3, "end": 1986.5800000000002, "text": " get people who get those calls to say you know what you know you i don't need any help because"}, {"id": 359, "start": 1986.5800000000002, "end": 1991.14, "text": " here's the fastest way call me back on this number well here's the fastest way to get them"}, {"id": 360, "start": 1991.14, "end": 1994.14, "text": " to leave you alone first of all you can say well"}, {"id": 361, "start": 1994.18, "end": 1999.48, "text": " i don't need help because i have a mac because they will hang up immediately um you tell them"}, {"id": 362, "start": 1999.48, "end": 2007.78, "text": " but you know my friend he's always got viruses and uh his phone number is 520-344-4878 and that's"}, {"id": 363, "start": 2007.78, "end": 2014.72, "text": " 344-GURU can i ask a question sure is there any way if you if you've got caller id is there any"}, {"id": 364, "start": 2014.72, "end": 2019.28, "text": " way of now they're identifying these guys they skype those calls in so that it's going to come"}, {"id": 365, "start": 2019.28, "end": 2024.1000000000001, "text": " up as all zeros or it'll come up with some number that's not a real phone number um okay"}, {"id": 366, "start": 2024.18, "end": 2028.96, "text": " they're all skype calls so most about half of them were anonymous you know came in with nothing"}, {"id": 367, "start": 2028.96, "end": 2033.8200000000002, "text": " and i thought i saw one that came from minnesota where i grew up and so i was taking that call and"}, {"id": 368, "start": 2033.8200000000002, "end": 2038.26, "text": " it turned out to be one of these guys but it's probably one of those skype feed numbers right"}, {"id": 369, "start": 2038.26, "end": 2045.92, "text": " yeah so or google voice number right so yeah that's uh that's unfortunate i was just surprised"}, {"id": 370, "start": 2045.92, "end": 2050.82, "text": " that it came back in such a rash of them all right together i've been hearing about a lot"}, {"id": 371, "start": 2050.82, "end": 2054.16, "text": " of people getting these calls lately so i've had two in the last few weeks and i've had two"}, {"id": 372, "start": 2054.18, "end": 2060.3399999999997, "text": " why are you not recording them i'm going to the next time i was busy i just wanted them off the"}, {"id": 373, "start": 2060.3399999999997, "end": 2065.3399999999997, "text": " phone well the only thing that's happened to me was is that you know i went on medicare and i think"}, {"id": 374, "start": 2065.3399999999997, "end": 2070.24, "text": " they may think that it's time for me to get the harassed as some old guy all right well you know"}, {"id": 375, "start": 2070.24, "end": 2074.0, "text": " now that you're officially an old guy they're going to call you officially an old guy that's"}, {"id": 376, "start": 2074.0, "end": 2080.02, "text": " right and you're never old unless you get the discount at denny's and you get uh remote access"}, {"id": 377, "start": 2080.02, "end": 2083.8599999999997, "text": " support from india remote access support from those guys yeah well we've actually had one of"}, {"id": 378, "start": 2084.18, "end": 2089.8999999999996, "text": " our calls too you know oh yeah where the kid says that he's uh you know in jail and and the officer"}, {"id": 379, "start": 2089.8999999999996, "end": 2095.64, "text": " comes on and wants you to send four thousand dollars by wire and wow yeah we had one of those"}, {"id": 380, "start": 2095.64, "end": 2101.7799999999997, "text": " and my my was out of the house my wife called me and said we need to go to the bank oh no as we"}, {"id": 381, "start": 2101.7799999999997, "end": 2107.72, "text": " pulled out of the driveway i said wait a minute i think this is a scam wow i didn't know they were"}, {"id": 382, "start": 2107.72, "end": 2112.8799999999997, "text": " doing that one but you know yeah that one comes out and uh it's a kind of an interesting trick"}, {"id": 383, "start": 2112.8799999999997, "end": 2114.16, "text": " is they don't tell you"}, {"id": 384, "start": 2114.18, "end": 2120.18, "text": " who the person is right they wait for you to ask them you know it'll you know like you know"}, {"id": 385, "start": 2120.18, "end": 2125.3399999999997, "text": " grandma can you help me help me and then you'll go johnny right he'll say yes yes you know wow"}, {"id": 386, "start": 2125.3399999999997, "end": 2130.2999999999997, "text": " and so they're good pretty it's a pretty clever scam the way they put it together and i know a"}, {"id": 387, "start": 2130.2999999999997, "end": 2135.22, "text": " few people who actually sent the money but that's just cruel see what they should just do is outlaw"}, {"id": 388, "start": 2135.22, "end": 2140.66, "text": " telephones for old people they outlaw telephones for old people we'll save a whole bunch of grief"}, {"id": 389, "start": 2140.66, "end": 2144.1, "text": " thanks for the call mark i appreciate it guys glad to hear you thanks"}, {"id": 390, "start": 2144.18, "end": 2147.18, "text": " are we going to break tom yeah we're going to break"}, {"id": 391, "start": 2147.18, "end": 2160.2599999999998, "text": " computer troubles need some advice call in now mike swanson will be back after these messages"}, {"id": 392, "start": 2160.2599999999998, "end": 2165.0, "text": " the computer guru show am 10 30 kby the voice"}, {"id": 393, "start": 2165.0, "end": 2172.68, "text": " welcome back to the computer guru show"}, {"id": 394, "start": 2174.18, "end": 2177.72, "text": " give us a call at 520-790-2040"}, {"id": 395, "start": 2177.72, "end": 2183.72, "text": " see if we can find ways to to pull this out yeah all right to recover to right this ship"}, {"id": 396, "start": 2183.72, "end": 2191.8999999999996, "text": " wow i use terms on this show that i've never used in real life this ship i'm gonna have to lock my"}, {"id": 397, "start": 2191.8999999999996, "end": 2196.56, "text": " door that's what you're gonna have to do not let people in and we need a strobe light on the phone"}, {"id": 398, "start": 2196.56, "end": 2202.1, "text": " so you can see when it's ringing and we need all we need all that stuff all right well i i count on"}, {"id": 399, "start": 2202.1, "end": 2203.98, "text": " you to to tell me when it's ringing"}, {"id": 400, "start": 2204.18, "end": 2207.52, "text": " because you can see it quicker than i can"}, {"id": 401, "start": 2207.52, "end": 2209.2599999999998, "text": " the we have the same screen in for the most"}, {"id": 402, "start": 2209.2599999999998, "end": 2213.98, "text": " that's how i guess but my screen is over here and i have another screen over here"}, {"id": 403, "start": 2213.98, "end": 2218.7599999999998, "text": " anybody interested in my attention is divided at least twice a lot of micro"}, {"id": 404, "start": 2218.7599999999998, "end": 2221.62, "text": " man and three ways right all right a lot"}, {"id": 405, "start": 2221.62, "end": 2223.06, "text": " what i do know i'm hi"}, {"id": 406, "start": 2223.06, "end": 2225.74, "text": " yeah i i can blame it on him and the dog"}, {"id": 407, "start": 2225.74, "end": 2229.1, "text": " and the cool yeah i mean you know i have to pat chuck all right"}, {"id": 408, "start": 2229.1, "end": 2234.02, "text": " well such a sweet chuck is a uh... by the way there's a a studio dog uh... the chuck"}, {"id": 409, "start": 2234.02, "end": 2237.14, "text": " and he's a worthwhile distraction."}, {"id": 410, "start": 2237.4, "end": 2238.6, "text": " He's a really good dog."}, {"id": 411, "start": 2238.62, "end": 2239.36, "text": " I'll cut you some slack."}, {"id": 412, "start": 2239.36, "end": 2243.16, "text": " But if you miss a call while the dog is not here."}, {"id": 413, "start": 2243.28, "end": 2243.88, "text": " I won't miss the call."}, {"id": 414, "start": 2244.22, "end": 2245.28, "text": " Then this is a problem."}, {"id": 415, "start": 2245.72, "end": 2249.84, "text": " You'll see the call on the first ring, and I'll see it on the third or fourth ring,"}, {"id": 416, "start": 2249.98, "end": 2251.18, "text": " but I'm not going to miss it."}, {"id": 417, "start": 2251.3, "end": 2252.72, "text": " All right, let's talk to Daniel and see what he wants."}, {"id": 418, "start": 2253.6, "end": 2254.34, "text": " Hey, Daniel, how are you?"}, {"id": 419, "start": 2255.7, "end": 2256.3, "text": " Good morning."}, {"id": 420, "start": 2256.4, "end": 2257.08, "text": " Is this for Daniel?"}, {"id": 421, "start": 2257.58, "end": 2257.98, "text": " Yes."}, {"id": 422, "start": 2258.08, "end": 2258.58, "text": " Well, yeah."}, {"id": 423, "start": 2259.1, "end": 2259.5, "text": " Hi."}, {"id": 424, "start": 2259.64, "end": 2260.48, "text": " If you're Daniel."}, {"id": 425, "start": 2260.92, "end": 2261.1, "text": " Yeah."}, {"id": 426, "start": 2261.1, "end": 2264.92, "text": " My cell phone's kind of fuzzy out here west of Old Tucson."}, {"id": 427, "start": 2264.92, "end": 2269.52, "text": " But anyways, thanks for taking me on, and I'm new to your show."}, {"id": 428, "start": 2270.12, "end": 2271.38, "text": " Just found out about it."}, {"id": 429, "start": 2271.44, "end": 2277.2, "text": " I have a MacBook, a vintage 2007, and I like it."}, {"id": 430, "start": 2277.2599999999998, "end": 2278.7999999999997, "text": " I was just trying to transfer over."}, {"id": 431, "start": 2278.92, "end": 2282.58, "text": " I don't know much about even my Dell PC, but, you know, they stopped supporting that."}, {"id": 432, "start": 2283.22, "end": 2286.1, "text": " So I got this thing, and it was okay until the power pack."}, {"id": 433, "start": 2287.48, "end": 2289.64, "text": " Usually it has the green light on when the battery is charged,"}, {"id": 434, "start": 2289.68, "end": 2290.8399999999997, "text": " and then it goes amber."}, {"id": 435, "start": 2290.84, "end": 2297.1800000000003, "text": " But it just went dead, and it's not charging at all, and I'm running out of battery."}, {"id": 436, "start": 2297.96, "end": 2304.8, "text": " And I did take it back to Simutech, where I bought it, a few months ago,"}, {"id": 437, "start": 2304.96, "end": 2306.38, "text": " because it had done the same thing."}, {"id": 438, "start": 2306.82, "end": 2310.6400000000003, "text": " And the owner came out and was refreshing himself on drivers"}, {"id": 439, "start": 2310.6400000000003, "end": 2315.86, "text": " and some kind of procedure to make it work, and he did."}, {"id": 440, "start": 2316.2200000000003, "end": 2318.7200000000003, "text": " He said he got a download or something esoteric."}, {"id": 441, "start": 2318.7200000000003, "end": 2319.26, "text": " I don't understand."}, {"id": 442, "start": 2319.78, "end": 2320.82, "text": " But he did."}, {"id": 443, "start": 2320.84, "end": 2325.06, "text": " He got it to work okay, and it lasted a couple months, and now it's doing it again."}, {"id": 444, "start": 2325.92, "end": 2329.36, "text": " And I went to another, like, Office Max or something."}, {"id": 445, "start": 2329.5, "end": 2330.78, "text": " They put another power pack on it."}, {"id": 446, "start": 2331.06, "end": 2332.84, "text": " So they said it's definitely not my power pack."}, {"id": 447, "start": 2332.84, "end": 2337.6000000000004, "text": " It's something in the jack itself that's not receiving the electricity."}, {"id": 448, "start": 2338.7000000000003, "end": 2342.78, "text": " And other people have warned me, don't take it apart and try to fix it yourself,"}, {"id": 449, "start": 2343.2000000000003, "end": 2347.3, "text": " because it's so intricate, and Apple has made it so delicate that you'll destroy it."}, {"id": 450, "start": 2347.88, "end": 2350.42, "text": " So how can I find out how to just simply?"}, {"id": 451, "start": 2350.84, "end": 2352.04, "text": " Be able to plug in my power."}, {"id": 452, "start": 2352.58, "end": 2354.44, "text": " So is this a round plug or a magnetic plug?"}, {"id": 453, "start": 2355.08, "end": 2355.58, "text": " It's magnetic."}, {"id": 454, "start": 2355.84, "end": 2356.06, "text": " Okay."}, {"id": 455, "start": 2359.1200000000003, "end": 2360.6400000000003, "text": " How long does the battery hold a charge?"}, {"id": 456, "start": 2361.96, "end": 2362.9, "text": " Well, that's a good question."}, {"id": 457, "start": 2362.9, "end": 2367.2000000000003, "text": " I've got about 80% left, and I'm afraid to use it at all, because it was pretty good."}, {"id": 458, "start": 2368.36, "end": 2370.36, "text": " Just maybe four hours, more or less."}, {"id": 459, "start": 2370.44, "end": 2371.52, "text": " I never really tested it."}, {"id": 460, "start": 2371.6000000000004, "end": 2375.6200000000003, "text": " I only bought it, like, in the beginning of the year, end of last year."}, {"id": 461, "start": 2375.86, "end": 2376.1200000000003, "text": " Okay."}, {"id": 462, "start": 2376.46, "end": 2378.3, "text": " So I've got very little experience with it."}, {"id": 463, "start": 2379.6200000000003, "end": 2380.7000000000003, "text": " So if the..."}, {"id": 464, "start": 2380.84, "end": 2384.1000000000004, "text": " If the jack is somehow damaged, which is pretty rare on the magnetic jacks."}, {"id": 465, "start": 2384.26, "end": 2385.6600000000003, "text": " I mean, that doesn't happen very often."}, {"id": 466, "start": 2386.26, "end": 2386.44, "text": " No."}, {"id": 467, "start": 2386.96, "end": 2392.88, "text": " I would say that, first of all, I would make sure all the contacts are clean on both the jack and the computer side,"}, {"id": 468, "start": 2393.04, "end": 2395.28, "text": " if it's a magnet mount, because sometimes those get dirty."}, {"id": 469, "start": 2395.86, "end": 2396.1000000000004, "text": " Okay."}, {"id": 470, "start": 2396.1800000000003, "end": 2399.52, "text": " And if any one of those gets to the point where it's not making connection,"}, {"id": 471, "start": 2400.1600000000003, "end": 2404.28, "text": " it's going to say, I'm not really plugged in, so it shuts the power pack off."}, {"id": 472, "start": 2404.6000000000004, "end": 2408.1600000000003, "text": " Can I use, like, 99% alcohol solution, or what?"}, {"id": 473, "start": 2408.1600000000003, "end": 2409.54, "text": " Yeah, you can use any of that stuff."}, {"id": 474, "start": 2409.9, "end": 2410.1400000000003, "text": " Okay."}, {"id": 475, "start": 2410.2400000000002, "end": 2410.6600000000003, "text": " Just try to avoid..."}, {"id": 476, "start": 2410.84, "end": 2413.52, "text": " Just try to get in on any of the plastic or aluminum."}, {"id": 477, "start": 2414.28, "end": 2414.82, "text": " Right, right."}, {"id": 478, "start": 2414.9, "end": 2417.1000000000004, "text": " But if it's any of the steel or copper parts, yeah, go ahead."}, {"id": 479, "start": 2417.6200000000003, "end": 2417.92, "text": " Okay."}, {"id": 480, "start": 2418.04, "end": 2420.04, "text": " And that may help you out with that."}, {"id": 481, "start": 2421.7000000000003, "end": 2425.7000000000003, "text": " Assuming that they plugged in a new power pack when you took it in,"}, {"id": 482, "start": 2426.1800000000003, "end": 2428.9, "text": " I would focus mainly on the computer side."}, {"id": 483, "start": 2429.52, "end": 2429.6600000000003, "text": " Yeah."}, {"id": 484, "start": 2429.78, "end": 2431.8, "text": " So it may be dirty there,"}, {"id": 485, "start": 2432.7200000000003, "end": 2439.1400000000003, "text": " because I can't think of any real reason that there would be physical damage to the computer side of it."}, {"id": 486, "start": 2440.84, "end": 2442.36, "text": " So, I mean, it's probably just dirty."}, {"id": 487, "start": 2443.02, "end": 2447.36, "text": " Now, if there is a problem, we do see this where they just stop charging."}, {"id": 488, "start": 2448.02, "end": 2448.3, "text": " Right."}, {"id": 489, "start": 2448.6200000000003, "end": 2452.36, "text": " And usually that's when somebody has, like, a completely dead battery in there"}, {"id": 490, "start": 2452.36, "end": 2455.3, "text": " and has been charging it for, you know, a couple of years on a dead battery."}, {"id": 491, "start": 2455.84, "end": 2458.82, "text": " And it just blows up the charging circuits on the motherboard."}, {"id": 492, "start": 2459.7000000000003, "end": 2461.76, "text": " In which case, it's not coming back."}, {"id": 493, "start": 2463.3, "end": 2464.56, "text": " But it doesn't sound like that."}, {"id": 494, "start": 2464.6400000000003, "end": 2467.92, "text": " I mean, you said it holds a charge for at least a couple of hours, which is..."}, {"id": 495, "start": 2467.92, "end": 2468.6800000000003, "text": " Yeah, or more."}, {"id": 496, "start": 2469.08, "end": 2470.3, "text": " And it was green."}, {"id": 497, "start": 2470.3, "end": 2472.52, "text": " And I bought it refurbished, so-called, at Simutech."}, {"id": 498, "start": 2472.86, "end": 2475.78, "text": " And just because they had it on the shelf, it seemed like a bargain at $250."}, {"id": 499, "start": 2476.1000000000004, "end": 2479.92, "text": " So it was closing time, and it was impulse, and I bought it."}, {"id": 500, "start": 2480.92, "end": 2484.4, "text": " And I assumed they had a new battery in it or something close to it."}, {"id": 501, "start": 2485.7200000000003, "end": 2488.6200000000003, "text": " And as I say, the owner managed to somehow..."}, {"id": 502, "start": 2488.6200000000003, "end": 2488.82, "text": " Right."}, {"id": 503, "start": 2488.86, "end": 2490.6600000000003, "text": " You can do a firmware reset on those things,"}, {"id": 504, "start": 2490.6800000000003, "end": 2494.84, "text": " which will kind of force it to reset everything and start charging again."}, {"id": 505, "start": 2495.32, "end": 2495.92, "text": " How do you do that?"}, {"id": 506, "start": 2496.26, "end": 2497.78, "text": " Well, there's a couple of different ways you can do it."}, {"id": 507, "start": 2497.78, "end": 2499.78, "text": " But the simple way..."}, {"id": 508, "start": 2500.3, "end": 2503.1600000000003, "text": " The one that doesn't require a degree in Apple..."}, {"id": 509, "start": 2503.1600000000003, "end": 2503.5600000000004, "text": " Yeah."}, {"id": 510, "start": 2504.1400000000003, "end": 2510.1000000000004, "text": " ...is when the machine is off, to hold the power button down for about 20 seconds when you're turning it on."}, {"id": 511, "start": 2510.38, "end": 2515.1800000000003, "text": " And you get a blinking, flashing light, and it's sort of like a soft reset for everything."}, {"id": 512, "start": 2516.0800000000004, "end": 2518.84, "text": " There's a harder reset, but it's way dangerous."}, {"id": 513, "start": 2519.26, "end": 2520.92, "text": " So I'm not going to tell you how to do that one."}, {"id": 514, "start": 2521.36, "end": 2522.5800000000004, "text": " No, I appreciate that."}, {"id": 515, "start": 2522.8, "end": 2523.1200000000003, "text": " It's good."}, {"id": 516, "start": 2523.78, "end": 2525.84, "text": " But you can start with that and see if that helps."}, {"id": 517, "start": 2526.6200000000003, "end": 2528.5, "text": " And if it does, then that's great."}, {"id": 518, "start": 2529.1000000000004, "end": 2530.1400000000003, "text": " But if it doesn't, then..."}, {"id": 519, "start": 2530.3, "end": 2532.78, "text": " And, you know, you're going to either have to take it back to Simutech and have a look at it,"}, {"id": 520, "start": 2532.78, "end": 2534.4, "text": " or you can bring it down to us and we can look at it."}, {"id": 521, "start": 2535.42, "end": 2535.9, "text": " I'm sorry."}, {"id": 522, "start": 2535.98, "end": 2537.02, "text": " As I say, I'm new to your show."}, {"id": 523, "start": 2537.0800000000004, "end": 2539.36, "text": " I was out of town for a while, and I'm back."}, {"id": 524, "start": 2539.52, "end": 2540.9, "text": " So what's your name and where are you?"}, {"id": 525, "start": 2541.2400000000002, "end": 2543.88, "text": " My name is Mike Swanson, and my company is Computer Guru."}, {"id": 526, "start": 2544.5600000000004, "end": 2544.84, "text": " Okay."}, {"id": 527, "start": 2545.1200000000003, "end": 2546.34, "text": " And we're over at First and Fort Law."}, {"id": 528, "start": 2546.38, "end": 2550.42, "text": " You can reach us at 304-8300 if you want to call us at the shop."}, {"id": 529, "start": 2553.0600000000004, "end": 2553.54, "text": " He's writing."}, {"id": 530, "start": 2553.6400000000003, "end": 2554.04, "text": " I can tell."}, {"id": 531, "start": 2554.36, "end": 2557.46, "text": " It is great to be back in Tucson, and I'm glad you're there."}, {"id": 532, "start": 2557.78, "end": 2558.04, "text": " Great."}, {"id": 533, "start": 2558.1400000000003, "end": 2560.2200000000003, "text": " I don't know where you've been for the last six years, but, you know,"}, {"id": 534, "start": 2560.2200000000003, "end": 2560.88, "text": " I've been around."}, {"id": 535, "start": 2561.94, "end": 2564.4800000000005, "text": " San Diego, the America's finest city, quote, unquote."}, {"id": 536, "start": 2564.7400000000002, "end": 2566.38, "text": " But, hey, you know, if you want to..."}, {"id": 537, "start": 2566.38, "end": 2567.0400000000004, "text": " You stay classy."}, {"id": 538, "start": 2568.6400000000003, "end": 2569.34, "text": " Stay classy."}, {"id": 539, "start": 2569.34, "end": 2569.6800000000003, "text": " I'm sorry."}, {"id": 540, "start": 2569.88, "end": 2570.0800000000004, "text": " What?"}, {"id": 541, "start": 2570.2400000000002, "end": 2571.36, "text": " Stay classy, San Diego."}, {"id": 542, "start": 2571.6800000000003, "end": 2572.36, "text": " San Diago."}, {"id": 543, "start": 2572.84, "end": 2572.94, "text": " Sorry."}, {"id": 544, "start": 2573.36, "end": 2573.7200000000003, "text": " Yeah."}, {"id": 545, "start": 2574.0600000000004, "end": 2574.2200000000003, "text": " Yeah."}, {"id": 546, "start": 2575.1800000000003, "end": 2576.92, "text": " It's a different country."}, {"id": 547, "start": 2577.46, "end": 2578.86, "text": " Yeah, it's different down there."}, {"id": 548, "start": 2578.92, "end": 2582.28, "text": " I was taking care of an elderly woman and learned a whole lot about elder care,"}, {"id": 549, "start": 2582.42, "end": 2586.7200000000003, "text": " which is along the lines of the VA these days and people taking advantage of bureaucracy."}, {"id": 550, "start": 2586.96, "end": 2587.92, "text": " So I'm going to write about that."}, {"id": 551, "start": 2587.9800000000005, "end": 2589.36, "text": " But, meanwhile, I need my computer to do that."}, {"id": 552, "start": 2589.5600000000004, "end": 2590.2000000000003, "text": " Right on."}, {"id": 553, "start": 2590.2200000000003, "end": 2590.6200000000003, "text": " All right."}, {"id": 554, "start": 2590.8, "end": 2594.34, "text": " You should talk to Charles Heller, because, you know, Charles, I disagree with you, Heller,"}, {"id": 555, "start": 2594.4800000000005, "end": 2595.5600000000004, "text": " who calls the show all the time."}, {"id": 556, "start": 2596.1800000000003, "end": 2596.6400000000003, "text": " Charles Heller."}, {"id": 557, "start": 2597.26, "end": 2599.38, "text": " No, he's got a good show, and his show is..."}, {"id": 558, "start": 2599.38, "end": 2606.5000000000005, "text": " He has several, actually, a few shows, but he mainly talks about things that are regarding liberty"}, {"id": 559, "start": 2606.5000000000005, "end": 2611.9800000000005, "text": " and keeping yourself free from government and bureaucracies and all of that stuff."}, {"id": 560, "start": 2612.1600000000003, "end": 2613.7400000000002, "text": " So, you know, you should listen to his show."}, {"id": 561, "start": 2613.78, "end": 2614.26, "text": " He's on tomorrow."}, {"id": 562, "start": 2615.0400000000004, "end": 2615.84, "text": " I will check it out."}, {"id": 563, "start": 2615.9800000000005, "end": 2616.4, "text": " Right on."}, {"id": 564, "start": 2616.4, "end": 2618.94, "text": " Oh, and one more question, Tommy, briefly."}, {"id": 565, "start": 2619.2400000000002, "end": 2619.4, "text": " My..."}, {"id": 566, "start": 2620.2200000000003, "end": 2624.38, "text": " Latitude PC, Dell, it's..."}, {"id": 567, "start": 2624.38, "end": 2628.2200000000003, "text": " I've still got it, thank God, and the battery doesn't charge anymore,"}, {"id": 568, "start": 2628.34, "end": 2631.78, "text": " even though I put a new one in, but I restarted the wires on the power pack and made that thing work."}, {"id": 569, "start": 2632.28, "end": 2636.1000000000004, "text": " And somehow I managed to disengage my Wi-Fi capability,"}, {"id": 570, "start": 2636.26, "end": 2638.46, "text": " so I can't even go to the library or McDonald's or wherever."}, {"id": 571, "start": 2639.1400000000003, "end": 2642.6800000000003, "text": " And with all the hieroglyphics, I was trying to simplify it somehow,"}, {"id": 572, "start": 2642.86, "end": 2645.1000000000004, "text": " and I probably deleted the ability."}, {"id": 573, "start": 2645.1000000000004, "end": 2649.9, "text": " Is that hard to recover, as far as the ability to use Wi-Fi?"}, {"id": 574, "start": 2650.2200000000003, "end": 2655.1200000000003, "text": " Well, if it's software-based, like if you just deleted the driver or something, yeah, that's easy enough."}, {"id": 575, "start": 2656.2400000000002, "end": 2660.5800000000004, "text": " But if you physically, you know, undid something, it's still fairly easy."}, {"id": 576, "start": 2660.6800000000003, "end": 2662.1000000000004, "text": " It's just hard to tell you which one you did."}, {"id": 577, "start": 2663.0800000000004, "end": 2664.82, "text": " Yeah, and I've got a few disks here."}, {"id": 578, "start": 2664.9, "end": 2671.5400000000004, "text": " One of them is Dell Latitude CS-CSX Resource CD colon driver is diagnostic."}, {"id": 579, "start": 2671.5400000000004, "end": 2672.44, "text": " Well, that would be the one."}, {"id": 580, "start": 2672.6400000000003, "end": 2673.36, "text": " That's the one you need."}, {"id": 581, "start": 2673.78, "end": 2674.2200000000003, "text": " Oh, beautiful."}, {"id": 582, "start": 2674.38, "end": 2674.6400000000003, "text": " Great."}, {"id": 583, "start": 2674.6800000000003, "end": 2675.2400000000002, "text": " Right on."}, {"id": 584, "start": 2675.42, "end": 2675.5400000000004, "text": " Great."}, {"id": 585, "start": 2675.88, "end": 2676.26, "text": " All right."}, {"id": 586, "start": 2676.34, "end": 2679.5000000000005, "text": " Well, man, you've been very helpful, and I appreciate it, and you have a good summer."}, {"id": 587, "start": 2679.78, "end": 2680.0200000000004, "text": " You do."}, {"id": 588, "start": 2680.02, "end": 2682.12, "text": " You do the same, and you better listen next week or else."}, {"id": 589, "start": 2682.82, "end": 2683.4, "text": " I will."}, {"id": 590, "start": 2683.54, "end": 2684.12, "text": " I will now."}, {"id": 591, "start": 2684.36, "end": 2684.82, "text": " Thank you, sir."}, {"id": 592, "start": 2684.9, "end": 2685.56, "text": " Thanks for the call."}, {"id": 593, "start": 2685.6, "end": 2686.24, "text": " I appreciate it."}, {"id": 594, "start": 2686.42, "end": 2686.74, "text": " All right."}, {"id": 595, "start": 2686.7599999999998, "end": 2686.96, "text": " Goodbye."}, {"id": 596, "start": 2688.06, "end": 2688.62, "text": " Oh, man."}, {"id": 597, "start": 2688.82, "end": 2691.64, "text": " Okay, so other things that I wanted to bring up before we ran out of time."}, {"id": 598, "start": 2691.7599999999998, "end": 2693.44, "text": " See, we've only got like three minutes left."}, {"id": 599, "start": 2693.68, "end": 2695.12, "text": " Did you have something that you wanted on there?"}, {"id": 600, "start": 2695.78, "end": 2699.06, "text": " No, my whole week was E3, and I'm going to write about it."}, {"id": 601, "start": 2699.06, "end": 2701.32, "text": " So look on the website after the show."}, {"id": 602, "start": 2701.66, "end": 2705.1, "text": " I'm going to be putting up some blogs about the different things that I experienced while I was there."}, {"id": 603, "start": 2705.32, "end": 2705.48, "text": " All right."}, {"id": 604, "start": 2705.5, "end": 2709.24, "text": " Well, I'm going to send a series of links over to Tara to put in today's podcast,"}, {"id": 605, "start": 2709.2400000000002, "end": 2713.1800000000003, "text": " one of which is a tool that you can, even though it's not advertised,"}, {"id": 606, "start": 2713.44, "end": 2718.48, "text": " it's still another way that Netflix is trying to stick it to Time Warner and Comcast and saying,"}, {"id": 607, "start": 2718.6400000000003, "end": 2721.76, "text": " well, let's tell you how fast your video playback really is."}, {"id": 608, "start": 2723.2200000000003, "end": 2728.26, "text": " And so there's a link for that, and it's a Netflix official tool, but they don't advertise it,"}, {"id": 609, "start": 2728.26, "end": 2729.46, "text": " which is pretty interesting."}, {"id": 610, "start": 2730.0000000000005, "end": 2730.42, "text": " Interesting, yeah."}, {"id": 611, "start": 2730.5800000000004, "end": 2736.44, "text": " So apparently, unlike where if you have a really bad connection,"}, {"id": 612, "start": 2737.2400000000002, "end": 2739.2200000000003, "text": " Netflix is now popping up a message."}, {"id": 613, "start": 2739.2400000000002, "end": 2744.0600000000004, "text": " If you're on the Comcast network, it says, Comcast is delaying your video,"}, {"id": 614, "start": 2744.3, "end": 2747.2400000000002, "text": " and there's a big court battle going on with that right now."}, {"id": 615, "start": 2747.42, "end": 2749.6800000000003, "text": " And Netflix is pretty much saying, yeah, I don't care."}, {"id": 616, "start": 2750.38, "end": 2753.1200000000003, "text": " We're going to go ahead and tell people that it's your fault."}, {"id": 617, "start": 2754.5600000000004, "end": 2755.5800000000004, "text": " So, yeah."}, {"id": 618, "start": 2756.32, "end": 2764.0200000000004, "text": " There's an interesting tech fail in the world where a guy decided that he was going to text message a whole bunch of people,"}, {"id": 619, "start": 2764.4, "end": 2766.7400000000002, "text": " you know, matches on a dating site."}, {"id": 620, "start": 2766.88, "end": 2767.5200000000004, "text": " Oh, yeah."}, {"id": 621, "start": 2767.5200000000004, "end": 2768.82, "text": " And turned it into a group chat."}, {"id": 622, "start": 2769.2400000000002, "end": 2773.2000000000003, "text": " And then so he basically had 35 girls making fun of him."}, {"id": 623, "start": 2773.38, "end": 2773.6200000000003, "text": " Yeah."}, {"id": 624, "start": 2773.6400000000003, "end": 2776.2000000000003, "text": " Which was an interesting, you know, kind of a tech fail."}, {"id": 625, "start": 2776.92, "end": 2781.5000000000005, "text": " But the one thing that I thought was very interesting to bring up was HP is building a new type of machine."}, {"id": 626, "start": 2782.0600000000004, "end": 2785.0400000000004, "text": " In fact, it's called the machine internally."}, {"id": 627, "start": 2785.0400000000004, "end": 2786.92, "text": " It's in the HP's development area."}, {"id": 628, "start": 2787.0600000000004, "end": 2794.9, "text": " Now, if you have followed anything in technology, HP development labs are, they're kind of hailed, right?"}, {"id": 629, "start": 2794.9, "end": 2798.44, "text": " These guys build the new stuff, right?"}, {"id": 630, "start": 2798.5600000000004, "end": 2799.2000000000003, "text": " Mm-hmm."}, {"id": 631, "start": 2799.2400000000002, "end": 2802.92, "text": " And the new stuff that's coming out in 10 years, it probably went through HP labs."}, {"id": 632, "start": 2803.1800000000003, "end": 2803.38, "text": " Right."}, {"id": 633, "start": 2803.94, "end": 2807.88, "text": " But HP labs has been touting this thing called the mem resistor."}, {"id": 634, "start": 2808.32, "end": 2809.1200000000003, "text": " Mem resistor."}, {"id": 635, "start": 2809.82, "end": 2810.7200000000003, "text": " That's hard to say."}, {"id": 636, "start": 2810.7400000000002, "end": 2811.26, "text": " Yeah, it is."}, {"id": 637, "start": 2811.92, "end": 2817.2400000000002, "text": " It's, but for them, they're feeling that, even though they've been talking about it for 15 years,"}, {"id": 638, "start": 2817.34, "end": 2825.88, "text": " they feel that they're pretty close to this thing and that they will be in a position where they can eliminate hard drives, right?"}, {"id": 639, "start": 2826.1200000000003, "end": 2828.88, "text": " Where you can put everything in a nonstop."}, {"id": 640, "start": 2829.2400000000002, "end": 2831.0000000000005, "text": " Non-volatile RAM."}, {"id": 641, "start": 2831.6800000000003, "end": 2835.38, "text": " So it's fast, really fast, like instant fast."}, {"id": 642, "start": 2835.46, "end": 2836.1400000000003, "text": " I'd like that."}, {"id": 643, "start": 2836.5400000000004, "end": 2844.6600000000003, "text": " So fast, actually, that they're working, the biggest challenge that they're going to have is teaching operating systems how to get data without waiting for it."}, {"id": 644, "start": 2847.32, "end": 2848.3, "text": " That's funny to me."}, {"id": 645, "start": 2848.3, "end": 2851.5600000000004, "text": " It seems like a very interesting idea."}, {"id": 646, "start": 2851.8, "end": 2859.0600000000004, "text": " Basically, they're using, you know, getting rid of copper, using light to move data around within the computer."}, {"id": 647, "start": 2859.06, "end": 2863.5, "text": " They're getting everything off of slow storage and new types of processors."}, {"id": 648, "start": 2863.84, "end": 2865.7, "text": " It's really, really fast."}, {"id": 649, "start": 2866.32, "end": 2869.0, "text": " And that's, I think, is going to be pretty interesting."}, {"id": 650, "start": 2869.66, "end": 2871.58, "text": " So we'll see what happens."}, {"id": 651, "start": 2874.02, "end": 2877.7599999999998, "text": " But what we're going to have to do, I think, is we're going to have Dave talk about later."}, {"id": 652, "start": 2877.94, "end": 2880.36, "text": " But anyway, is that for the next show?"}, {"id": 653, "start": 2880.74, "end": 2880.94, "text": " Okay."}, {"id": 654, "start": 2881.2, "end": 2884.66, "text": " So anyway, end of show here?"}, {"id": 655, "start": 2884.7799999999997, "end": 2885.12, "text": " Wrap up?"}, {"id": 656, "start": 2885.44, "end": 2885.58, "text": " Yeah."}, {"id": 657, "start": 2885.84, "end": 2886.7, "text": " E3 was a lot of fun."}, {"id": 658, "start": 2886.7599999999998, "end": 2887.94, "text": " We're going to put a whole bunch of..."}, {"id": 659, "start": 2887.94, "end": 2888.54, "text": " Sorry for..."}, {"id": 660, "start": 2888.54, "end": 2888.94, "text": " Sorry for..."}, {"id": 661, "start": 2888.94, "end": 2892.16, "text": " Sorry for my foul-ups, and I'll try to do better next week."}, {"id": 662, "start": 2892.16, "end": 2893.26, "text": " I will direct you better next week."}, {"id": 663, "start": 2893.26, "end": 2893.8, "text": " It's my fault."}, {"id": 664, "start": 2893.82, "end": 2894.08, "text": " Thank you."}, {"id": 665, "start": 2894.12, "end": 2894.68, "text": " I need direction."}, {"id": 666, "start": 2894.68, "end": 2895.42, "text": " It's the director's fault."}, {"id": 667, "start": 2895.42, "end": 2895.7200000000003, "text": " Right."}, {"id": 668, "start": 2895.88, "end": 2901.38, "text": " So E3 was a lot of fun, and we'll be writing about that over the next couple of weeks, putting videos and articles."}, {"id": 669, "start": 2901.82, "end": 2904.92, "text": " And so come down and see us at the shop at 510 East Fort Lowell."}, {"id": 670, "start": 2904.98, "end": 2906.84, "text": " Give us a call at 304-8300."}, {"id": 671, "start": 2907.46, "end": 2910.02, "text": " We're here to help you and treat you like a real person in the process."}, {"id": 672, "start": 2910.32, "end": 2912.88, "text": " This has been the Computer Guru Show, and we will see you next week."}, {"id": 673, "start": 2913.02, "end": 2913.4, "text": " Bye-bye."}]} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2016-s8e43/diarization.json b/projects/radio-show/audio-processor/test-data/transcripts/2016-s8e43/diarization.json new file mode 100644 index 0000000..d6a4c84 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2016-s8e43/diarization.json @@ -0,0 +1,681 @@ +{ + "num_speakers": 2, + "speaker_map": { + "HOST": "HOST", + "CALLER": "CALLER" + }, + "turns": [ + { + "speaker": "CALLER", + "start": 0.0, + "end": 40.0, + "confidence": 0.66 + }, + { + "speaker": "HOST", + "start": 35.0, + "end": 55.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 50.0, + "end": 60.0, + "confidence": 0.78 + }, + { + "speaker": "HOST", + "start": 55.0, + "end": 105.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 100.0, + "end": 115.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 110.0, + "end": 140.0, + "confidence": 0.87 + }, + { + "speaker": "CALLER", + "start": 135.0, + "end": 160.0, + "confidence": 0.74 + }, + { + "speaker": "HOST", + "start": 155.0, + "end": 175.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 170.0, + "end": 185.0, + "confidence": 0.77 + }, + { + "speaker": "HOST", + "start": 180.0, + "end": 275.0, + "confidence": 0.87 + }, + { + "speaker": "CALLER", + "start": 270.0, + "end": 295.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 290.0, + "end": 345.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 340.0, + "end": 355.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 350.0, + "end": 525.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 520.0, + "end": 535.0, + "confidence": 0.71 + }, + { + "speaker": "HOST", + "start": 530.0, + "end": 550.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 545.0, + "end": 555.0, + "confidence": 0.78 + }, + { + "speaker": "HOST", + "start": 550.0, + "end": 580.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 575.0, + "end": 605.0, + "confidence": 0.55 + }, + { + "speaker": "HOST", + "start": 600.0, + "end": 1190.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 1185.0, + "end": 1235.0, + "confidence": 0.71 + }, + { + "speaker": "HOST", + "start": 1230.0, + "end": 1295.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 1290.0, + "end": 1300.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 1295.0, + "end": 1335.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 1330.0, + "end": 1345.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 1340.0, + "end": 1380.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 1375.0, + "end": 1395.0, + "confidence": 0.6 + }, + { + "speaker": "HOST", + "start": 1390.0, + "end": 1410.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 1405.0, + "end": 1415.0, + "confidence": 0.7 + }, + { + "speaker": "HOST", + "start": 1410.0, + "end": 1795.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 1790.0, + "end": 1870.0, + "confidence": 0.71 + }, + { + "speaker": "HOST", + "start": 1865.0, + "end": 1950.0, + "confidence": 0.87 + }, + { + "speaker": "CALLER", + "start": 1945.0, + "end": 1960.0, + "confidence": 0.7 + }, + { + "speaker": "HOST", + "start": 1955.0, + "end": 2025.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 2020.0, + "end": 2055.0, + "confidence": 0.48 + }, + { + "speaker": "HOST", + "start": 2050.0, + "end": 2105.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 2100.0, + "end": 2115.0, + "confidence": 0.63 + }, + { + "speaker": "HOST", + "start": 2110.0, + "end": 2145.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 2140.0, + "end": 2150.0, + "confidence": 0.57 + }, + { + "speaker": "HOST", + "start": 2145.0, + "end": 2270.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 2265.0, + "end": 2275.0, + "confidence": 0.77 + }, + { + "speaker": "HOST", + "start": 2270.0, + "end": 2285.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 2280.0, + "end": 2290.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 2285.0, + "end": 2340.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 2335.0, + "end": 2360.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 2355.0, + "end": 2375.0, + "confidence": 0.94 + }, + { + "speaker": "CALLER", + "start": 2370.0, + "end": 2405.0, + "confidence": 0.62 + }, + { + "speaker": "HOST", + "start": 2400.0, + "end": 2415.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 2410.0, + "end": 2425.0, + "confidence": 0.73 + }, + { + "speaker": "HOST", + "start": 2420.0, + "end": 2545.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 2540.0, + "end": 2550.0, + "confidence": 0.65 + }, + { + "speaker": "HOST", + "start": 2545.0, + "end": 2610.0, + "confidence": 0.93 + }, + { + "speaker": "CALLER", + "start": 2605.0, + "end": 2615.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 2610.0, + "end": 2690.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 2685.0, + "end": 2770.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 2765.0, + "end": 2795.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 2790.0, + "end": 2820.0, + "confidence": 0.65 + }, + { + "speaker": "HOST", + "start": 2815.0, + "end": 2855.0, + "confidence": 0.91 + }, + { + "speaker": "CALLER", + "start": 2850.0, + "end": 2860.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 2855.0, + "end": 2870.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 2865.0, + "end": 2885.0, + "confidence": 0.71 + }, + { + "speaker": "HOST", + "start": 2880.0, + "end": 2905.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 2900.0, + "end": 2915.0, + "confidence": 0.62 + }, + { + "speaker": "HOST", + "start": 2910.0, + "end": 2920.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 2915.0, + "end": 2935.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 2930.0, + "end": 2995.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 2990.0, + "end": 3010.0, + "confidence": 0.62 + }, + { + "speaker": "HOST", + "start": 3005.0, + "end": 3035.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 3030.0, + "end": 3060.0, + "confidence": 0.72 + }, + { + "speaker": "HOST", + "start": 3055.0, + "end": 3140.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 3135.0, + "end": 3145.0, + "confidence": 0.67 + }, + { + "speaker": "HOST", + "start": 3140.0, + "end": 3220.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 3215.0, + "end": 3225.0, + "confidence": 0.68 + }, + { + "speaker": "HOST", + "start": 3220.0, + "end": 3235.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 3230.0, + "end": 3255.0, + "confidence": 0.61 + }, + { + "speaker": "HOST", + "start": 3250.0, + "end": 3270.0, + "confidence": 0.9 + }, + { + "speaker": "CALLER", + "start": 3265.0, + "end": 3275.0, + "confidence": 0.58 + }, + { + "speaker": "HOST", + "start": 3270.0, + "end": 3350.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 3345.0, + "end": 3375.0, + "confidence": 0.63 + }, + { + "speaker": "HOST", + "start": 3370.0, + "end": 3395.0, + "confidence": 0.94 + }, + { + "speaker": "CALLER", + "start": 3390.0, + "end": 3435.0, + "confidence": 0.7 + }, + { + "speaker": "HOST", + "start": 3430.0, + "end": 3970.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 3965.0, + "end": 3975.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 3970.0, + "end": 3995.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 3990.0, + "end": 4030.0, + "confidence": 0.68 + }, + { + "speaker": "HOST", + "start": 4025.0, + "end": 4215.0, + "confidence": 0.92 + }, + { + "speaker": "CALLER", + "start": 4210.0, + "end": 4225.0, + "confidence": 0.69 + }, + { + "speaker": "HOST", + "start": 4220.0, + "end": 4240.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 4235.0, + "end": 4245.0, + "confidence": 0.71 + }, + { + "speaker": "HOST", + "start": 4240.0, + "end": 4385.0, + "confidence": 0.87 + }, + { + "speaker": "CALLER", + "start": 4380.0, + "end": 4400.0, + "confidence": 0.64 + }, + { + "speaker": "HOST", + "start": 4395.0, + "end": 4425.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 4420.0, + "end": 4430.0, + "confidence": 0.71 + }, + { + "speaker": "HOST", + "start": 4425.0, + "end": 4515.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 4510.0, + "end": 4525.0, + "confidence": 0.78 + }, + { + "speaker": "HOST", + "start": 4520.0, + "end": 4575.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 4570.0, + "end": 4580.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 4575.0, + "end": 4680.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 4675.0, + "end": 4715.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 4710.0, + "end": 4790.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 4785.0, + "end": 4795.0, + "confidence": 0.83 + }, + { + "speaker": "HOST", + "start": 4790.0, + "end": 4805.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 4800.0, + "end": 4815.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 4810.0, + "end": 4935.0, + "confidence": 0.92 + }, + { + "speaker": "CALLER", + "start": 4930.0, + "end": 4940.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 4935.0, + "end": 4945.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 4940.0, + "end": 4950.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 4945.0, + "end": 5080.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 5075.0, + "end": 5085.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 5080.0, + "end": 5220.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 5215.0, + "end": 5225.0, + "confidence": 0.77 + }, + { + "speaker": "HOST", + "start": 5220.0, + "end": 5325.0, + "confidence": 0.95 + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2016-s8e43/transcript.json b/projects/radio-show/audio-processor/test-data/transcripts/2016-s8e43/transcript.json new file mode 100644 index 0000000..3eb930e --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2016-s8e43/transcript.json @@ -0,0 +1 @@ +{"duration": 5325.575625, "language": "en", "segments": [{"id": 1, "start": 0.0, "end": 6.68, "text": " computer running slow has your machine somehow acquired a life of its own"}, {"id": 2, "start": 6.68, "end": 13.52, "text": " or do you simply desire a deeper and more meaningful connection be one with your operating"}, {"id": 3, "start": 13.52, "end": 22.04, "text": " system it's arizona's computer guru mike swanson and his show starts now listen in chat in and"}, {"id": 4, "start": 22.04, "end": 27.7, "text": " watch live streaming at gurushow.com want your voice to be heard call in with your questions"}, {"id": 5, "start": 27.7, "end": 37.44, "text": " and riddles the number is 520-790-2040 this is the computer guru show on am 10 30 kboi the voice"}, {"id": 6, "start": 37.44, "end": 42.519999999999996, "text": " hello and welcome to the computer guru show my name is mike here to deal with your technology"}, {"id": 7, "start": 42.519999999999996, "end": 47.58, "text": " needs and treat you like a person in the process 790-2040 if you'd like to be part of the show"}, {"id": 8, "start": 47.58, "end": 54.22, "text": " that's 520-790-2040 what are you laughing at over there there's a joke about master sergeants and"}, {"id": 9, "start": 54.22, "end": 57.68, "text": " coffee mugs and stuff it's fine okay you're so chipper over there"}, {"id": 10, "start": 57.7, "end": 65.16, "text": " i'm chipper chipper that's i tell me i'm telling you it's all fake well yeah because uh one this"}, {"id": 11, "start": 65.16, "end": 72.14, "text": " giant mug of coffee right here and secondly i was that was very not well the last couple of days i"}, {"id": 12, "start": 72.14, "end": 79.66, "text": " had like the flu or something and um i just forced myself to sleep a lot and take vitamins and here i"}, {"id": 13, "start": 79.66, "end": 86.94, "text": " am nearly human yeah that's really all you can do when something like that hits you i guess i'm"}, {"id": 14, "start": 86.94, "end": 87.68, "text": " trying i'm trying to sleep a lot and i'm trying to sleep a lot and i'm trying to sleep a lot and"}, {"id": 15, "start": 87.7, "end": 94.0, "text": " trying to be human be human yeah we'll see if i can remain human and nice throughout the the rest"}, {"id": 16, "start": 94.0, "end": 100.26, "text": " of the next two hours can you adult too i'm gonna try to adult adulting is so hard i don't like to"}, {"id": 17, "start": 100.26, "end": 107.26, "text": " adult though i don't think anyone does do i have to i don't want to no adulting not cool"}, {"id": 18, "start": 107.26, "end": 115.06, "text": " i know right this is really good coffee it's guatemalan apparently apparently yeah that's"}, {"id": 19, "start": 115.06, "end": 117.5, "text": " the little bag you said right on okay"}, {"id": 20, "start": 117.7, "end": 125.26, "text": " so uh let's go ahead and talk about stuff man uh stuff and things stuff and things there's all"}, {"id": 21, "start": 125.26, "end": 131.74, "text": " kinds of things and stuff that's in the news oh yeah there is yeah i mean all of it is sort of"}, {"id": 22, "start": 131.74, "end": 138.22, "text": " like it's doom and gloom today it's the whole world is just falling apart well i unplugged"}, {"id": 23, "start": 138.22, "end": 143.48000000000002, "text": " for about a week and i come back online it's like the world is imploding it's just caving in on"}, {"id": 24, "start": 143.48000000000002, "end": 147.68, "text": " itself no news was good none of it"}, {"id": 25, "start": 147.70000000000002, "end": 152.32000000000002, "text": " just stop watching the news i don't watch the news though i don't even watch tv"}, {"id": 26, "start": 152.32000000000002, "end": 160.66000000000003, "text": " at all it's the internet well that's even worse it's the internet yeah it's even internets yeah"}, {"id": 27, "start": 160.66000000000003, "end": 164.54000000000002, "text": " oh let's see should we do that should we do the call first and then talk about doom and gloom"}, {"id": 28, "start": 164.54000000000002, "end": 169.10000000000002, "text": " sure all right let's go ahead and talk to bruce hello bruce how are you doing well how are you"}, {"id": 29, "start": 169.10000000000002, "end": 175.22000000000003, "text": " this morning oh well i'm good until we get to the gloomy part well let's just talk let's just talk"}, {"id": 30, "start": 175.22000000000003, "end": 176.58, "text": " for a second all right"}, {"id": 31, "start": 177.70000000000002, "end": 184.04000000000002, "text": " on tv you often see the advertisements for a so-called fix-it stick a little"}, {"id": 32, "start": 184.04000000000002, "end": 191.38000000000002, "text": " uh jump drive kind of thing you put into your usb port right does that actually work what does that"}, {"id": 33, "start": 191.38000000000002, "end": 200.62, "text": " do if it if it does it doesn't so so uh it's just a hype is that what it is i mean it does some"}, {"id": 34, "start": 200.62, "end": 207.48000000000002, "text": " things it does like removal of temporary internet files it does uh some others basic cleanup"}, {"id": 35, "start": 207.70000000000002, "end": 214.50000000000003, "text": " type stuff on your machine and most often what we've seen because i've bought i've purchased a"}, {"id": 36, "start": 214.50000000000003, "end": 220.4, "text": " few of those and uh just to see what they do and most of them they're like hey look we've made your"}, {"id": 37, "start": 220.4, "end": 225.20000000000002, "text": " machine a little bit faster by deleting temporary internet files or otherwise modifying the machine"}, {"id": 38, "start": 225.20000000000002, "end": 229.48000000000002, "text": " in such a way to make it just a little bit faster momentarily and then there's an upsell"}, {"id": 39, "start": 229.48000000000002, "end": 236.04000000000002, "text": " so they're like hey you you probably want to get this particular you know off-brand antivirus or"}, {"id": 40, "start": 236.04000000000002, "end": 237.00000000000003, "text": " you want to be able to"}, {"id": 41, "start": 237.70000000000002, "end": 243.94000000000003, "text": " um if you need help you can use our you know our tech support which has an additional fee to it"}, {"id": 42, "start": 243.94000000000003, "end": 253.46, "text": " um but none of it seems anything that's worth the the cost there and and not cost monetarily"}, {"id": 43, "start": 253.46, "end": 261.94, "text": " necessarily um my view on all of these things is if you want to make your computer faster or"}, {"id": 44, "start": 261.94, "end": 267.6, "text": " you know behave better it requires less things to do that"}, {"id": 45, "start": 267.7, "end": 277.5, "text": " so now in conjunction with that oftentimes you'll see that uh registries end up having a lot of uh"}, {"id": 46, "start": 277.5, "end": 283.7, "text": " tsr kind of programs uh that they allow that allows to keep running in the background"}, {"id": 47, "start": 283.7, "end": 289.53999999999996, "text": " is there a way to clean that up so that they don't that they don't run as it terminate you"}, {"id": 48, "start": 289.53999999999996, "end": 295.64, "text": " know the stay resident program which version of windows are we talking about windows 7"}, {"id": 49, "start": 295.64, "end": 296.9, "text": " okay"}, {"id": 50, "start": 297.7, "end": 304.09999999999997, "text": " in windows 7 you can run something like ms config to to deal with that stuff um you can turn on and"}, {"id": 51, "start": 304.09999999999997, "end": 309.86, "text": " off different either startup programs or services just be careful if you're doing that type of thing"}, {"id": 52, "start": 309.86, "end": 317.88, "text": " um in windows 10 it's a different animal to do that um you change it in the task manager you can"}, {"id": 53, "start": 317.88, "end": 324.98, "text": " define which programs start or do not start um in that section at least for windows 10"}, {"id": 54, "start": 324.98, "end": 327.53999999999996, "text": " um you should never mess with the program if you're doing that type of thing um you should never"}, {"id": 55, "start": 327.53999999999996, "end": 327.68, "text": " mess with the program if you're doing that type of thing um you should never mess with the program"}, {"id": 56, "start": 327.7, "end": 333.08, "text": " around in the registry and any utility that tells you that it's a registry optimizer or cleaner"}, {"id": 57, "start": 333.08, "end": 341.76, "text": " is to no don't do it there's trouble okay last question and that is microsoft essentials is"}, {"id": 58, "start": 341.76, "end": 349.46, "text": " touted as a program to run you know for an antivirus and for a protection type of program"}, {"id": 59, "start": 349.46, "end": 353.76, "text": " instead of some of the others what's your evaluation of microsoft essentials"}, {"id": 60, "start": 353.76, "end": 357.09999999999997, "text": " essentials is okay i mean it's not great"}, {"id": 61, "start": 357.1, "end": 361.8, "text": " but as long as you have like malwarebytes the paid version of malwarebytes running then you're fine"}, {"id": 62, "start": 361.8, "end": 370.88, "text": " okay thank you very much all right have a great day sir you too bye that was easy yeah well for you"}, {"id": 63, "start": 370.88, "end": 377.8, "text": " i'm sitting here i'm like can't just clean up do some of that well yeah just clean up there just"}, {"id": 64, "start": 377.8, "end": 381.6, "text": " all the things that those sticks do that you have built-in utilities to deal with"}, {"id": 65, "start": 381.92, "end": 386.94, "text": " i mean so there's a free version of everything that"}, {"id": 66, "start": 387.1, "end": 393.38, "text": " they do out there in the wild i know we've been talking about doing like a useful utilities"}, {"id": 67, "start": 393.38, "end": 399.28000000000003, "text": " episode maybe we'll do that next week where we can get a list of tools that you should have"}, {"id": 68, "start": 399.28000000000003, "end": 404.6, "text": " to make your machine run better well that'll be nicer than doom and gloom that's for sure right"}, {"id": 69, "start": 404.6, "end": 410.84000000000003, "text": " well the initial thing i was trying to get out with the caller was that there it's like every"}, {"id": 70, "start": 410.84000000000003, "end": 415.92, "text": " time that you add a piece of software to your computer you're adding extra load so"}, {"id": 71, "start": 417.1, "end": 423.56, "text": " there it's sort of this this idea that if i install this extra software my machine will get"}, {"id": 72, "start": 423.56, "end": 428.84000000000003, "text": " faster and that's sort of not the way that that works it's the more software you take off right"}, {"id": 73, "start": 428.84000000000003, "end": 434.82000000000005, "text": " the faster your machine gets because it's a lighter system which explains why mine is so"}, {"id": 74, "start": 434.82000000000005, "end": 441.06, "text": " slow right so the idea of putting things on there like i'm gonna go buy this piece of software"}, {"id": 75, "start": 441.06, "end": 446.36, "text": " there is no software that you can put on your computer that makes it better"}, {"id": 76, "start": 447.1, "end": 452.90000000000003, "text": " there's software that makes it safer there's software that makes it more functional or useful"}, {"id": 77, "start": 452.90000000000003, "end": 460.88, "text": " but none of them make it faster so it's yeah don't don't don't fall for the hype there is no magic"}, {"id": 78, "start": 460.88, "end": 471.22, "text": " stick so many things you got nothing on that one i you know there's there's i'm not totally here"}, {"id": 79, "start": 471.22, "end": 476.52000000000004, "text": " today yeah more coffee there's day quill there's coffee i call for more coffee keep the coffee"}, {"id": 80, "start": 477.1, "end": 483.76000000000005, "text": " it's all good yeah it's so tasty moving on yeah let's move on to a sponsor message"}, {"id": 81, "start": 483.76000000000005, "end": 489.86, "text": " let's do that yeah because that's a great segue it's so best segue it's so smooth"}, {"id": 82, "start": 489.86, "end": 496.34000000000003, "text": " this is the smoothest thing i've ever done like this coffee like this coffee and if you'd like"}, {"id": 83, "start": 496.34000000000003, "end": 501.34000000000003, "text": " your engine to run smooth you call up perfection out of works perfection out of works.com if you"}, {"id": 84, "start": 501.34000000000003, "end": 506.98, "text": " want to check out their new website mike's great dude i i i really like talking to him"}, {"id": 85, "start": 507.1, "end": 512.76, "text": " and uh he's he's a funny dude so you should you should definitely talk to him um go down there"}, {"id": 86, "start": 512.76, "end": 516.7, "text": " get your 26 point inspection for free it's the middle of summer i'm sure your car could use like"}, {"id": 87, "start": 516.7, "end": 524.26, "text": " a you know coolant flush or or whatever something i mean i've seen so many cars broken on the side"}, {"id": 88, "start": 524.26, "end": 531.14, "text": " of the road don't be that person oh man that oh that's so bad that is terrifying when it's 115"}, {"id": 89, "start": 531.14, "end": 537.02, "text": " oh no thank you it is is really scary to think that you know cars broken down"}, {"id": 90, "start": 537.1, "end": 542.0600000000001, "text": " middle of summer no air conditioning you're probably not me and don't have water in your"}, {"id": 91, "start": 542.0600000000001, "end": 547.3000000000001, "text": " trunk yeah because i always have water in the trunk so go go to perfection out of works get"}, {"id": 92, "start": 547.3000000000001, "end": 551.82, "text": " it checked out so you're not broken down on the side of the road right and potentially dying in"}, {"id": 93, "start": 551.82, "end": 556.16, "text": " your car so if you don't want to die go to perfection out of works that's how this works"}, {"id": 94, "start": 556.16, "end": 563.1, "text": " that's the best plug ever right having a working car could save your life in 117 degree weather"}, {"id": 95, "start": 563.1, "end": 566.48, "text": " yeah so yeah you don't you don't want to die"}, {"id": 96, "start": 567.1, "end": 569.0, "text": " perfection out of works we'll be right back"}, {"id": 97, "start": 569.0, "end": 585.78, "text": " your computer guru mike swanson is here to help you tame that beast of a machine"}, {"id": 98, "start": 585.78, "end": 591.0400000000001, "text": " join the chat right now at gurushow.com or call in this is the computer guru"}, {"id": 99, "start": 591.0400000000001, "end": 596.0600000000001, "text": " i'm nerdy and the extreme and whiter than sour cream"}, {"id": 100, "start": 596.0600000000001, "end": 596.88, "text": " i was in a"}, {"id": 101, "start": 597.1, "end": 601.38, "text": " club and glee club and even the chess team only question i never thought was hard what do i like"}, {"id": 102, "start": 601.38, "end": 605.72, "text": " her or do i like my card spend every weekend at the renaissance fair got my name on my underwear"}, {"id": 103, "start": 605.72, "end": 610.86, "text": " welcome back to the computer guru show my name is mike here to deal with your technology needs"}, {"id": 104, "start": 610.86, "end": 618.72, "text": " and treat you like a person in the process 790 2040 just like mike hello mike how are you well"}, {"id": 105, "start": 618.72, "end": 624.24, "text": " good morning good morning sir and i hope you're feeling better and uh as always i love the program"}, {"id": 106, "start": 624.24, "end": 627.08, "text": " um i've got a windows uh machine i've got a windows machine i've got a windows machine i've got a"}, {"id": 107, "start": 627.1, "end": 629.9, "text": " windows machine that uh... i recently put ten on"}, {"id": 108, "start": 629.9, "end": 633.02, "text": " it's been working pretty darn good i'm pretty pleased with it"}, {"id": 109, "start": 633.02, "end": 638.1, "text": " uh... but what's been happening here recently have only had installed for about two weeks"}, {"id": 110, "start": 638.1, "end": 643.72, "text": " uh... there's a window windows defender uh... property comes up and says you are not protected"}, {"id": 111, "start": 643.72, "end": 644.76, "text": " and i did"}, {"id": 112, "start": 644.76, "end": 650.64, "text": " uh... which you had instructed before on the radio program you've said before you and the"}, {"id": 113, "start": 650.64, "end": 652.0, "text": " windows pen"}, {"id": 114, "start": 652.0, "end": 655.12, "text": " to disable or get rid of the malware bites"}, {"id": 115, "start": 655.12, "end": 655.94, "text": " uh..."}, {"id": 116, "start": 655.94, "end": 662.5400000000001, "text": " excuse me, I had the Malwarebytes Premium, and I took it off and then I reinstalled it."}, {"id": 117, "start": 662.9000000000001, "end": 668.86, "text": " And it says that you need to go to the maintenance and security area and turn your Defender on."}, {"id": 118, "start": 668.98, "end": 671.5, "text": " Well, I've tried to do that, and it will not turn back on."}, {"id": 119, "start": 672.1, "end": 678.34, "text": " And then I've gone back into the Malwarebytes to see if it's telling the Windows Defender to stay off."}, {"id": 120, "start": 678.6800000000001, "end": 679.82, "text": " So I'm kind of confused."}, {"id": 121, "start": 679.9200000000001, "end": 682.3800000000001, "text": " Do I need to delete Malwarebytes?"}, {"id": 122, "start": 682.6800000000001, "end": 683.5, "text": " Which one is better?"}, {"id": 123, "start": 683.5, "end": 686.22, "text": " And I guess my question is, do I even need to worry about it?"}, {"id": 124, "start": 686.78, "end": 687.98, "text": " Well, there are two different things."}, {"id": 125, "start": 688.28, "end": 690.68, "text": " So one doesn't supplant the other."}, {"id": 126, "start": 692.14, "end": 697.32, "text": " So the Defender in Windows 10 is the antivirus that's built in."}, {"id": 127, "start": 698.32, "end": 702.08, "text": " And Malwarebytes would not tell the Defender not to run."}, {"id": 128, "start": 702.38, "end": 704.36, "text": " So it means that there's something else going on there."}, {"id": 129, "start": 704.9, "end": 711.18, "text": " Whereas maybe there was another antivirus that was on the machine that something is stuck in that regard,"}, {"id": 130, "start": 711.18, "end": 713.46, "text": " where it thinks that there's another antivirus on."}, {"id": 131, "start": 713.5, "end": 715.86, "text": " And there's a Defender that stays disabled."}, {"id": 132, "start": 716.7, "end": 720.54, "text": " Well, I've got Spywarebot, and I've got Malwarebytes."}, {"id": 133, "start": 720.72, "end": 721.72, "text": " And that's pretty much it."}, {"id": 134, "start": 721.86, "end": 724.08, "text": " So is there a way that I can go in and find out?"}, {"id": 135, "start": 725.86, "end": 728.82, "text": " I mean, I tried scanning, and I don't see anything."}, {"id": 136, "start": 729.14, "end": 730.92, "text": " And the machine's not acting weird."}, {"id": 137, "start": 730.98, "end": 732.2, "text": " It's not doing anything unusual."}, {"id": 138, "start": 732.98, "end": 737.68, "text": " I mean, I would assume that if I had a virus, if there was something trying to keep Defender off,"}, {"id": 139, "start": 737.7, "end": 740.44, "text": " it would also try to infect my machine some other way."}, {"id": 140, "start": 741.14, "end": 742.12, "text": " Well, not necessarily."}, {"id": 141, "start": 743.5, "end": 748.06, "text": " But I don't think that this is an infection that's causing your problem with Defender."}, {"id": 142, "start": 748.18, "end": 750.06, "text": " I think that there's something else going on there."}, {"id": 143, "start": 750.34, "end": 751.56, "text": " You mean just a conflict?"}, {"id": 144, "start": 751.84, "end": 757.4, "text": " Yeah, a remnant of some type before your Windows 10 upgrade may be affecting it now."}, {"id": 145, "start": 758.08, "end": 759.92, "text": " Now, Microsoft makes a fix-it for this."}, {"id": 146, "start": 760.46, "end": 765.24, "text": " So you can go to the Microsoft site and search for the Windows Defender fix-it for Windows 10."}, {"id": 147, "start": 765.78, "end": 772.7, "text": " And it resets Windows Defender and basically forces it to reinstall itself."}, {"id": 148, "start": 773.28, "end": 773.42, "text": " Okay."}, {"id": 149, "start": 773.5, "end": 775.02, "text": " And that was going to be my next step."}, {"id": 150, "start": 775.06, "end": 779.62, "text": " But I thought I'd ask you first, because I thought, well, maybe I should delete malware bytes"}, {"id": 151, "start": 779.62, "end": 781.86, "text": " and then see if Defender comes on."}, {"id": 152, "start": 781.9, "end": 784.48, "text": " But that's a pain in the rear, and I didn't want to go that route anyway."}, {"id": 153, "start": 784.58, "end": 787.84, "text": " If anything, I'd get rid of Spybot, because Spybot is sort of pointless these days."}, {"id": 154, "start": 788.48, "end": 788.68, "text": " Really?"}, {"id": 155, "start": 788.88, "end": 789.06, "text": " Yeah."}, {"id": 156, "start": 789.9, "end": 793.18, "text": " It used to be a good program, but it's..."}, {"id": 157, "start": 793.18, "end": 797.56, "text": " Well, I do have the free version, so maybe that's part of the problem."}, {"id": 158, "start": 797.56, "end": 800.92, "text": " But how come Spybot, you just don't like it?"}, {"id": 159, "start": 801.72, "end": 802.08, "text": " Yeah."}, {"id": 160, "start": 802.16, "end": 803.34, "text": " I don't think it really serves."}, {"id": 161, "start": 803.34, "end": 805.26, "text": " It doesn't serve as much of a purpose anymore as it used to."}, {"id": 162, "start": 806.1, "end": 810.72, "text": " It used to have some very cool features that were really good in the Windows XP days."}, {"id": 163, "start": 811.6, "end": 813.6800000000001, "text": " But since then, it's sort of been pointless."}, {"id": 164, "start": 814.4, "end": 815.34, "text": " Don't get me wrong."}, {"id": 165, "start": 815.5, "end": 821.24, "text": " It does a decent job at detection, but with malware bytes on there, it's sort of redundant."}, {"id": 166, "start": 822.4, "end": 828.96, "text": " And then if I was to install any other antivirus programs besides the malware bytes,"}, {"id": 167, "start": 828.96, "end": 831.96, "text": " for example, a while back I had a machine where I had Avast,"}, {"id": 168, "start": 831.96, "end": 837.22, "text": " and I had three or four different ones, and boy, what a mess."}, {"id": 169, "start": 837.34, "end": 837.9000000000001, "text": " Yeah, don't do that."}, {"id": 170, "start": 837.9000000000001, "end": 838.5600000000001, "text": " It seemed to be conflicting."}, {"id": 171, "start": 839.08, "end": 841.82, "text": " You're only allowed to have one antivirus on the machine."}, {"id": 172, "start": 842.72, "end": 849.0400000000001, "text": " So does Defender then not conflict with an aftermarket, per se,"}, {"id": 173, "start": 849.26, "end": 853.58, "text": " I guess a lack of a better term, antivirus program?"}, {"id": 174, "start": 853.96, "end": 856.72, "text": " Because Defender is embedded in Windows 10, right?"}, {"id": 175, "start": 856.72, "end": 856.8000000000001, "text": " Right."}, {"id": 176, "start": 856.8000000000001, "end": 861.7800000000001, "text": " And Defender will disable itself if it detects any other type of antivirus on the machine."}, {"id": 177, "start": 862.9200000000001, "end": 867.14, "text": " So you cannot have multiple antiviruses on a Windows computer."}, {"id": 178, "start": 867.84, "end": 870.22, "text": " Well, I had malware bytes on my 7 machine."}, {"id": 179, "start": 870.6, "end": 871.74, "text": " Malware bytes is not antivirus."}, {"id": 180, "start": 871.86, "end": 872.5400000000001, "text": " It's anti-malware."}, {"id": 181, "start": 872.96, "end": 873.24, "text": " Ah."}, {"id": 182, "start": 873.24, "end": 874.58, "text": " So those are two different things."}, {"id": 183, "start": 875.02, "end": 875.7, "text": " Okay, got it."}, {"id": 184, "start": 875.94, "end": 878.0400000000001, "text": " I guess I'm confused as to what is what."}, {"id": 185, "start": 878.7800000000001, "end": 879.02, "text": " Right."}, {"id": 186, "start": 879.14, "end": 885.9000000000001, "text": " So antivirus would be something like Kaspersky, ESET, Avast."}, {"id": 187, "start": 886.46, "end": 887.62, "text": " Let's see what else we got."}, {"id": 188, "start": 888.62, "end": 889.46, "text": " What are the other ones?"}, {"id": 189, "start": 889.84, "end": 890.2800000000001, "text": " McAfee."}, {"id": 190, "start": 891.08, "end": 891.48, "text": " Norton."}, {"id": 191, "start": 891.58, "end": 891.9000000000001, "text": " Norton."}, {"id": 192, "start": 892.6800000000001, "end": 893.0600000000001, "text": " Okay."}, {"id": 193, "start": 893.4000000000001, "end": 897.8000000000001, "text": " Yeah, so any of those types of things would be considered antivirus,"}, {"id": 194, "start": 897.9000000000001, "end": 899.2800000000001, "text": " and Defender will disable itself."}, {"id": 195, "start": 899.7, "end": 903.64, "text": " So what's the difference in terminology or in actual theory?"}, {"id": 196, "start": 903.9000000000001, "end": 906.0600000000001, "text": " What is malware versus virus?"}, {"id": 197, "start": 906.5600000000001, "end": 911.1800000000001, "text": " So viral infections are they attack a different portion of the machine."}, {"id": 198, "start": 911.9000000000001, "end": 916.2800000000001, "text": " So they're basically self-replicating."}, {"id": 199, "start": 917.3000000000001, "end": 919.08, "text": " Basically, that's what makes them a virus, that they replicate."}, {"id": 200, "start": 919.76, "end": 920.0400000000001, "text": " Okay."}, {"id": 201, "start": 920.04, "end": 924.48, "text": " And there's a few things that qualify as viruses these days"}, {"id": 202, "start": 924.48, "end": 930.4, "text": " that wouldn't be picked up by any anti-malware."}, {"id": 203, "start": 930.5799999999999, "end": 932.86, "text": " But there's a whole lot of overlap now."}, {"id": 204, "start": 932.9599999999999, "end": 936.9599999999999, "text": " So the anti-malware and the antivirus are both looking for the same types of things,"}, {"id": 205, "start": 936.9599999999999, "end": 938.4399999999999, "text": " but they're looking in different ways."}, {"id": 206, "start": 939.12, "end": 942.86, "text": " So basically, the antivirus protects the core of the operating system,"}, {"id": 207, "start": 943.36, "end": 947.4599999999999, "text": " disallows certain types of reads and writes to different areas of the machine,"}, {"id": 208, "start": 947.4599999999999, "end": 949.4599999999999, "text": " and is also looking for certain patterns."}, {"id": 209, "start": 950.04, "end": 951.42, "text": " That would be considered viral."}, {"id": 210, "start": 952.0, "end": 957.24, "text": " Whereas the anti-malware is almost entirely behavior-based."}, {"id": 211, "start": 957.8, "end": 962.26, "text": " It's looking for programs that don't necessarily fit the term of virus,"}, {"id": 212, "start": 962.56, "end": 967.12, "text": " but are looking for any program that's doing suspicious things."}, {"id": 213, "start": 967.28, "end": 968.48, "text": " Like Trojans and..."}, {"id": 214, "start": 969.64, "end": 971.9, "text": " The virus will get Trojans."}, {"id": 215, "start": 972.04, "end": 973.52, "text": " The antiviral will get Trojans."}, {"id": 216, "start": 973.74, "end": 977.52, "text": " It's things like CryptoLocker and stuff like that,"}, {"id": 217, "start": 977.52, "end": 979.24, "text": " where you've got a program that just..."}, {"id": 218, "start": 979.24, "end": 979.26, "text": " Okay."}, {"id": 219, "start": 979.26, "end": 979.3199999999999, "text": " Okay."}, {"id": 220, "start": 979.3199999999999, "end": 979.36, "text": " Okay."}, {"id": 221, "start": 979.36, "end": 979.38, "text": " Okay."}, {"id": 222, "start": 979.38, "end": 979.4, "text": " Okay."}, {"id": 223, "start": 979.4, "end": 979.42, "text": " Okay."}, {"id": 224, "start": 979.42, "end": 979.4399999999999, "text": " Okay."}, {"id": 225, "start": 979.4399999999999, "end": 979.4599999999999, "text": " Okay."}, {"id": 226, "start": 979.4599999999999, "end": 979.48, "text": " Okay."}, {"id": 227, "start": 979.48, "end": 979.5, "text": " Okay."}, {"id": 228, "start": 979.5, "end": 979.52, "text": " Okay."}, {"id": 229, "start": 979.52, "end": 979.54, "text": " Okay."}, {"id": 230, "start": 979.54, "end": 979.5799999999999, "text": " Okay."}, {"id": 231, "start": 979.5799999999999, "end": 979.64, "text": " Okay."}, {"id": 232, "start": 980.04, "end": 980.0799999999999, "text": " Okay."}, {"id": 233, "start": 980.0799999999999, "end": 980.0999999999999, "text": " Okay."}, {"id": 234, "start": 980.0999999999999, "end": 980.12, "text": " Okay."}, {"id": 235, "start": 980.12, "end": 980.14, "text": " Okay."}, {"id": 236, "start": 980.14, "end": 980.16, "text": " Okay."}, {"id": 237, "start": 980.16, "end": 980.18, "text": " Okay."}, {"id": 238, "start": 980.18, "end": 980.1999999999999, "text": " Okay."}, {"id": 239, "start": 980.1999999999999, "end": 980.2199999999999, "text": " Okay."}, {"id": 240, "start": 980.2199999999999, "end": 980.24, "text": " Okay."}, {"id": 241, "start": 980.24, "end": 980.26, "text": " Okay."}, {"id": 242, "start": 980.26, "end": 980.28, "text": " Okay."}, {"id": 243, "start": 980.28, "end": 980.3, "text": " Okay."}, {"id": 244, "start": 980.3, "end": 980.3199999999999, "text": " Okay."}, {"id": 245, "start": 980.3199999999999, "end": 980.3399999999999, "text": " Okay."}, {"id": 246, "start": 980.3399999999999, "end": 980.36, "text": " Okay."}, {"id": 247, "start": 980.36, "end": 980.38, "text": " Okay."}, {"id": 248, "start": 980.38, "end": 980.4, "text": " Okay."}, {"id": 249, "start": 980.4, "end": 980.42, "text": " Okay."}, {"id": 250, "start": 980.42, "end": 980.4599999999999, "text": " Okay."}, {"id": 251, "start": 980.4599999999999, "end": 980.48, "text": " Okay."}, {"id": 252, "start": 980.48, "end": 980.5, "text": " Okay."}, {"id": 253, "start": 980.5, "end": 980.52, "text": " Okay."}, {"id": 254, "start": 980.52, "end": 980.54, "text": " Okay."}, {"id": 255, "start": 980.54, "end": 980.5799999999999, "text": " Okay."}, {"id": 256, "start": 980.5799999999999, "end": 980.5999999999999, "text": " Okay."}, {"id": 257, "start": 980.5999999999999, "end": 980.62, "text": " Okay."}, {"id": 258, "start": 980.62, "end": 980.64, "text": " Okay."}, {"id": 259, "start": 980.64, "end": 980.66, "text": " Okay."}, {"id": 260, "start": 980.66, "end": 980.6999999999999, "text": " Okay."}, {"id": 261, "start": 980.6999999999999, "end": 980.7199999999999, "text": " Okay."}, {"id": 262, "start": 980.7199999999999, "end": 980.74, "text": " Okay."}, {"id": 263, "start": 996.74, "end": 996.78, "text": " Okay."}, {"id": 264, "start": 996.78, "end": 996.8, "text": " Okay."}, {"id": 265, "start": 996.8, "end": 996.8199999999999, "text": " Okay."}, {"id": 266, "start": 996.8199999999999, "end": 996.8399999999999, "text": " Okay."}, {"id": 267, "start": 996.8399999999999, "end": 996.86, "text": " Okay."}, {"id": 268, "start": 996.86, "end": 996.9, "text": " Okay."}, {"id": 269, "start": 996.9, "end": 996.92, "text": " Okay."}, {"id": 270, "start": 996.92, "end": 996.98, "text": " Okay."}, {"id": 271, "start": 996.98, "end": 997.0, "text": " Okay."}, {"id": 272, "start": 997.0, "end": 997.02, "text": " Okay."}, {"id": 273, "start": 997.02, "end": 997.06, "text": " Okay."}, {"id": 274, "start": 997.06, "end": 997.12, "text": " Okay."}, {"id": 275, "start": 997.12, "end": 997.14, "text": " Okay."}, {"id": 276, "start": 997.14, "end": 997.1999999999999, "text": " Okay."}, {"id": 277, "start": 997.1999999999999, "end": 997.26, "text": " Okay."}, {"id": 278, "start": 997.26, "end": 997.3, "text": " Okay."}, {"id": 279, "start": 997.3, "end": 997.36, "text": " Okay."}, {"id": 280, "start": 997.36, "end": 997.38, "text": " Okay."}, {"id": 281, "start": 997.38, "end": 997.42, "text": " Okay."}, {"id": 282, "start": 997.42, "end": 997.4399999999999, "text": " Okay."}, {"id": 283, "start": 997.4399999999999, "end": 997.4599999999999, "text": " Okay."}, {"id": 284, "start": 997.4599999999999, "end": 997.5, "text": " Okay."}, {"id": 285, "start": 997.5, "end": 997.52, "text": " Okay."}, {"id": 286, "start": 997.52, "end": 997.54, "text": " Okay."}, {"id": 287, "start": 997.5400000000001, "end": 1004.32, "text": " or something one of the flash player yeah uh i think it was and i i x'd it i disabled it and it"}, {"id": 288, "start": 1004.32, "end": 1009.2800000000001, "text": " came back like three times i thought and since then i think is when this defender thing has"}, {"id": 289, "start": 1009.2800000000001, "end": 1016.7400000000001, "text": " started well it may be i would look around i mean you can ask the machine what kind of antivirus it"}, {"id": 290, "start": 1016.7400000000001, "end": 1021.72, "text": " has on there if not you can schedule a point with us and we can get right well that's what i was"}, {"id": 291, "start": 1021.72, "end": 1026.18, "text": " going to say you guys are pretty booked up but uh i'll try the microsoft website first for the"}, {"id": 292, "start": 1026.18, "end": 1030.3400000000001, "text": " defender fix that you uh cited and if that doesn't do the trick then i'll give you guys a"}, {"id": 293, "start": 1030.3400000000001, "end": 1037.26, "text": " call what's your what's your phone number at your shop uh 304-8300 beautiful all right i got that"}, {"id": 294, "start": 1037.26, "end": 1042.28, "text": " what is it again so i can write it down 304-8300 thanks mike i appreciate it yeah that sounds like"}, {"id": 295, "start": 1042.28, "end": 1049.42, "text": " a commercial hey you guys have a great day bye see you and remember choose uh choose perfection"}, {"id": 296, "start": 1049.42, "end": 1055.46, "text": " auto works or death that's perfection auto works or death"}, {"id": 297, "start": 1055.46, "end": 1056.16, "text": " the choice"}, {"id": 298, "start": 1056.16, "end": 1064.8000000000002, "text": " is yours that's right thanks mike oh man yeah so the antiviral thing it's important that you"}, {"id": 299, "start": 1064.8000000000002, "end": 1070.74, "text": " have some it's very important you don't have more than one because the analogy i use is that"}, {"id": 300, "start": 1070.74, "end": 1079.6200000000001, "text": " there's a very specific place in windows that is designed specifically for antivirus to live"}, {"id": 301, "start": 1079.6200000000001, "end": 1084.96, "text": " it's this one spot where it can see everything that's going on within the computer"}, {"id": 302, "start": 1085.44, "end": 1085.92, "text": " it"}, {"id": 303, "start": 1086.16, "end": 1092.26, "text": " it's kind of like a lifeguard chair and the antiviruses know where they're supposed to live"}, {"id": 304, "start": 1092.26, "end": 1097.78, "text": " they're only allowed to be there and if they find anything else there their job is to kill it"}, {"id": 305, "start": 1097.78, "end": 1104.8600000000001, "text": " because they think it's fake or it's you know it's an imposter so let's say that you have"}, {"id": 306, "start": 1104.8600000000001, "end": 1110.24, "text": " very very aggressive lifeguards that want to kill any other lifeguard that's sitting in their seat"}, {"id": 307, "start": 1110.24, "end": 1117.96, "text": " And you try to, so you have two lifeguards there, and they're both trying to kill each other."}, {"id": 308, "start": 1118.18, "end": 1120.48, "text": " And meanwhile, everyone's drowning."}, {"id": 309, "start": 1120.96, "end": 1123.24, "text": " I could see this as a reality TV show, actually."}, {"id": 310, "start": 1124.1, "end": 1125.1200000000001, "text": " Lifeguard Wars."}, {"id": 311, "start": 1125.88, "end": 1126.66, "text": " Season three."}, {"id": 312, "start": 1126.86, "end": 1128.74, "text": " So that's how lifeguards work."}, {"id": 313, "start": 1128.86, "end": 1130.66, "text": " And not only that's how antivirus works."}, {"id": 314, "start": 1131.1, "end": 1131.28, "text": " Yeah."}, {"id": 315, "start": 1132.02, "end": 1132.98, "text": " I don't know if that's exactly how antivirus works."}, {"id": 316, "start": 1132.98, "end": 1133.88, "text": " I don't know."}, {"id": 317, "start": 1134.5, "end": 1135.54, "text": " It's like lifeguard week."}, {"id": 318, "start": 1135.6200000000001, "end": 1138.14, "text": " I think we need more coffee is what we need."}, {"id": 319, "start": 1138.16, "end": 1138.64, "text": " I don't know."}, {"id": 320, "start": 1138.64, "end": 1140.5400000000002, "text": " I don't know."}, {"id": 321, "start": 1141.2, "end": 1141.72, "text": " All right."}, {"id": 322, "start": 1141.8200000000002, "end": 1149.0400000000002, "text": " 790-2040 if you want to get your tech support in for the week on the newly improved two-hour Computer Guru Show."}, {"id": 323, "start": 1149.18, "end": 1149.6200000000001, "text": " Whoop, whoop."}, {"id": 324, "start": 1150.3200000000002, "end": 1150.6200000000001, "text": " Really?"}, {"id": 325, "start": 1151.7, "end": 1152.44, "text": " Why not?"}, {"id": 326, "start": 1153.24, "end": 1154.18, "text": " It was the coffee talking."}, {"id": 327, "start": 1154.18, "end": 1155.14, "text": " You can't do the whoops."}, {"id": 328, "start": 1155.3600000000001, "end": 1155.64, "text": " Why?"}, {"id": 329, "start": 1155.72, "end": 1156.66, "text": " There's no whooping here."}, {"id": 330, "start": 1157.3400000000001, "end": 1157.76, "text": " Why?"}, {"id": 331, "start": 1158.74, "end": 1160.6000000000001, "text": " There's no whooping in Computer Guru Show."}, {"id": 332, "start": 1160.72, "end": 1161.0400000000002, "text": " Aw."}, {"id": 333, "start": 1161.8200000000002, "end": 1163.22, "text": " Just like there's no crying in baseball."}, {"id": 334, "start": 1163.3000000000002, "end": 1164.98, "text": " But there was Weird Al at the beginning."}, {"id": 335, "start": 1165.18, "end": 1166.5200000000002, "text": " There was a little bit of Weird Al."}, {"id": 336, "start": 1166.5600000000002, "end": 1166.98, "text": " Yes."}, {"id": 337, "start": 1167.3600000000001, "end": 1167.94, "text": " He's awesome."}, {"id": 338, "start": 1168.1000000000001, "end": 1168.6200000000001, "text": " Let's do it."}, {"id": 339, "start": 1168.64, "end": 1168.96, "text": " We're going to take another break."}, {"id": 340, "start": 1169.0800000000002, "end": 1169.7, "text": " That's what we should do."}, {"id": 341, "start": 1169.98, "end": 1170.5800000000002, "text": " We're going to do another one."}, {"id": 342, "start": 1170.8200000000002, "end": 1171.6200000000001, "text": " We're going to do another one."}, {"id": 343, "start": 1171.68, "end": 1171.8400000000001, "text": " Right?"}, {"id": 344, "start": 1171.94, "end": 1172.46, "text": " That's what we're doing."}, {"id": 345, "start": 1173.3400000000001, "end": 1174.6000000000001, "text": " I'm telling you right now."}, {"id": 346, "start": 1174.74, "end": 1175.2, "text": " Make it happen."}, {"id": 347, "start": 1175.44, "end": 1175.8000000000002, "text": " Boom."}, {"id": 348, "start": 1178.38, "end": 1179.1000000000001, "text": " Yeah, that'll work."}, {"id": 349, "start": 1179.46, "end": 1180.2, "text": " We'll be right back."}, {"id": 350, "start": 1191.0800000000002, "end": 1194.7800000000002, "text": " Whether you're dealing with hardware installation or, heaven forbid, a virus."}, {"id": 351, "start": 1194.8600000000001, "end": 1195.0200000000002, "text": " No."}, {"id": 352, "start": 1195.46, "end": 1195.8200000000002, "text": " No."}, {"id": 353, "start": 1195.8200000000002, "end": 1196.16, "text": " No."}, {"id": 354, "start": 1196.16, "end": 1196.42, "text": " No."}, {"id": 355, "start": 1197.0200000000002, "end": 1197.3000000000002, "text": " No."}, {"id": 356, "start": 1197.3000000000002, "end": 1197.3200000000002, "text": " No."}, {"id": 357, "start": 1197.3200000000002, "end": 1197.3400000000001, "text": " No."}, {"id": 358, "start": 1197.3400000000001, "end": 1197.44, "text": " No."}, {"id": 359, "start": 1197.44, "end": 1197.68, "text": " No."}, {"id": 360, "start": 1197.68, "end": 1197.7, "text": " No."}, {"id": 361, "start": 1197.7, "end": 1197.74, "text": " No."}, {"id": 362, "start": 1197.74, "end": 1197.76, "text": " No."}, {"id": 363, "start": 1197.76, "end": 1197.7800000000002, "text": " No."}, {"id": 364, "start": 1197.7800000000002, "end": 1197.8400000000001, "text": " No."}, {"id": 365, "start": 1197.8400000000001, "end": 1197.8600000000001, "text": " No."}, {"id": 366, "start": 1197.8600000000001, "end": 1197.9, "text": " No."}, {"id": 367, "start": 1197.9, "end": 1197.96, "text": " No."}, {"id": 368, "start": 1197.96, "end": 1197.98, "text": " No."}, {"id": 369, "start": 1197.98, "end": 1198.0, "text": " No."}, {"id": 370, "start": 1198.0, "end": 1198.0200000000002, "text": " No."}, {"id": 371, "start": 1198.0200000000002, "end": 1198.0400000000002, "text": " No."}, {"id": 372, "start": 1198.0400000000002, "end": 1198.0600000000002, "text": " No."}, {"id": 373, "start": 1198.0600000000002, "end": 1198.0800000000002, "text": " No."}, {"id": 374, "start": 1198.0800000000002, "end": 1198.1000000000001, "text": " No."}, {"id": 375, "start": 1198.1000000000001, "end": 1198.14, "text": " No."}, {"id": 376, "start": 1198.14, "end": 1198.5800000000002, "text": " No."}, {"id": 377, "start": 1198.64, "end": 1198.76, "text": " No."}, {"id": 378, "start": 1198.76, "end": 1198.7800000000002, "text": " No."}, {"id": 379, "start": 1198.7800000000002, "end": 1198.8000000000002, "text": " No."}, {"id": 380, "start": 1198.8000000000002, "end": 1198.8600000000001, "text": " No."}, {"id": 381, "start": 1198.8600000000001, "end": 1198.88, "text": " No."}, {"id": 382, "start": 1198.88, "end": 1198.9, "text": " No."}, {"id": 383, "start": 1198.9, "end": 1198.92, "text": " No."}, {"id": 384, "start": 1198.92, "end": 1198.94, "text": " No."}, {"id": 385, "start": 1198.94, "end": 1198.96, "text": " No."}, {"id": 386, "start": 1198.96, "end": 1198.98, "text": " No."}, {"id": 387, "start": 1198.98, "end": 1199.0, "text": " No."}, {"id": 388, "start": 1199.0, "end": 1199.0200000000002, "text": " No."}, {"id": 389, "start": 1199.0200000000002, "end": 1199.0400000000002, "text": " No."}, {"id": 390, "start": 1199.0400000000002, "end": 1199.0600000000002, "text": " No."}, {"id": 391, "start": 1199.0600000000002, "end": 1199.0800000000002, "text": " No."}, {"id": 392, "start": 1199.0800000000002, "end": 1199.1000000000001, "text": " No."}, {"id": 393, "start": 1199.1000000000001, "end": 1199.16, "text": " No."}, {"id": 394, "start": 1199.16, "end": 1200.0400000000002, "text": " No."}, {"id": 395, "start": 1200.0400000000002, "end": 1200.22, "text": " No."}, {"id": 396, "start": 1200.22, "end": 1202.24, "text": " So call in or chat in with yours."}, {"id": 397, "start": 1202.6000000000001, "end": 1204.72, "text": " The website, gurushow.com."}, {"id": 398, "start": 1204.96, "end": 1207.3200000000002, "text": " Tune in, click in, and kick back."}, {"id": 399, "start": 1207.68, "end": 1211.5, "text": " This is the Computer Guru Show on AM 1030 KVO."}, {"id": 400, "start": 1224.66, "end": 1227.8400000000001, "text": " Mike Swanson, your computer guru, is just a click away."}, {"id": 401, "start": 1227.84, "end": 1230.4399999999998, "text": " Listen and watch at gurushow.com."}, {"id": 402, "start": 1230.8, "end": 1232.6399999999999, "text": " This is the Computer Guru Show."}, {"id": 403, "start": 1233.3799999999999, "end": 1238.54, "text": " For our next story, we're going to go ahead and talk about the obviousness of this."}, {"id": 404, "start": 1239.72, "end": 1245.6, "text": " 74% of Netflix subscribers would rather cancel their subscription than see ads."}, {"id": 405, "start": 1246.22, "end": 1247.3999999999999, "text": " That's very high."}, {"id": 406, "start": 1247.56, "end": 1248.26, "text": " Well, duh."}, {"id": 407, "start": 1248.9199999999998, "end": 1250.84, "text": " The whole reason you pay for Netflix is you..."}, {"id": 408, "start": 1251.6, "end": 1252.34, "text": " Yeah, I..."}, {"id": 409, "start": 1252.34, "end": 1254.26, "text": " You know why I pay for Netflix?"}, {"id": 410, "start": 1255.1999999999998, "end": 1256.04, "text": " I used to pay for Netflix."}, {"id": 411, "start": 1256.04, "end": 1257.4399999999998, "text": " You know why I used to pay for Netflix?"}, {"id": 412, "start": 1257.84, "end": 1260.12, "text": " I used to pay for Netflix because Hulu sucks."}, {"id": 413, "start": 1260.6799999999998, "end": 1261.08, "text": " Well, yeah."}, {"id": 414, "start": 1261.48, "end": 1264.3, "text": " And Hulu plays ads, and they charge you money."}, {"id": 415, "start": 1265.8799999999999, "end": 1266.86, "text": " That's dumb."}, {"id": 416, "start": 1267.34, "end": 1267.6599999999999, "text": " Yeah."}, {"id": 417, "start": 1268.08, "end": 1270.74, "text": " And if you're going to charge me money, I don't want to see a commercial ever."}, {"id": 418, "start": 1271.78, "end": 1273.48, "text": " And that's 74%."}, {"id": 419, "start": 1273.48, "end": 1276.3799999999999, "text": " Actually, 90% said that they would cancel their subscription."}, {"id": 420, "start": 1277.82, "end": 1281.8799999999999, "text": " But then they added some extra qualifiers like, well, what if we just charged you a dollar more?"}, {"id": 421, "start": 1282.6399999999999, "end": 1283.08, "text": " Yeah."}, {"id": 422, "start": 1283.28, "end": 1285.1, "text": " And they're like, all right, fine."}, {"id": 423, "start": 1285.1, "end": 1287.82, "text": " So 74% would be like, all right, I'll pay it."}, {"id": 424, "start": 1287.82, "end": 1288.46, "text": " I'll pay you an extra dollar."}, {"id": 425, "start": 1289.8999999999999, "end": 1291.98, "text": " Or I will cancel."}, {"id": 426, "start": 1293.1399999999999, "end": 1295.04, "text": " There's so many other options out there now."}, {"id": 427, "start": 1295.9399999999998, "end": 1296.12, "text": " Yeah."}, {"id": 428, "start": 1296.28, "end": 1297.96, "text": " Netflix isn't the only one anymore."}, {"id": 429, "start": 1298.3, "end": 1299.72, "text": " I think people are just tired of it."}, {"id": 430, "start": 1300.3799999999999, "end": 1304.28, "text": " You know, you get hammered with advertising everywhere."}, {"id": 431, "start": 1305.1599999999999, "end": 1307.6399999999999, "text": " And it's just irritating."}, {"id": 432, "start": 1308.2, "end": 1311.98, "text": " It's not even like the ads are any good, right?"}, {"id": 433, "start": 1311.98, "end": 1316.2, "text": " At least at a time, I remember I used to enjoy watching..."}, {"id": 434, "start": 1316.2, "end": 1317.36, "text": " I used to enjoy seeing the commercials."}, {"id": 435, "start": 1317.82, "end": 1320.1399999999999, "text": " Just because I wanted to see how people were advertising."}, {"id": 436, "start": 1320.56, "end": 1322.4199999999998, "text": " I was an advertising major in college."}, {"id": 437, "start": 1322.4199999999998, "end": 1329.28, "text": " But, you know, I really enjoyed seeing how people present themselves."}, {"id": 438, "start": 1330.36, "end": 1332.8999999999999, "text": " And now it's just, it's so dumb."}, {"id": 439, "start": 1333.8799999999999, "end": 1338.6799999999998, "text": " Well, and then on top of that, you've got product placement all over in the show anyway."}, {"id": 440, "start": 1339.2, "end": 1339.54, "text": " Right."}, {"id": 441, "start": 1339.6599999999999, "end": 1341.82, "text": " And sometimes it's really obvious."}, {"id": 442, "start": 1342.12, "end": 1347.6399999999999, "text": " I wouldn't mind them doing sort of like the, you know, 1940s, 1950s."}, {"id": 443, "start": 1347.82, "end": 1352.1, "text": " Radio and TV ads where they had live mentions."}, {"id": 444, "start": 1352.3, "end": 1352.54, "text": " Yeah."}, {"id": 445, "start": 1352.9199999999998, "end": 1353.1599999999999, "text": " Right."}, {"id": 446, "start": 1353.2, "end": 1355.1799999999998, "text": " Where they just brought up and said,"}, {"id": 447, "start": 1355.1799999999998, "end": 1357.1799999999998, "text": " Hey, let's..."}, {"id": 448, "start": 1358.1399999999999, "end": 1360.72, "text": " This episode is brought to you by this particular thing."}, {"id": 449, "start": 1360.84, "end": 1362.08, "text": " By the people."}, {"id": 450, "start": 1362.22, "end": 1365.34, "text": " Rather than doing this separated commercial break."}, {"id": 451, "start": 1365.52, "end": 1370.48, "text": " That's what really they're going to have to go back to if they want to avoid things like ad blockers."}, {"id": 452, "start": 1370.9399999999998, "end": 1372.78, "text": " Because ad blockers are really good."}, {"id": 453, "start": 1373.8799999999999, "end": 1374.0, "text": " Yeah."}, {"id": 454, "start": 1374.34, "end": 1375.6599999999999, "text": " And there's some ads that are good."}, {"id": 455, "start": 1377.82, "end": 1378.86, "text": " Y'all right there?"}, {"id": 456, "start": 1379.58, "end": 1379.98, "text": " Yeah."}, {"id": 457, "start": 1380.08, "end": 1380.7, "text": " Yeah, I'm all right."}, {"id": 458, "start": 1380.7, "end": 1381.54, "text": " There's some ads."}, {"id": 459, "start": 1381.7, "end": 1383.54, "text": " I do enjoy watching some commercials."}, {"id": 460, "start": 1383.74, "end": 1386.72, "text": " But most of them I enjoy are not made in America."}, {"id": 461, "start": 1387.6599999999999, "end": 1387.78, "text": " Yeah."}, {"id": 462, "start": 1387.8799999999999, "end": 1393.1799999999998, "text": " There are other countries' commercials and they're way funnier because they don't have FCC rules."}, {"id": 463, "start": 1393.1799999999998, "end": 1398.12, "text": " Well, I think that they're, you know, at least here, everyone has to be worrying about,"}, {"id": 464, "start": 1398.26, "end": 1401.4199999999998, "text": " Well, which group am I going to offend this week with my commercial?"}, {"id": 465, "start": 1402.1399999999999, "end": 1404.74, "text": " And there's less of that in other countries."}, {"id": 466, "start": 1404.96, "end": 1406.06, "text": " I'm just going to go ahead and say it."}, {"id": 467, "start": 1406.08, "end": 1407.08, "text": " Japanese commercials."}, {"id": 468, "start": 1407.46, "end": 1407.8, "text": " Oh, my God."}, {"id": 469, "start": 1407.8, "end": 1408.22, "text": " Oh, my gosh."}, {"id": 470, "start": 1408.3999999999999, "end": 1409.56, "text": " Best commercials ever."}, {"id": 471, "start": 1410.52, "end": 1411.74, "text": " That is a weird place."}, {"id": 472, "start": 1411.84, "end": 1412.98, "text": " It's so awesome, though."}, {"id": 473, "start": 1414.24, "end": 1415.04, "text": " So awesome."}, {"id": 474, "start": 1415.06, "end": 1415.6399999999999, "text": " Let's talk to Charles."}, {"id": 475, "start": 1415.76, "end": 1416.1399999999999, "text": " Hello, Charles."}, {"id": 476, "start": 1416.18, "end": 1416.5, "text": " How are you?"}, {"id": 477, "start": 1417.12, "end": 1418.68, "text": " I just want to agree with Tara."}, {"id": 478, "start": 1418.8999999999999, "end": 1426.3999999999999, "text": " I think what this does is it presents an opportunity for people to create more interesting, funny, and different commercials."}, {"id": 479, "start": 1427.36, "end": 1435.24, "text": " And I really like, I've gone to watching stuff on CBS.com because it has the commercials in it."}, {"id": 480, "start": 1435.78, "end": 1437.3799999999999, "text": " Because some of them are really good."}, {"id": 481, "start": 1437.38, "end": 1438.5, "text": " I'll give you an example."}, {"id": 482, "start": 1438.96, "end": 1443.46, "text": " And this is not on CBS.com, but the Budweiser commercials with the Clydesdales."}, {"id": 483, "start": 1444.0, "end": 1447.7800000000002, "text": " Some of them, the one after September 11th, the Bring a Cheer to Your Eye."}, {"id": 484, "start": 1448.38, "end": 1448.6000000000001, "text": " Right."}, {"id": 485, "start": 1449.0400000000002, "end": 1453.64, "text": " Some of them are just really, I know there's bad commercials, but some of them are really good."}, {"id": 486, "start": 1453.7, "end": 1455.1200000000001, "text": " It's an American art form."}, {"id": 487, "start": 1455.46, "end": 1462.2800000000002, "text": " And I think commercials are kind of part of what makes us the capitalist society, successful free enterprise society we are."}, {"id": 488, "start": 1462.3200000000002, "end": 1464.14, "text": " And I think the commercials are an opportunity."}, {"id": 489, "start": 1464.14, "end": 1467.3400000000001, "text": " I really think we ought to be more."}, {"id": 490, "start": 1467.38, "end": 1471.38, "text": " If that's the case, there's a whole lot of wasted opportunity going on."}, {"id": 491, "start": 1472.2600000000002, "end": 1472.72, "text": " There is."}, {"id": 492, "start": 1473.0, "end": 1474.0400000000002, "text": " I agree with you."}, {"id": 493, "start": 1474.16, "end": 1483.0800000000002, "text": " And some commercials are just dumb because some advertisers try and tell you about their product rather than understand that the consumer only thinks what's in it for me."}, {"id": 494, "start": 1483.44, "end": 1487.2600000000002, "text": " If you write a commercial based on what's in it for the consumer, they'll actually listen."}, {"id": 495, "start": 1488.5400000000002, "end": 1489.0, "text": " All right."}, {"id": 496, "start": 1489.74, "end": 1496.5400000000002, "text": " You know, your commercials that you do, both here and on other stations, talk about what we do for the customer."}, {"id": 497, "start": 1496.5400000000002, "end": 1497.0, "text": " Right."}, {"id": 498, "start": 1497.0, "end": 1501.56, "text": " They're intelligent commercials, and they're okay, they're good to listen to."}, {"id": 499, "start": 1502.08, "end": 1505.82, "text": " They may not bust the creativity barrier, although some of them do."}, {"id": 500, "start": 1506.12, "end": 1507.54, "text": " The guru one does."}, {"id": 501, "start": 1507.66, "end": 1508.28, "text": " I love that."}, {"id": 502, "start": 1508.6, "end": 1509.46, "text": " You're the guru."}, {"id": 503, "start": 1509.68, "end": 1510.7, "text": " Well, I'm the computer guru."}, {"id": 504, "start": 1510.94, "end": 1511.6, "text": " It's funny."}, {"id": 505, "start": 1511.82, "end": 1513.0, "text": " I'm not a creative individual."}, {"id": 506, "start": 1513.22, "end": 1513.72, "text": " I know this."}, {"id": 507, "start": 1515.1, "end": 1516.48, "text": " You don't have to be."}, {"id": 508, "start": 1516.68, "end": 1520.22, "text": " You work with people who are or who can do that job for you."}, {"id": 509, "start": 1520.28, "end": 1521.68, "text": " Not everybody can do everything."}, {"id": 510, "start": 1522.26, "end": 1523.36, "text": " I understand that."}, {"id": 511, "start": 1523.54, "end": 1524.7, "text": " But I can fix your computer."}, {"id": 512, "start": 1524.82, "end": 1525.64, "text": " I'll tell you that much."}, {"id": 513, "start": 1525.86, "end": 1526.44, "text": " That's right."}, {"id": 514, "start": 1526.44, "end": 1526.54, "text": " That's right."}, {"id": 515, "start": 1526.54, "end": 1528.06, "text": " And that's what I care about."}, {"id": 516, "start": 1528.3999999999999, "end": 1530.8799999999999, "text": " I don't give a darn whether you're a creative person or not."}, {"id": 517, "start": 1530.92, "end": 1534.22, "text": " Personally, I care whether or not you can do a good job fixing your computer."}, {"id": 518, "start": 1534.6399999999999, "end": 1535.1, "text": " Yeah, Mike."}, {"id": 519, "start": 1535.86, "end": 1536.1, "text": " Pardon?"}, {"id": 520, "start": 1536.5, "end": 1537.72, "text": " I said, yeah, Mike."}, {"id": 521, "start": 1538.24, "end": 1538.68, "text": " Right."}, {"id": 522, "start": 1539.06, "end": 1540.78, "text": " I'm getting scolded for two directions."}, {"id": 523, "start": 1540.8799999999999, "end": 1542.44, "text": " You can work or hire creative people."}, {"id": 524, "start": 1542.76, "end": 1547.0, "text": " Look down the hallway at that office from where you are and see Jerry Cross's creativity."}, {"id": 525, "start": 1547.36, "end": 1549.6399999999999, "text": " He couldn't fix a computer to save his life."}, {"id": 526, "start": 1550.02, "end": 1552.0, "text": " He could barely use one when he started."}, {"id": 527, "start": 1552.12, "end": 1553.28, "text": " He's gotten very good at it."}, {"id": 528, "start": 1553.28, "end": 1556.28, "text": " But the point is, he's an incredibly creative guy."}, {"id": 529, "start": 1556.54, "end": 1558.76, "text": " That's who you need to do commercials."}, {"id": 530, "start": 1558.96, "end": 1565.24, "text": " And if we looked at that as consumers, if we looked at the artwork in them and the opportunity in them,"}, {"id": 531, "start": 1565.32, "end": 1570.76, "text": " I think bypassing a commercial is kind of a self-centered move."}, {"id": 532, "start": 1570.92, "end": 1571.8799999999999, "text": " I'm not criticizing you."}, {"id": 533, "start": 1571.96, "end": 1572.6, "text": " I'm saying everybody."}, {"id": 534, "start": 1573.24, "end": 1573.94, "text": " Well, and that's true."}, {"id": 535, "start": 1574.36, "end": 1581.8, "text": " The difference is that I think that the majority of the people that are listening to radio and stuff,"}, {"id": 536, "start": 1583.02, "end": 1585.98, "text": " the commercials are sort of valid."}, {"id": 537, "start": 1586.54, "end": 1590.62, "text": " It's a very acceptable part of what the radio environment is."}, {"id": 538, "start": 1591.1599999999999, "end": 1597.44, "text": " When you take that to the Internet and you say, people expect to see ads, right?"}, {"id": 539, "start": 1597.44, "end": 1599.1399999999999, "text": " On websites, they see ads."}, {"id": 540, "start": 1600.3999999999999, "end": 1602.94, "text": " Sometimes in their email, they see ads."}, {"id": 541, "start": 1603.3799999999999, "end": 1608.72, "text": " Where they don't expect to see ads is when you are paying for a premium service."}, {"id": 542, "start": 1609.78, "end": 1616.42, "text": " So that's what this particular thing is about here as far as Netflix has been toying around with this idea."}, {"id": 543, "start": 1616.54, "end": 1620.94, "text": " Well, hey, let's throw in commercials, and that will not go well for them"}, {"id": 544, "start": 1620.94, "end": 1629.28, "text": " because a lot of the reason that people go there to watch anything is because they're paying a premium to get in,"}, {"id": 545, "start": 1629.36, "end": 1630.3799999999999, "text": " and they don't want to see the ads."}, {"id": 546, "start": 1630.46, "end": 1632.0, "text": " They don't want to be bothered with that stuff."}, {"id": 547, "start": 1632.54, "end": 1634.54, "text": " But is Netflix a premium service?"}, {"id": 548, "start": 1634.68, "end": 1639.6399999999999, "text": " I mean, it's $9 a month or maybe $11 if you get the DVD service or something like that."}, {"id": 549, "start": 1639.84, "end": 1640.98, "text": " Is that really a premium?"}, {"id": 550, "start": 1640.98, "end": 1645.58, "text": " I mean, I look at a premium service as costing more than $35 a month."}, {"id": 551, "start": 1645.72, "end": 1646.5, "text": " I don't even look."}, {"id": 552, "start": 1646.58, "end": 1649.34, "text": " If Netflix is a premium at $9, who cares?"}, {"id": 553, "start": 1649.74, "end": 1654.1399999999999, "text": " Yeah, well, I think that the definition of premium, at least in the way that I'm using it,"}, {"id": 554, "start": 1654.2, "end": 1656.6399999999999, "text": " is anything that you have to pay a premium in order to get into."}, {"id": 555, "start": 1657.36, "end": 1661.24, "text": " And as an example, Hulu, you can watch for free."}, {"id": 556, "start": 1662.06, "end": 1666.3999999999999, "text": " But they also have an upgraded package with their premium service,"}, {"id": 557, "start": 1666.46, "end": 1669.22, "text": " which allows you access to other types of shows."}, {"id": 558, "start": 1669.22, "end": 1672.3999999999999, "text": " But at the same time, they're still hammering you with commercials."}, {"id": 559, "start": 1673.8799999999999, "end": 1676.26, "text": " Is there a skip feature in the commercial or no?"}, {"id": 560, "start": 1676.26, "end": 1676.5, "text": " No."}, {"id": 561, "start": 1676.54, "end": 1677.1, "text": " Oh, no."}, {"id": 562, "start": 1677.22, "end": 1680.2, "text": " And believe me, one of the most irritating things about Hulu"}, {"id": 563, "start": 1680.2, "end": 1682.46, "text": " is that that ad will play perfectly,"}, {"id": 564, "start": 1682.46, "end": 1686.78, "text": " but the show you're watching will buffer and just be terrible the whole time."}, {"id": 565, "start": 1688.3999999999999, "end": 1693.04, "text": " And the problem is that Hulu is owned by the networks."}, {"id": 566, "start": 1693.52, "end": 1698.04, "text": " It's a joint venture between the various distribution hubs."}, {"id": 567, "start": 1698.6, "end": 1703.52, "text": " So Disney is the primary owner of Hulu or NBCUniversal."}, {"id": 568, "start": 1704.58, "end": 1706.46, "text": " And it's just..."}, {"id": 569, "start": 1706.46, "end": 1712.66, "text": " They are really trying to push a model that I think requires some type of evolution."}, {"id": 570, "start": 1713.7, "end": 1717.9, "text": " And the music and movie industry and TV industry, in this case with Hulu,"}, {"id": 571, "start": 1718.54, "end": 1720.3400000000001, "text": " are really slow to adapt."}, {"id": 572, "start": 1720.42, "end": 1723.88, "text": " And unfortunately, Netflix is getting hammered from both sides."}, {"id": 573, "start": 1724.0, "end": 1725.3400000000001, "text": " They get hammered for their bandwidth."}, {"id": 574, "start": 1725.3400000000001, "end": 1728.8, "text": " And also, they have to pay a licensing fee."}, {"id": 575, "start": 1729.2, "end": 1735.44, "text": " And every year, the houses, the movie houses, are basically saying,"}, {"id": 576, "start": 1735.72, "end": 1736.3400000000001, "text": " you need to pay..."}, {"id": 577, "start": 1736.46, "end": 1739.14, "text": " You need to pay us more because so many people are watching your stuff."}, {"id": 578, "start": 1739.54, "end": 1742.64, "text": " As opposed to the same deal that the movie houses would make,"}, {"id": 579, "start": 1742.78, "end": 1746.08, "text": " they would have to pay less for more people watching as a bulk rate."}, {"id": 580, "start": 1746.92, "end": 1749.42, "text": " So it bothers me that they're getting hammered to the point"}, {"id": 581, "start": 1749.42, "end": 1752.8400000000001, "text": " where they have to consider adding ads, which nobody wants."}, {"id": 582, "start": 1753.72, "end": 1755.42, "text": " Have you ever seen the movie Demolition Man?"}, {"id": 583, "start": 1755.8, "end": 1756.2, "text": " Oh, yeah."}, {"id": 584, "start": 1756.42, "end": 1756.64, "text": " No."}, {"id": 585, "start": 1757.08, "end": 1760.96, "text": " Where the head of Los Angeles takes a guy to a restaurant,"}, {"id": 586, "start": 1761.1200000000001, "end": 1762.54, "text": " says, I'm going to take you to Taco Bell."}, {"id": 587, "start": 1762.68, "end": 1764.22, "text": " And he goes, why Taco Bell?"}, {"id": 588, "start": 1764.32, "end": 1765.64, "text": " He says, because it's the only restaurant."}, {"id": 589, "start": 1765.64, "end": 1766.18, "text": " Right."}, {"id": 590, "start": 1766.46, "end": 1766.76, "text": " The only one left."}, {"id": 591, "start": 1767.38, "end": 1768.26, "text": " Yes, the only one left."}, {"id": 592, "start": 1768.54, "end": 1772.94, "text": " I think that's what we're edging towards is a conglomeration where all media is basically"}, {"id": 593, "start": 1772.94, "end": 1777.3, "text": " one megalopolis, and you can't get away from that one company."}, {"id": 594, "start": 1777.44, "end": 1778.3, "text": " There aren't more choices."}, {"id": 595, "start": 1778.48, "end": 1779.8, "text": " That's what I like about ads."}, {"id": 596, "start": 1780.22, "end": 1783.18, "text": " If you watch ads, and those ads, you know, and that's monitored,"}, {"id": 597, "start": 1783.32, "end": 1787.1200000000001, "text": " that ads get watched, it makes for more diversity in the marketplace"}, {"id": 598, "start": 1787.1200000000001, "end": 1788.58, "text": " because there's more revenue."}, {"id": 599, "start": 1789.0, "end": 1789.8400000000001, "text": " I'm going to get off."}, {"id": 600, "start": 1789.92, "end": 1790.18, "text": " Thanks."}, {"id": 601, "start": 1790.32, "end": 1790.48, "text": " Bye."}, {"id": 602, "start": 1790.7, "end": 1790.98, "text": " Thanks."}, {"id": 603, "start": 1791.18, "end": 1792.32, "text": " Appreciate the call, Charles."}, {"id": 604, "start": 1792.54, "end": 1796.02, "text": " Now, I am going to play devil's advocate for half a second here."}, {"id": 605, "start": 1796.02, "end": 1796.3600000000001, "text": " You do your thing."}, {"id": 606, "start": 1797.28, "end": 1797.72, "text": " Cable."}, {"id": 607, "start": 1797.94, "end": 1801.94, "text": " I pay $120 a month for cable that I don't watch, by the way."}, {"id": 608, "start": 1802.98, "end": 1804.6200000000001, "text": " So I pay for this service."}, {"id": 609, "start": 1804.8, "end": 1807.44, "text": " I'm waiting to cancel it until the contract is out."}, {"id": 610, "start": 1807.56, "end": 1807.78, "text": " Right."}, {"id": 611, "start": 1808.14, "end": 1813.02, "text": " When I watch a show, supernatural, it's an hour-long show."}, {"id": 612, "start": 1813.38, "end": 1813.78, "text": " Right."}, {"id": 613, "start": 1813.8400000000001, "end": 1816.24, "text": " But I only see 40 minutes of it because of ads."}, {"id": 614, "start": 1816.24, "end": 1816.76, "text": " 42 minutes, right."}, {"id": 615, "start": 1818.08, "end": 1823.9, "text": " Now, when I watch it on CW.com, I get one, one commercial."}, {"id": 616, "start": 1824.74, "end": 1826.44, "text": " I would rather have the one commercial."}, {"id": 617, "start": 1826.46, "end": 1832.5, "text": " I would rather have the one commercial than the 20 minutes, personally."}, {"id": 618, "start": 1833.28, "end": 1838.08, "text": " I would not mind watching one commercial in, you know, as opposed,"}, {"id": 619, "start": 1838.18, "end": 1843.54, "text": " or even like two for an hour-long show as opposed to 20 minutes of commercials."}, {"id": 620, "start": 1844.94, "end": 1846.0, "text": " I'm with you there."}, {"id": 621, "start": 1846.52, "end": 1849.5, "text": " It takes me longer, and I've timed it."}, {"id": 622, "start": 1849.58, "end": 1853.08, "text": " It takes me longer to fast-forward through the commercials when I DVR"}, {"id": 623, "start": 1853.08, "end": 1856.28, "text": " than it does to watch one commercial on TV."}, {"id": 624, "start": 1856.28, "end": 1858.94, "text": " One, the CW, and then go back to the show."}, {"id": 625, "start": 1860.2, "end": 1860.6, "text": " Okay."}, {"id": 626, "start": 1861.18, "end": 1863.02, "text": " So, I mean, just for that."}, {"id": 627, "start": 1863.12, "end": 1868.32, "text": " Now, I still don't want the ads either, but I would rather have one, maybe two,"}, {"id": 628, "start": 1868.42, "end": 1870.32, "text": " than like 20 commercials in a row."}, {"id": 629, "start": 1870.42, "end": 1872.8799999999999, "text": " Well, I think this is why a lot of people go into cord cutting, right?"}, {"id": 630, "start": 1873.04, "end": 1876.1399999999999, "text": " Like myself, I don't have TV, right?"}, {"id": 631, "start": 1876.1399999999999, "end": 1877.18, "text": " I don't pay for TV."}, {"id": 632, "start": 1877.46, "end": 1880.18, "text": " I don't watch regular TV."}, {"id": 633, "start": 1880.58, "end": 1882.96, "text": " All that stuff is, like, completely gone for me."}, {"id": 634, "start": 1883.66, "end": 1885.1399999999999, "text": " I have my services that I\u2026"}, {"id": 635, "start": 1885.1399999999999, "end": 1886.1399999999999, "text": " That's what I'm doing with my contract."}, {"id": 636, "start": 1886.28, "end": 1886.8, "text": " That's what my contract's up."}, {"id": 637, "start": 1886.94, "end": 1892.92, "text": " I have the services that I use for watching movies or even TV shows"}, {"id": 638, "start": 1892.92, "end": 1894.32, "text": " because I know where to look."}, {"id": 639, "start": 1896.2, "end": 1899.58, "text": " But I do not watch any broadcast, anything."}, {"id": 640, "start": 1899.84, "end": 1900.04, "text": " Right."}, {"id": 641, "start": 1900.18, "end": 1901.2, "text": " It's just\u2026"}, {"id": 642, "start": 1901.2, "end": 1904.06, "text": " It serves no purpose in my life, and I have no interest."}, {"id": 643, "start": 1904.82, "end": 1907.3999999999999, "text": " Now, there's a lot of people, you know, they want to watch the news or whatever."}, {"id": 644, "start": 1908.12, "end": 1908.8799999999999, "text": " I just\u2026"}, {"id": 645, "start": 1908.8799999999999, "end": 1909.8999999999999, "text": " I watch the news on the Internet."}, {"id": 646, "start": 1910.12, "end": 1910.32, "text": " Yeah."}, {"id": 647, "start": 1910.36, "end": 1913.36, "text": " If I'm really concerned about something, I look it up on the Internet."}, {"id": 648, "start": 1913.36, "end": 1914.34, "text": " They have live streaming."}, {"id": 649, "start": 1915.02, "end": 1915.56, "text": " It's important."}, {"id": 650, "start": 1915.56, "end": 1915.58, "text": " Yeah."}, {"id": 651, "start": 1915.58, "end": 1916.24, "text": " And most of the\u2026"}, {"id": 652, "start": 1916.24, "end": 1919.56, "text": " If something's important, believe me, there's a live stream somewhere."}, {"id": 653, "start": 1920.5, "end": 1930.24, "text": " And the idea of paying for a service and being inundated with ads is something that is really unappealing to me."}, {"id": 654, "start": 1930.52, "end": 1937.86, "text": " I still listen to radio, and I listen to not only podcasts, which also have commercials in them."}, {"id": 655, "start": 1937.9, "end": 1938.1200000000001, "text": " Yeah."}, {"id": 656, "start": 1939.06, "end": 1943.84, "text": " But I listen to live broadcast radio, but I don't do\u2026"}, {"id": 657, "start": 1943.84, "end": 1945.76, "text": " There's nothing that I do with TV."}, {"id": 658, "start": 1946.1200000000001, "end": 1946.2, "text": " Right."}, {"id": 659, "start": 1946.24, "end": 1949.32, "text": " And on that end, Twitch, it's a gaming streaming."}, {"id": 660, "start": 1949.58, "end": 1952.52, "text": " They also play ads on those streams."}, {"id": 661, "start": 1952.6200000000001, "end": 1956.1, "text": " So, I mean, they're everywhere, and you're paying for them."}, {"id": 662, "start": 1956.22, "end": 1959.1, "text": " And, you know, not to mention that I understand the other side of this, right?"}, {"id": 663, "start": 1959.1, "end": 1962.1200000000001, "text": " We put our shows on YouTube, right?"}, {"id": 664, "start": 1962.18, "end": 1967.08, "text": " And we're hoping to monetize those, right, by people seeing ads in some way."}, {"id": 665, "start": 1967.1, "end": 1969.36, "text": " So, I understand both sides of this argument."}, {"id": 666, "start": 1970.36, "end": 1975.1, "text": " However, I like what YouTube is doing in this particular regard, which is\u2026"}, {"id": 667, "start": 1976.24, "end": 1979.72, "text": " You can watch YouTube for free, and you're going to be shown ads."}, {"id": 668, "start": 1979.8, "end": 1985.1, "text": " Or you can pay for the premium, the $5 a month YouTube Red, and no ads."}, {"id": 669, "start": 1985.52, "end": 1986.74, "text": " And premium shows, too."}, {"id": 670, "start": 1986.94, "end": 1987.9, "text": " Right, and premium shows."}, {"id": 671, "start": 1988.28, "end": 1994.72, "text": " So, yeah, I think the idea is if you want to charge people for it, they get no ads."}, {"id": 672, "start": 1995.52, "end": 2000.4, "text": " And if you want it to be free, then I think everybody understands that trade-off."}, {"id": 673, "start": 2000.54, "end": 2000.84, "text": " Right."}, {"id": 674, "start": 2000.84, "end": 2006.22, "text": " To say, yeah, I'm willing to see ads in order to watch this for free."}, {"id": 675, "start": 2006.52, "end": 2008.22, "text": " I don't think anybody has a problem with that."}, {"id": 676, "start": 2008.44, "end": 2009.52, "text": " No, I wouldn't."}, {"id": 677, "start": 2009.88, "end": 2010.48, "text": " Let's take a break."}, {"id": 678, "start": 2010.94, "end": 2012.26, "text": " Let's do this."}, {"id": 679, "start": 2012.46, "end": 2012.64, "text": " Woo!"}, {"id": 680, "start": 2027.64, "end": 2031.72, "text": " Your computer guru, Mike Swanson, is here to help you tame that beast of a machine."}, {"id": 681, "start": 2032.2, "end": 2035.52, "text": " Join the chat right now at gurushow.com or call in."}, {"id": 682, "start": 2035.52, "end": 2037.34, "text": " This is the Computer Guru Show."}, {"id": 683, "start": 2040.34, "end": 2043.46, "text": " Mike Swanson, your computer guru, is just a click away."}, {"id": 684, "start": 2043.8, "end": 2045.82, "text": " Listen and watch at gurushow.com."}, {"id": 685, "start": 2046.22, "end": 2049.84, "text": " This is the Computer Guru Show on KVOI, The Voice."}, {"id": 686, "start": 2051.66, "end": 2052.52, "text": " All right."}, {"id": 687, "start": 2053.58, "end": 2055.66, "text": " 790-2040 if you want to be part of the show."}, {"id": 688, "start": 2056.98, "end": 2058.16, "text": " Sounding less chipper."}, {"id": 689, "start": 2058.16, "end": 2059.28, "text": " Oh, I just read."}, {"id": 690, "start": 2059.56, "end": 2065.16, "text": " I forgot about this story, and now that it's in front of me again, I'm like, grr, grr."}, {"id": 691, "start": 2065.52, "end": 2066.08, "text": " Grr?"}, {"id": 692, "start": 2066.4, "end": 2066.8, "text": " Grr."}, {"id": 693, "start": 2066.8, "end": 2067.28, "text": " Grr."}, {"id": 694, "start": 2068.18, "end": 2068.7, "text": " Grr."}, {"id": 695, "start": 2068.98, "end": 2076.06, "text": " All right, so basically a judge has said that the FBI can hack your computer without a warrant."}, {"id": 696, "start": 2076.96, "end": 2077.46, "text": " Oh, yeah."}, {"id": 697, "start": 2077.58, "end": 2081.84, "text": " And we talked about this when it came out several months ago."}, {"id": 698, "start": 2083.32, "end": 2084.88, "text": " Do you want to hear the reasoning?"}, {"id": 699, "start": 2086.16, "end": 2087.74, "text": " Because people get hacked all the time."}, {"id": 700, "start": 2089.2, "end": 2090.5, "text": " So why do they need a warrant?"}, {"id": 701, "start": 2090.72, "end": 2090.94, "text": " Yeah."}, {"id": 702, "start": 2091.32, "end": 2091.94, "text": " People get hacked."}, {"id": 703, "start": 2093.2, "end": 2093.98, "text": " Why do they need a warrant?"}, {"id": 704, "start": 2093.98, "end": 2094.08, "text": " Why do they need a warrant?"}, {"id": 705, "start": 2094.08, "end": 2095.7, "text": " Such a stupid reason."}, {"id": 706, "start": 2095.86, "end": 2097.9, "text": " People get their houses broken into all the time."}, {"id": 707, "start": 2098.24, "end": 2100.2599999999998, "text": " How come cops aren't just kicking in doors then?"}, {"id": 708, "start": 2102.22, "end": 2102.98, "text": " I think..."}, {"id": 709, "start": 2102.98, "end": 2104.22, "text": " You've lost your mind?"}, {"id": 710, "start": 2104.54, "end": 2106.16, "text": " His reasoning gave me an aneurysm."}, {"id": 711, "start": 2106.8199999999997, "end": 2107.08, "text": " Really?"}, {"id": 712, "start": 2107.12, "end": 2108.86, "text": " Like, yeah, I just sat there and looked at it."}, {"id": 713, "start": 2108.86, "end": 2110.08, "text": " I'm like, you've got to be kidding me."}, {"id": 714, "start": 2110.12, "end": 2110.84, "text": " That's your reasoning."}, {"id": 715, "start": 2111.68, "end": 2111.96, "text": " Yeah."}, {"id": 716, "start": 2112.56, "end": 2112.84, "text": " All right."}, {"id": 717, "start": 2114.02, "end": 2116.1, "text": " I can't believe that this is the end of this story."}, {"id": 718, "start": 2116.72, "end": 2122.7599999999998, "text": " Because, I mean, the simple answer is that a person who is not all here mentally can,"}, {"id": 719, "start": 2122.7599999999998, "end": 2123.96, "text": " in five seconds, go,"}, {"id": 720, "start": 2124.08, "end": 2125.88, "text": " people's houses get broken into."}, {"id": 721, "start": 2127.1, "end": 2129.72, "text": " How come you need a warrant to get into your house?"}, {"id": 722, "start": 2130.84, "end": 2131.0, "text": " Right?"}, {"id": 723, "start": 2131.1, "end": 2132.42, "text": " It's the same type of thing."}, {"id": 724, "start": 2134.16, "end": 2137.44, "text": " And not to mention, it's mostly the government that gets hacked anyway."}, {"id": 725, "start": 2139.16, "end": 2140.2599999999998, "text": " This is true."}, {"id": 726, "start": 2140.52, "end": 2141.04, "text": " Dorks."}, {"id": 727, "start": 2142.7599999999998, "end": 2149.36, "text": " So I guess, you know, it's cool that Russia can do their thing because people get hacked all the time."}, {"id": 728, "start": 2149.88, "end": 2150.04, "text": " Yeah."}, {"id": 729, "start": 2150.04, "end": 2153.04, "text": " So does that mean that because Russia was actually..."}, {"id": 730, "start": 2154.08, "end": 2156.4, "text": " I guess, quasi-confirmed to be the..."}, {"id": 731, "start": 2156.4, "end": 2156.96, "text": " I guess."}, {"id": 732, "start": 2157.18, "end": 2161.06, "text": " The DNC hacker, does that mean that the government's just like,"}, {"id": 733, "start": 2161.6, "end": 2162.08, "text": " it's cool."}, {"id": 734, "start": 2162.48, "end": 2163.54, "text": " People get hacked all the time."}, {"id": 735, "start": 2163.64, "end": 2164.2999999999997, "text": " Don't worry about it."}, {"id": 736, "start": 2164.86, "end": 2165.46, "text": " They should be."}, {"id": 737, "start": 2165.96, "end": 2170.8199999999997, "text": " You can tell that this is the problem with government security."}, {"id": 738, "start": 2171.68, "end": 2172.12, "text": " Right?"}, {"id": 739, "start": 2172.2, "end": 2173.48, "text": " Because, oh, yeah?"}, {"id": 740, "start": 2173.88, "end": 2174.7599999999998, "text": " Go ahead and..."}, {"id": 741, "start": 2174.7599999999998, "end": 2178.12, "text": " Hillary, go ahead and have a mail server in your house."}, {"id": 742, "start": 2178.36, "end": 2178.84, "text": " It's cool."}, {"id": 743, "start": 2179.06, "end": 2179.88, "text": " Don't worry about it."}, {"id": 744, "start": 2180.22, "end": 2180.7799999999997, "text": " No big deal."}, {"id": 745, "start": 2181.7799999999997, "end": 2183.9, "text": " It's not like it's unsafe or anything."}, {"id": 746, "start": 2184.08, "end": 2185.44, "text": " It contains classified information."}, {"id": 747, "start": 2185.86, "end": 2187.22, "text": " Nah, don't worry about that."}, {"id": 748, "start": 2187.8199999999997, "end": 2188.7799999999997, "text": " It's no big deal."}, {"id": 749, "start": 2189.34, "end": 2190.08, "text": " Government security?"}, {"id": 750, "start": 2190.6, "end": 2191.2999999999997, "text": " OxyMoron, man."}, {"id": 751, "start": 2191.54, "end": 2191.74, "text": " Yeah."}, {"id": 752, "start": 2193.68, "end": 2194.16, "text": " All right."}, {"id": 753, "start": 2194.16, "end": 2200.4, "text": " Let's go ahead and just have all of our military personnels, all of their vital information in one database."}, {"id": 754, "start": 2201.2799999999997, "end": 2203.64, "text": " And, oh, by the way, let's not put a password on it."}, {"id": 755, "start": 2203.94, "end": 2205.08, "text": " But it's okay because..."}, {"id": 756, "start": 2205.08, "end": 2205.36, "text": " It's cool."}, {"id": 757, "start": 2205.6, "end": 2206.52, "text": " People get hacked all the time."}, {"id": 758, "start": 2206.52, "end": 2207.52, "text": " Yeah, people get hacked all the time."}, {"id": 759, "start": 2207.74, "end": 2208.54, "text": " No big deal."}, {"id": 760, "start": 2209.54, "end": 2213.46, "text": " And yet, at the same time, out of the other side of their face, they're going to be like,"}, {"id": 761, "start": 2214.08, "end": 2219.8199999999997, "text": " oh, yeah, for the children, we need to put back doors and stuff because, oh, man,"}, {"id": 762, "start": 2219.84, "end": 2221.38, "text": " we can't figure out how to get into stuff."}, {"id": 763, "start": 2221.88, "end": 2223.2599999999998, "text": " Why don't you figure out how to lock your own doors?"}, {"id": 764, "start": 2223.68, "end": 2226.5, "text": " Then you'll probably know how to get into other doors."}, {"id": 765, "start": 2227.68, "end": 2230.06, "text": " Oh, morons."}, {"id": 766, "start": 2231.7599999999998, "end": 2233.48, "text": " Mind blown."}, {"id": 767, "start": 2234.7999999999997, "end": 2236.06, "text": " I saw that this morning."}, {"id": 768, "start": 2236.12, "end": 2237.8199999999997, "text": " I'm like, you've got to be kidding me."}, {"id": 769, "start": 2237.8199999999997, "end": 2243.7999999999997, "text": " What we need is another, like, I don't know, 50 or so people in the house just to go sit"}, {"id": 770, "start": 2243.8, "end": 2247.42, "text": " on the floor until they figure out how to, like, secure their own darn networks."}, {"id": 771, "start": 2247.98, "end": 2248.7400000000002, "text": " And then..."}, {"id": 772, "start": 2248.7400000000002, "end": 2249.76, "text": " It's so dumb."}, {"id": 773, "start": 2251.92, "end": 2253.6000000000004, "text": " You're distracting me now, Kent."}, {"id": 774, "start": 2254.2400000000002, "end": 2255.1200000000003, "text": " I'm sorry, man."}, {"id": 775, "start": 2255.1800000000003, "end": 2255.52, "text": " I had to."}, {"id": 776, "start": 2255.6800000000003, "end": 2256.3, "text": " It is."}, {"id": 777, "start": 2256.34, "end": 2257.0, "text": " It's so dumb, though."}, {"id": 778, "start": 2257.0800000000004, "end": 2258.2400000000002, "text": " It is pretty dumb."}, {"id": 779, "start": 2258.44, "end": 2264.26, "text": " Those people sitting on the floor for gun control in the White House that's surrounded by people"}, {"id": 780, "start": 2264.26, "end": 2264.8, "text": " with guns."}, {"id": 781, "start": 2264.8, "end": 2267.32, "text": " But, you know, it's okay because people get shot all the time."}, {"id": 782, "start": 2267.52, "end": 2267.7200000000003, "text": " Yes."}, {"id": 783, "start": 2267.9, "end": 2268.52, "text": " It's all right, man."}, {"id": 784, "start": 2268.7000000000003, "end": 2268.98, "text": " Yeah."}, {"id": 785, "start": 2269.28, "end": 2270.04, "text": " We don't need gun control."}, {"id": 786, "start": 2270.1200000000003, "end": 2271.1000000000004, "text": " People get shot all the time."}, {"id": 787, "start": 2271.3, "end": 2271.5600000000004, "text": " Right?"}, {"id": 788, "start": 2271.7400000000002, "end": 2272.3, "text": " It's no big deal."}, {"id": 789, "start": 2273.26, "end": 2273.5, "text": " Why?"}, {"id": 790, "start": 2273.5, "end": 2274.56, "text": " Why are we sitting down?"}, {"id": 791, "start": 2275.22, "end": 2276.0, "text": " No big deal."}, {"id": 792, "start": 2276.1, "end": 2277.14, "text": " Let's do this."}, {"id": 793, "start": 2277.54, "end": 2282.9, "text": " They can hack your computer because it's no big deal."}, {"id": 794, "start": 2282.96, "end": 2283.54, "text": " Everybody gets hacked."}, {"id": 795, "start": 2284.78, "end": 2286.08, "text": " Oh, my gosh."}, {"id": 796, "start": 2287.24, "end": 2290.86, "text": " This is the kind of stuff that makes me want to just unplug indefinitely."}, {"id": 797, "start": 2291.44, "end": 2293.96, "text": " I am unsubscribing from this legislature."}, {"id": 798, "start": 2293.96, "end": 2294.64, "text": " That's what I'm doing."}, {"id": 799, "start": 2294.74, "end": 2295.12, "text": " I'm just..."}, {"id": 800, "start": 2295.12, "end": 2297.6, "text": " I don't want to be part of this whole political process."}, {"id": 801, "start": 2297.72, "end": 2299.42, "text": " I don't want to live on this planet anymore."}, {"id": 802, "start": 2301.28, "end": 2303.44, "text": " And that's just, like, one of our headlines."}, {"id": 803, "start": 2303.5, "end": 2305.56, "text": " All the other ones, too."}, {"id": 804, "start": 2306.06, "end": 2310.56, "text": " So, yeah, I mean, it's like, I can't go move anywhere else, right?"}, {"id": 805, "start": 2310.66, "end": 2311.06, "text": " No."}, {"id": 806, "start": 2311.5, "end": 2315.42, "text": " Can't move to Ireland like everybody in London wants to do right now."}, {"id": 807, "start": 2315.6, "end": 2317.46, "text": " Oh, no, no, no."}, {"id": 808, "start": 2318.76, "end": 2320.26, "text": " So, you heard about the Brexit thing?"}, {"id": 809, "start": 2321.26, "end": 2321.82, "text": " I did."}, {"id": 810, "start": 2322.12, "end": 2322.32, "text": " Yeah."}, {"id": 811, "start": 2323.0, "end": 2324.5, "text": " There are people that are..."}, {"id": 812, "start": 2325.54, "end": 2330.32, "text": " It's almost like the whole Republican-Democrat thing here."}, {"id": 813, "start": 2330.58, "end": 2332.34, "text": " People are really angry about this stuff."}, {"id": 814, "start": 2332.34, "end": 2332.82, "text": " Mm-hmm."}, {"id": 815, "start": 2332.82, "end": 2332.96, "text": " Mm-hmm."}, {"id": 816, "start": 2332.96, "end": 2332.98, "text": " Mm-hmm."}, {"id": 817, "start": 2332.98, "end": 2333.02, "text": " Mm-hmm."}, {"id": 818, "start": 2333.02, "end": 2333.04, "text": " Mm-hmm."}, {"id": 819, "start": 2333.04, "end": 2333.06, "text": " Mm-hmm."}, {"id": 820, "start": 2333.06, "end": 2333.12, "text": " Mm-hmm."}, {"id": 821, "start": 2333.12, "end": 2333.14, "text": " Mm-hmm."}, {"id": 822, "start": 2333.14, "end": 2333.16, "text": " Mm-hmm."}, {"id": 823, "start": 2333.16, "end": 2333.18, "text": " Mm-hmm."}, {"id": 824, "start": 2333.18, "end": 2333.48, "text": " Mm-hmm."}, {"id": 825, "start": 2333.5, "end": 2336.62, "text": " I'm so glad that Americans aren't the only stupid voters, though."}, {"id": 826, "start": 2336.9, "end": 2338.32, "text": " Well, we don't know that they're stupid."}, {"id": 827, "start": 2338.8, "end": 2339.62, "text": " Well, um..."}, {"id": 828, "start": 2339.62, "end": 2341.08, "text": " I mean, half of them are, obviously."}, {"id": 829, "start": 2341.98, "end": 2348.28, "text": " After the Brexit vote, Britain's highest Google searches were,"}, {"id": 830, "start": 2348.94, "end": 2349.88, "text": " what is the EU?"}, {"id": 831, "start": 2351.58, "end": 2352.38, "text": " They don't even know."}, {"id": 832, "start": 2352.46, "end": 2355.38, "text": " They should have done that Googling before they voted, not after."}, {"id": 833, "start": 2357.34, "end": 2357.78, "text": " Yeah."}, {"id": 834, "start": 2358.38, "end": 2359.66, "text": " That's going to be the same here."}, {"id": 835, "start": 2360.18, "end": 2361.14, "text": " What is a Republican?"}, {"id": 836, "start": 2361.54, "end": 2361.98, "text": " Right."}, {"id": 837, "start": 2361.98, "end": 2362.02, "text": " Right."}, {"id": 838, "start": 2362.02, "end": 2364.02, "text": " Excuse me."}, {"id": 839, "start": 2364.08, "end": 2364.7599999999998, "text": " What is a democracy?"}, {"id": 840, "start": 2365.08, "end": 2365.24, "text": " Yeah."}, {"id": 841, "start": 2366.0, "end": 2366.44, "text": " Exactly."}, {"id": 842, "start": 2366.74, "end": 2367.5, "text": " Or a republic."}, {"id": 843, "start": 2368.08, "end": 2368.94, "text": " What convention?"}, {"id": 844, "start": 2369.46, "end": 2369.68, "text": " Yeah."}, {"id": 845, "start": 2371.38, "end": 2371.94, "text": " All right."}, {"id": 846, "start": 2372.02, "end": 2372.54, "text": " So, yeah."}, {"id": 847, "start": 2372.68, "end": 2374.06, "text": " The FBI is just dumb."}, {"id": 848, "start": 2374.3, "end": 2378.7599999999998, "text": " There's actually a clip of a guy that they were interviewing after he voted and after"}, {"id": 849, "start": 2378.7599999999998, "end": 2383.7, "text": " they said, you know, tallying up the votes, and he started crying because he didn't realize"}, {"id": 850, "start": 2383.7, "end": 2384.94, "text": " his vote actually counted."}, {"id": 851, "start": 2385.42, "end": 2387.32, "text": " He thought it was a metaphorical vote."}, {"id": 852, "start": 2388.04, "end": 2388.28, "text": " What?"}, {"id": 853, "start": 2388.78, "end": 2389.22, "text": " What?"}, {"id": 854, "start": 2389.74, "end": 2391.4, "text": " Who has metaphorical votes?"}, {"id": 855, "start": 2391.4, "end": 2394.7000000000003, "text": " He thought that they were just voting to see if maybe they should do it."}, {"id": 856, "start": 2394.7400000000002, "end": 2396.36, "text": " Oh, so like it was a hypothetical vote?"}, {"id": 857, "start": 2396.38, "end": 2396.96, "text": " Basically, yeah."}, {"id": 858, "start": 2397.54, "end": 2400.8, "text": " And then they're like, no, we're counting the votes to actually leave."}, {"id": 859, "start": 2400.86, "end": 2402.46, "text": " And then he, like, broke down crying."}, {"id": 860, "start": 2402.58, "end": 2404.08, "text": " He's like, my vote actually counts?"}, {"id": 861, "start": 2404.1800000000003, "end": 2404.98, "text": " I'm like, are you kidding?"}, {"id": 862, "start": 2405.62, "end": 2408.26, "text": " So, is he saying that he would have lied in the poll?"}, {"id": 863, "start": 2409.0, "end": 2409.94, "text": " I don't know."}, {"id": 864, "start": 2410.78, "end": 2411.38, "text": " Why was it?"}, {"id": 865, "start": 2412.0, "end": 2412.54, "text": " I don't know."}, {"id": 866, "start": 2412.54, "end": 2412.58, "text": " What?"}, {"id": 867, "start": 2414.26, "end": 2417.06, "text": " Everything I've been seeing on this is just, oh, I don't know."}, {"id": 868, "start": 2417.44, "end": 2420.86, "text": " Again, unplug for a week, come back, world implodes."}, {"id": 869, "start": 2420.86, "end": 2421.38, "text": " I don't know."}, {"id": 870, "start": 2421.4, "end": 2422.78, "text": " I don't understand what's going on anymore."}, {"id": 871, "start": 2423.42, "end": 2427.76, "text": " Yeah, so apparently a whole bunch of people in, like, England want to move to Canada now."}, {"id": 872, "start": 2428.88, "end": 2430.1400000000003, "text": " Poor Canada, right?"}, {"id": 873, "start": 2430.1800000000003, "end": 2433.54, "text": " Because everybody here wants to move to Canada if Trump gets elected, right?"}, {"id": 874, "start": 2433.8, "end": 2435.86, "text": " Or, at least that's what I see online."}, {"id": 875, "start": 2435.96, "end": 2437.2000000000003, "text": " It's because Canada's nice."}, {"id": 876, "start": 2437.56, "end": 2440.2200000000003, "text": " And mostly moose."}, {"id": 877, "start": 2441.9, "end": 2443.38, "text": " They have more moose than people."}, {"id": 878, "start": 2444.02, "end": 2444.48, "text": " Poor Canada."}, {"id": 879, "start": 2444.86, "end": 2445.44, "text": " I feel bad."}, {"id": 880, "start": 2446.26, "end": 2449.36, "text": " I mean, they really have to, they're going to have to build a wall on their southern border."}, {"id": 881, "start": 2449.6400000000003, "end": 2450.6800000000003, "text": " That's what's going to have to happen."}, {"id": 882, "start": 2451.38, "end": 2453.86, "text": " Are they going to make us pay for it?"}, {"id": 883, "start": 2454.76, "end": 2456.06, "text": " They probably will."}, {"id": 884, "start": 2457.7200000000003, "end": 2458.98, "text": " Oh, my gosh."}, {"id": 885, "start": 2459.54, "end": 2460.44, "text": " Poor Canada."}, {"id": 886, "start": 2461.2000000000003, "end": 2461.6800000000003, "text": " I'm sorry."}, {"id": 887, "start": 2462.34, "end": 2462.82, "text": " I'm sorry."}, {"id": 888, "start": 2463.4, "end": 2464.6, "text": " Oh, my God."}, {"id": 889, "start": 2467.36, "end": 2474.04, "text": " Other dumb stuff in the news is that the U.S. Customs Department wants to collect social media account information at the border."}, {"id": 890, "start": 2474.96, "end": 2478.6, "text": " They want to be like, give me your passport and your Twitter handle, please."}, {"id": 891, "start": 2480.76, "end": 2481.28, "text": " Wow."}, {"id": 892, "start": 2481.38, "end": 2484.06, "text": " What are we doing as a people?"}, {"id": 893, "start": 2484.2400000000002, "end": 2486.02, "text": " I totally understand why, right?"}, {"id": 894, "start": 2486.32, "end": 2489.6400000000003, "text": " Because people are very, very honest on Twitter."}, {"id": 895, "start": 2489.86, "end": 2490.2400000000002, "text": " Mm-hmm."}, {"id": 896, "start": 2490.7000000000003, "end": 2490.94, "text": " Right?"}, {"id": 897, "start": 2491.06, "end": 2492.6, "text": " Like, frightfully so."}, {"id": 898, "start": 2492.6600000000003, "end": 2493.56, "text": " Online in general."}, {"id": 899, "start": 2493.7000000000003, "end": 2493.84, "text": " Right."}, {"id": 900, "start": 2494.04, "end": 2501.1, "text": " So, yeah, if we could just look up the kind of stuff that you're actually talking about, yeah, who knows?"}, {"id": 901, "start": 2501.2200000000003, "end": 2503.82, "text": " It might do a better job of what they're doing now."}, {"id": 902, "start": 2504.3, "end": 2510.0, "text": " I have to say something in regards to the whole Orlando shooting."}, {"id": 903, "start": 2510.6800000000003, "end": 2511.2200000000003, "text": " And why?"}, {"id": 904, "start": 2511.38, "end": 2518.42, "text": " Because a lot of this stuff is sort of coming up anyway, which is, just one comment."}, {"id": 905, "start": 2519.12, "end": 2523.1800000000003, "text": " Hey, NSA, what would you say you do here?"}, {"id": 906, "start": 2524.4, "end": 2524.8, "text": " Right?"}, {"id": 907, "start": 2525.0, "end": 2528.34, "text": " It's just, you didn't know what's going on here?"}, {"id": 908, "start": 2528.82, "end": 2529.54, "text": " You didn't know?"}, {"id": 909, "start": 2530.0, "end": 2530.2000000000003, "text": " Right?"}, {"id": 910, "start": 2530.6, "end": 2532.7000000000003, "text": " You better start, like, looking on Twitter."}, {"id": 911, "start": 2533.62, "end": 2534.96, "text": " I think that's not a bad idea."}, {"id": 912, "start": 2535.38, "end": 2538.6600000000003, "text": " I mean, I don't know how they're going to implement that, because you could just say, I don't have one."}, {"id": 913, "start": 2538.82, "end": 2539.38, "text": " What are you going to do?"}, {"id": 914, "start": 2540.12, "end": 2541.2400000000002, "text": " You can look it up real easy."}, {"id": 915, "start": 2542.26, "end": 2545.56, "text": " People look up your info online to hire you for a job."}, {"id": 916, "start": 2545.7000000000003, "end": 2549.38, "text": " The NSA can't look into a suspicious person that they're already looking into."}, {"id": 917, "start": 2549.38, "end": 2555.88, "text": " That's what we do, is we get a whole bunch of crazy college, like, people that can do doxing."}, {"id": 918, "start": 2556.1400000000003, "end": 2556.2200000000003, "text": " Right?"}, {"id": 919, "start": 2556.28, "end": 2558.1800000000003, "text": " They're just going to dox everyone that comes across the border."}, {"id": 920, "start": 2558.6600000000003, "end": 2559.3, "text": " That's what they're going to do."}, {"id": 921, "start": 2559.58, "end": 2564.7400000000002, "text": " Let's take a moment to mention our sponsors again, because the first hour is over."}, {"id": 922, "start": 2565.06, "end": 2565.2200000000003, "text": " Wow."}, {"id": 923, "start": 2565.56, "end": 2566.84, "text": " That went fast."}, {"id": 924, "start": 2567.12, "end": 2567.56, "text": " All right."}, {"id": 925, "start": 2567.6600000000003, "end": 2570.2200000000003, "text": " So, Perfection Hourworks, of course."}, {"id": 926, "start": 2570.7400000000002, "end": 2571.2200000000003, "text": " Of course."}, {"id": 927, "start": 2571.2200000000003, "end": 2571.5000000000005, "text": " Of course."}, {"id": 928, "start": 2571.7000000000003, "end": 2574.9, "text": " Remember that your choice is Perfection Hourworks or death."}, {"id": 929, "start": 2575.5000000000005, "end": 2576.42, "text": " That's really your..."}, {"id": 930, "start": 2576.42, "end": 2577.26, "text": " The choice is yours."}, {"id": 931, "start": 2577.34, "end": 2577.88, "text": " That's right."}, {"id": 932, "start": 2578.1600000000003, "end": 2578.94, "text": " You want to be safe."}, {"id": 933, "start": 2579.1400000000003, "end": 2579.78, "text": " You want to be careful."}, {"id": 934, "start": 2580.2000000000003, "end": 2580.94, "text": " You want to be cool."}, {"id": 935, "start": 2581.3, "end": 2581.6600000000003, "text": " Oh, yeah."}, {"id": 936, "start": 2581.86, "end": 2582.9800000000005, "text": " You want your air conditioning to work?"}, {"id": 937, "start": 2583.1200000000003, "end": 2584.1000000000004, "text": " You want your brakes to not leak?"}, {"id": 938, "start": 2584.1000000000004, "end": 2586.92, "text": " You want to make sure that you don't have pack rats?"}, {"id": 939, "start": 2587.36, "end": 2587.6400000000003, "text": " Bam."}, {"id": 940, "start": 2587.78, "end": 2588.6200000000003, "text": " Perfection Hourworks."}, {"id": 941, "start": 2588.96, "end": 2590.6400000000003, "text": " Also, you can support us on Patreon."}, {"id": 942, "start": 2590.76, "end": 2592.6400000000003, "text": " You can go to gurushow.com slash Patreon."}, {"id": 943, "start": 2593.44, "end": 2596.5200000000004, "text": " And, of course, Rob made that work now."}, {"id": 944, "start": 2596.8, "end": 2597.0000000000005, "text": " Yeah."}, {"id": 945, "start": 2597.1800000000003, "end": 2597.34, "text": " Yeah."}, {"id": 946, "start": 2597.6600000000003, "end": 2599.38, "text": " Or patreon.com slash gurushow."}, {"id": 947, "start": 2600.0000000000005, "end": 2600.5000000000005, "text": " And if you..."}, {"id": 948, "start": 2600.5, "end": 2603.34, "text": " If you support us as little as a dollar a month, we give you our thanks."}, {"id": 949, "start": 2603.48, "end": 2606.96, "text": " If you give a bit more, you can make Tara say whatever you want."}, {"id": 950, "start": 2607.36, "end": 2609.38, "text": " And one particular case is..."}, {"id": 951, "start": 2609.38, "end": 2612.98, "text": " Desert Pro Commercial Cleaning LLC, the best Tucson janitorial services."}, {"id": 952, "start": 2613.16, "end": 2615.7, "text": " And you can find them at tucsondesertpro.com."}, {"id": 953, "start": 2616.04, "end": 2619.52, "text": " Now, if you are interested in being a sponsor for the second hour of this show,"}, {"id": 954, "start": 2619.52, "end": 2624.52, "text": " or sharing sponsorship, you have that opportunity, give us a call at 304-8300"}, {"id": 955, "start": 2625.06, "end": 2627.52, "text": " or email us radio at azcomputerguru.com."}, {"id": 956, "start": 2628.6, "end": 2629.14, "text": " We'll be right back."}, {"id": 957, "start": 2630.5, "end": 2633.52, "text": " Welcome back to the Computer Guru Show, hour number two."}, {"id": 958, "start": 2633.84, "end": 2636.8, "text": " Give us a call, 790-2040, if you want to be part of the show."}, {"id": 959, "start": 2637.18, "end": 2640.36, "text": " This is your second hour of tech support for the weekend."}, {"id": 960, "start": 2640.8, "end": 2641.96, "text": " I missed that intro."}, {"id": 961, "start": 2642.24, "end": 2645.14, "text": " Yeah, that's supposed to be playing on the first, by the way, that one."}, {"id": 962, "start": 2646.4, "end": 2647.3, "text": " Last week was one."}, {"id": 963, "start": 2647.44, "end": 2648.2, "text": " This week is both."}, {"id": 964, "start": 2648.9, "end": 2649.08, "text": " Man."}, {"id": 965, "start": 2649.08, "end": 2649.3, "text": " Both."}, {"id": 966, "start": 2649.52, "end": 2651.0, "text": " All the hours now, play that one."}, {"id": 967, "start": 2651.12, "end": 2651.92, "text": " I'm going to get you a new one now."}, {"id": 968, "start": 2651.92, "end": 2652.04, "text": " All the hours."}, {"id": 969, "start": 2652.4, "end": 2653.36, "text": " I'm going to get you a new one now."}, {"id": 970, "start": 2653.58, "end": 2653.88, "text": " Got it."}, {"id": 971, "start": 2653.92, "end": 2657.16, "text": " I'm making you a new one, I think, when I have time."}, {"id": 972, "start": 2657.16, "end": 2658.74, "text": " In my free time, I'm doing that."}, {"id": 973, "start": 2659.0, "end": 2660.1, "text": " What free time?"}, {"id": 974, "start": 2660.5, "end": 2661.46, "text": " What are you talking about?"}, {"id": 975, "start": 2661.58, "end": 2663.44, "text": " I only work like 18 hours a day."}, {"id": 976, "start": 2663.56, "end": 2664.74, "text": " I've got plenty of time."}, {"id": 977, "start": 2666.92, "end": 2667.28, "text": " What?"}, {"id": 978, "start": 2667.58, "end": 2667.9, "text": " Nothing."}, {"id": 979, "start": 2668.1, "end": 2668.32, "text": " Okay."}, {"id": 980, "start": 2668.74, "end": 2670.42, "text": " 790-2040, if you want to be part of the show."}, {"id": 981, "start": 2670.62, "end": 2672.68, "text": " That's why I need more coffee right now."}, {"id": 982, "start": 2672.82, "end": 2673.38, "text": " More coffee."}, {"id": 983, "start": 2673.62, "end": 2674.54, "text": " More coffee."}, {"id": 984, "start": 2675.72, "end": 2678.06, "text": " Are you going to drink it, or are you just going to hold it and breathe it in?"}, {"id": 985, "start": 2679.04, "end": 2681.96, "text": " This is my, I was waiting for somebody to say cut."}, {"id": 986, "start": 2682.44, "end": 2683.16, "text": " He's posing."}, {"id": 987, "start": 2683.3, "end": 2683.9, "text": " I'm posing, all right."}, {"id": 988, "start": 2683.9, "end": 2684.12, "text": " Poser."}, {"id": 989, "start": 2684.52, "end": 2684.76, "text": " Yeah."}, {"id": 990, "start": 2685.32, "end": 2686.76, "text": " Too bad we don't have a camera in here."}, {"id": 991, "start": 2686.76, "end": 2688.22, "text": " Tell me about this Pokemon Go."}, {"id": 992, "start": 2688.68, "end": 2689.12, "text": " Pokemon?"}, {"id": 993, "start": 2689.68, "end": 2690.1, "text": " Yeah."}, {"id": 994, "start": 2690.5, "end": 2693.24, "text": " Okay, so Pokemon."}, {"id": 995, "start": 2694.76, "end": 2695.24, "text": " Yeah."}, {"id": 996, "start": 2695.62, "end": 2700.3, "text": " Okay, so the little game that you capture animals, and then you battle them against each other."}, {"id": 997, "start": 2700.58, "end": 2702.24, "text": " Been going since the 90s, right?"}, {"id": 998, "start": 2703.04, "end": 2704.78, "text": " They've got a bunch of versions."}, {"id": 999, "start": 2705.16, "end": 2708.18, "text": " I knew all 151 Pokemon."}, {"id": 1000, "start": 2708.46, "end": 2712.1, "text": " Now they're up to like 900 or something ridiculous like that."}, {"id": 1001, "start": 2713.02, "end": 2717.4, "text": " Anyway, Nintendo is moving into smartphones."}, {"id": 1002, "start": 2717.4, "end": 2718.16, "text": " Oh, yeah?"}, {"id": 1003, "start": 2718.88, "end": 2720.4, "text": " Pokemon Go is not for..."}, {"id": 1004, "start": 2720.5, "end": 2722.96, "text": " It's not for the Wii U or the DS."}, {"id": 1005, "start": 2723.12, "end": 2724.34, "text": " It's actually for your smartphone."}, {"id": 1006, "start": 2725.3, "end": 2730.56, "text": " And it's an attachment where it's an augmented reality game, and you catch Pokemon."}, {"id": 1007, "start": 2731.18, "end": 2736.24, "text": " Something that everybody's been wanting to do since they played it when they were kids in the 90s."}, {"id": 1008, "start": 2736.6, "end": 2738.86, "text": " Oddly enough, I've never played the Pokemon."}, {"id": 1009, "start": 2739.26, "end": 2740.58, "text": " It doesn't surprise me."}, {"id": 1010, "start": 2740.8, "end": 2742.18, "text": " I'm just going to say."}, {"id": 1011, "start": 2743.12, "end": 2744.08, "text": " Why not?"}, {"id": 1012, "start": 2744.34, "end": 2746.54, "text": " I can't really see you playing Pokemon."}, {"id": 1013, "start": 2747.76, "end": 2750.26, "text": " But yeah, for the 90s kids out there, they're loving this."}, {"id": 1014, "start": 2750.26, "end": 2754.78, "text": " Because you actually can walk around with your smartphone, like I'll say in downtown Tucson,"}, {"id": 1015, "start": 2755.0, "end": 2758.78, "text": " and there will be a Pikachu behind the phone pole, and you have to go and try to catch the Pikachu."}, {"id": 1016, "start": 2759.1800000000003, "end": 2762.8, "text": " And it looks pretty cool, I'm going to say."}, {"id": 1017, "start": 2762.88, "end": 2764.2400000000002, "text": " I don't know if I'm going to get it."}, {"id": 1018, "start": 2764.36, "end": 2766.5, "text": " It's actually not real expensive."}, {"id": 1019, "start": 2766.6600000000003, "end": 2768.0400000000004, "text": " I think they were saying $26?"}, {"id": 1020, "start": 2769.5400000000004, "end": 2770.3, "text": " $25.99?"}, {"id": 1021, "start": 2771.1800000000003, "end": 2777.44, "text": " I've always had this fear when I'm driving around in neighborhoods that some kid is going to chase a ball out into the street."}, {"id": 1022, "start": 2778.0200000000004, "end": 2778.1800000000003, "text": " Yeah."}, {"id": 1023, "start": 2778.1800000000003, "end": 2780.1000000000004, "text": " And then I have to slam on the brakes to avoid..."}, {"id": 1024, "start": 2780.1, "end": 2781.2599999999998, "text": " Running over some kid."}, {"id": 1025, "start": 2781.86, "end": 2783.04, "text": " No, it's going to be a Pokeball."}, {"id": 1026, "start": 2783.38, "end": 2786.38, "text": " Now there's going to be some invisible thing that I can't see."}, {"id": 1027, "start": 2786.52, "end": 2789.3399999999997, "text": " That they're running around with their cell phone in front of them."}, {"id": 1028, "start": 2789.42, "end": 2789.58, "text": " Yeah."}, {"id": 1029, "start": 2790.94, "end": 2792.7999999999997, "text": " There's lots of games like that already."}, {"id": 1030, "start": 2793.12, "end": 2794.1, "text": " But Pokemon, yeah."}, {"id": 1031, "start": 2794.58, "end": 2795.56, "text": " That's the big one."}, {"id": 1032, "start": 2795.68, "end": 2802.02, "text": " Well, especially since Nintendo has been shifting away from their own consoles, which is interesting."}, {"id": 1033, "start": 2802.3199999999997, "end": 2805.88, "text": " The other thing that they came out with a few months ago is called Miitomo."}, {"id": 1034, "start": 2806.54, "end": 2809.92, "text": " And you take your little Mii character, your avatar."}, {"id": 1035, "start": 2810.1, "end": 2811.66, "text": " And it's on a smartphone."}, {"id": 1036, "start": 2811.7799999999997, "end": 2812.96, "text": " It's a smartphone game."}, {"id": 1037, "start": 2813.2599999999998, "end": 2819.8399999999997, "text": " It's not on the DS or on the Wii U or they're coming with the NX is the next thing."}, {"id": 1038, "start": 2820.2, "end": 2826.8399999999997, "text": " Well, considering how much money like Flappy Bird made or any of the King software games,"}, {"id": 1039, "start": 2827.7, "end": 2831.7599999999998, "text": " I could totally understand that that's a market that they probably want to get into."}, {"id": 1040, "start": 2831.88, "end": 2832.1, "text": " Yeah."}, {"id": 1041, "start": 2832.46, "end": 2834.7, "text": " I mean, because everybody has a smartphone now."}, {"id": 1042, "start": 2834.86, "end": 2835.18, "text": " Right."}, {"id": 1043, "start": 2835.7, "end": 2836.54, "text": " There's a lot of money out there."}, {"id": 1044, "start": 2836.62, "end": 2837.86, "text": " I mean, how much was a Flappy Bird making?"}, {"id": 1045, "start": 2838.44, "end": 2838.94, "text": " Oh, millions."}, {"id": 1046, "start": 2838.94, "end": 2839.62, "text": " Millions."}, {"id": 1047, "start": 2840.1, "end": 2842.3399999999997, "text": " Like $5 million a month or something."}, {"id": 1048, "start": 2842.3399999999997, "end": 2843.24, "text": " I think it was even more."}, {"id": 1049, "start": 2843.38, "end": 2844.7799999999997, "text": " Yeah, it was ridiculous."}, {"id": 1050, "start": 2845.3399999999997, "end": 2846.58, "text": " Crazy amounts of money."}, {"id": 1051, "start": 2846.94, "end": 2847.6, "text": " It was a lot of money."}, {"id": 1052, "start": 2847.74, "end": 2848.66, "text": " I don't know what the number was."}, {"id": 1053, "start": 2848.98, "end": 2850.1, "text": " Maybe somebody will chat."}, {"id": 1054, "start": 2850.22, "end": 2854.46, "text": " And it probably took them like 20 minutes to program because it's not an intensive game."}, {"id": 1055, "start": 2855.56, "end": 2858.8399999999997, "text": " Let's not diminish the work involved with that dude's game."}, {"id": 1056, "start": 2858.86, "end": 2862.4, "text": " No, you do work, but it's, you know, there's only..."}, {"id": 1057, "start": 2862.4, "end": 2865.7, "text": " It probably took at least a day to program."}, {"id": 1058, "start": 2866.46, "end": 2866.92, "text": " At least."}, {"id": 1059, "start": 2867.98, "end": 2868.46, "text": " Maybe."}, {"id": 1060, "start": 2868.46, "end": 2868.58, "text": " Maybe."}, {"id": 1061, "start": 2868.58, "end": 2871.74, "text": " I've seen more intensive games that come out in a day."}, {"id": 1062, "start": 2872.64, "end": 2875.92, "text": " For instance, when Charlie Sheen had his winning thing,"}, {"id": 1063, "start": 2876.24, "end": 2878.7599999999998, "text": " the very next day after that big interview,"}, {"id": 1064, "start": 2879.14, "end": 2880.2999999999997, "text": " there was a game about it."}, {"id": 1065, "start": 2881.64, "end": 2883.56, "text": " And it was more intensive than Flappy Bird."}, {"id": 1066, "start": 2884.66, "end": 2888.84, "text": " Yeah, but did it make you want to crush your phone as much as Flappy Bird?"}, {"id": 1067, "start": 2889.5, "end": 2893.16, "text": " No, but I didn't really care about Flappy Bird as much."}, {"id": 1068, "start": 2893.24, "end": 2896.3199999999997, "text": " I'm almost convinced that the phone insurance companies"}, {"id": 1069, "start": 2896.3199999999997, "end": 2898.2, "text": " had something to do with that game being put out."}, {"id": 1070, "start": 2898.58, "end": 2901.2, "text": " I honestly don't understand what the madness was about."}, {"id": 1071, "start": 2901.48, "end": 2902.04, "text": " It's a hard game."}, {"id": 1072, "start": 2902.04, "end": 2902.68, "text": " I played it."}, {"id": 1073, "start": 2903.24, "end": 2906.44, "text": " Yeah, a lot of games are hard, but I don't know."}, {"id": 1074, "start": 2907.44, "end": 2910.22, "text": " I was kind of like, okay, well, this sucks, and I uninstalled it."}, {"id": 1075, "start": 2910.22, "end": 2910.7999999999997, "text": " I know what it is."}, {"id": 1076, "start": 2910.8199999999997, "end": 2911.52, "text": " You're okay with losing."}, {"id": 1077, "start": 2911.7599999999998, "end": 2912.34, "text": " That's what it is."}, {"id": 1078, "start": 2912.62, "end": 2913.8199999999997, "text": " It happens a lot."}, {"id": 1079, "start": 2914.62, "end": 2919.58, "text": " I've been losing video games since I was about four when I started playing, so..."}, {"id": 1080, "start": 2920.18, "end": 2920.94, "text": " I don't like to lose."}, {"id": 1081, "start": 2921.38, "end": 2922.14, "text": " I know you don't."}, {"id": 1082, "start": 2923.12, "end": 2923.98, "text": " I'm not a loser."}, {"id": 1083, "start": 2923.98, "end": 2927.54, "text": " I don't like to lose, but I have a younger brother that's way better at video games,"}, {"id": 1084, "start": 2927.54, "end": 2929.6, "text": " so I do lose quite often."}, {"id": 1085, "start": 2931.7599999999998, "end": 2932.16, "text": " Yeah."}, {"id": 1086, "start": 2932.98, "end": 2938.02, "text": " Yeah, speaking of, I was playing the Hitman Absolution game,"}, {"id": 1087, "start": 2938.3, "end": 2941.48, "text": " and it turns out that I'm no good at Hitman Absolution."}, {"id": 1088, "start": 2944.56, "end": 2946.52, "text": " It turns out I'm not good at this game at all."}, {"id": 1089, "start": 2947.38, "end": 2950.58, "text": " And the reason I was playing it, the whole reason I got it,"}, {"id": 1090, "start": 2950.58, "end": 2955.64, "text": " is because I was reading some articles about it for another project,"}, {"id": 1091, "start": 2955.64, "end": 2961.3599999999997, "text": " and it was, they were making some parallels to life with this game."}, {"id": 1092, "start": 2961.52, "end": 2961.66, "text": " Right."}, {"id": 1093, "start": 2961.8799999999997, "end": 2968.22, "text": " And it turns out that all of these parallels to life are not true."}, {"id": 1094, "start": 2970.12, "end": 2973.3199999999997, "text": " And color me shocked, it's a video game."}, {"id": 1095, "start": 2973.46, "end": 2973.7, "text": " Yeah."}, {"id": 1096, "start": 2973.8399999999997, "end": 2975.9, "text": " So, but, you know, I had to see for myself."}, {"id": 1097, "start": 2976.06, "end": 2976.2999999999997, "text": " Right."}, {"id": 1098, "start": 2976.3799999999997, "end": 2983.9, "text": " I wanted to see, well, you know, is this game promoting the, you know, murder of strippers and stuff?"}, {"id": 1099, "start": 2983.9, "end": 2984.3399999999997, "text": " Yeah."}, {"id": 1100, "start": 2984.34, "end": 2986.6600000000003, "text": " And, no, it's not."}, {"id": 1101, "start": 2987.2200000000003, "end": 2990.6600000000003, "text": " It's, in fact, you get a bonus if you just leave them alone."}, {"id": 1102, "start": 2990.98, "end": 2991.1400000000003, "text": " Yeah."}, {"id": 1103, "start": 2991.8, "end": 2994.6600000000003, "text": " By the way, side note, JT and Callie says,"}, {"id": 1104, "start": 2994.76, "end": 2998.94, "text": " the developer of Flappy Bird was making $50,000 per day on ad revenue."}, {"id": 1105, "start": 3000.2400000000002, "end": 3001.42, "text": " $50,000 a day."}, {"id": 1106, "start": 3001.6800000000003, "end": 3002.1400000000003, "text": " A day."}, {"id": 1107, "start": 3003.08, "end": 3006.6800000000003, "text": " For one of those little banner ads at the bottom that you accidentally click."}, {"id": 1108, "start": 3007.8, "end": 3008.9, "text": " Those are the worst."}, {"id": 1109, "start": 3009.8, "end": 3011.2200000000003, "text": " I'm in the wrong line of work."}, {"id": 1110, "start": 3011.3, "end": 3012.6200000000003, "text": " I was going to say, we're doing something wrong, man."}, {"id": 1111, "start": 3012.6200000000003, "end": 3014.32, "text": " I need to stop."}, {"id": 1112, "start": 3014.32, "end": 3015.28, "text": " I need to stop fixing people's computers."}, {"id": 1113, "start": 3015.28, "end": 3020.42, "text": " You went to college for the right line of work, and then you started fixing people's computers instead."}, {"id": 1114, "start": 3020.56, "end": 3026.2000000000003, "text": " Yeah, I had to get all, like, nice about it and be like, I'm going to fix your computer because I don't like to see it broken."}, {"id": 1115, "start": 3026.52, "end": 3026.76, "text": " Yeah."}, {"id": 1116, "start": 3026.96, "end": 3030.48, "text": " Oh, I really should be like, here, accidentally click on this."}, {"id": 1117, "start": 3032.26, "end": 3034.28, "text": " That's like 90% of ads, too."}, {"id": 1118, "start": 3035.04, "end": 3035.6800000000003, "text": " Oh, man."}, {"id": 1119, "start": 3035.6800000000003, "end": 3037.76, "text": " Pop up right when you're about to click the next page button."}, {"id": 1120, "start": 3039.28, "end": 3040.2200000000003, "text": " That's it, I quit."}, {"id": 1121, "start": 3040.4, "end": 3042.38, "text": " Those are the ads that infuriate me."}, {"id": 1122, "start": 3042.88, "end": 3044.1600000000003, "text": " $50,000 a day."}, {"id": 1123, "start": 3044.32, "end": 3045.1600000000003, "text": " A day."}, {"id": 1124, "start": 3046.44, "end": 3049.36, "text": " I'd like $50,000 a year at this point."}, {"id": 1125, "start": 3050.0800000000004, "end": 3051.7200000000003, "text": " I'd be okay with that."}, {"id": 1126, "start": 3051.86, "end": 3052.82, "text": " A month, you know."}, {"id": 1127, "start": 3053.34, "end": 3054.04, "text": " Let's not get greedy."}, {"id": 1128, "start": 3054.1400000000003, "end": 3054.42, "text": " A month."}, {"id": 1129, "start": 3054.6000000000004, "end": 3055.52, "text": " I'd still go with a year."}, {"id": 1130, "start": 3055.78, "end": 3056.52, "text": " I'm good with a year."}, {"id": 1131, "start": 3056.76, "end": 3057.46, "text": " You're good with a year?"}, {"id": 1132, "start": 3057.54, "end": 3058.32, "text": " I'm good with a year."}, {"id": 1133, "start": 3058.38, "end": 3059.4, "text": " By the way, Tara needs a job."}, {"id": 1134, "start": 3059.54, "end": 3060.78, "text": " Yeah, pretty much."}, {"id": 1135, "start": 3060.8, "end": 3063.94, "text": " You know anybody that wants to hire Tara, she needs a job."}, {"id": 1136, "start": 3064.94, "end": 3065.52, "text": " All right."}, {"id": 1137, "start": 3066.92, "end": 3067.56, "text": " Excuse me."}, {"id": 1138, "start": 3068.32, "end": 3068.7200000000003, "text": " You all right?"}, {"id": 1139, "start": 3068.98, "end": 3069.44, "text": " You good?"}, {"id": 1140, "start": 3070.44, "end": 3070.82, "text": " I know."}, {"id": 1141, "start": 3070.94, "end": 3072.34, "text": " You said you weren't feeling good, so."}, {"id": 1142, "start": 3072.34, "end": 3073.6200000000003, "text": " I'm feeling fine now."}, {"id": 1143, "start": 3073.6800000000003, "end": 3074.1200000000003, "text": " It's just this."}, {"id": 1144, "start": 3074.32, "end": 3076.26, "text": " This cough-on-co-way is bothering me."}, {"id": 1145, "start": 3076.7000000000003, "end": 3077.6000000000004, "text": " It's making me crazy."}, {"id": 1146, "start": 3078.36, "end": 3078.52, "text": " All right."}, {"id": 1147, "start": 3078.6000000000004, "end": 3085.52, "text": " So, apparently, Netflix, this is somewhat unconfirmed, right?"}, {"id": 1148, "start": 3085.56, "end": 3089.6400000000003, "text": " Because it's only on DSL Reports, and we haven't found it anywhere else."}, {"id": 1149, "start": 3090.1400000000003, "end": 3094.44, "text": " Not to mention, I don't really understand how it really alleviates the problem."}, {"id": 1150, "start": 3094.84, "end": 3098.8, "text": " But according to DSL Reports, Netflix is going to soon allow users."}, {"id": 1151, "start": 3099.8, "end": 3102.6200000000003, "text": " Netflix is going to allow users to download movies."}, {"id": 1152, "start": 3102.62, "end": 3107.52, "text": " And somehow, this is supposed to help people that are on bandwidth caps."}, {"id": 1153, "start": 3108.0, "end": 3112.16, "text": " I don't see how it is, because you've got to download the same amount of information, don't you?"}, {"id": 1154, "start": 3113.38, "end": 3118.64, "text": " Well, I think it's a little bit less to download a movie for watching rather than to stream it."}, {"id": 1155, "start": 3119.74, "end": 3120.14, "text": " Yeah."}, {"id": 1156, "start": 3120.3199999999997, "end": 3121.02, "text": " I think."}, {"id": 1157, "start": 3121.6, "end": 3124.22, "text": " And I don't know how that's going to help."}, {"id": 1158, "start": 3124.2999999999997, "end": 3128.7, "text": " And first of all, I don't think that's actually going to happen, because why?"}, {"id": 1159, "start": 3129.6, "end": 3132.6, "text": " And, you know, I just don't get it."}, {"id": 1160, "start": 3132.6, "end": 3135.02, "text": " I don't understand how that's going to help anything."}, {"id": 1161, "start": 3135.98, "end": 3138.14, "text": " I guess there is one other source."}, {"id": 1162, "start": 3138.2999999999997, "end": 3141.4, "text": " Fortune.com is talking about it, too."}, {"id": 1163, "start": 3141.48, "end": 3142.7, "text": " But that's about it."}, {"id": 1164, "start": 3142.7, "end": 3143.2999999999997, "text": " Not 4chan."}, {"id": 1165, "start": 3143.44, "end": 3143.74, "text": " Fortune."}, {"id": 1166, "start": 3144.22, "end": 3144.7, "text": " Fortune."}, {"id": 1167, "start": 3144.96, "end": 3146.1, "text": " Yeah, not 4chan."}, {"id": 1168, "start": 3146.46, "end": 3148.2799999999997, "text": " Don't go to 4chan.com."}, {"id": 1169, "start": 3148.54, "end": 3150.72, "text": " Unless you have a strong sense of."}, {"id": 1170, "start": 3150.72, "end": 3151.36, "text": " No, just don't."}, {"id": 1171, "start": 3151.52, "end": 3152.22, "text": " Oh, no?"}, {"id": 1172, "start": 3152.4, "end": 3152.9, "text": " Don't."}, {"id": 1173, "start": 3152.98, "end": 3153.46, "text": " Ever."}, {"id": 1174, "start": 3154.62, "end": 3154.94, "text": " Don't."}, {"id": 1175, "start": 3154.98, "end": 3155.2599999999998, "text": " It's a."}, {"id": 1176, "start": 3155.48, "end": 3155.8199999999997, "text": " It's."}, {"id": 1177, "start": 3156.06, "end": 3156.48, "text": " No."}, {"id": 1178, "start": 3156.9, "end": 3157.74, "text": " Don't go."}, {"id": 1179, "start": 3158.7799999999997, "end": 3160.18, "text": " 4chan is not that bad."}, {"id": 1180, "start": 3160.86, "end": 3161.22, "text": " All right."}, {"id": 1181, "start": 3161.22, "end": 3161.7799999999997, "text": " Yeah, it is."}, {"id": 1182, "start": 3162.08, "end": 3162.38, "text": " Never mind."}, {"id": 1183, "start": 3162.98, "end": 3164.2799999999997, "text": " 4chan is never good."}, {"id": 1184, "start": 3164.4, "end": 3165.14, "text": " I retract that."}, {"id": 1185, "start": 3165.2599999999998, "end": 3165.8199999999997, "text": " 4chan is."}, {"id": 1186, "start": 3165.8199999999997, "end": 3166.42, "text": " It's terrible."}, {"id": 1187, "start": 3167.04, "end": 3167.62, "text": " Don't go."}, {"id": 1188, "start": 3167.86, "end": 3170.06, "text": " Listeners, I'm telling you, do not go."}, {"id": 1189, "start": 3170.56, "end": 3171.8199999999997, "text": " You won't like it."}, {"id": 1190, "start": 3171.8199999999997, "end": 3174.7599999999998, "text": " If you want to see the dark underbelly of the Internet, 4chan."}, {"id": 1191, "start": 3175.06, "end": 3175.96, "text": " Don't go."}, {"id": 1192, "start": 3176.52, "end": 3178.64, "text": " We have to offer both sides of this here."}, {"id": 1193, "start": 3179.22, "end": 3179.3399999999997, "text": " Right?"}, {"id": 1194, "start": 3179.46, "end": 3179.9, "text": " We've got to be."}, {"id": 1195, "start": 3180.48, "end": 3182.66, "text": " We've got to inform the listeners."}, {"id": 1196, "start": 3182.86, "end": 3184.5, "text": " You're going to make them all jaded."}, {"id": 1197, "start": 3185.16, "end": 3185.52, "text": " What's that?"}, {"id": 1198, "start": 3185.6, "end": 3186.74, "text": " You're going to make them all jaded."}, {"id": 1199, "start": 3187.24, "end": 3187.94, "text": " No, no, no, no."}, {"id": 1200, "start": 3188.12, "end": 3192.56, "text": " They'll totally appreciate the sites that don't have all of the things."}, {"id": 1201, "start": 3192.56, "end": 3192.58, "text": " They'll totally appreciate the sites that don't have all of the things."}, {"id": 1202, "start": 3192.58, "end": 3194.5, "text": " The sites that make 4chan what it is."}, {"id": 1203, "start": 3196.94, "end": 3199.2799999999997, "text": " Without the darkness, there can be no light."}, {"id": 1204, "start": 3199.84, "end": 3200.14, "text": " What is that?"}, {"id": 1205, "start": 3200.58, "end": 3201.02, "text": " 4chan?"}, {"id": 1206, "start": 3201.12, "end": 3201.54, "text": " F-O-R?"}, {"id": 1207, "start": 3201.56, "end": 3201.88, "text": " Don't."}, {"id": 1208, "start": 3202.12, "end": 3203.86, "text": " No, no, no, no, no, no, no, no."}, {"id": 1209, "start": 3203.86, "end": 3204.72, "text": " I've never heard of it."}, {"id": 1210, "start": 3204.7799999999997, "end": 3205.48, "text": " That's why I'm curious."}, {"id": 1211, "start": 3205.48, "end": 3205.7599999999998, "text": " Number four."}, {"id": 1212, "start": 3205.7599999999998, "end": 3208.74, "text": " There's a reason you've never heard of it, and you don't want to know."}, {"id": 1213, "start": 3208.98, "end": 3209.6, "text": " Number four."}, {"id": 1214, "start": 3209.92, "end": 3210.92, "text": " C-H-A-N."}, {"id": 1215, "start": 3211.44, "end": 3212.2599999999998, "text": " Dot org."}, {"id": 1216, "start": 3212.44, "end": 3212.94, "text": " Dot org."}, {"id": 1217, "start": 3213.24, "end": 3213.7999999999997, "text": " 4chan.org."}, {"id": 1218, "start": 3214.96, "end": 3219.2599999999998, "text": " And if you want the government to look in your computer, go to 4chan, because they go"}, {"id": 1219, "start": 3219.2599999999998, "end": 3221.42, "text": " to that site a lot to find people."}, {"id": 1220, "start": 3221.42, "end": 3222.54, "text": " It's the forbidden fruit."}, {"id": 1221, "start": 3222.54, "end": 3223.36, "text": " It's bad."}, {"id": 1222, "start": 3223.52, "end": 3223.9, "text": " Don't go."}, {"id": 1223, "start": 3224.2599999999998, "end": 3225.16, "text": " Don't go to 4chan."}, {"id": 1224, "start": 3225.88, "end": 3227.34, "text": " Number 4chan.org."}, {"id": 1225, "start": 3227.44, "end": 3227.88, "text": " Don't go there."}, {"id": 1226, "start": 3231.96, "end": 3237.12, "text": " Anywho, but yeah, 4chan.com is also saying the same thing, but it's based off of an interview"}, {"id": 1227, "start": 3237.12, "end": 3241.6, "text": " that this guy, one of the heads of Netflix, did."}, {"id": 1228, "start": 3241.62, "end": 3243.1, "text": " I just don't see how it would help."}, {"id": 1229, "start": 3244.2799999999997, "end": 3247.1, "text": " I don't know if it's something that you can help."}, {"id": 1230, "start": 3247.1, "end": 3252.22, "text": " I think it looks to me like it's something more that you can download the movie temporarily,"}, {"id": 1231, "start": 3252.54, "end": 3254.56, "text": " if you don't have a Wi-Fi connection."}, {"id": 1232, "start": 3255.1, "end": 3258.74, "text": " Here, I guess this would be if you're going to watch the movie again, right?"}, {"id": 1233, "start": 3258.84, "end": 3259.6, "text": " If you're going to watch it twice."}, {"id": 1234, "start": 3259.74, "end": 3260.46, "text": " Yeah, or that."}, {"id": 1235, "start": 3260.64, "end": 3263.44, "text": " Then that way you get to download it once, watch it twice locally."}, {"id": 1236, "start": 3264.14, "end": 3265.3, "text": " That would save you some bandwidth."}, {"id": 1237, "start": 3265.54, "end": 3269.3, "text": " Or like if you're going on an airplane or a driving trip and you don't have Wi-Fi on"}, {"id": 1238, "start": 3269.3, "end": 3269.74, "text": " your tablet."}, {"id": 1239, "start": 3270.2599999999998, "end": 3273.48, "text": " Yeah, I was going to say like vacation or something like that for the kids."}, {"id": 1240, "start": 3273.96, "end": 3274.44, "text": " Oh, yeah."}, {"id": 1241, "start": 3274.62, "end": 3276.6, "text": " That would have been really helpful last week."}, {"id": 1242, "start": 3276.88, "end": 3280.66, "text": " Considering the quality of movies that are on Netflix, I don't know if there's anything"}, {"id": 1243, "start": 3280.66, "end": 3281.66, "text": " that I would want to watch twice."}, {"id": 1244, "start": 3282.54, "end": 3284.84, "text": " But you don't have little kids anymore."}, {"id": 1245, "start": 3286.2599999999998, "end": 3286.8, "text": " That's true."}, {"id": 1246, "start": 3287.54, "end": 3288.3, "text": " That's true, yeah."}, {"id": 1247, "start": 3288.62, "end": 3291.86, "text": " I've seen the same YouTube videos 20 times in one day."}, {"id": 1248, "start": 3291.86, "end": 3298.38, "text": " My daughter has progressed past the most irritating stuff on the internet or movies."}, {"id": 1249, "start": 3299.46, "end": 3306.14, "text": " But now she watches these other things and I just, I don't know, I'm finally that older"}, {"id": 1250, "start": 3306.14, "end": 3308.7599999999998, "text": " person that's just slack-jawed going, what?"}, {"id": 1251, "start": 3309.46, "end": 3309.72, "text": " Yeah."}, {"id": 1252, "start": 3309.72, "end": 3311.02, "text": " What is she watching?"}, {"id": 1253, "start": 3311.02, "end": 3311.08, "text": " What is she watching?"}, {"id": 1254, "start": 3312.0, "end": 3318.34, "text": " And, you know, she's now 13 and I told her when she's 13 she can have a little more control"}, {"id": 1255, "start": 3318.34, "end": 3320.5, "text": " over her viewing preferences."}, {"id": 1256, "start": 3321.92, "end": 3325.58, "text": " And I still get a report, right, because she watches YouTube on her phone all day."}, {"id": 1257, "start": 3325.8, "end": 3330.02, "text": " And I still get a report of all the videos that she's watched and all that stuff."}, {"id": 1258, "start": 3330.2, "end": 3333.22, "text": " But it's like, okay, I'm letting her be."}, {"id": 1259, "start": 3334.22, "end": 3339.64, "text": " But I've sampled some of the things that she's watching and I'm like, how does, first of"}, {"id": 1260, "start": 3339.64, "end": 3340.64, "text": " all, anyone find this entertaining?"}, {"id": 1261, "start": 3341.02, "end": 3344.0, "text": " And, uh, I don't know."}, {"id": 1262, "start": 3344.16, "end": 3345.2599999999998, "text": " Maybe if you were 13."}, {"id": 1263, "start": 3345.42, "end": 3345.94, "text": " I guess."}, {"id": 1264, "start": 3346.3, "end": 3348.58, "text": " That's how I feel about most of what my kids watch."}, {"id": 1265, "start": 3348.68, "end": 3351.44, "text": " I guess I'm just officially getting old is really what it is."}, {"id": 1266, "start": 3351.5, "end": 3355.6, "text": " My son and daughter are really into this streamer on YouTube named DanTDM."}, {"id": 1267, "start": 3356.12, "end": 3362.0, "text": " He's got over 10 million subscribers and he does a video every single day, which is nice"}, {"id": 1268, "start": 3362.0, "end": 3366.2599999999998, "text": " because we watch the same five videos over and over."}, {"id": 1269, "start": 3366.44, "end": 3368.02, "text": " He's got like 400 videos."}, {"id": 1270, "start": 3368.16, "end": 3369.36, "text": " Nope, same five videos."}, {"id": 1271, "start": 3371.02, "end": 3371.28, "text": " What?"}, {"id": 1272, "start": 3371.38, "end": 3372.34, "text": " It's infuriating."}, {"id": 1273, "start": 3372.36, "end": 3373.2, "text": " Yeah, I don't get it."}, {"id": 1274, "start": 3373.8, "end": 3375.18, "text": " I don't get it."}, {"id": 1275, "start": 3375.22, "end": 3376.06, "text": " I don't get it at all."}, {"id": 1276, "start": 3377.06, "end": 3379.28, "text": " It's just..."}, {"id": 1277, "start": 3379.28, "end": 3380.56, "text": " Kids."}, {"id": 1278, "start": 3380.78, "end": 3381.86, "text": " To be 13 again."}, {"id": 1279, "start": 3382.16, "end": 3383.36, "text": " Or six and seven."}, {"id": 1280, "start": 3384.46, "end": 3385.32, "text": " We're going to take a break."}, {"id": 1281, "start": 3385.4, "end": 3388.12, "text": " We'll be right back with more of the Computer Guru Show."}, {"id": 1282, "start": 3388.2, "end": 3390.16, "text": " Give us a call at 790-2048."}, {"id": 1283, "start": 3390.16, "end": 3400.16, "text": " We'll be right back."}, {"id": 1284, "start": 3401.02, "end": 3431.0, "text": " We'll be right back."}, {"id": 1285, "start": 3431.02, "end": 3435.2, "text": " Welcome back to the Computer Guru Show."}, {"id": 1286, "start": 3435.2599999999998, "end": 3438.24, "text": " My name is Mike here to deal with your technology needs and treat you like a person in the process."}, {"id": 1287, "start": 3438.46, "end": 3439.02, "text": " 790-2040."}, {"id": 1288, "start": 3439.84, "end": 3441.94, "text": " That's 520-790-2040."}, {"id": 1289, "start": 3442.0, "end": 3444.98, "text": " If you have a question, much like John, we'll talk to John."}, {"id": 1290, "start": 3445.04, "end": 3445.38, "text": " Hello, John."}, {"id": 1291, "start": 3445.4, "end": 3445.72, "text": " How are you?"}, {"id": 1292, "start": 3447.2, "end": 3449.24, "text": " I think John might have put us on hold."}, {"id": 1293, "start": 3449.66, "end": 3450.28, "text": " That's what he did."}, {"id": 1294, "start": 3451.06, "end": 3451.3, "text": " Hello?"}, {"id": 1295, "start": 3451.84, "end": 3452.3, "text": " Hi, John."}, {"id": 1296, "start": 3452.36, "end": 3452.46, "text": " Yes."}, {"id": 1297, "start": 3453.9, "end": 3454.18, "text": " Hi."}, {"id": 1298, "start": 3454.38, "end": 3454.96, "text": " How can I help you?"}, {"id": 1299, "start": 3455.96, "end": 3456.28, "text": " Okay."}, {"id": 1300, "start": 3456.28, "end": 3460.32, "text": " How about Blu-ray burners?"}, {"id": 1301, "start": 3461.02, "end": 3463.14, "text": " Do you know about those things?"}, {"id": 1302, "start": 3463.6, "end": 3464.46, "text": " I've heard of them."}, {"id": 1303, "start": 3464.9, "end": 3465.1, "text": " Okay."}, {"id": 1304, "start": 3465.8, "end": 3476.9, "text": " Well, could I get one that I can plug into my PC, watch, and burn, and store things from that to and from it?"}, {"id": 1305, "start": 3477.38, "end": 3487.3, "text": " And also, though, at the same time, watch it on television, plug into television from the burner itself."}, {"id": 1306, "start": 3487.74, "end": 3490.86, "text": " So, in other words, use it both ways, both for PC and for TV."}, {"id": 1307, "start": 3491.02, "end": 3491.54, "text": " Can I do that?"}, {"id": 1308, "start": 3492.12, "end": 3492.64, "text": " Sort of."}, {"id": 1309, "start": 3493.08, "end": 3494.64, "text": " It wouldn't plug directly into the burner."}, {"id": 1310, "start": 3494.7599999999998, "end": 3496.54, "text": " You'd plug it into the computer for the TV."}, {"id": 1311, "start": 3497.4, "end": 3497.7599999999998, "text": " Right."}, {"id": 1312, "start": 3497.86, "end": 3501.2, "text": " So, you'd make the TV an additional monitor on your computer."}, {"id": 1313, "start": 3502.42, "end": 3506.1, "text": " Oh, you'd plug your TV into your PC, then?"}, {"id": 1314, "start": 3506.24, "end": 3506.5, "text": " Yeah."}, {"id": 1315, "start": 3507.5, "end": 3508.08, "text": " Oh, I see."}, {"id": 1316, "start": 3508.8, "end": 3519.64, "text": " So, I couldn't buy a burner that would be like a, I could use it as sort of a portable PC external storage burner thing,"}, {"id": 1317, "start": 3519.8, "end": 3520.64, "text": " and also a..."}, {"id": 1318, "start": 3520.64, "end": 3520.66, "text": " Okay."}, {"id": 1319, "start": 3520.66, "end": 3520.72, "text": " Okay."}, {"id": 1320, "start": 3520.72, "end": 3520.74, "text": " Okay."}, {"id": 1321, "start": 3520.74, "end": 3520.8, "text": " Okay."}, {"id": 1322, "start": 3520.8, "end": 3520.86, "text": " Okay."}, {"id": 1323, "start": 3520.86, "end": 3521.0, "text": " Okay."}, {"id": 1324, "start": 3521.0, "end": 3521.02, "text": " Okay."}, {"id": 1325, "start": 3521.02, "end": 3524.94, "text": " A DVD player, or I mean a burner, whatever, Blu-ray disc player."}, {"id": 1326, "start": 3525.12, "end": 3526.74, "text": " As far as I know, those don't exist."}, {"id": 1327, "start": 3528.06, "end": 3537.92, "text": " The ability to actually burn to it and use it as a standalone player for a TV, I don't know about any of those."}, {"id": 1328, "start": 3538.86, "end": 3546.98, "text": " Well, would it depend on the kind of connection, if I get adapters, that we plug into the back of the burner and into the TV?"}, {"id": 1329, "start": 3549.96, "end": 3550.78, "text": " Do you know what I mean?"}, {"id": 1330, "start": 3550.78, "end": 3550.86, "text": " Okay."}, {"id": 1331, "start": 3551.3, "end": 3551.54, "text": " Yeah."}, {"id": 1332, "start": 3551.6, "end": 3552.64, "text": " Like I said, I don't think those exist."}, {"id": 1333, "start": 3552.8, "end": 3557.44, "text": " I think the only way that you're going to pull this off is you're going to have a Blu-ray burner for your computer,"}, {"id": 1334, "start": 3557.98, "end": 3566.7, "text": " so that you can actually store things to it, and then you would hook up your television as a secondary monitor to your computer in order to watch things on it."}, {"id": 1335, "start": 3567.6, "end": 3567.92, "text": " Okay."}, {"id": 1336, "start": 3567.92, "end": 3575.2, "text": " Now, sort of, I guess this is somewhat new technology, DVD, I mean these Blu-ray discs."}, {"id": 1337, "start": 3575.9, "end": 3579.92, "text": " Are those discs as a storage media?"}, {"id": 1338, "start": 3579.92, "end": 3588.2000000000003, "text": " Are they stable as, say, a DVD dual-layer disc?"}, {"id": 1339, "start": 3588.86, "end": 3595.1800000000003, "text": " Yeah, they're effectively the same technology, so they behave the same way."}, {"id": 1340, "start": 3595.44, "end": 3599.16, "text": " And, yeah, DVDs, Blu-rays, all that stuff's sort of on the way out anyway."}, {"id": 1341, "start": 3599.28, "end": 3600.36, "text": " Nobody's using that stuff anymore."}, {"id": 1342, "start": 3601.04, "end": 3604.56, "text": " In fact, most computers don't even come with any type of optical media these days."}, {"id": 1343, "start": 3606.88, "end": 3608.36, "text": " Everybody's switching over to Flash."}, {"id": 1344, "start": 3608.84, "end": 3609.3, "text": " Yeah, so, you know, just..."}, {"id": 1345, "start": 3609.3, "end": 3609.32, "text": " Yeah."}, {"id": 1346, "start": 3609.32, "end": 3609.34, "text": " Yeah."}, {"id": 1347, "start": 3609.34, "end": 3609.4, "text": " Yeah."}, {"id": 1348, "start": 3609.4, "end": 3609.46, "text": " Yeah."}, {"id": 1349, "start": 3609.46, "end": 3609.48, "text": " Yeah."}, {"id": 1350, "start": 3609.48, "end": 3609.5, "text": " Yeah."}, {"id": 1351, "start": 3609.5, "end": 3609.52, "text": " Yeah."}, {"id": 1352, "start": 3609.52, "end": 3609.62, "text": " Yeah."}, {"id": 1353, "start": 3609.62, "end": 3609.7200000000003, "text": " Yeah."}, {"id": 1354, "start": 3609.7200000000003, "end": 3609.78, "text": " Yeah."}, {"id": 1355, "start": 3609.78, "end": 3609.88, "text": " Yeah."}, {"id": 1356, "start": 3609.88, "end": 3609.9, "text": " Yeah."}, {"id": 1357, "start": 3609.92, "end": 3615.66, "text": " Just plug in a USB with a 64-gig or 128-gig or larger flash media."}, {"id": 1358, "start": 3616.9, "end": 3617.04, "text": " So..."}, {"id": 1359, "start": 3617.04, "end": 3618.4, "text": " Oh, so I would get, like..."}, {"id": 1360, "start": 3618.4, "end": 3623.8, "text": " So, in other words, what you're talking about is buying, like, an external flash storage"}, {"id": 1361, "start": 3623.8, "end": 3625.1800000000003, "text": " thing."}, {"id": 1362, "start": 3625.6, "end": 3627.7400000000002, "text": " Sort of, like flash drives, you know, thumb drives."}, {"id": 1363, "start": 3628.28, "end": 3630.76, "text": " And most TVs today support that, by the way."}, {"id": 1364, "start": 3630.84, "end": 3636.1, "text": " So you could just, if you wanted to have some type of a storage media, you could burn or"}, {"id": 1365, "start": 3636.1, "end": 3638.44, "text": " write to a flash drive media."}, {"id": 1366, "start": 3638.44, "end": 3638.56, "text": " Yeah."}, {"id": 1367, "start": 3638.56, "end": 3638.58, "text": " Yeah."}, {"id": 1368, "start": 3638.58, "end": 3638.6, "text": " Yeah."}, {"id": 1369, "start": 3638.6, "end": 3638.62, "text": " Yeah."}, {"id": 1370, "start": 3638.62, "end": 3638.64, "text": " Yeah."}, {"id": 1371, "start": 3638.64, "end": 3638.66, "text": " Yeah."}, {"id": 1372, "start": 3638.66, "end": 3638.6800000000003, "text": " Yeah."}, {"id": 1373, "start": 3638.6800000000003, "end": 3638.7000000000003, "text": " Yeah."}, {"id": 1374, "start": 3638.7000000000003, "end": 3638.7200000000003, "text": " Yeah."}, {"id": 1375, "start": 3638.7200000000003, "end": 3638.7400000000002, "text": " Yeah."}, {"id": 1376, "start": 3638.7400000000002, "end": 3638.78, "text": " Yeah."}, {"id": 1377, "start": 3638.78, "end": 3638.82, "text": " Yeah."}, {"id": 1378, "start": 3638.82, "end": 3638.88, "text": " Yeah."}, {"id": 1379, "start": 3638.88, "end": 3638.9, "text": " Yeah."}, {"id": 1380, "start": 3638.9, "end": 3638.94, "text": " Yeah."}, {"id": 1381, "start": 3638.94, "end": 3638.98, "text": " Yeah."}, {"id": 1382, "start": 3638.98, "end": 3639.14, "text": " Yeah."}, {"id": 1383, "start": 3639.14, "end": 3639.16, "text": " Yeah."}, {"id": 1384, "start": 3639.16, "end": 3639.2200000000003, "text": " Yeah."}, {"id": 1385, "start": 3639.2200000000003, "end": 3639.2400000000002, "text": " Yeah."}, {"id": 1386, "start": 3639.2400000000002, "end": 3639.3, "text": " Yeah."}, {"id": 1387, "start": 3639.3, "end": 3639.62, "text": " Yeah."}, {"id": 1388, "start": 3639.62, "end": 3639.9, "text": " Yeah."}, {"id": 1389, "start": 3639.92, "end": 3640.32, "text": " Yeah."}, {"id": 1390, "start": 3640.32, "end": 3640.38, "text": " Yeah."}, {"id": 1391, "start": 3640.38, "end": 3640.4, "text": " Yeah."}, {"id": 1392, "start": 3640.4, "end": 3640.42, "text": " Yeah."}, {"id": 1393, "start": 3640.42, "end": 3640.44, "text": " Yeah."}, {"id": 1394, "start": 3640.44, "end": 3640.46, "text": " Yeah."}, {"id": 1395, "start": 3640.46, "end": 3640.48, "text": " Yeah."}, {"id": 1396, "start": 3640.48, "end": 3640.54, "text": " Yeah."}, {"id": 1397, "start": 3640.54, "end": 3640.56, "text": " Yeah."}, {"id": 1398, "start": 3640.56, "end": 3640.64, "text": " Yeah."}, {"id": 1399, "start": 3640.64, "end": 3640.66, "text": " Yeah."}, {"id": 1400, "start": 3640.66, "end": 3640.8, "text": " Yeah."}, {"id": 1401, "start": 3641.8, "end": 3642.2400000000002, "text": " Yeah."}, {"id": 1402, "start": 3642.2400000000002, "end": 3642.28, "text": " Yeah."}, {"id": 1403, "start": 3642.28, "end": 3642.32, "text": " Yeah."}, {"id": 1404, "start": 3642.32, "end": 3642.48, "text": " Yeah."}, {"id": 1405, "start": 3642.48, "end": 3647.7400000000002, "text": " But you wouldn't be able to have as much stored on one flash drive as, say, a bunch"}, {"id": 1406, "start": 3647.7400000000002, "end": 3648.6800000000003, "text": " of disks, right?"}, {"id": 1407, "start": 3648.96, "end": 3655.52, "text": " They have one terabyte thumb drives, which is considerably more than you'd ever get on"}, {"id": 1408, "start": 3655.52, "end": 3656.2000000000003, "text": " a bunch of disks."}, {"id": 1409, "start": 3657.58, "end": 3661.2400000000002, "text": " So, I mean, like, the Blu-ray disks are, what, 24 gigabyte?"}, {"id": 1410, "start": 3662.06, "end": 3662.38, "text": " Yep."}, {"id": 1411, "start": 3662.6, "end": 3663.82, "text": " I think 25, right?"}, {"id": 1412, "start": 3664.0, "end": 3664.7000000000003, "text": " So, yeah."}, {"id": 1413, "start": 3664.84, "end": 3667.7000000000003, "text": " So, let's say you have..."}, {"id": 1414, "start": 3667.7000000000003, "end": 3668.32, "text": " Four of them."}, {"id": 1415, "start": 3668.5, "end": 3669.9, "text": " ...2% of what you have."}, {"id": 1416, "start": 3669.92, "end": 3673.56, "text": " You can put it on a one gig, or a one terabyte flash drive."}, {"id": 1417, "start": 3674.48, "end": 3674.88, "text": " Okay."}, {"id": 1418, "start": 3675.12, "end": 3677.08, "text": " So, there's..."}, {"id": 1419, "start": 3677.08, "end": 3677.84, "text": " Yeah, there's..."}, {"id": 1420, "start": 3677.84, "end": 3678.56, "text": " Go to flash."}, {"id": 1421, "start": 3678.7000000000003, "end": 3681.1, "text": " I wouldn't waste the money on Blu-ray or the disks."}, {"id": 1422, "start": 3681.2000000000003, "end": 3683.1, "text": " Even the media itself is too expensive."}, {"id": 1423, "start": 3683.76, "end": 3688.32, "text": " How big is a one terabyte physically flash drive?"}, {"id": 1424, "start": 3688.46, "end": 3689.66, "text": " Same as everything else."}, {"id": 1425, "start": 3689.7200000000003, "end": 3690.5, "text": " They're all about the same size."}, {"id": 1426, "start": 3691.44, "end": 3692.36, "text": " Like a little thumb drive?"}, {"id": 1427, "start": 3692.48, "end": 3692.62, "text": " Yeah."}, {"id": 1428, "start": 3692.62, "end": 3693.26, "text": " Is that how big it is?"}, {"id": 1429, "start": 3693.44, "end": 3693.66, "text": " Yeah."}, {"id": 1430, "start": 3694.2000000000003, "end": 3694.6, "text": " Wow."}, {"id": 1431, "start": 3696.02, "end": 3699.7000000000003, "text": " And could you store, like, I mean, completely un-disked?"}, {"id": 1432, "start": 3699.92, "end": 3701.64, "text": " Unrelated data?"}, {"id": 1433, "start": 3701.9, "end": 3703.6, "text": " Different files and folders on it?"}, {"id": 1434, "start": 3703.64, "end": 3706.1800000000003, "text": " Well, you can put anything you want on a flash drive."}, {"id": 1435, "start": 3706.76, "end": 3707.1800000000003, "text": " Okay."}, {"id": 1436, "start": 3707.56, "end": 3709.78, "text": " I might go with that, then, instead of a bunch of disks."}, {"id": 1437, "start": 3710.78, "end": 3711.2200000000003, "text": " Okay."}, {"id": 1438, "start": 3711.4, "end": 3714.46, "text": " Yeah, I think that the whole disk medium is dead."}, {"id": 1439, "start": 3715.14, "end": 3716.62, "text": " It's so..."}, {"id": 1440, "start": 3716.62, "end": 3718.2200000000003, "text": " It's time-consuming."}, {"id": 1441, "start": 3718.5, "end": 3719.2200000000003, "text": " It's expensive."}, {"id": 1442, "start": 3719.42, "end": 3720.06, "text": " It's wasteful."}, {"id": 1443, "start": 3720.46, "end": 3721.82, "text": " Just go with flash media."}, {"id": 1444, "start": 3722.92, "end": 3723.36, "text": " Okay."}, {"id": 1445, "start": 3723.36, "end": 3724.66, "text": " That sounds like I might do that."}, {"id": 1446, "start": 3725.7000000000003, "end": 3729.36, "text": " Now, flash media is not as stable as optical..."}, {"id": 1447, "start": 3729.92, "end": 3731.14, "text": " Optical media, right?"}, {"id": 1448, "start": 3731.28, "end": 3731.7200000000003, "text": " No, it's not."}, {"id": 1449, "start": 3732.28, "end": 3735.82, "text": " So, there is the potential for data loss, you know,"}, {"id": 1450, "start": 3735.86, "end": 3737.82, "text": " where flash drives just drop dead and it happens."}, {"id": 1451, "start": 3739.04, "end": 3742.7000000000003, "text": " So, if it's super important as, like, an archival copy,"}, {"id": 1452, "start": 3743.06, "end": 3745.16, "text": " yeah, go ahead and burn it to some type of optical media,"}, {"id": 1453, "start": 3745.32, "end": 3746.36, "text": " put it somewhere safe."}, {"id": 1454, "start": 3747.1800000000003, "end": 3751.1800000000003, "text": " But flash media is sort of the way to go for, you know,"}, {"id": 1455, "start": 3751.2000000000003, "end": 3752.56, "text": " any type of daily use."}, {"id": 1456, "start": 3753.38, "end": 3756.7400000000002, "text": " Now, by not being stable, do you mean it, I mean,"}, {"id": 1457, "start": 3756.7400000000002, "end": 3759.08, "text": " it deletes by itself over time?"}, {"id": 1458, "start": 3759.3, "end": 3759.9, "text": " Or what do you mean?"}, {"id": 1459, "start": 3759.9, "end": 3763.1600000000003, "text": " Well, occasionally the chips on flash drives just drop dead."}, {"id": 1460, "start": 3764.14, "end": 3765.44, "text": " Just drop dead and stop working?"}, {"id": 1461, "start": 3765.64, "end": 3765.82, "text": " Yep."}, {"id": 1462, "start": 3766.2000000000003, "end": 3769.7000000000003, "text": " And then, you know, you can't read that particular media anymore."}, {"id": 1463, "start": 3770.28, "end": 3770.62, "text": " Okay."}, {"id": 1464, "start": 3771.1800000000003, "end": 3772.48, "text": " So, it happens."}, {"id": 1465, "start": 3772.92, "end": 3775.28, "text": " But it's not terribly common, but it happens."}, {"id": 1466, "start": 3775.84, "end": 3780.1600000000003, "text": " In that case, as an important storage medium,"}, {"id": 1467, "start": 3780.64, "end": 3783.78, "text": " would Blu-rays be better than DVD disks?"}, {"id": 1468, "start": 3784.26, "end": 3787.7400000000002, "text": " I mean, they're larger, but they're the same as far as stability?"}, {"id": 1469, "start": 3789.3, "end": 3789.78, "text": " Um..."}, {"id": 1470, "start": 3789.78, "end": 3790.78, "text": " But we're meat, right?"}, {"id": 1471, "start": 3790.94, "end": 3794.98, "text": " I think that optical media is rather pointless."}, {"id": 1472, "start": 3795.7200000000003, "end": 3798.98, "text": " I think if you're going to have some type of, like, a cold storage,"}, {"id": 1473, "start": 3799.1200000000003, "end": 3803.52, "text": " something that's large amounts of data that you just want to have as a backup,"}, {"id": 1474, "start": 3803.84, "end": 3806.02, "text": " you get some type of an external hard drive,"}, {"id": 1475, "start": 3806.5800000000004, "end": 3808.6800000000003, "text": " one of the small ones, you know, like a, you know,"}, {"id": 1476, "start": 3809.1400000000003, "end": 3814.6000000000004, "text": " the laptop size two or three terabyte external hard drives,"}, {"id": 1477, "start": 3814.86, "end": 3816.92, "text": " you make a copy of all your stuff to that,"}, {"id": 1478, "start": 3817.0400000000004, "end": 3818.4, "text": " you put that away somewhere safe,"}, {"id": 1479, "start": 3818.44, "end": 3819.76, "text": " and then you can have flash drives as you go."}, {"id": 1480, "start": 3819.78, "end": 3823.76, "text": " As your primary use, as long as there's a copy somewhere else."}, {"id": 1481, "start": 3824.3, "end": 3825.38, "text": " You should always have two backups."}, {"id": 1482, "start": 3826.02, "end": 3831.1000000000004, "text": " But what if I want to have something where I can just carry it around with me from PC to PC?"}, {"id": 1483, "start": 3831.6000000000004, "end": 3834.2000000000003, "text": " I think in that way, disks are more convenient."}, {"id": 1484, "start": 3834.88, "end": 3836.0800000000004, "text": " You can think that, I guess."}, {"id": 1485, "start": 3837.2200000000003, "end": 3841.0, "text": " Like I said, most machines don't even have optical drives anymore."}, {"id": 1486, "start": 3841.86, "end": 3846.26, "text": " So, truly, the most convenient that I can think of is the flash drives."}, {"id": 1487, "start": 3846.44, "end": 3847.02, "text": " They're small."}, {"id": 1488, "start": 3847.1600000000003, "end": 3847.94, "text": " You can put them in your pocket."}, {"id": 1489, "start": 3847.94, "end": 3850.2400000000002, "text": " They're relatively indestructible."}, {"id": 1490, "start": 3850.5, "end": 3854.56, "text": " I mean, they can survive going through the washing machine and the dryer and all that."}, {"id": 1491, "start": 3854.9, "end": 3858.1, "text": " They're very stable as far as that is concerned,"}, {"id": 1492, "start": 3858.32, "end": 3861.7200000000003, "text": " but it shouldn't be your only copy of anything."}, {"id": 1493, "start": 3862.38, "end": 3862.46, "text": " Right."}, {"id": 1494, "start": 3862.76, "end": 3865.7400000000002, "text": " So, you're saying, but what you're saying is a second copy,"}, {"id": 1495, "start": 3865.86, "end": 3868.52, "text": " the more stable medium is actually a hard drive."}, {"id": 1496, "start": 3868.64, "end": 3868.82, "text": " Right."}, {"id": 1497, "start": 3868.9, "end": 3870.32, "text": " A hard drive or optical media."}, {"id": 1498, "start": 3870.44, "end": 3872.7200000000003, "text": " But like I'm saying, the optical media is expensive."}, {"id": 1499, "start": 3873.02, "end": 3873.88, "text": " It's time consuming."}, {"id": 1500, "start": 3874.64, "end": 3876.3, "text": " It takes a long time to burn a disk."}, {"id": 1501, "start": 3876.48, "end": 3876.88, "text": " Right."}, {"id": 1502, "start": 3876.88, "end": 3877.92, "text": " And the disks themselves."}, {"id": 1503, "start": 3878.02, "end": 3878.42, "text": " They're expensive."}, {"id": 1504, "start": 3878.6, "end": 3882.02, "text": " So, if you just buy one large external hard drive, that's a great backup source."}, {"id": 1505, "start": 3882.54, "end": 3882.84, "text": " Okay."}, {"id": 1506, "start": 3883.1, "end": 3883.4, "text": " Okay."}, {"id": 1507, "start": 3883.58, "end": 3884.68, "text": " Sounds good."}, {"id": 1508, "start": 3885.36, "end": 3885.62, "text": " Cool."}, {"id": 1509, "start": 3886.14, "end": 3887.78, "text": " Well, thank you for your info."}, {"id": 1510, "start": 3888.18, "end": 3888.7000000000003, "text": " Appreciate it, John."}, {"id": 1511, "start": 3888.76, "end": 3889.04, "text": " Thanks."}, {"id": 1512, "start": 3889.46, "end": 3889.64, "text": " Bye."}, {"id": 1513, "start": 3889.98, "end": 3891.86, "text": " I don't mean to sound like I'm going back and forth on this."}, {"id": 1514, "start": 3891.86, "end": 3898.38, "text": " I mean, yes, optical media is more stable than a flash drive overall if you don't use it."}, {"id": 1515, "start": 3898.88, "end": 3898.96, "text": " Yeah."}, {"id": 1516, "start": 3899.2000000000003, "end": 3899.42, "text": " Right."}, {"id": 1517, "start": 3899.52, "end": 3903.18, "text": " But let's say you're taking a disk in and out often."}, {"id": 1518, "start": 3903.9, "end": 3905.32, "text": " It's likely to get scratched."}, {"id": 1519, "start": 3905.5, "end": 3906.8, "text": " It's likely to have problems."}, {"id": 1520, "start": 3907.94, "end": 3910.82, "text": " If you have kids, they can break them in half."}, {"id": 1521, "start": 3911.14, "end": 3911.28, "text": " Yeah."}, {"id": 1522, "start": 3911.38, "end": 3918.86, "text": " If you're thinking also it's $2 a disk or whatever for a Blu-ray disk versus, let's see, on Newey,"}, {"id": 1523, "start": 3918.92, "end": 3922.92, "text": " you can get half terabyte flash drives for $60."}, {"id": 1524, "start": 3923.48, "end": 3923.9, "text": " Yep."}, {"id": 1525, "start": 3924.9, "end": 3926.2200000000003, "text": " So, I mean, there's..."}, {"id": 1526, "start": 3926.2200000000003, "end": 3927.88, "text": " That's a lot of information, too."}, {"id": 1527, "start": 3928.02, "end": 3929.26, "text": " There's a ton of space."}, {"id": 1528, "start": 3930.08, "end": 3935.64, "text": " So, yeah, I don't think optical media is useful anymore."}, {"id": 1529, "start": 3935.64, "end": 3935.84, "text": " Not anymore."}, {"id": 1530, "start": 3936.46, "end": 3937.88, "text": " Which is unfortunate because it is good."}, {"id": 1531, "start": 3938.7200000000003, "end": 3942.06, "text": " Well, I think it's great as a cold storage, right?"}, {"id": 1532, "start": 3942.12, "end": 3943.02, "text": " You're going to burn a disk."}, {"id": 1533, "start": 3943.1600000000003, "end": 3943.94, "text": " You're going to take it out."}, {"id": 1534, "start": 3944.12, "end": 3945.04, "text": " You're going to put it in the sleeve."}, {"id": 1535, "start": 3945.1800000000003, "end": 3946.3, "text": " And then you're going to put it in the safe."}, {"id": 1536, "start": 3947.1, "end": 3947.34, "text": " Right?"}, {"id": 1537, "start": 3947.48, "end": 3948.56, "text": " Like, that's it."}, {"id": 1538, "start": 3948.92, "end": 3951.42, "text": " That's the only time that optical media is useful."}, {"id": 1539, "start": 3951.6800000000003, "end": 3953.46, "text": " I say we go back to vinyl records."}, {"id": 1540, "start": 3954.98, "end": 3955.86, "text": " Declaring it right now."}, {"id": 1541, "start": 3955.92, "end": 3956.1400000000003, "text": " All right."}, {"id": 1542, "start": 3956.1400000000003, "end": 3956.6600000000003, "text": " Next subject."}, {"id": 1543, "start": 3956.92, "end": 3958.06, "text": " Better audio quality."}, {"id": 1544, "start": 3958.2000000000003, "end": 3958.7400000000002, "text": " Just saying."}, {"id": 1545, "start": 3959.28, "end": 3960.4, "text": " Better audio quality."}, {"id": 1546, "start": 3962.2400000000002, "end": 3962.96, "text": " Define better."}, {"id": 1547, "start": 3963.96, "end": 3964.52, "text": " I don't know."}, {"id": 1548, "start": 3966.76, "end": 3967.6600000000003, "text": " I don't know."}, {"id": 1549, "start": 3967.6600000000003, "end": 3967.7200000000003, "text": " I don't know."}, {"id": 1550, "start": 3967.7200000000003, "end": 3967.76, "text": " I don't know."}, {"id": 1551, "start": 3967.76, "end": 3967.78, "text": " I don't know."}, {"id": 1552, "start": 3967.78, "end": 3967.8, "text": " I don't know."}, {"id": 1553, "start": 3967.8, "end": 3967.82, "text": " I don't know."}, {"id": 1554, "start": 3967.82, "end": 3967.84, "text": " I don't know."}, {"id": 1555, "start": 3967.84, "end": 3967.86, "text": " I don't know."}, {"id": 1556, "start": 3967.88, "end": 3969.04, "text": " I don't know if that's better or not."}, {"id": 1557, "start": 3969.28, "end": 3969.48, "text": " I mean."}, {"id": 1558, "start": 3969.84, "end": 3970.5, "text": " Compared to CD."}, {"id": 1559, "start": 3970.7000000000003, "end": 3971.28, "text": " It's warmer."}, {"id": 1560, "start": 3972.1800000000003, "end": 3974.86, "text": " Well, compared to CD, it's less compressed."}, {"id": 1561, "start": 3976.44, "end": 3978.46, "text": " Well, you can have fully uncompressed even on CD."}, {"id": 1562, "start": 3978.6600000000003, "end": 3979.7200000000003, "text": " Yeah, it's not the same."}, {"id": 1563, "start": 3979.92, "end": 3980.28, "text": " No."}, {"id": 1564, "start": 3980.38, "end": 3980.56, "text": " Okay."}, {"id": 1565, "start": 3981.1400000000003, "end": 3981.4, "text": " All right."}, {"id": 1566, "start": 3981.44, "end": 3982.04, "text": " Let's go ahead and take a break."}, {"id": 1567, "start": 3982.1, "end": 3982.86, "text": " Get me a gramophone."}, {"id": 1568, "start": 3983.82, "end": 3984.48, "text": " Oh, look at this."}, {"id": 1569, "start": 3985.2200000000003, "end": 3986.04, "text": " This is on vinyl."}, {"id": 1570, "start": 3986.26, "end": 3987.12, "text": " This was on vinyl."}, {"id": 1571, "start": 3987.3, "end": 3987.7000000000003, "text": " Love it."}, {"id": 1572, "start": 3987.92, "end": 3988.7000000000003, "text": " We'll be right back."}, {"id": 1573, "start": 3995.84, "end": 3997.8, "text": " Whether you're dealing with hardware installation,"}, {"id": 1574, "start": 3997.8, "end": 3999.9, "text": " insulation, or heaven forbid, a virus."}, {"id": 1575, "start": 3999.9, "end": 4000.26, "text": " No!"}, {"id": 1576, "start": 4000.26, "end": 4000.6600000000003, "text": " No!"}, {"id": 1577, "start": 4000.6600000000003, "end": 4001.1600000000003, "text": " No!"}, {"id": 1578, "start": 4001.1600000000003, "end": 4002.2000000000003, "text": " No!"}, {"id": 1579, "start": 4002.2000000000003, "end": 4005.1000000000004, "text": " Mike Swanson is answering all your questions one by one."}, {"id": 1580, "start": 4005.1000000000004, "end": 4007.7000000000003, "text": " So call in or chat in with yours."}, {"id": 1581, "start": 4007.7000000000003, "end": 4010.32, "text": " The website gurushow.com."}, {"id": 1582, "start": 4010.32, "end": 4012.92, "text": " Tune in, click in, and kick back."}, {"id": 1583, "start": 4012.92, "end": 4017.76, "text": " This is the Computer Guru Show on AM 1030, KVOY The Voice."}, {"id": 1584, "start": 4017.76, "end": 4022.2000000000003, "text": " I'm dirty in the extreme and whiter than sour cream."}, {"id": 1585, "start": 4022.2000000000003, "end": 4025.1600000000003, "text": " I was in a V Club and Glee Club and even the chess team."}, {"id": 1586, "start": 4025.1600000000003, "end": 4026.8, "text": " Only question I ever thought was hard."}, {"id": 1587, "start": 4026.8, "end": 4027.6800000000003, "text": " What do I like, Kirk?"}, {"id": 1588, "start": 4027.6800000000003, "end": 4028.6800000000003, "text": " Do I like my card?"}, {"id": 1589, "start": 4028.6800000000003, "end": 4030.4800000000005, "text": " Spend every weekend at the renaissance fair."}, {"id": 1590, "start": 4030.4800000000005, "end": 4031.6800000000003, "text": " Got my name on my underwear."}, {"id": 1591, "start": 4031.6800000000003, "end": 4033.6800000000003, "text": " Listen to me strolling."}, {"id": 1592, "start": 4033.6800000000003, "end": 4035.1800000000003, "text": " Welcome back to the Computer Guru Show."}, {"id": 1593, "start": 4035.1800000000003, "end": 4036.6800000000003, "text": " Give us a call at 790-2040."}, {"id": 1594, "start": 4036.6800000000003, "end": 4037.6800000000003, "text": " I love this song."}, {"id": 1595, "start": 4037.6800000000003, "end": 4038.6800000000003, "text": " The old bumpers from years ago."}, {"id": 1596, "start": 4038.6800000000003, "end": 4039.6800000000003, "text": " I love this song."}, {"id": 1597, "start": 4039.6800000000003, "end": 4040.6800000000003, "text": " I'm so excited to go see them."}, {"id": 1598, "start": 4040.6800000000003, "end": 4041.6800000000003, "text": " Oh yeah?"}, {"id": 1599, "start": 4041.6800000000003, "end": 4042.6800000000003, "text": " Did you get tickets to go see Weird Al?"}, {"id": 1600, "start": 4042.6800000000003, "end": 4043.6800000000003, "text": " Yes."}, {"id": 1601, "start": 4043.6800000000003, "end": 4044.6800000000003, "text": " Two months ago."}, {"id": 1602, "start": 4044.6800000000003, "end": 4045.6800000000003, "text": " I did not."}, {"id": 1603, "start": 4045.6800000000003, "end": 4046.6800000000003, "text": " I've been wanting to see him for like two decades."}, {"id": 1604, "start": 4046.6800000000003, "end": 4047.6800000000003, "text": " I did not."}, {"id": 1605, "start": 4047.6800000000003, "end": 4048.6800000000003, "text": " Since I was 12."}, {"id": 1606, "start": 4048.6800000000003, "end": 4049.6800000000003, "text": " That's good."}, {"id": 1607, "start": 4049.6800000000003, "end": 4050.6800000000003, "text": " That's good."}, {"id": 1608, "start": 4050.6800000000003, "end": 4051.6800000000003, "text": " That's good."}, {"id": 1609, "start": 4051.6800000000003, "end": 4052.6800000000003, "text": " That's good."}, {"id": 1610, "start": 4052.6800000000003, "end": 4053.6800000000003, "text": " That's good."}, {"id": 1611, "start": 4053.6800000000003, "end": 4054.6800000000003, "text": " That's good."}, {"id": 1612, "start": 4054.6800000000003, "end": 4055.6800000000003, "text": " That's good."}, {"id": 1613, "start": 4055.6800000000003, "end": 4056.6800000000003, "text": " That's good."}, {"id": 1614, "start": 4056.6800000000003, "end": 4060.6800000000003, "text": " That's good to know."}, {"id": 1615, "start": 4060.6800000000003, "end": 4063.6800000000003, "text": " Never had an opportunity, so I'm very excited now."}, {"id": 1616, "start": 4063.6800000000003, "end": 4068.6800000000003, "text": " So Russia is set to pass a bill requiring ISPs to eavesdrop on customer data."}, {"id": 1617, "start": 4068.6800000000003, "end": 4069.6800000000003, "text": " Wait, what?"}, {"id": 1618, "start": 4069.6800000000003, "end": 4072.6800000000003, "text": " Yeah."}, {"id": 1619, "start": 4072.6800000000003, "end": 4074.6800000000003, "text": " What?"}, {"id": 1620, "start": 4074.6800000000003, "end": 4076.6800000000003, "text": " Are you shocked by Russia doing this, though?"}, {"id": 1621, "start": 4076.6800000000003, "end": 4078.6800000000003, "text": " No."}, {"id": 1622, "start": 4078.6800000000003, "end": 4085.6800000000003, "text": " I mean, they probably shouldn't, considering, you know, the whole Snowden thing."}, {"id": 1623, "start": 4085.6800000000003, "end": 4086.6800000000003, "text": " Yeah."}, {"id": 1624, "start": 4086.6800000000003, "end": 4087.6800000000003, "text": " But, you know, Russia don't care."}, {"id": 1625, "start": 4087.6800000000003, "end": 4088.6800000000003, "text": " No."}, {"id": 1626, "start": 4088.6800000000003, "end": 4089.6800000000003, "text": " They're Russia."}, {"id": 1627, "start": 4089.6800000000003, "end": 4090.6800000000003, "text": " Nope."}, {"id": 1628, "start": 4090.6800000000003, "end": 4091.6800000000003, "text": " They ride bareback on bears."}, {"id": 1629, "start": 4091.6800000000003, "end": 4092.6800000000003, "text": " With vodka."}, {"id": 1630, "start": 4092.6800000000003, "end": 4093.6800000000003, "text": " Yes."}, {"id": 1631, "start": 4093.6800000000003, "end": 4094.6800000000003, "text": " Yeah."}, {"id": 1632, "start": 4094.6800000000003, "end": 4095.6800000000003, "text": " Okay."}, {"id": 1633, "start": 4095.6800000000003, "end": 4096.68, "text": " So, yeah, I don't know."}, {"id": 1634, "start": 4096.68, "end": 4097.68, "text": " We're not going to go down that rabbit hole."}, {"id": 1635, "start": 4097.68, "end": 4098.68, "text": " Next week, we'll talk about some of that in the second hour."}, {"id": 1636, "start": 4098.68, "end": 4099.68, "text": " Yeah."}, {"id": 1637, "start": 4099.68, "end": 4100.68, "text": " Because it turns out that, you know, democracies and Western democracies have turned into surveillance"}, {"id": 1638, "start": 4100.68, "end": 4101.68, "text": " states."}, {"id": 1639, "start": 4101.68, "end": 4102.68, "text": " Yeah."}, {"id": 1640, "start": 4102.68, "end": 4103.68, "text": " Yeah."}, {"id": 1641, "start": 4103.68, "end": 4104.68, "text": " Yeah."}, {"id": 1642, "start": 4104.68, "end": 4105.68, "text": " Yeah."}, {"id": 1643, "start": 4105.68, "end": 4106.68, "text": " Yeah."}, {"id": 1644, "start": 4106.68, "end": 4107.68, "text": " Yeah."}, {"id": 1645, "start": 4107.68, "end": 4108.68, "text": " Yeah."}, {"id": 1646, "start": 4108.68, "end": 4109.68, "text": " Yeah."}, {"id": 1647, "start": 4109.68, "end": 4110.68, "text": " Yeah."}, {"id": 1648, "start": 4110.68, "end": 4111.68, "text": " Yeah."}, {"id": 1649, "start": 4111.68, "end": 4112.68, "text": " Yeah."}, {"id": 1650, "start": 4112.68, "end": 4113.68, "text": " Yeah."}, {"id": 1651, "start": 4113.68, "end": 4114.68, "text": " Yeah."}, {"id": 1652, "start": 4114.68, "end": 4115.68, "text": " Yeah."}, {"id": 1653, "start": 4115.68, "end": 4116.68, "text": " Yeah."}, {"id": 1654, "start": 4116.68, "end": 4126.64, "text": " And the unintended consequences are that that particular technology and \u2013 well,"}, {"id": 1655, "start": 4126.64, "end": 4131.68, "text": " that particular technology will make it into the hands of extremists and the wrong people."}, {"id": 1656, "start": 4131.68, "end": 4138.68, "text": " See, I'm not sure if we're headed towards 1984 or idiocracy, or a little bit of both."}, {"id": 1657, "start": 4138.68, "end": 4139.68, "text": " I think both."}, {"id": 1658, "start": 4139.68, "end": 4140.68, "text": " All right?"}, {"id": 1659, "start": 4140.68, "end": 4145.68, "text": " And both of which are, you know, you, read 1984, wonderful book."}, {"id": 1660, "start": 4145.68, "end": 4146.240000000001, "text": " Love it."}, {"id": 1661, "start": 4146.34, "end": 4147.14, "text": " A little scary to death."}, {"id": 1662, "start": 4147.780000000001, "end": 4154.56, "text": " And then, but interestingly enough, I think if you thought that there was any type of evidence for Nostradamus,"}, {"id": 1663, "start": 4155.46, "end": 4165.42, "text": " I think that there's far more stuff that has come true from both Star Trek and 1984 than any of the other predictions."}, {"id": 1664, "start": 4166.42, "end": 4170.780000000001, "text": " So 1984 is, of course, a terrible thing."}, {"id": 1665, "start": 4170.78, "end": 4176.179999999999, "text": " And it's sort of, there's sort of some applicability today."}, {"id": 1666, "start": 4177.54, "end": 4181.0199999999995, "text": " But Idiocracy is really where I think it's at."}, {"id": 1667, "start": 4181.5199999999995, "end": 4183.44, "text": " That's a movie you should see."}, {"id": 1668, "start": 4183.48, "end": 4185.099999999999, "text": " All the Mike Judge movies are great."}, {"id": 1669, "start": 4185.58, "end": 4186.28, "text": " Office Space."}, {"id": 1670, "start": 4186.78, "end": 4187.759999999999, "text": " Welcome to Carl's Jr."}, {"id": 1671, "start": 4188.42, "end": 4190.2, "text": " Carl's Jr. now owns your children."}, {"id": 1672, "start": 4190.48, "end": 4191.42, "text": " You are a terrible mother."}, {"id": 1673, "start": 4193.639999999999, "end": 4194.94, "text": " You've got to watch the movie."}, {"id": 1674, "start": 4195.38, "end": 4196.5199999999995, "text": " It's a great movie."}, {"id": 1675, "start": 4196.679999999999, "end": 4198.5599999999995, "text": " But it's scary at the same time."}, {"id": 1676, "start": 4198.5599999999995, "end": 4198.82, "text": " Right."}, {"id": 1677, "start": 4199.599999999999, "end": 4200.759999999999, "text": " You can tell it's Mike Judge."}, {"id": 1678, "start": 4200.78, "end": 4205.08, "text": " Mike Judge's way of looking at the world and going, oh, yeah, we're screwed."}, {"id": 1679, "start": 4205.74, "end": 4208.7, "text": " We're just, there's no coming back from this."}, {"id": 1680, "start": 4209.099999999999, "end": 4210.46, "text": " And it's funny."}, {"id": 1681, "start": 4211.12, "end": 4217.9, "text": " And then you look at headlines on the Internet, specifically from certain states sometimes."}, {"id": 1682, "start": 4219.32, "end": 4220.54, "text": " Yeah, well, we're not going to talk about that."}, {"id": 1683, "start": 4221.0199999999995, "end": 4222.12, "text": " That's next week, right?"}, {"id": 1684, "start": 4222.5599999999995, "end": 4223.08, "text": " All right."}, {"id": 1685, "start": 4223.2, "end": 4225.08, "text": " So let's talk about something more fun."}, {"id": 1686, "start": 4225.08, "end": 4230.3, "text": " How about malware, the godless malware, can root your phone if you have an Android?"}, {"id": 1687, "start": 4230.3, "end": 4231.22, "text": " 90% of the time."}, {"id": 1688, "start": 4232.38, "end": 4237.12, "text": " And it's, well, they're doing you a service."}, {"id": 1689, "start": 4237.360000000001, "end": 4238.66, "text": " They're rooting your phone so you don't have to."}, {"id": 1690, "start": 4238.7, "end": 4241.56, "text": " See, I don't know what the difference is between rooted and not rooted."}, {"id": 1691, "start": 4241.72, "end": 4244.3, "text": " That's where my tech thing kind of dwindles."}, {"id": 1692, "start": 4245.360000000001, "end": 4245.64, "text": " Okay."}, {"id": 1693, "start": 4245.9400000000005, "end": 4253.56, "text": " So in both Android and Apple architectures for mobile phones, it's a closed architecture,"}, {"id": 1694, "start": 4253.56, "end": 4259.96, "text": " which means that it's locked down to a point where the device cannot be altered."}, {"id": 1695, "start": 4260.3, "end": 4263.66, "text": " It's locked down to a point where the device can be altered by you or by other, you know, software."}, {"id": 1696, "start": 4263.9400000000005, "end": 4264.14, "text": " Right."}, {"id": 1697, "start": 4264.26, "end": 4265.04, "text": " That's the plan."}, {"id": 1698, "start": 4265.78, "end": 4273.74, "text": " Now, in the iOS world, it's called jailbreaking, which allows you to have effectively root access to the machine."}, {"id": 1699, "start": 4273.860000000001, "end": 4274.12, "text": " Okay."}, {"id": 1700, "start": 4274.38, "end": 4276.26, "text": " Meaning that you have all the power."}, {"id": 1701, "start": 4276.78, "end": 4279.54, "text": " And you can change whatever you want about the device."}, {"id": 1702, "start": 4280.24, "end": 4281.9400000000005, "text": " In Android, it's called rooting."}, {"id": 1703, "start": 4282.9400000000005, "end": 4284.3, "text": " And same thing."}, {"id": 1704, "start": 4284.46, "end": 4285.54, "text": " It's the same premise."}, {"id": 1705, "start": 4286.68, "end": 4290.02, "text": " Now, it turns out that this particular piece of malware exists."}, {"id": 1706, "start": 4290.3, "end": 4291.320000000001, "text": " All over the place."}, {"id": 1707, "start": 4291.6, "end": 4295.4400000000005, "text": " Even in the Android store, which is supposed to not have these things in it."}, {"id": 1708, "start": 4295.96, "end": 4301.14, "text": " These researchers found it mostly in things like flashlight apps, which you should not be using anyway."}, {"id": 1709, "start": 4301.52, "end": 4310.12, "text": " All the phones these days offer a built-in, this is how you turn on the flashlight feature, rather than having to have an app for it."}, {"id": 1710, "start": 4311.06, "end": 4320.02, "text": " So, if you have installed any type of flashlight app on your computer, it's entirely possible that your phone has been compromised."}, {"id": 1711, "start": 4320.3, "end": 4320.860000000001, "text": " Compromised."}, {"id": 1712, "start": 4320.9400000000005, "end": 4322.02, "text": " That's a good way of putting it."}, {"id": 1713, "start": 4323.12, "end": 4333.02, "text": " And there are a couple of different variants of this, but the godless infection, is what it's called, is not very nice."}, {"id": 1714, "start": 4333.14, "end": 4335.400000000001, "text": " And it's really, really hard to get rid of."}, {"id": 1715, "start": 4336.320000000001, "end": 4340.02, "text": " Even flashing the phone doesn't necessarily get rid of it."}, {"id": 1716, "start": 4340.68, "end": 4346.0, "text": " So, it's entirely possible that depending on which one you have, you may have to just replace your phone."}, {"id": 1717, "start": 4346.72, "end": 4347.92, "text": " Which is no good."}, {"id": 1718, "start": 4348.1, "end": 4348.360000000001, "text": " No."}, {"id": 1719, "start": 4348.6, "end": 4349.26, "text": " They're expensive."}, {"id": 1720, "start": 4349.76, "end": 4350.24, "text": " Yeah."}, {"id": 1721, "start": 4350.3, "end": 4354.1, "text": " Imagine having to pay that insurance, and they ask why."}, {"id": 1722, "start": 4354.24, "end": 4357.3, "text": " And you say, I got an infection, and I can't get rid of it."}, {"id": 1723, "start": 4358.46, "end": 4360.74, "text": " Now, it can be getting rid of."}, {"id": 1724, "start": 4360.74, "end": 4367.72, "text": " If it turns out that you have it, you just let me know, and come down to Computer Guru, and we will make sure it goes away."}, {"id": 1725, "start": 4368.46, "end": 4369.16, "text": " Because we're good at that."}, {"id": 1726, "start": 4369.360000000001, "end": 4369.92, "text": " It's what we do."}, {"id": 1727, "start": 4370.26, "end": 4370.56, "text": " Yes."}, {"id": 1728, "start": 4371.58, "end": 4371.9800000000005, "text": " Yes."}, {"id": 1729, "start": 4372.14, "end": 4372.46, "text": " Yes."}, {"id": 1730, "start": 4374.6, "end": 4376.26, "text": " We'll un-godless your phone."}, {"id": 1731, "start": 4376.9800000000005, "end": 4377.9800000000005, "text": " Un-godless."}, {"id": 1732, "start": 4377.9800000000005, "end": 4381.700000000001, "text": " So, yeah, that was more cheery, right?"}, {"id": 1733, "start": 4381.84, "end": 4382.400000000001, "text": " A little bit."}, {"id": 1734, "start": 4382.68, "end": 4382.9400000000005, "text": " Yeah."}, {"id": 1735, "start": 4383.500000000001, "end": 4384.14, "text": " I don't know."}, {"id": 1736, "start": 4386.14, "end": 4391.040000000001, "text": " The chat, they're posting pictures from Idiocracy now, and I'm trying not to laugh on the air."}, {"id": 1737, "start": 4392.4400000000005, "end": 4395.200000000001, "text": " President Dwayne Elizondo Mountain Dew Hector Camacho."}, {"id": 1738, "start": 4396.42, "end": 4406.080000000001, "text": " Speaking of Netflix allowing you to download movies, it turns out that there's a bug in Chrome that will already allow you to do that."}, {"id": 1739, "start": 4407.3, "end": 4407.9400000000005, "text": " Go."}, {"id": 1740, "start": 4407.9800000000005, "end": 4408.280000000001, "text": " I'll figure."}, {"id": 1741, "start": 4408.400000000001, "end": 4410.660000000001, "text": " Makes it so that you can download movies from Netflix and Amazon."}, {"id": 1742, "start": 4411.660000000001, "end": 4412.540000000001, "text": " Just, whoops."}, {"id": 1743, "start": 4414.000000000001, "end": 4414.4400000000005, "text": " Whoopsie."}, {"id": 1744, "start": 4414.540000000001, "end": 4415.820000000001, "text": " I'm sure that'll get fixed quick."}, {"id": 1745, "start": 4416.06, "end": 4417.620000000001, "text": " Yeah, it probably already is."}, {"id": 1746, "start": 4418.000000000001, "end": 4418.34, "text": " Yeah."}, {"id": 1747, "start": 4418.4800000000005, "end": 4420.42, "text": " Well, seeing we're hearing about it, it's probably already fixed."}, {"id": 1748, "start": 4420.900000000001, "end": 4421.34, "text": " Yeah."}, {"id": 1749, "start": 4421.84, "end": 4423.000000000001, "text": " They're pretty quick on that."}, {"id": 1750, "start": 4423.68, "end": 4431.64, "text": " Google is really quick on fixing bugs that affect things like that, especially when there's monies involved."}, {"id": 1751, "start": 4431.64, "end": 4433.740000000001, "text": " Yeah, and Amazon's kind of a big person."}, {"id": 1752, "start": 4433.860000000001, "end": 4435.64, "text": " You don't want necessarily upset."}, {"id": 1753, "start": 4435.64, "end": 4437.56, "text": " I don't know about a big person."}, {"id": 1754, "start": 4437.9800000000005, "end": 4439.000000000001, "text": " A big company."}, {"id": 1755, "start": 4439.000000000001, "end": 4439.02, "text": " Organization."}, {"id": 1756, "start": 4440.200000000001, "end": 4440.6, "text": " Yeah."}, {"id": 1757, "start": 4440.8, "end": 4442.02, "text": " Biggest person ever."}, {"id": 1758, "start": 4442.18, "end": 4443.34, "text": " Don't poke the big guy."}, {"id": 1759, "start": 4443.52, "end": 4443.900000000001, "text": " No."}, {"id": 1760, "start": 4444.040000000001, "end": 4445.540000000001, "text": " I love Amazon."}, {"id": 1761, "start": 4445.860000000001, "end": 4454.820000000001, "text": " Amazon's, I guess I shouldn't try to peopleize Amazon, but yeah, that's kind of a large organization."}, {"id": 1762, "start": 4454.9800000000005, "end": 4456.160000000001, "text": " You don't necessarily want to mess with."}, {"id": 1763, "start": 4456.92, "end": 4459.580000000001, "text": " No, because I get lots of good deals from them."}, {"id": 1764, "start": 4460.820000000001, "end": 4462.400000000001, "text": " I'm really cool with Amazon."}, {"id": 1765, "start": 4462.72, "end": 4463.46, "text": " We're like this."}, {"id": 1766, "start": 4463.8, "end": 4464.200000000001, "text": " It's cool."}, {"id": 1767, "start": 4464.38, "end": 4465.200000000001, "text": " You're like what?"}, {"id": 1768, "start": 4465.200000000001, "end": 4465.820000000001, "text": " We're like this."}, {"id": 1769, "start": 4466.02, "end": 4466.360000000001, "text": " Oh, yeah."}, {"id": 1770, "start": 4467.000000000001, "end": 4467.900000000001, "text": " That's good radio, right?"}, {"id": 1771, "start": 4467.9800000000005, "end": 4468.14, "text": " Yeah."}, {"id": 1772, "start": 4469.4800000000005, "end": 4470.120000000001, "text": " Really good."}, {"id": 1773, "start": 4470.120000000001, "end": 4470.280000000001, "text": " People know."}, {"id": 1774, "start": 4470.38, "end": 4471.780000000001, "text": " The people know what I'm talking about."}, {"id": 1775, "start": 4471.780000000001, "end": 4472.64, "text": " We're like this."}, {"id": 1776, "start": 4472.84, "end": 4473.080000000001, "text": " Right."}, {"id": 1777, "start": 4473.080000000001, "end": 4473.580000000001, "text": " Crossed fingers."}, {"id": 1778, "start": 4473.9400000000005, "end": 4475.18, "text": " Oh, yeah."}, {"id": 1779, "start": 4475.320000000001, "end": 4476.580000000001, "text": " You got to put the parens in there."}, {"id": 1780, "start": 4476.9800000000005, "end": 4477.38, "text": " Parentheses."}, {"id": 1781, "start": 4477.700000000001, "end": 4478.18, "text": " Crossed fingers."}, {"id": 1782, "start": 4478.320000000001, "end": 4478.740000000001, "text": " Crossed fingers."}, {"id": 1783, "start": 4479.040000000001, "end": 4479.540000000001, "text": " There you go."}, {"id": 1784, "start": 4480.620000000001, "end": 4480.88, "text": " Okay."}, {"id": 1785, "start": 4482.02, "end": 4488.3, "text": " So, one of the things I want to talk about next would be some, it's like an ad for me, right?"}, {"id": 1786, "start": 4488.320000000001, "end": 4488.620000000001, "text": " Yay."}, {"id": 1787, "start": 4488.72, "end": 4494.500000000001, "text": " Because we don't talk about Computer Guru enough because, after all, Computer Guru does pay for this show, especially the second hour."}, {"id": 1788, "start": 4494.700000000001, "end": 4495.000000000001, "text": " Mm-hmm."}, {"id": 1789, "start": 4496.3, "end": 4497.8, "text": " And we offer some services."}, {"id": 1790, "start": 4497.9800000000005, "end": 4499.320000000001, "text": " You should probably know about."}, {"id": 1791, "start": 4499.580000000001, "end": 4500.860000000001, "text": " What services do you offer?"}, {"id": 1792, "start": 4500.92, "end": 4502.700000000001, "text": " Well, I'm glad you asked."}, {"id": 1793, "start": 4503.1, "end": 4510.06, "text": " We do websites and computer repair and networks and, all right, think of something that has something to do with computers."}, {"id": 1794, "start": 4511.040000000001, "end": 4511.88, "text": " We do that."}, {"id": 1795, "start": 4511.9400000000005, "end": 4512.22, "text": " Okay."}, {"id": 1796, "start": 4512.22, "end": 4520.700000000001, "text": " Yeah, you guys have actually surprised me where I'm like, man, what if we guys, oh, we already do that."}, {"id": 1797, "start": 4521.080000000001, "end": 4522.360000000001, "text": " Oh, okay."}, {"id": 1798, "start": 4522.820000000001, "end": 4523.000000000001, "text": " Yeah."}, {"id": 1799, "start": 4523.26, "end": 4524.540000000001, "text": " My input means nothing."}, {"id": 1800, "start": 4524.540000000001, "end": 4525.76, "text": " There are a few things that we don't do."}, {"id": 1801, "start": 4526.34, "end": 4527.860000000001, "text": " As an example, I won't."}, {"id": 1802, "start": 4527.9800000000005, "end": 4529.64, "text": " I won't build software for you."}, {"id": 1803, "start": 4530.18, "end": 4530.500000000001, "text": " No."}, {"id": 1804, "start": 4530.64, "end": 4531.200000000001, "text": " Not my thing."}, {"id": 1805, "start": 4531.900000000001, "end": 4532.160000000001, "text": " Nope."}, {"id": 1806, "start": 4532.580000000001, "end": 4533.360000000001, "text": " I'm sure you could."}, {"id": 1807, "start": 4533.4400000000005, "end": 4534.200000000001, "text": " You just won't."}, {"id": 1808, "start": 4534.360000000001, "end": 4534.76, "text": " Won't."}, {"id": 1809, "start": 4534.9400000000005, "end": 4535.18, "text": " Right."}, {"id": 1810, "start": 4535.240000000001, "end": 4536.34, "text": " And it's definitely a won't."}, {"id": 1811, "start": 4536.6, "end": 4537.56, "text": " It's not a can't."}, {"id": 1812, "start": 4537.88, "end": 4540.46, "text": " It's a, you know what my problem with development is?"}, {"id": 1813, "start": 4540.780000000001, "end": 4542.660000000001, "text": " Is it's a lot like interior decoration."}, {"id": 1814, "start": 4543.02, "end": 4543.360000000001, "text": " Mm-hmm."}, {"id": 1815, "start": 4543.4800000000005, "end": 4549.02, "text": " Which is, can you move this window over here and make everything purple and what?"}, {"id": 1816, "start": 4549.42, "end": 4549.820000000001, "text": " No."}, {"id": 1817, "start": 4550.200000000001, "end": 4550.500000000001, "text": " No."}, {"id": 1818, "start": 4550.6, "end": 4553.18, "text": " I'm not doing the whole interior decoration when it comes to software."}, {"id": 1819, "start": 4553.18, "end": 4554.52, "text": " I don't like it."}, {"id": 1820, "start": 4555.040000000001, "end": 4556.26, "text": " It just makes me unhappy."}, {"id": 1821, "start": 4556.26, "end": 4560.66, "text": " And I figure, seeing I own the place, I get to do what makes me happy."}, {"id": 1822, "start": 4560.8, "end": 4561.34, "text": " There you go."}, {"id": 1823, "start": 4561.4400000000005, "end": 4564.42, "text": " And what makes me happy is fixing stuff."}, {"id": 1824, "start": 4564.88, "end": 4565.08, "text": " Yes."}, {"id": 1825, "start": 4565.08, "end": 4568.400000000001, "text": " Solving problems that aren't software development."}, {"id": 1826, "start": 4568.68, "end": 4571.54, "text": " And I've had to bring my computer in a couple times and it's been good."}, {"id": 1827, "start": 4572.08, "end": 4572.62, "text": " Right on."}, {"id": 1828, "start": 4572.64, "end": 4573.24, "text": " Good times."}, {"id": 1829, "start": 4573.84, "end": 4574.6, "text": " Love my computer."}, {"id": 1830, "start": 4574.8, "end": 4574.96, "text": " Yeah."}, {"id": 1831, "start": 4575.320000000001, "end": 4579.320000000001, "text": " And considering that, you know, people only leave reviews when they're really unhappy."}, {"id": 1832, "start": 4579.66, "end": 4580.54, "text": " Pretty much, yeah."}, {"id": 1833, "start": 4580.54, "end": 4582.08, "text": " Most of my reviews are great."}, {"id": 1834, "start": 4582.5, "end": 4582.74, "text": " Yeah."}, {"id": 1835, "start": 4583.04, "end": 4584.66, "text": " I've got a couple of unhappy people out there."}, {"id": 1836, "start": 4584.72, "end": 4585.16, "text": " That's okay."}, {"id": 1837, "start": 4585.400000000001, "end": 4585.76, "text": " Yeah."}, {"id": 1838, "start": 4585.76, "end": 4587.8, "text": " Well, you can't please all the people all the time."}, {"id": 1839, "start": 4588.04, "end": 4589.06, "text": " Especially the crazy ones."}, {"id": 1840, "start": 4589.42, "end": 4590.280000000001, "text": " But I try."}, {"id": 1841, "start": 4590.66, "end": 4591.280000000001, "text": " I really do."}, {"id": 1842, "start": 4591.74, "end": 4592.72, "text": " I give it a shot."}, {"id": 1843, "start": 4593.320000000001, "end": 4594.9800000000005, "text": " I'm like, hello, crazy person."}, {"id": 1844, "start": 4596.16, "end": 4597.52, "text": " Let's see if we can make you happy."}, {"id": 1845, "start": 4597.860000000001, "end": 4598.74, "text": " Sup, crazy person."}, {"id": 1846, "start": 4600.38, "end": 4601.96, "text": " This is a crazy guy."}, {"id": 1847, "start": 4603.860000000001, "end": 4605.42, "text": " I'm going to offer you a crazy deal."}, {"id": 1848, "start": 4606.62, "end": 4607.52, "text": " You're so crazy."}, {"id": 1849, "start": 4607.7, "end": 4607.84, "text": " No."}, {"id": 1850, "start": 4610.5, "end": 4611.1, "text": " So, yeah."}, {"id": 1851, "start": 4611.24, "end": 4612.7, "text": " I mean, it's Computer Girl."}, {"id": 1852, "start": 4613.34, "end": 4614.52, "text": " We do a lot of things."}, {"id": 1853, "start": 4614.7, "end": 4615.54, "text": " We try to help out."}, {"id": 1854, "start": 4615.76, "end": 4618.04, "text": " We try to help out everybody that we can in various ways."}, {"id": 1855, "start": 4618.14, "end": 4619.34, "text": " We also have the eSite location now."}, {"id": 1856, "start": 4619.4800000000005, "end": 4623.7, "text": " But, I mean, basically, if there's anything that you need when it comes to networks, computers,"}, {"id": 1857, "start": 4623.860000000001, "end": 4626.46, "text": " especially the business stuff, we're happy to help out with that."}, {"id": 1858, "start": 4627.2, "end": 4629.22, "text": " And you should give us a call."}, {"id": 1859, "start": 4630.26, "end": 4630.58, "text": " 304-8300."}, {"id": 1860, "start": 4630.860000000001, "end": 4632.58, "text": " Or email us."}, {"id": 1861, "start": 4632.68, "end": 4634.7, "text": " Radio at azcomputerguru.com."}, {"id": 1862, "start": 4635.34, "end": 4637.0, "text": " And we'll see what we can do for you."}, {"id": 1863, "start": 4637.1, "end": 4639.3, "text": " And if you're not sure if they do it, call and ask."}, {"id": 1864, "start": 4639.9800000000005, "end": 4640.34, "text": " Oh, yeah."}, {"id": 1865, "start": 4640.8, "end": 4642.74, "text": " I mean, the website has most of the stuff on there."}, {"id": 1866, "start": 4642.74, "end": 4644.74, "text": " But even that, it's just like..."}, {"id": 1867, "start": 4645.76, "end": 4647.8, "text": " That's too much stuff to put on there."}, {"id": 1868, "start": 4648.08, "end": 4653.56, "text": " But if you call and ask, we will definitely help you out with whatever problem you've got."}, {"id": 1869, "start": 4653.96, "end": 4657.2, "text": " And treat you like a person in the process, because that's what we do."}, {"id": 1870, "start": 4658.64, "end": 4658.84, "text": " Right."}, {"id": 1871, "start": 4659.84, "end": 4660.24, "text": " Word."}, {"id": 1872, "start": 4662.0, "end": 4662.74, "text": " Word up."}, {"id": 1873, "start": 4664.88, "end": 4666.06, "text": " Ooh, another good song."}, {"id": 1874, "start": 4666.58, "end": 4668.56, "text": " Man, Ken is on top of it with the music today."}, {"id": 1875, "start": 4668.6, "end": 4668.780000000001, "text": " On his game."}, {"id": 1876, "start": 4669.6, "end": 4670.42, "text": " We'll be right back."}, {"id": 1877, "start": 4675.76, "end": 4679.280000000001, "text": " Don't you feel it growing day by day?"}, {"id": 1878, "start": 4680.06, "end": 4682.7, "text": " People getting ready for the moon."}, {"id": 1879, "start": 4683.4400000000005, "end": 4684.46, "text": " Computer troubles?"}, {"id": 1880, "start": 4684.92, "end": 4685.76, "text": " Need some advice?"}, {"id": 1881, "start": 4686.0, "end": 4686.68, "text": " Call in now."}, {"id": 1882, "start": 4686.9400000000005, "end": 4689.06, "text": " Mike Swanson will be back after these messages."}, {"id": 1883, "start": 4689.56, "end": 4690.74, "text": " The Computer Guru Show."}, {"id": 1884, "start": 4691.04, "end": 4691.92, "text": " AM 1030."}, {"id": 1885, "start": 4692.14, "end": 4692.68, "text": " KVOY."}, {"id": 1886, "start": 4693.14, "end": 4693.76, "text": " The Voice."}, {"id": 1887, "start": 4693.76, "end": 4693.88, "text": " The Voice."}, {"id": 1888, "start": 4703.64, "end": 4705.64, "text": " Mike Swanson, your computer guru."}, {"id": 1889, "start": 4705.76, "end": 4706.8, "text": " It's just a click away."}, {"id": 1890, "start": 4707.14, "end": 4709.400000000001, "text": " Listen and watch at gurushow.com."}, {"id": 1891, "start": 4709.780000000001, "end": 4711.58, "text": " This is the Computer Guru Show."}, {"id": 1892, "start": 4712.06, "end": 4715.12, "text": " Welcome back to the Computer Guru Show."}, {"id": 1893, "start": 4716.3, "end": 4721.280000000001, "text": " As well as it's going today, because I'm sort of mentally fogged out here."}, {"id": 1894, "start": 4722.72, "end": 4723.16, "text": " Whatever."}, {"id": 1895, "start": 4723.400000000001, "end": 4724.02, "text": " I'm having fun."}, {"id": 1896, "start": 4724.24, "end": 4724.84, "text": " No more coffee?"}, {"id": 1897, "start": 4725.66, "end": 4726.400000000001, "text": " Oh, I think we're..."}, {"id": 1898, "start": 4726.400000000001, "end": 4726.9800000000005, "text": " No more Guatemalan?"}, {"id": 1899, "start": 4727.56, "end": 4728.88, "text": " Oh, I do have a little bit of coffee left."}, {"id": 1900, "start": 4728.900000000001, "end": 4729.280000000001, "text": " Oh, there you go."}, {"id": 1901, "start": 4729.280000000001, "end": 4730.16, "text": " Let's go ahead and do that."}, {"id": 1902, "start": 4730.38, "end": 4730.64, "text": " Hold on."}, {"id": 1903, "start": 4733.02, "end": 4733.38, "text": " Yep."}, {"id": 1904, "start": 4734.820000000001, "end": 4735.72, "text": " Yep, it's coffee."}, {"id": 1905, "start": 4735.76, "end": 4738.0, "text": " Yep, it's still Guatemalan coffee."}, {"id": 1906, "start": 4738.26, "end": 4738.62, "text": " Ooh."}, {"id": 1907, "start": 4740.1, "end": 4741.02, "text": " It's pretty good."}, {"id": 1908, "start": 4741.360000000001, "end": 4742.360000000001, "text": " It's not bad coffee."}, {"id": 1909, "start": 4742.72, "end": 4746.900000000001, "text": " Whoever at KVOI decided to bring in tasty Guatemalan coffee..."}, {"id": 1910, "start": 4746.900000000001, "end": 4747.14, "text": " It's good."}, {"id": 1911, "start": 4747.14, "end": 4748.58, "text": " ...we should probably say thank you, too."}, {"id": 1912, "start": 4748.74, "end": 4749.360000000001, "text": " I don't know who that is."}, {"id": 1913, "start": 4749.400000000001, "end": 4750.1, "text": " Do you know who that is, Kent?"}, {"id": 1914, "start": 4750.2, "end": 4750.76, "text": " You don't know either?"}, {"id": 1915, "start": 4750.900000000001, "end": 4751.38, "text": " I do not."}, {"id": 1916, "start": 4751.5, "end": 4751.92, "text": " It's good, though."}, {"id": 1917, "start": 4752.3, "end": 4754.04, "text": " Yeah, well, we should probably figure that out."}, {"id": 1918, "start": 4754.7, "end": 4756.46, "text": " We'll leave them a thank you note in their little mailbox."}, {"id": 1919, "start": 4756.96, "end": 4757.6, "text": " Thank you."}, {"id": 1920, "start": 4757.820000000001, "end": 4759.8, "text": " They have a cubby mailbox over here."}, {"id": 1921, "start": 4759.9400000000005, "end": 4760.14, "text": " Yeah?"}, {"id": 1922, "start": 4760.34, "end": 4760.58, "text": " Yeah."}, {"id": 1923, "start": 4760.96, "end": 4761.64, "text": " It's like..."}, {"id": 1924, "start": 4761.64, "end": 4763.54, "text": " I haven't seen one of those in years."}, {"id": 1925, "start": 4764.6, "end": 4765.64, "text": " Back when I used to work in..."}, {"id": 1926, "start": 4765.76, "end": 4767.76, "text": " Back when I used to work for other people."}, {"id": 1927, "start": 4767.84, "end": 4768.4400000000005, "text": " Back in corporate."}, {"id": 1928, "start": 4768.76, "end": 4769.9400000000005, "text": " Like, forever ago."}, {"id": 1929, "start": 4770.5, "end": 4771.74, "text": " It feels like a lifetime ago."}, {"id": 1930, "start": 4771.92, "end": 4772.26, "text": " Yeah."}, {"id": 1931, "start": 4773.3, "end": 4773.84, "text": " Same here."}, {"id": 1932, "start": 4774.62, "end": 4775.5, "text": " Let's go ahead and take a call."}, {"id": 1933, "start": 4775.62, "end": 4776.12, "text": " Let's talk to Doug."}, {"id": 1934, "start": 4776.66, "end": 4777.12, "text": " Hello, Doug."}, {"id": 1935, "start": 4777.12, "end": 4777.4800000000005, "text": " How are you?"}, {"id": 1936, "start": 4778.38, "end": 4778.7, "text": " Good."}, {"id": 1937, "start": 4779.320000000001, "end": 4780.14, "text": " What can I do for you, sir?"}, {"id": 1938, "start": 4780.14, "end": 4791.3, "text": " I put Windows 10 on, and I want to connect my HP Printer 6520 smart printer."}, {"id": 1939, "start": 4791.66, "end": 4792.18, "text": " Right."}, {"id": 1940, "start": 4793.14, "end": 4795.46, "text": " And it doesn't want to connect."}, {"id": 1941, "start": 4795.46, "end": 4797.32, "text": " It just asks for a router, even though it's wireless."}, {"id": 1942, "start": 4799.36, "end": 4800.04, "text": " What do you mean?"}, {"id": 1943, "start": 4800.44, "end": 4801.04, "text": " What's it doing?"}, {"id": 1944, "start": 4801.96, "end": 4803.36, "text": " It asks for a router."}, {"id": 1945, "start": 4803.4800000000005, "end": 4810.26, "text": " Then I try to install it again, and it gets stuck on the download, like at 14 seconds,"}, {"id": 1946, "start": 4810.32, "end": 4811.3, "text": " and it won't go any further."}, {"id": 1947, "start": 4812.64, "end": 4814.82, "text": " Well, it sounds like you've got some other issues going on over there."}, {"id": 1948, "start": 4815.46, "end": 4817.9, "text": " Okay, so it's not..."}, {"id": 1949, "start": 4817.9, "end": 4824.56, "text": " Yeah, well, I mean, if the only problem were that the printer didn't want to connect, then"}, {"id": 1950, "start": 4824.56, "end": 4825.44, "text": " you know, I'd be looking at it."}, {"id": 1951, "start": 4825.46, "end": 4828.96, "text": " I'd be staring firmly at Windows 10 going, what's up, Windows 10?"}, {"id": 1952, "start": 4829.24, "end": 4830.42, "text": " How come you don't want to talk to this printer?"}, {"id": 1953, "start": 4831.12, "end": 4831.4800000000005, "text": " Okay."}, {"id": 1954, "start": 4831.64, "end": 4834.46, "text": " But considering that you can't download the driver also?"}, {"id": 1955, "start": 4835.16, "end": 4835.36, "text": " Yeah."}, {"id": 1956, "start": 4835.86, "end": 4836.12, "text": " Uh-huh."}, {"id": 1957, "start": 4836.3, "end": 4836.6, "text": " Yes."}, {"id": 1958, "start": 4836.72, "end": 4839.0, "text": " It sounds like there's some other issue going on there."}, {"id": 1959, "start": 4839.14, "end": 4840.94, "text": " Like, maybe you do have a router issue."}, {"id": 1960, "start": 4841.5, "end": 4842.32, "text": " What kind of router do you have?"}, {"id": 1961, "start": 4843.06, "end": 4844.04, "text": " I don't have a router."}, {"id": 1962, "start": 4844.52, "end": 4844.82, "text": " All right."}, {"id": 1963, "start": 4844.84, "end": 4845.62, "text": " How do you connect to the internet?"}, {"id": 1964, "start": 4849.7, "end": 4852.46, "text": " I have a Verizon..."}, {"id": 1965, "start": 4853.22, "end": 4854.44, "text": " Little hotspot type thing?"}, {"id": 1966, "start": 4855.04, "end": 4855.4, "text": " Yes."}, {"id": 1967, "start": 4856.04, "end": 4856.52, "text": " Okay."}, {"id": 1968, "start": 4856.78, "end": 4858.12, "text": " What kind of hotspot type thing?"}, {"id": 1969, "start": 4859.88, "end": 4862.1, "text": " Is it a MiFi, or are you doing it off your phone?"}, {"id": 1970, "start": 4863.14, "end": 4863.64, "text": " No, no."}, {"id": 1971, "start": 4863.74, "end": 4864.3, "text": " It's Wi-Fi."}, {"id": 1972, "start": 4864.92, "end": 4869.76, "text": " So is it the letter M as in Mary, MiFi, or letter W?"}, {"id": 1973, "start": 4870.78, "end": 4871.32, "text": " Excuse me?"}, {"id": 1974, "start": 4871.92, "end": 4877.58, "text": " So when you're using the Verizon stuff for getting on the internet, they have three different"}, {"id": 1975, "start": 4877.58, "end": 4878.74, "text": " ways that you can do this."}, {"id": 1976, "start": 4878.86, "end": 4880.04, "text": " You can tell it off your phone."}, {"id": 1977, "start": 4880.66, "end": 4884.72, "text": " You can have a MiFi device, which starts with the letter M as in Mary."}, {"id": 1978, "start": 4885.46, "end": 4891.84, "text": " Or you can do something like a cradle point, which is like a hotspot that connects to"}, {"id": 1979, "start": 4891.84, "end": 4892.74, "text": " a special router."}, {"id": 1980, "start": 4893.0, "end": 4893.08, "text": " Yeah."}, {"id": 1981, "start": 4893.36, "end": 4894.52, "text": " I think it's a MiFi, I think."}, {"id": 1982, "start": 4894.78, "end": 4895.02, "text": " Okay."}, {"id": 1983, "start": 4896.08, "end": 4903.78, "text": " So when you're trying to download stuff to your computer to get the drivers for this"}, {"id": 1984, "start": 4903.78, "end": 4906.94, "text": " printer, and you're saying that it fails during the download, right?"}, {"id": 1985, "start": 4907.28, "end": 4907.4800000000005, "text": " Yeah."}, {"id": 1986, "start": 4907.54, "end": 4912.06, "text": " It goes up 97%, and then it says 14 seconds left, and it doesn't go beyond that."}, {"id": 1987, "start": 4914.14, "end": 4915.06, "text": " And that's after..."}, {"id": 1988, "start": 4915.46, "end": 4919.3, "text": " After, of course, reboots, and you've restarted all your devices, all that stuff."}, {"id": 1989, "start": 4919.4, "end": 4920.08, "text": " It's the same thing."}, {"id": 1990, "start": 4920.78, "end": 4922.4800000000005, "text": " Do you have more than one computer, or just one?"}, {"id": 1991, "start": 4923.44, "end": 4924.12, "text": " Just the one."}, {"id": 1992, "start": 4924.38, "end": 4924.9, "text": " Just the one."}, {"id": 1993, "start": 4924.96, "end": 4925.14, "text": " Okay."}, {"id": 1994, "start": 4925.58, "end": 4926.92, "text": " Which browser are you using?"}, {"id": 1995, "start": 4928.42, "end": 4929.18, "text": " It would be..."}, {"id": 1996, "start": 4929.18, "end": 4929.78, "text": " I'm using Google."}, {"id": 1997, "start": 4931.1, "end": 4932.56, "text": " Do you have any other browsers on the computer?"}, {"id": 1998, "start": 4936.7, "end": 4938.66, "text": " Yes, I do."}, {"id": 1999, "start": 4938.94, "end": 4940.86, "text": " And which antivirus do you have?"}, {"id": 2000, "start": 4943.08, "end": 4945.24, "text": " I'm trying to think which one I have right now."}, {"id": 2001, "start": 4945.46, "end": 4950.34, "text": " I can't think what it is offhand right now."}, {"id": 2002, "start": 4950.8, "end": 4950.96, "text": " All right."}, {"id": 2003, "start": 4951.06, "end": 4957.46, "text": " So I'm going to guess that your initial problem was probably some type of antivirus stepping"}, {"id": 2004, "start": 4958.26, "end": 4958.94, "text": " on your download."}, {"id": 2005, "start": 4959.7, "end": 4960.06, "text": " Okay."}, {"id": 2006, "start": 4960.46, "end": 4960.82, "text": " Okay."}, {"id": 2007, "start": 4960.96, "end": 4964.44, "text": " So try turning off the antivirus to download that particular program, as long as you're"}, {"id": 2008, "start": 4964.44, "end": 4966.26, "text": " getting it directly from the HP website."}, {"id": 2009, "start": 4966.84, "end": 4967.24, "text": " Okay."}, {"id": 2010, "start": 4967.5, "end": 4968.3, "text": " That's what I'll do then."}, {"id": 2011, "start": 4968.44, "end": 4973.26, "text": " And also, you might as well get something like CCleaner and clean up all the temp files,"}, {"id": 2012, "start": 4973.58, "end": 4974.88, "text": " and that'll probably help."}, {"id": 2013, "start": 4975.66, "end": 4976.9800000000005, "text": " And where do I get CCleaner?"}, {"id": 2014, "start": 4977.62, "end": 4978.36, "text": " CCleaner.com."}, {"id": 2015, "start": 4979.02, "end": 4979.34, "text": " Okay."}, {"id": 2016, "start": 4979.58, "end": 4980.02, "text": " I'll do that."}, {"id": 2017, "start": 4980.12, "end": 4980.42, "text": " Thank you."}, {"id": 2018, "start": 4980.64, "end": 4980.9, "text": " All right."}, {"id": 2019, "start": 4980.96, "end": 4981.46, "text": " Give that a shot."}, {"id": 2020, "start": 4981.52, "end": 4982.18, "text": " Let me know how it works."}, {"id": 2021, "start": 4982.68, "end": 4983.0, "text": " Okay."}, {"id": 2022, "start": 4983.12, "end": 4983.32, "text": " Thank you."}, {"id": 2023, "start": 4983.52, "end": 4983.8, "text": " All right."}, {"id": 2024, "start": 4983.8, "end": 4984.08, "text": " Thank you."}, {"id": 2025, "start": 4984.52, "end": 4984.92, "text": " All right."}, {"id": 2026, "start": 4984.94, "end": 4985.62, "text": " Let's move on to Kevin."}, {"id": 2027, "start": 4985.78, "end": 4986.2, "text": " Hello, Kevin."}, {"id": 2028, "start": 4986.24, "end": 4986.56, "text": " How are you?"}, {"id": 2029, "start": 4986.8, "end": 4987.24, "text": " I'm fine."}, {"id": 2030, "start": 4987.32, "end": 4987.4800000000005, "text": " Thank you."}, {"id": 2031, "start": 4987.4800000000005, "end": 4988.0, "text": " How are you today?"}, {"id": 2032, "start": 4988.12, "end": 4989.12, "text": " I'm lovely, sir."}, {"id": 2033, "start": 4989.22, "end": 4989.5, "text": " Lovely."}, {"id": 2034, "start": 4989.5, "end": 4994.1, "text": " I wanted to call you earlier, but I was working for a living, so I got the fast and easy question"}, {"id": 2035, "start": 4994.1, "end": 4994.46, "text": " for you."}, {"id": 2036, "start": 4994.56, "end": 4994.82, "text": " Sure."}, {"id": 2037, "start": 4995.22, "end": 4996.6, "text": " Windows 7, I love it."}, {"id": 2038, "start": 4996.66, "end": 4997.5, "text": " XP Pro."}, {"id": 2039, "start": 4998.72, "end": 5000.12, "text": " I'm Windows 7 Pro."}, {"id": 2040, "start": 5000.58, "end": 5004.62, "text": " Don't want to change it, but I lose my chance to get the free upgrade next week."}, {"id": 2041, "start": 5004.82, "end": 5005.14, "text": " So..."}, {"id": 2042, "start": 5005.46, "end": 5011.8, "text": " Three occasions I've tried to download Windows 10 on the interweb, and I can't get the thing"}, {"id": 2043, "start": 5011.8, "end": 5012.24, "text": " to download."}, {"id": 2044, "start": 5012.4, "end": 5017.28, "text": " It's like the dial spins and spins, the machine stays on all night long, and it comes back"}, {"id": 2045, "start": 5017.28, "end": 5018.72, "text": " and it says, zero files downloaded."}, {"id": 2046, "start": 5018.72, "end": 5020.78, "text": " So I said, I'm smarter than the machine."}, {"id": 2047, "start": 5021.4, "end": 5025.7, "text": " Got a 120 gig drive, booted off that externally."}, {"id": 2048, "start": 5026.8, "end": 5028.28, "text": " I had Windows 7 on there."}, {"id": 2049, "start": 5029.72, "end": 5035.28, "text": " Downloaded Windows 10 on that, and I was just trying to get the key onto my machine without"}, {"id": 2050, "start": 5035.28, "end": 5036.719999999999, "text": " putting Windows 10 on there."}, {"id": 2051, "start": 5037.58, "end": 5038.5, "text": " Same thing."}, {"id": 2052, "start": 5038.58, "end": 5041.0599999999995, "text": " It wouldn't download any files."}, {"id": 2053, "start": 5041.74, "end": 5048.0199999999995, "text": " So I tried, once I got Windows 10 on the removable drive, I tried to download all the updates."}, {"id": 2054, "start": 5048.4, "end": 5048.74, "text": " Right."}, {"id": 2055, "start": 5049.0599999999995, "end": 5050.16, "text": " It wouldn't let me do anything."}, {"id": 2056, "start": 5050.259999999999, "end": 5051.86, "text": " Wouldn't let me register my key."}, {"id": 2057, "start": 5052.28, "end": 5060.139999999999, "text": " I've got six copies of Windows 7 Pro, Extreme, Ultra, Extra, whatever it is."}, {"id": 2058, "start": 5060.74, "end": 5063.36, "text": " It will not accept any of the keys from that."}, {"id": 2059, "start": 5063.94, "end": 5065.259999999999, "text": " There are no keys for 10."}, {"id": 2060, "start": 5065.28, "end": 5065.88, "text": " There are no keys for 10, by the way."}, {"id": 2061, "start": 5066.099999999999, "end": 5066.8, "text": " Okay, right."}, {"id": 2062, "start": 5066.88, "end": 5069.86, "text": " But it makes you, before you can register it, it makes you put a key in there."}, {"id": 2063, "start": 5070.3, "end": 5073.54, "text": " So I've got legal, legitimate copies and all this other stuff."}, {"id": 2064, "start": 5074.84, "end": 5081.259999999999, "text": " I'm running with a legal keyed copy of Windows 7 on the machine right now, but Windows 10"}, {"id": 2065, "start": 5081.259999999999, "end": 5085.58, "text": " before, after I downloaded it, I couldn't download it onto my machine."}, {"id": 2066, "start": 5085.719999999999, "end": 5090.38, "text": " After I downloaded it onto an external drive and tried to just get the machine to turn"}, {"id": 2067, "start": 5090.38, "end": 5094.34, "text": " out so I could just get the key in there so that when I'm ready to go to 10, it'll be"}, {"id": 2068, "start": 5094.34, "end": 5094.7, "text": " registered."}, {"id": 2069, "start": 5094.7, "end": 5095.259999999999, "text": " I don't have to pay."}, {"id": 2070, "start": 5095.88, "end": 5097.46, "text": " Let's deal with a couple of things first."}, {"id": 2071, "start": 5097.48, "end": 5097.9, "text": " Please go."}, {"id": 2072, "start": 5097.98, "end": 5098.34, "text": " Hit me up."}, {"id": 2073, "start": 5098.4, "end": 5098.84, "text": " I'm all ears."}, {"id": 2074, "start": 5099.099999999999, "end": 5100.3, "text": " And I know you're running out of time."}, {"id": 2075, "start": 5100.48, "end": 5100.719999999999, "text": " All right."}, {"id": 2076, "start": 5100.84, "end": 5101.139999999999, "text": " Ears."}, {"id": 2077, "start": 5101.4, "end": 5101.66, "text": " All right."}, {"id": 2078, "start": 5101.719999999999, "end": 5103.2, "text": " So first of all, it's not next week."}, {"id": 2079, "start": 5103.24, "end": 5103.78, "text": " It's next month."}, {"id": 2080, "start": 5104.04, "end": 5104.66, "text": " Oh, God."}, {"id": 2081, "start": 5104.719999999999, "end": 5105.12, "text": " Next month."}, {"id": 2082, "start": 5105.3, "end": 5105.599999999999, "text": " Geez."}, {"id": 2083, "start": 5105.599999999999, "end": 5106.139999999999, "text": " I lost."}, {"id": 2084, "start": 5106.259999999999, "end": 5106.74, "text": " I'm sorry, buddy."}, {"id": 2085, "start": 5106.86, "end": 5107.62, "text": " To the end of July."}, {"id": 2086, "start": 5108.42, "end": 5108.639999999999, "text": " Okay."}, {"id": 2087, "start": 5109.0599999999995, "end": 5112.0599999999995, "text": " And so that gives us some time to solve your problem here."}, {"id": 2088, "start": 5112.099999999999, "end": 5112.38, "text": " Okay."}, {"id": 2089, "start": 5113.88, "end": 5117.04, "text": " The primary copy of Windows 7 you have on your computer."}, {"id": 2090, "start": 5117.32, "end": 5117.58, "text": " Yes."}, {"id": 2091, "start": 5117.9, "end": 5118.219999999999, "text": " Legit?"}, {"id": 2092, "start": 5118.8, "end": 5119.12, "text": " Legit."}, {"id": 2093, "start": 5119.2, "end": 5119.62, "text": " All legit."}, {"id": 2094, "start": 5119.96, "end": 5120.28, "text": " Okay."}, {"id": 2095, "start": 5120.28, "end": 5121.259999999999, "text": " So it's not..."}, {"id": 2096, "start": 5121.259999999999, "end": 5122.34, "text": " I could give you the..."}, {"id": 2097, "start": 5122.34, "end": 5123.62, "text": " I got three copies of it."}, {"id": 2098, "start": 5123.679999999999, "end": 5124.0599999999995, "text": " All legit."}, {"id": 2099, "start": 5124.16, "end": 5124.84, "text": " It's only on one machine."}, {"id": 2100, "start": 5124.84, "end": 5125.2, "text": " So..."}, {"id": 2101, "start": 5125.28, "end": 5125.88, "text": " Settle down now."}, {"id": 2102, "start": 5126.099999999999, "end": 5126.3, "text": " All right."}, {"id": 2103, "start": 5126.3, "end": 5126.599999999999, "text": " So..."}, {"id": 2104, "start": 5126.599999999999, "end": 5127.12, "text": " Sorry, man."}, {"id": 2105, "start": 5127.24, "end": 5127.36, "text": " Yep."}, {"id": 2106, "start": 5127.36, "end": 5127.5199999999995, "text": " All right."}, {"id": 2107, "start": 5127.599999999999, "end": 5131.759999999999, "text": " Now there's a little flag icon down by your clock still down there."}, {"id": 2108, "start": 5131.8, "end": 5131.82, "text": " Yep."}, {"id": 2109, "start": 5131.82, "end": 5131.96, "text": " Yep."}, {"id": 2110, "start": 5131.96, "end": 5135.639999999999, "text": " And if you click on that, does it say, hey, you..."}, {"id": 2111, "start": 5135.639999999999, "end": 5136.78, "text": " Hey, get Windows 10 now."}, {"id": 2112, "start": 5136.92, "end": 5138.28, "text": " And have you gone through that process?"}, {"id": 2113, "start": 5138.38, "end": 5139.46, "text": " Went through that whole process."}, {"id": 2114, "start": 5139.66, "end": 5140.66, "text": " And it said it's reserved."}, {"id": 2115, "start": 5140.92, "end": 5141.98, "text": " It says it's..."}, {"id": 2116, "start": 5141.98, "end": 5146.92, "text": " But when you go to download it from there, you know, like if you were doing upgrades"}, {"id": 2117, "start": 5146.92, "end": 5150.08, "text": " on a file, if you were downloading security checks or something like that, the little"}, {"id": 2118, "start": 5150.08, "end": 5152.9, "text": " screen comes up and it spins for nine hours."}, {"id": 2119, "start": 5152.96, "end": 5153.759999999999, "text": " Here's what you're going to do."}, {"id": 2120, "start": 5153.98, "end": 5154.32, "text": " Geez."}, {"id": 2121, "start": 5154.46, "end": 5154.78, "text": " All right."}, {"id": 2122, "start": 5154.78, "end": 5155.219999999999, "text": " So..."}, {"id": 2123, "start": 5155.219999999999, "end": 5156.86, "text": " Here's some instructions for you."}, {"id": 2124, "start": 5157.04, "end": 5157.38, "text": " All right."}, {"id": 2125, "start": 5157.38, "end": 5157.88, "text": " I'm all ears."}, {"id": 2126, "start": 5158.0599999999995, "end": 5158.259999999999, "text": " All right."}, {"id": 2127, "start": 5158.66, "end": 5159.98, "text": " Do you know how to get into the services?"}, {"id": 2128, "start": 5160.5199999999995, "end": 5161.099999999999, "text": " Yes, I do."}, {"id": 2129, "start": 5161.219999999999, "end": 5161.5, "text": " All right."}, {"id": 2130, "start": 5161.5, "end": 5164.5, "text": " So you're going to go into the services and you're going to stop the Windows Update service."}, {"id": 2131, "start": 5164.78, "end": 5165.9, "text": " Stop Update service, okay."}, {"id": 2132, "start": 5165.9, "end": 5167.38, "text": " Not disable it, just stop it."}, {"id": 2133, "start": 5167.58, "end": 5167.9, "text": " Okay."}, {"id": 2134, "start": 5168.08, "end": 5171.719999999999, "text": " Then you're going to go into C, Windows, Software Installation."}, {"id": 2135, "start": 5171.98, "end": 5172.34, "text": " Okay."}, {"id": 2136, "start": 5172.78, "end": 5174.719999999999, "text": " And then there's a download folder in there."}, {"id": 2137, "start": 5174.94, "end": 5175.3, "text": " Okay."}, {"id": 2138, "start": 5175.3, "end": 5177.54, "text": " You're going to delete the entire folder."}, {"id": 2139, "start": 5178.139999999999, "end": 5178.179999999999, "text": " Okay."}, {"id": 2140, "start": 5178.36, "end": 5178.66, "text": " Okay."}, {"id": 2141, "start": 5178.8, "end": 5179.96, "text": " Just delete the downloads folder."}, {"id": 2142, "start": 5180.139999999999, "end": 5180.44, "text": " Okay."}, {"id": 2143, "start": 5180.5599999999995, "end": 5180.92, "text": " Gone."}, {"id": 2144, "start": 5181.219999999999, "end": 5181.719999999999, "text": " Got you."}, {"id": 2145, "start": 5181.9, "end": 5182.7, "text": " Restart the computer."}, {"id": 2146, "start": 5183.139999999999, "end": 5183.5, "text": " Okay."}, {"id": 2147, "start": 5183.84, "end": 5184.759999999999, "text": " What that'll do is it'll..."}, {"id": 2148, "start": 5184.78, "end": 5189.62, "text": " Reset your Windows Updates and tell it to properly download your updates at that point."}, {"id": 2149, "start": 5189.78, "end": 5191.88, "text": " It will take a very long time."}, {"id": 2150, "start": 5192.5, "end": 5192.9, "text": " Okay."}, {"id": 2151, "start": 5193.44, "end": 5196.34, "text": " But once it does that, you will get your Windows 10 upgrade."}, {"id": 2152, "start": 5196.74, "end": 5197.04, "text": " Okay."}, {"id": 2153, "start": 5197.099999999999, "end": 5201.46, "text": " So you think something got corrupted in the original download down there?"}, {"id": 2154, "start": 5201.5, "end": 5202.44, "text": " It gets confused all the time."}, {"id": 2155, "start": 5202.759999999999, "end": 5203.0599999999995, "text": " Okay."}, {"id": 2156, "start": 5203.259999999999, "end": 5204.34, "text": " God, it sounds like me, man."}, {"id": 2157, "start": 5204.599999999999, "end": 5205.84, "text": " Listen, wonderful show."}, {"id": 2158, "start": 5205.94, "end": 5207.219999999999, "text": " I wish I could have called you earlier."}, {"id": 2159, "start": 5207.38, "end": 5210.099999999999, "text": " Working for a living, so I don't want to run into..."}, {"id": 2160, "start": 5210.099999999999, "end": 5210.74, "text": " It's no excuse."}, {"id": 2161, "start": 5210.88, "end": 5211.44, "text": " Quit your job."}, {"id": 2162, "start": 5211.66, "end": 5212.32, "text": " I'll quit my job."}, {"id": 2163, "start": 5212.4, "end": 5212.98, "text": " I'm working on it."}, {"id": 2164, "start": 5213.0599999999995, "end": 5214.179999999999, "text": " I'll talk to you next month."}, {"id": 2165, "start": 5214.24, "end": 5214.759999999999, "text": " I'll let you know how it goes."}, {"id": 2166, "start": 5214.82, "end": 5215.32, "text": " It went, okay?"}, {"id": 2167, "start": 5215.4, "end": 5215.78, "text": " All right."}, {"id": 2168, "start": 5216.12, "end": 5216.62, "text": " Thanks, buddy."}, {"id": 2169, "start": 5216.74, "end": 5217.54, "text": " Have a good weekend."}, {"id": 2170, "start": 5218.5199999999995, "end": 5220.16, "text": " Kevin is my favorite caller."}, {"id": 2171, "start": 5220.24, "end": 5220.94, "text": " You think he's your favorite?"}, {"id": 2172, "start": 5221.099999999999, "end": 5221.7, "text": " He is."}, {"id": 2173, "start": 5222.08, "end": 5224.2, "text": " Seriously, every time he calls, it brightens my day."}, {"id": 2174, "start": 5224.74, "end": 5225.34, "text": " He's funny."}, {"id": 2175, "start": 5225.42, "end": 5225.92, "text": " I like him."}, {"id": 2176, "start": 5226.0, "end": 5226.7, "text": " I like Kevin."}, {"id": 2177, "start": 5227.16, "end": 5227.5599999999995, "text": " All right."}, {"id": 2178, "start": 5228.259999999999, "end": 5230.08, "text": " So let's take a moment to mention our sponsors once again."}, {"id": 2179, "start": 5230.34, "end": 5230.96, "text": " Perfection Auto Works."}, {"id": 2180, "start": 5231.48, "end": 5232.639999999999, "text": " We appreciate them."}, {"id": 2181, "start": 5232.639999999999, "end": 5237.36, "text": " And the theme of today is you get to choose between Perfection Auto Works or death."}, {"id": 2182, "start": 5237.599999999999, "end": 5238.08, "text": " It's your choice."}, {"id": 2183, "start": 5239.3, "end": 5239.32, "text": " Yes."}, {"id": 2184, "start": 5239.32, "end": 5239.58, "text": " Canada."}, {"id": 2185, "start": 5240.0199999999995, "end": 5240.259999999999, "text": " Right?"}, {"id": 2186, "start": 5240.96, "end": 5242.08, "text": " Also, Patreon."}, {"id": 2187, "start": 5242.74, "end": 5244.759999999999, "text": " We need you to help sponsor this show."}, {"id": 2188, "start": 5245.32, "end": 5245.4, "text": " Right?"}, {"id": 2189, "start": 5245.4, "end": 5246.16, "text": " We have an extra hour."}, {"id": 2190, "start": 5246.259999999999, "end": 5246.78, "text": " That's expensive."}, {"id": 2191, "start": 5247.34, "end": 5247.84, "text": " Cost money."}, {"id": 2192, "start": 5248.32, "end": 5251.179999999999, "text": " And we want to make sure that we have the ability to help you guys."}, {"id": 2193, "start": 5251.54, "end": 5256.46, "text": " It also gives us the ability to add some higher production value because I have to pay people"}, {"id": 2194, "start": 5256.46, "end": 5262.139999999999, "text": " to do research and stuff and get us to do our YouTube stuff because we're really trying"}, {"id": 2195, "start": 5262.139999999999, "end": 5264.38, "text": " to expand that portion of what we're doing."}, {"id": 2196, "start": 5265.66, "end": 5268.5599999999995, "text": " So go to YouTube.com and subscribe to us."}, {"id": 2197, "start": 5268.7, "end": 5269.54, "text": " That would be great."}, {"id": 2198, "start": 5269.719999999999, "end": 5274.219999999999, "text": " Also, you can go to Patreon and donate as little as a dollar a month to help us out."}, {"id": 2199, "start": 5274.78, "end": 5277.639999999999, "text": " Or you can make Tara say a bunch of stuff."}, {"id": 2200, "start": 5278.08, "end": 5278.16, "text": " Right?"}, {"id": 2201, "start": 5278.44, "end": 5278.7, "text": " Right."}, {"id": 2202, "start": 5279.0, "end": 5284.08, "text": " So as long as it's family friendly, won't get us in trouble with the radio."}, {"id": 2203, "start": 5284.42, "end": 5284.54, "text": " Right."}, {"id": 2204, "start": 5284.66, "end": 5285.4, "text": " That type of stuff."}, {"id": 2205, "start": 5285.9, "end": 5287.74, "text": " Of course, there are some limitations there."}, {"id": 2206, "start": 5287.82, "end": 5291.7, "text": " But most importantly, if you really want to help us out, allow us to fix your computer"}, {"id": 2207, "start": 5291.7, "end": 5294.46, "text": " and or manage your network for you at your office."}, {"id": 2208, "start": 5294.92, "end": 5299.48, "text": " You can give us a call at 304-8300 or visit azcomputerguru.com."}, {"id": 2209, "start": 5301.32, "end": 5302.719999999999, "text": " It's what we do during the week."}, {"id": 2210, "start": 5303.98, "end": 5304.36, "text": " Because otherwise, we're not going to be able to do it."}, {"id": 2211, "start": 5304.36, "end": 5304.42, "text": " Otherwise, we're not going to be able to do it."}, {"id": 2212, "start": 5304.42, "end": 5304.48, "text": " Otherwise, we're not going to be able to do it."}, {"id": 2213, "start": 5304.48, "end": 5304.759999999999, "text": " Otherwise, we're not going to be able to do it."}, {"id": 2214, "start": 5304.759999999999, "end": 5304.78, "text": " Otherwise, we're not going to be able to do it."}, {"id": 2215, "start": 5304.78, "end": 5305.94, "text": " Otherwise, we don't have anything to do."}, {"id": 2216, "start": 5306.2, "end": 5306.88, "text": " Keeps the light on."}, {"id": 2217, "start": 5307.0, "end": 5307.16, "text": " Yeah."}, {"id": 2218, "start": 5307.24, "end": 5308.84, "text": " We do like keeping the lights on around here."}, {"id": 2219, "start": 5309.5599999999995, "end": 5311.96, "text": " So thank you very much for listening to the Computer Guru Show."}, {"id": 2220, "start": 5312.3, "end": 5313.12, "text": " We'll see you next week."}]} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2017-s9e30/diarization.json b/projects/radio-show/audio-processor/test-data/transcripts/2017-s9e30/diarization.json new file mode 100644 index 0000000..6458094 --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2017-s9e30/diarization.json @@ -0,0 +1,339 @@ +{ + "num_speakers": 2, + "speaker_map": { + "HOST": "HOST", + "CALLER": "CALLER" + }, + "turns": [ + { + "speaker": "HOST", + "start": 0.0, + "end": 20.0, + "confidence": 0.88 + }, + { + "speaker": "CALLER", + "start": 15.0, + "end": 25.0, + "confidence": 0.68 + }, + { + "speaker": "HOST", + "start": 20.0, + "end": 525.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 520.0, + "end": 540.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 535.0, + "end": 550.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 545.0, + "end": 555.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 550.0, + "end": 580.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 575.0, + "end": 585.0, + "confidence": 0.8 + }, + { + "speaker": "HOST", + "start": 580.0, + "end": 615.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 610.0, + "end": 620.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 615.0, + "end": 730.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 725.0, + "end": 770.0, + "confidence": 0.76 + }, + { + "speaker": "HOST", + "start": 765.0, + "end": 870.0, + "confidence": 0.98 + }, + { + "speaker": "CALLER", + "start": 865.0, + "end": 875.0, + "confidence": 0.83 + }, + { + "speaker": "HOST", + "start": 870.0, + "end": 1295.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 1290.0, + "end": 1355.0, + "confidence": 0.68 + }, + { + "speaker": "HOST", + "start": 1350.0, + "end": 1360.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 1355.0, + "end": 1400.0, + "confidence": 0.67 + }, + { + "speaker": "HOST", + "start": 1395.0, + "end": 1415.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 1410.0, + "end": 1425.0, + "confidence": 0.68 + }, + { + "speaker": "HOST", + "start": 1420.0, + "end": 1430.0, + "confidence": 0.94 + }, + { + "speaker": "CALLER", + "start": 1425.0, + "end": 1435.0, + "confidence": 0.58 + }, + { + "speaker": "HOST", + "start": 1430.0, + "end": 1445.0, + "confidence": 0.91 + }, + { + "speaker": "CALLER", + "start": 1440.0, + "end": 1460.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 1455.0, + "end": 2130.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 2125.0, + "end": 2175.0, + "confidence": 0.78 + }, + { + "speaker": "HOST", + "start": 2170.0, + "end": 2650.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 2645.0, + "end": 2655.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 2650.0, + "end": 2725.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 2720.0, + "end": 2730.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 2725.0, + "end": 2995.0, + "confidence": 0.91 + }, + { + "speaker": "CALLER", + "start": 2990.0, + "end": 3020.0, + "confidence": 0.78 + }, + { + "speaker": "HOST", + "start": 3015.0, + "end": 3375.0, + "confidence": 0.92 + }, + { + "speaker": "CALLER", + "start": 3370.0, + "end": 3415.0, + "confidence": 0.85 + }, + { + "speaker": "HOST", + "start": 3410.0, + "end": 4185.0, + "confidence": 0.96 + }, + { + "speaker": "CALLER", + "start": 4180.0, + "end": 4245.0, + "confidence": 0.8 + }, + { + "speaker": "HOST", + "start": 4240.0, + "end": 4265.0, + "confidence": 0.91 + }, + { + "speaker": "CALLER", + "start": 4260.0, + "end": 4280.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 4275.0, + "end": 4290.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 4285.0, + "end": 4295.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 4290.0, + "end": 4325.0, + "confidence": 0.86 + }, + { + "speaker": "CALLER", + "start": 4320.0, + "end": 4335.0, + "confidence": 0.79 + }, + { + "speaker": "HOST", + "start": 4330.0, + "end": 4370.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 4365.0, + "end": 4380.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 4375.0, + "end": 4405.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 4400.0, + "end": 4415.0, + "confidence": 0.82 + }, + { + "speaker": "HOST", + "start": 4410.0, + "end": 4420.0, + "confidence": 0.85 + }, + { + "speaker": "CALLER", + "start": 4415.0, + "end": 4430.0, + "confidence": 0.84 + }, + { + "speaker": "HOST", + "start": 4425.0, + "end": 4525.0, + "confidence": 0.97 + }, + { + "speaker": "CALLER", + "start": 4520.0, + "end": 4530.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 4525.0, + "end": 4555.0, + "confidence": 0.89 + }, + { + "speaker": "CALLER", + "start": 4550.0, + "end": 4595.0, + "confidence": 0.81 + }, + { + "speaker": "HOST", + "start": 4590.0, + "end": 5285.0, + "confidence": 0.95 + }, + { + "speaker": "CALLER", + "start": 5280.0, + "end": 5315.0, + "confidence": 0.59 + }, + { + "speaker": "HOST", + "start": 5310.0, + "end": 5340.0, + "confidence": 0.97 + } + ] +} \ No newline at end of file diff --git a/projects/radio-show/audio-processor/test-data/transcripts/2017-s9e30/transcript.json b/projects/radio-show/audio-processor/test-data/transcripts/2017-s9e30/transcript.json new file mode 100644 index 0000000..763ea8c --- /dev/null +++ b/projects/radio-show/audio-processor/test-data/transcripts/2017-s9e30/transcript.json @@ -0,0 +1 @@ +{"duration": 5342.9635, "language": "en", "segments": [{"id": 1, "start": 0.0, "end": 4.86, "text": " From my heart and from my hand, why don't people understand my intention?"}, {"id": 2, "start": 5.58, "end": 6.62, "text": " Computer running slow?"}, {"id": 3, "start": 6.7, "end": 7.04, "text": " I'm waiting."}, {"id": 4, "start": 7.4, "end": 8.0, "text": " Caught a virus?"}, {"id": 5, "start": 8.22, "end": 8.540000000000001, "text": " Yes!"}, {"id": 6, "start": 8.92, "end": 9.14, "text": " No!"}, {"id": 7, "start": 9.5, "end": 9.78, "text": " When?"}, {"id": 8, "start": 9.96, "end": 10.200000000000001, "text": " When?"}, {"id": 9, "start": 10.64, "end": 13.48, "text": " Does your computer seem to have a life of its own?"}, {"id": 10, "start": 14.040000000000001, "end": 14.56, "text": " Malfunction."}, {"id": 11, "start": 15.08, "end": 16.04, "text": " Need input."}, {"id": 12, "start": 16.32, "end": 18.0, "text": " The Computer Guru is here."}, {"id": 13, "start": 18.04, "end": 19.32, "text": " Thank God you're here!"}, {"id": 14, "start": 19.42, "end": 20.44, "text": " Call in now."}, {"id": 15, "start": 20.66, "end": 23.56, "text": " Now, it's Mike Swanson, your Computer Guru."}, {"id": 16, "start": 24.7, "end": 26.54, "text": " Hello and welcome to the Computer Guru Show."}, {"id": 17, "start": 26.54, "end": 30.5, "text": " My name's Mike, here to deal with your technology needs and treat you like a person in the process."}, {"id": 18, "start": 31.04, "end": 35.58, "text": " They say this is intelligent radio over on KVOI, but we'll prove them wrong for the next two hours."}, {"id": 19, "start": 36.019999999999996, "end": 36.82, "text": " Because that's what we do."}, {"id": 20, "start": 36.9, "end": 37.84, "text": " That's what we do."}, {"id": 21, "start": 38.0, "end": 38.8, "text": " Yeah, just give us a call."}, {"id": 22, "start": 38.94, "end": 40.84, "text": " 790-2040 if you'd like to be part of the show."}, {"id": 23, "start": 40.879999999999995, "end": 42.72, "text": " That's 520-790-2040."}, {"id": 24, "start": 43.9, "end": 47.64, "text": " This show will probably not be as exciting as last week's McCluskey show."}, {"id": 25, "start": 47.66, "end": 48.14, "text": " I heard."}, {"id": 26, "start": 48.4, "end": 48.68, "text": " Yeah."}, {"id": 27, "start": 49.46, "end": 51.3, "text": " A little off the hook, but it was good."}, {"id": 28, "start": 51.620000000000005, "end": 52.06, "text": " Yeah, yeah."}, {"id": 29, "start": 53.84, "end": 56.0, "text": " There's a rant today, which is good."}, {"id": 30, "start": 56.16, "end": 56.519999999999996, "text": " Which is good."}, {"id": 31, "start": 56.54, "end": 59.74, "text": " And it probably ended up being like the whole show, because I feel a little ranty as well."}, {"id": 32, "start": 60.0, "end": 61.22, "text": " Oh, my goodness."}, {"id": 33, "start": 61.68, "end": 63.8, "text": " So we'll have to start with some lighter subjects."}, {"id": 34, "start": 64.3, "end": 70.24, "text": " Just to, you know, just to start things off on a gentle, not so angry."}, {"id": 35, "start": 70.96, "end": 73.5, "text": " Yeah, I have some news that I'm actually excited to share."}, {"id": 36, "start": 73.8, "end": 74.12, "text": " Oh, yeah?"}, {"id": 37, "start": 74.42, "end": 77.06, "text": " Yeah, it's about SpaceX, which you know is like my favorite thing ever."}, {"id": 38, "start": 77.68, "end": 78.62, "text": " Yeah, yeah."}, {"id": 39, "start": 78.64, "end": 81.4, "text": " So the Falcon 9 was reused successfully."}, {"id": 40, "start": 81.92, "end": 82.42, "text": " And landed."}, {"id": 41, "start": 82.6, "end": 82.84, "text": " Yeah."}, {"id": 42, "start": 83.38, "end": 83.78, "text": " Again."}, {"id": 43, "start": 84.0, "end": 84.64, "text": " That's incredible."}, {"id": 44, "start": 84.64, "end": 86.52, "text": " It's the first time a rocket has ever been reused."}, {"id": 45, "start": 86.54, "end": 87.06, "text": " It's like that, right?"}, {"id": 46, "start": 87.58000000000001, "end": 90.7, "text": " Yeah, and the first time that same reused rocket has landed twice."}, {"id": 47, "start": 90.92, "end": 91.66000000000001, "text": " Yeah, it's awesome."}, {"id": 48, "start": 91.96000000000001, "end": 92.52000000000001, "text": " Very nice."}, {"id": 49, "start": 92.84, "end": 98.76, "text": " This is step one, you know, into making space travel more sustainable and achievable."}, {"id": 50, "start": 99.30000000000001, "end": 99.60000000000001, "text": " Right."}, {"id": 51, "start": 99.72, "end": 102.56, "text": " Are you going to sign up to be one of the..."}, {"id": 52, "start": 102.56, "end": 104.42, "text": " If they would let me, I totally would."}, {"id": 53, "start": 104.54, "end": 107.56, "text": " Because they say they're going to start taking tourists into space."}, {"id": 54, "start": 108.14000000000001, "end": 110.44000000000001, "text": " Oh, I thought you meant just going to Mars and colonizing."}, {"id": 55, "start": 110.9, "end": 113.14000000000001, "text": " Yeah, well, they're saying they're going to take tourists into space."}, {"id": 56, "start": 113.14000000000001, "end": 116.14000000000001, "text": " And in our lifetime."}, {"id": 57, "start": 116.14, "end": 118.2, "text": " We're going to see people on Mars."}, {"id": 58, "start": 118.44, "end": 119.2, "text": " If there's a way..."}, {"id": 59, "start": 119.2, "end": 120.64, "text": " I don't think I'll ever end up on Mars."}, {"id": 60, "start": 120.72, "end": 125.24, "text": " But if there's a way to just get into even a low Earth orbit for not every cent I've ever made,"}, {"id": 61, "start": 125.74, "end": 127.06, "text": " I would totally do it."}, {"id": 62, "start": 127.08, "end": 128.0, "text": " Or ever will make."}, {"id": 63, "start": 128.02, "end": 128.82, "text": " I mean, think about it."}, {"id": 64, "start": 128.88, "end": 131.54, "text": " If it was like 10 grand, that's worth it."}, {"id": 65, "start": 132.4, "end": 132.6, "text": " Yeah."}, {"id": 66, "start": 132.88, "end": 133.92000000000002, "text": " Yeah, you could finance that."}, {"id": 67, "start": 134.1, "end": 136.48, "text": " Or you could just save up for a year or two, you know."}, {"id": 68, "start": 136.82, "end": 143.62, "text": " Because instead of those crazy people in suits that drive really hard bargains at car dealerships,"}, {"id": 69, "start": 143.9, "end": 145.62, "text": " they'll be outside the, you know..."}, {"id": 70, "start": 146.14000000000001, "end": 147.52, "text": " The individual..."}, {"id": 71, "start": 147.52, "end": 149.32000000000002, "text": " Let's launch you into Mars."}, {"id": 72, "start": 149.46, "end": 150.00000000000003, "text": " I mean, for..."}, {"id": 73, "start": 150.00000000000003, "end": 150.36, "text": " Or into orbit."}, {"id": 74, "start": 150.68, "end": 154.62, "text": " For, you know, what amounts to probably an hour of fun."}, {"id": 75, "start": 156.02, "end": 157.74, "text": " I would imagine it's a little more than that."}, {"id": 76, "start": 157.78000000000003, "end": 160.34, "text": " Some of which you may not actually remember because of the G-forces involved."}, {"id": 77, "start": 162.24, "end": 162.64000000000001, "text": " Yeah."}, {"id": 78, "start": 162.88000000000002, "end": 165.08, "text": " Did you hear that Stephen Hawking is going to be going into space?"}, {"id": 79, "start": 165.56, "end": 166.16000000000003, "text": " Is he really?"}, {"id": 80, "start": 166.4, "end": 166.68, "text": " Yeah."}, {"id": 81, "start": 166.88000000000002, "end": 168.0, "text": " The guy from..."}, {"id": 82, "start": 168.0, "end": 172.46, "text": " Richard Branson from Virgin says that he wants to fly him up in one of his space planes."}, {"id": 83, "start": 172.98000000000002, "end": 174.16000000000003, "text": " That's a dangerous proposal."}, {"id": 84, "start": 174.62, "end": 175.82000000000002, "text": " Well, it'll be extremely low."}, {"id": 85, "start": 176.14000000000001, "end": 178.82000000000002, "text": " But, you know, basically, like, go up and there's the curvature of the Earth."}, {"id": 86, "start": 178.9, "end": 180.06, "text": " You can say you're in space."}, {"id": 87, "start": 180.16000000000003, "end": 180.84, "text": " Now let's go back down."}, {"id": 88, "start": 181.26000000000002, "end": 181.48000000000002, "text": " Right."}, {"id": 89, "start": 181.62, "end": 183.36, "text": " Let's not kill Stephen Hawking."}, {"id": 90, "start": 183.36, "end": 184.68, "text": " Well, he said..."}, {"id": 91, "start": 184.68, "end": 186.8, "text": " Stephen Hawking said that he agreed immediately."}, {"id": 92, "start": 187.26000000000002, "end": 191.3, "text": " I'm sure if he could choose his way to go out, it would be going into space."}, {"id": 93, "start": 192.70000000000002, "end": 194.8, "text": " I would just prefer that we not kill Stephen Hawking."}, {"id": 94, "start": 195.46, "end": 195.94000000000003, "text": " I don't know."}, {"id": 95, "start": 196.0, "end": 198.14000000000001, "text": " What if he wants to go out, you know, on his own terms?"}, {"id": 96, "start": 198.28000000000003, "end": 198.64000000000001, "text": " I guess."}, {"id": 97, "start": 198.82000000000002, "end": 199.32000000000002, "text": " I guess."}, {"id": 98, "start": 199.44000000000003, "end": 200.82000000000002, "text": " But, you know, it's..."}, {"id": 99, "start": 200.82000000000002, "end": 203.86, "text": " Maybe he's just trying to get back to his spaceship, which is orbiting the Earth right now."}, {"id": 100, "start": 203.86, "end": 204.34, "text": " Maybe."}, {"id": 101, "start": 206.34, "end": 206.98000000000002, "text": " You don't know."}, {"id": 102, "start": 207.24, "end": 210.56, "text": " There's people who say that Stephen Hawking himself actually died several years ago,"}, {"id": 103, "start": 210.66000000000003, "end": 215.18, "text": " and the machine has just been, you know, like, puppeteering him, like, in Weekend at Bernie's"}, {"id": 104, "start": 215.18, "end": 217.8, "text": " for the last, you know, decade or so."}, {"id": 105, "start": 217.98000000000002, "end": 218.9, "text": " It's really dark."}, {"id": 106, "start": 220.42000000000002, "end": 220.98000000000002, "text": " That's..."}, {"id": 107, "start": 220.98000000000002, "end": 222.18, "text": " I didn't expect that to go there."}, {"id": 108, "start": 222.58, "end": 223.06, "text": " Okay."}, {"id": 109, "start": 223.28000000000003, "end": 223.78000000000003, "text": " It's what I do."}, {"id": 110, "start": 224.10000000000002, "end": 225.36, "text": " That's what I bring to the show."}, {"id": 111, "start": 225.76000000000002, "end": 226.84, "text": " Where did that come from?"}, {"id": 112, "start": 228.38000000000002, "end": 228.86, "text": " Wow."}, {"id": 113, "start": 229.06, "end": 229.42000000000002, "text": " Okay."}, {"id": 114, "start": 229.88000000000002, "end": 231.28000000000003, "text": " Well, I'm in kind of a dark mood, Mike."}, {"id": 115, "start": 231.72000000000003, "end": 232.16000000000003, "text": " Yeah."}, {"id": 116, "start": 232.16000000000003, "end": 233.70000000000002, "text": " I can understand why."}, {"id": 117, "start": 233.70000000000002, "end": 233.78000000000003, "text": " And I'm..."}, {"id": 118, "start": 233.86, "end": 236.08, "text": " And I'm really starting to think about buying a ticket to Mars."}, {"id": 119, "start": 238.86, "end": 239.5, "text": " I don't know."}, {"id": 120, "start": 239.54000000000002, "end": 240.78, "text": " Do you think the CIA will be on Mars?"}, {"id": 121, "start": 241.44000000000003, "end": 243.36, "text": " We're not going there until after the first break."}, {"id": 122, "start": 243.54000000000002, "end": 244.20000000000002, "text": " We're just..."}, {"id": 123, "start": 244.20000000000002, "end": 244.98000000000002, "text": " We're just not."}, {"id": 124, "start": 245.12, "end": 245.58, "text": " We're not."}, {"id": 125, "start": 245.74, "end": 251.16000000000003, "text": " We're avoiding any acronyms until after the first break, because..."}, {"id": 126, "start": 251.16000000000003, "end": 252.18, "text": " No alphabet soup yet?"}, {"id": 127, "start": 252.48000000000002, "end": 252.82000000000002, "text": " No."}, {"id": 128, "start": 253.02, "end": 253.28000000000003, "text": " No."}, {"id": 129, "start": 253.42000000000002, "end": 257.98, "text": " Because it'll just turn into a two-hour Mike's Angry."}, {"id": 130, "start": 258.78000000000003, "end": 260.56, "text": " And we can't have that."}, {"id": 131, "start": 260.88, "end": 261.98, "text": " Just can't have that."}, {"id": 132, "start": 262.52000000000004, "end": 263.18, "text": " Did you see..."}, {"id": 133, "start": 263.18, "end": 263.7, "text": " Did you see..."}, {"id": 134, "start": 263.7, "end": 266.03999999999996, "text": " Did you see Google's little Maps April Fool's joke?"}, {"id": 135, "start": 267.32, "end": 267.64, "text": " Yeah."}, {"id": 136, "start": 267.78, "end": 268.9, "text": " And I guess everybody..."}, {"id": 137, "start": 268.9, "end": 275.59999999999997, "text": " We should probably point that out, is that it is April 1st, and you're going to see all"}, {"id": 138, "start": 275.59999999999997, "end": 276.9, "text": " kinds of crazy things online."}, {"id": 139, "start": 277.06, "end": 278.98, "text": " They're starting a day early, which is..."}, {"id": 140, "start": 278.98, "end": 280.32, "text": " I hate when they do stuff like that."}, {"id": 141, "start": 280.38, "end": 281.62, "text": " It really annoys me, actually."}, {"id": 142, "start": 282.4, "end": 282.71999999999997, "text": " Okay."}, {"id": 143, "start": 283.2, "end": 286.74, "text": " Like, any time that, like, you know, Black Friday is, like, getting progressively more"}, {"id": 144, "start": 286.74, "end": 287.91999999999996, "text": " just Thanksgiving Day."}, {"id": 145, "start": 288.59999999999997, "end": 288.91999999999996, "text": " Right."}, {"id": 146, "start": 288.96, "end": 289.21999999999997, "text": " You know?"}, {"id": 147, "start": 289.21999999999997, "end": 290.53999999999996, "text": " Well, there's all these..."}, {"id": 148, "start": 290.53999999999996, "end": 293.53999999999996, "text": " All these jokes that, because everybody expects them now on April 1st,"}, {"id": 149, "start": 293.54, "end": 295.08000000000004, "text": " they're doing them, like, March 31st."}, {"id": 150, "start": 295.86, "end": 296.1, "text": " Yeah."}, {"id": 151, "start": 296.16, "end": 298.36, "text": " Pretty soon, everything's going to happen on January 1st."}, {"id": 152, "start": 298.5, "end": 298.86, "text": " Everything."}, {"id": 153, "start": 299.22, "end": 302.74, "text": " And that will be the day that I just stay home, and it's going to become the Purge Day."}, {"id": 154, "start": 302.8, "end": 303.52000000000004, "text": " That's what's going to happen."}, {"id": 155, "start": 303.92, "end": 305.42, "text": " It's January 1st every year."}, {"id": 156, "start": 306.74, "end": 307.24, "text": " All right."}, {"id": 157, "start": 307.28000000000003, "end": 309.14000000000004, "text": " Let's see what Mike has to say."}, {"id": 158, "start": 309.18, "end": 309.92, "text": " Hey, Mike, how are you?"}, {"id": 159, "start": 310.48, "end": 311.52000000000004, "text": " Hey, good morning, guys."}, {"id": 160, "start": 311.86, "end": 312.44, "text": " Good morning."}, {"id": 161, "start": 312.76, "end": 313.90000000000003, "text": " Love the show, as always."}, {"id": 162, "start": 314.06, "end": 316.90000000000003, "text": " I've got a problem with this SpaceX thing."}, {"id": 163, "start": 317.06, "end": 317.34000000000003, "text": " Uh-oh."}, {"id": 164, "start": 317.82000000000005, "end": 320.66, "text": " And I've got to tell you, I'm really into the SpaceX thing."}, {"id": 165, "start": 320.88, "end": 321.14000000000004, "text": " Okay."}, {"id": 166, "start": 321.28000000000003, "end": 322.72, "text": " I've done a lot of study on this."}, {"id": 167, "start": 323.54, "end": 326.24, "text": " Did you guys watch the live feed when it was happening?"}, {"id": 168, "start": 326.38, "end": 329.06, "text": " I wasn't able to catch the live feed, but I've seen some of the videos since."}, {"id": 169, "start": 329.56, "end": 329.96000000000004, "text": " Okay."}, {"id": 170, "start": 330.20000000000005, "end": 331.96000000000004, "text": " I watched it four times."}, {"id": 171, "start": 332.64000000000004, "end": 335.42, "text": " The very first time, everything was great."}, {"id": 172, "start": 335.90000000000003, "end": 343.6, "text": " There was a satellite snafu, apparently, some kind of photo issue that I have with this whole thing."}, {"id": 173, "start": 344.20000000000005, "end": 352.32000000000005, "text": " Back in 2015, if you go back to YouTube and look at some of the videos where the second section comes down and lands on a barge."}, {"id": 174, "start": 352.40000000000003, "end": 352.6, "text": " Right."}, {"id": 175, "start": 353.54, "end": 355.34000000000003, "text": " Well, they didn't show it this time."}, {"id": 176, "start": 356.1, "end": 358.54, "text": " Yeah, I heard that there was an issue."}, {"id": 177, "start": 358.86, "end": 359.02000000000004, "text": " Yeah."}, {"id": 178, "start": 359.5, "end": 360.28000000000003, "text": " Yeah, big issue."}, {"id": 179, "start": 360.6, "end": 361.24, "text": " Here's why."}, {"id": 180, "start": 361.84000000000003, "end": 363.84000000000003, "text": " I don't believe that it landed on that barge."}, {"id": 181, "start": 364.02000000000004, "end": 364.44, "text": " Oh, really?"}, {"id": 182, "start": 365.16, "end": 367.64000000000004, "text": " Because they cut the photo."}, {"id": 183, "start": 368.24, "end": 368.90000000000003, "text": " Well, excuse me."}, {"id": 184, "start": 368.94, "end": 369.78000000000003, "text": " They cut the video."}, {"id": 185, "start": 370.40000000000003, "end": 370.58000000000004, "text": " Okay."}, {"id": 186, "start": 370.58000000000004, "end": 372.92, "text": " They said there was a camera issue."}, {"id": 187, "start": 373.88, "end": 377.1, "text": " And all of a sudden, boom, there's this thing sitting on this barge."}, {"id": 188, "start": 377.72, "end": 380.04, "text": " So you think there was some magic, some trickery?"}, {"id": 189, "start": 381.42, "end": 383.38, "text": " Listen, I'm not one of those kind of..."}, {"id": 190, "start": 383.38, "end": 383.5, "text": " Okay."}, {"id": 191, "start": 383.5, "end": 383.52000000000004, "text": " Okay."}, {"id": 192, "start": 384.34000000000003, "end": 386.24, "text": " You know, conspiracy guys."}, {"id": 193, "start": 386.90000000000003, "end": 388.74, "text": " But something doesn't smell right with this thing."}, {"id": 194, "start": 388.90000000000003, "end": 389.56, "text": " I mean, it could be."}, {"id": 195, "start": 389.66, "end": 390.86, "text": " You know, companies have done worse."}, {"id": 196, "start": 391.16, "end": 394.06, "text": " And I didn't see the live feed, so I can't really comment on it too much."}, {"id": 197, "start": 394.64000000000004, "end": 396.5, "text": " Well, I was just looking for your guys' comment."}, {"id": 198, "start": 396.64000000000004, "end": 399.32000000000005, "text": " I would say that while it kind of wouldn't..."}, {"id": 199, "start": 399.32000000000005, "end": 400.52000000000004, "text": " You know, ultimately, I'm just a cynic."}, {"id": 200, "start": 400.54, "end": 403.02000000000004, "text": " So it wouldn't surprise me too much if a company did something like that."}, {"id": 201, "start": 403.64000000000004, "end": 406.40000000000003, "text": " I would like to believe that that's not the way it happened."}, {"id": 202, "start": 406.64000000000004, "end": 406.84000000000003, "text": " Me too."}, {"id": 203, "start": 406.96000000000004, "end": 408.94, "text": " I'd be very disappointed in Mr. Musk."}, {"id": 204, "start": 408.94, "end": 413.14000000000004, "text": " You know what's crazy about this whole thing is that if you look at the 2015 feed,"}, {"id": 205, "start": 413.14, "end": 417.62, "text": " on the YouTube, where this second section comes down,"}, {"id": 206, "start": 417.8, "end": 419.9, "text": " it's like a pencil dropping out of the sky."}, {"id": 207, "start": 420.0, "end": 420.3, "text": " Right, right."}, {"id": 208, "start": 420.7, "end": 424.64, "text": " And it lands perfectly and stabilizes itself on this barge."}, {"id": 209, "start": 424.84, "end": 427.52, "text": " There's almost no movement of the ocean."}, {"id": 210, "start": 427.64, "end": 430.0, "text": " You can see the wave capping, all the stuff."}, {"id": 211, "start": 430.08, "end": 430.94, "text": " This thing doesn't even move."}, {"id": 212, "start": 432.56, "end": 433.9, "text": " I got a problem with this."}, {"id": 213, "start": 434.96, "end": 436.03999999999996, "text": " I'll have to look into it a little more."}, {"id": 214, "start": 436.03999999999996, "end": 439.14, "text": " Well, I guess the good thing is that if it turns out that Elon's just, you know,"}, {"id": 215, "start": 439.2, "end": 441.94, "text": " pulling a really clever trick, we still have Blue Origin,"}, {"id": 216, "start": 441.94, "end": 443.09999999999997, "text": " which is the Jeff Bezos."}, {"id": 217, "start": 443.1, "end": 444.14000000000004, "text": " The Jeff Bezos version of SpaceX."}, {"id": 218, "start": 444.6, "end": 444.82000000000005, "text": " Yeah, yeah."}, {"id": 219, "start": 445.16, "end": 447.24, "text": " Well, I hope it's real."}, {"id": 220, "start": 447.5, "end": 451.34000000000003, "text": " I found it very strange that there was no other video feed."}, {"id": 221, "start": 451.76000000000005, "end": 452.18, "text": " Zero."}, {"id": 222, "start": 452.40000000000003, "end": 452.92, "text": " I've checked."}, {"id": 223, "start": 453.0, "end": 456.06, "text": " I mean, I'll tell you that in light of recent leaks and all that stuff"}, {"id": 224, "start": 456.06, "end": 457.36, "text": " that we're going to talk about next segment,"}, {"id": 225, "start": 457.76000000000005, "end": 462.78000000000003, "text": " I am very unlikely to question any type of conspiracy I might hear"}, {"id": 226, "start": 462.78000000000003, "end": 464.26000000000005, "text": " in the next coming days."}, {"id": 227, "start": 464.44, "end": 465.64000000000004, "text": " I'm open to everything now."}, {"id": 228, "start": 466.22, "end": 468.32000000000005, "text": " Yeah, well, and I even hate to go there,"}, {"id": 229, "start": 468.40000000000003, "end": 471.12, "text": " but what I was concerned about is that with all the cameras,"}, {"id": 230, "start": 471.12, "end": 472.42, "text": " all of the technology,"}, {"id": 231, "start": 472.42, "end": 474.04, "text": " all the video stuff that's out there,"}, {"id": 232, "start": 474.64000000000004, "end": 480.32, "text": " no one has any video of this thing landing on that barge."}, {"id": 233, "start": 480.48, "end": 480.8, "text": " Nobody."}, {"id": 234, "start": 480.92, "end": 482.74, "text": " I mean, I would also say that, you know,"}, {"id": 235, "start": 482.78000000000003, "end": 485.90000000000003, "text": " it is a barge in the middle of the ocean with a rocket landing on it,"}, {"id": 236, "start": 485.92, "end": 487.44, "text": " so if something did happen to the video feed,"}, {"id": 237, "start": 487.48, "end": 488.70000000000005, "text": " it wouldn't surprise me greatly,"}, {"id": 238, "start": 488.92, "end": 490.54, "text": " but it could go either way."}, {"id": 239, "start": 491.3, "end": 491.62, "text": " Okay."}, {"id": 240, "start": 491.88, "end": 493.16, "text": " I'll let you know when I find out, Mike."}, {"id": 241, "start": 493.18, "end": 493.74, "text": " We'll look into it."}, {"id": 242, "start": 493.74, "end": 495.44, "text": " Yeah, I'll go watch the video again."}, {"id": 243, "start": 495.92, "end": 496.44, "text": " Okay, cool."}, {"id": 244, "start": 496.56, "end": 499.98, "text": " And by the way, what was the phone number to your computer shop?"}, {"id": 245, "start": 500.46000000000004, "end": 501.98, "text": " You can call us at 520-722-7222."}, {"id": 246, "start": 502.42, "end": 503.88, "text": " It's 304-8300."}, {"id": 247, "start": 504.48, "end": 506.04, "text": " Okay, because I've got a problem with the printer,"}, {"id": 248, "start": 506.14000000000004, "end": 508.74, "text": " and I wanted to bring it by, so I'll catch you next week."}, {"id": 249, "start": 509.0, "end": 509.38, "text": " All right."}, {"id": 250, "start": 509.46000000000004, "end": 510.12, "text": " Sounds good, Mike."}, {"id": 251, "start": 510.18, "end": 510.5, "text": " Thanks for the call."}, {"id": 252, "start": 510.5, "end": 510.78000000000003, "text": " Okay."}, {"id": 253, "start": 510.90000000000003, "end": 511.74, "text": " You guys have a good one."}, {"id": 254, "start": 511.82, "end": 512.08, "text": " You too."}, {"id": 255, "start": 512.46, "end": 512.9, "text": " Thank you."}, {"id": 256, "start": 513.02, "end": 513.14, "text": " Bye."}, {"id": 257, "start": 513.1800000000001, "end": 513.38, "text": " Thanks."}, {"id": 258, "start": 514.22, "end": 515.3000000000001, "text": " Yeah, I hope that's not true."}, {"id": 259, "start": 515.58, "end": 516.1800000000001, "text": " You know, it could be."}, {"id": 260, "start": 516.58, "end": 517.9200000000001, "text": " Companies have done stuff like that before."}, {"id": 261, "start": 518.4, "end": 518.96, "text": " Yes, they have."}, {"id": 262, "start": 518.98, "end": 520.48, "text": " Let's go ahead and fit this one in here."}, {"id": 263, "start": 520.52, "end": 521.16, "text": " Hey, Phillip, how are you?"}, {"id": 264, "start": 521.74, "end": 522.24, "text": " Good morning."}, {"id": 265, "start": 522.5, "end": 524.4200000000001, "text": " I bought a Galaxy tablet a while back,"}, {"id": 266, "start": 524.48, "end": 526.62, "text": " and now it's frozen on the screen."}, {"id": 267, "start": 526.76, "end": 528.0, "text": " It won't shut off."}, {"id": 268, "start": 528.0, "end": 531.4200000000001, "text": " It won't move, and I don't know what to do with it."}, {"id": 269, "start": 532.42, "end": 533.4399999999999, "text": " It's completely frozen."}, {"id": 270, "start": 533.5799999999999, "end": 534.9799999999999, "text": " It's turned on, and I can't."}, {"id": 271, "start": 536.04, "end": 537.9399999999999, "text": " So there's two options here."}, {"id": 272, "start": 538.0799999999999, "end": 539.56, "text": " You can hold down the power button longer,"}, {"id": 273, "start": 540.36, "end": 541.24, "text": " which will shut off."}, {"id": 274, "start": 541.26, "end": 541.5, "text": " I tried that."}, {"id": 275, "start": 541.92, "end": 542.5, "text": " It didn't."}, {"id": 276, "start": 542.66, "end": 543.8, "text": " So when you held the power button down,"}, {"id": 277, "start": 543.8399999999999, "end": 545.02, "text": " it didn't force reboot or anything?"}, {"id": 278, "start": 545.5999999999999, "end": 546.9399999999999, "text": " No, that's what I was hoping for."}, {"id": 279, "start": 547.0, "end": 548.8199999999999, "text": " I thought maybe if I can disconnect the battery somehow."}, {"id": 280, "start": 549.12, "end": 550.16, "text": " How long did you hold it down?"}, {"id": 281, "start": 550.24, "end": 552.9799999999999, "text": " I'm on my way for about three seconds."}, {"id": 282, "start": 553.18, "end": 554.8399999999999, "text": " Oh, yeah, you've got to go like 30 seconds."}, {"id": 283, "start": 555.54, "end": 556.12, "text": " Oh, really?"}, {"id": 284, "start": 556.26, "end": 556.4399999999999, "text": " Yeah."}, {"id": 285, "start": 557.0799999999999, "end": 558.52, "text": " All right, I'll give that a try then."}, {"id": 286, "start": 558.78, "end": 559.56, "text": " Yeah, try that out."}, {"id": 287, "start": 559.5799999999999, "end": 561.68, "text": " Yeah, the other option is just let it die."}, {"id": 288, "start": 561.68, "end": 562.4, "text": " Yeah, because you can't."}, {"id": 289, "start": 562.4, "end": 563.18, "text": " You can't remove the battery."}, {"id": 290, "start": 563.5, "end": 565.8, "text": " You have to disassemble on those Galaxy tabs."}, {"id": 291, "start": 565.9, "end": 568.38, "text": " You have to take the digitizer and the LCD out to get to the battery."}, {"id": 292, "start": 568.38, "end": 568.6999999999999, "text": " You're not doing that."}, {"id": 293, "start": 568.6999999999999, "end": 569.0, "text": " Oh, really?"}, {"id": 294, "start": 569.22, "end": 571.4, "text": " Yeah, so you're just either letting it die,"}, {"id": 295, "start": 571.48, "end": 574.28, "text": " or you're holding the button down for around 20 seconds or so."}, {"id": 296, "start": 575.26, "end": 578.26, "text": " And when it dies, what should I do then?"}, {"id": 297, "start": 578.3199999999999, "end": 579.4599999999999, "text": " Just try to boot it up again?"}, {"id": 298, "start": 579.92, "end": 580.28, "text": " Yeah."}, {"id": 299, "start": 580.3199999999999, "end": 580.72, "text": " See what happens?"}, {"id": 300, "start": 580.8199999999999, "end": 582.6999999999999, "text": " I would say just hold the button down."}, {"id": 301, "start": 582.84, "end": 583.9399999999999, "text": " I'm willing to bet that'll work."}, {"id": 302, "start": 584.68, "end": 585.68, "text": " All right, thank you."}, {"id": 303, "start": 585.78, "end": 586.1, "text": " No problem."}, {"id": 304, "start": 586.1999999999999, "end": 588.9, "text": " You hold it down until it turns off."}, {"id": 305, "start": 588.9399999999999, "end": 589.62, "text": " Do you know what's kind of funny?"}, {"id": 306, "start": 589.62, "end": 591.28, "text": " Then he calls about one of those Galaxy tabs,"}, {"id": 307, "start": 591.28, "end": 596.16, "text": " because I'm going to be doing a screen replacement for a family member on one of those tabs."}, {"id": 308, "start": 597.0, "end": 599.8, "text": " And so I forgot to use the heat gun to take the screen off."}, {"id": 309, "start": 599.86, "end": 600.38, "text": " Oh, broke it."}, {"id": 310, "start": 600.5799999999999, "end": 600.8, "text": " Yes."}, {"id": 311, "start": 601.28, "end": 603.14, "text": " Very, very violently shattered the screen."}, {"id": 312, "start": 604.3399999999999, "end": 606.02, "text": " And then Howard came into my office and was like,"}, {"id": 313, "start": 606.06, "end": 607.1999999999999, "text": " you forgot to use the heat gun, didn't you?"}, {"id": 314, "start": 607.1999999999999, "end": 608.26, "text": " And I was like, yes, I did."}, {"id": 315, "start": 608.9399999999999, "end": 610.22, "text": " So now you're buying him a new screen."}, {"id": 316, "start": 610.3, "end": 614.28, "text": " Well, it was the digitizer, or the LCD comes with a new digitizer anyway, so I was all right."}, {"id": 317, "start": 614.5799999999999, "end": 615.54, "text": " It's much harder to clean that up."}, {"id": 318, "start": 615.54, "end": 618.66, "text": " But it was at that moment as a piece of glass was flying at me that I was like,"}, {"id": 319, "start": 618.68, "end": 619.6, "text": " I should wear safety glasses."}, {"id": 320, "start": 621.28, "end": 623.8399999999999, "text": " Oh, man."}, {"id": 321, "start": 623.98, "end": 626.3399999999999, "text": " Does that count as workman's comp if it's a personal project?"}, {"id": 322, "start": 626.54, "end": 626.8399999999999, "text": " Nope."}, {"id": 323, "start": 627.78, "end": 629.28, "text": " So just so you know,"}, {"id": 324, "start": 629.88, "end": 634.5799999999999, "text": " the first hour of the Computer Guru Show is brought to you by Perfection Auto Works."}, {"id": 325, "start": 634.5799999999999, "end": 636.4599999999999, "text": " And you should visit their new website."}, {"id": 326, "start": 636.5799999999999, "end": 637.8399999999999, "text": " That's perfectionautoworks.com."}, {"id": 327, "start": 637.9399999999999, "end": 638.9399999999999, "text": " Mike just called a minute ago."}, {"id": 328, "start": 639.3199999999999, "end": 640.18, "text": " He's a cool dude."}, {"id": 329, "start": 640.36, "end": 641.98, "text": " He's a pretty, pretty cool dude."}, {"id": 330, "start": 642.5, "end": 646.76, "text": " And the next segments of the Computer Guru Show are going to be brought to you by Reynolds Wrap,"}, {"id": 331, "start": 647.1, "end": 650.26, "text": " because of all of the tinfoil hats we're going to have to put on."}, {"id": 332, "start": 651.04, "end": 651.24, "text": " But."}, {"id": 333, "start": 651.24, "end": 651.26, "text": " . ."}, {"id": 334, "start": 651.28, "end": 656.76, "text": " But in the meantime, Perfection Auto Works, they can do a 26-point inspection on your car."}, {"id": 335, "start": 656.9, "end": 657.8199999999999, "text": " It's totally free."}, {"id": 336, "start": 657.9599999999999, "end": 660.12, "text": " I need to have them go do an inspection on my new car, actually."}, {"id": 337, "start": 660.48, "end": 660.68, "text": " Yeah."}, {"id": 338, "start": 660.8, "end": 661.76, "text": " So make sure it's up to scruff."}, {"id": 339, "start": 662.18, "end": 664.0799999999999, "text": " Rob just got himself a vehicle, finally."}, {"id": 340, "start": 664.42, "end": 664.98, "text": " Oh, I had one."}, {"id": 341, "start": 665.0799999999999, "end": 665.64, "text": " It just wasn't as good."}, {"id": 342, "start": 665.64, "end": 666.3399999999999, "text": " One that works."}, {"id": 343, "start": 666.48, "end": 666.68, "text": " Yeah."}, {"id": 344, "start": 667.8199999999999, "end": 671.14, "text": " One that is right for you."}, {"id": 345, "start": 671.22, "end": 673.9399999999999, "text": " And I've got to make sure that it's perfect."}, {"id": 346, "start": 674.1, "end": 675.04, "text": " So I've got to take it to perfection."}, {"id": 347, "start": 675.26, "end": 675.4, "text": " Yep."}, {"id": 348, "start": 675.52, "end": 676.16, "text": " Perfection Auto Works."}, {"id": 349, "start": 676.1999999999999, "end": 679.48, "text": " So give yourself the gift of perfection by going down there and seeing them."}, {"id": 350, "start": 679.74, "end": 681.24, "text": " They are long-time."}, {"id": 351, "start": 681.24, "end": 684.32, "text": " They are long-time supporters of the show, and they show them some love"}, {"id": 352, "start": 684.32, "end": 688.22, "text": " by giving them some of your hard-earned money, because that's the way business works."}, {"id": 353, "start": 688.84, "end": 690.22, "text": " I mean, they support the show."}, {"id": 354, "start": 690.38, "end": 692.32, "text": " They give us money to keep the show on the air."}, {"id": 355, "start": 692.42, "end": 693.42, "text": " You should give them money."}, {"id": 356, "start": 693.88, "end": 694.96, "text": " So that they can keep supporting us."}, {"id": 357, "start": 694.98, "end": 698.94, "text": " Yeah, so they can keep doing that, because we all want to stay in business."}, {"id": 358, "start": 699.3, "end": 699.76, "text": " Right, Mike?"}, {"id": 359, "start": 700.0600000000001, "end": 700.4, "text": " Right."}, {"id": 360, "start": 701.12, "end": 705.08, "text": " So, yeah, give them a call and visit the website, perfectionautoworks.com."}, {"id": 361, "start": 705.54, "end": 706.78, "text": " And we'll be right back after this."}, {"id": 362, "start": 708.48, "end": 709.82, "text": " I got a king-size bed."}, {"id": 363, "start": 709.82, "end": 711.08, "text": " I don't know any kings."}, {"id": 364, "start": 711.44, "end": 713.48, "text": " But if one came over, I guess he'd be comfortable."}, {"id": 365, "start": 715.28, "end": 716.42, "text": " Oh, you're a king, you say."}, {"id": 366, "start": 716.5, "end": 718.24, "text": " Well, you won't believe what I have in store for you."}, {"id": 367, "start": 719.32, "end": 721.1800000000001, "text": " It's through your exact specifications."}, {"id": 368, "start": 723.0600000000001, "end": 726.86, "text": " When I was a boy, I laid in my twin-size bed and wondered where my brother was."}, {"id": 369, "start": 734.12, "end": 738.16, "text": " Your computer guru, Mike Swanson, is here to help you tame that beast of a machine."}, {"id": 370, "start": 738.38, "end": 741.22, "text": " Join the chat right now at gurushow.com."}, {"id": 371, "start": 741.4, "end": 741.96, "text": " Or call in."}, {"id": 372, "start": 742.2, "end": 745.6, "text": " This is the Computer Guru Show on KVOY, The Voice."}, {"id": 373, "start": 750.44, "end": 754.66, "text": " Your technology guru, Mike Swanson, is answering all your questions one by one."}, {"id": 374, "start": 754.72, "end": 755.54, "text": " Yeah, science!"}, {"id": 375, "start": 755.66, "end": 756.84, "text": " So chime in with yours."}, {"id": 376, "start": 756.84, "end": 759.2, "text": " The website is gurushow.com."}, {"id": 377, "start": 759.58, "end": 761.6, "text": " Tune in, click in, and kick back."}, {"id": 378, "start": 762.0, "end": 763.7, "text": " This is the Computer Guru Show."}, {"id": 379, "start": 766.0, "end": 767.66, "text": " Welcome back to the Computer Guru Show."}, {"id": 380, "start": 767.72, "end": 771.22, "text": " My name is Mike, here to deal with your technology needs and treat you like a person in the process."}, {"id": 381, "start": 771.24, "end": 774.02, "text": " Give us a call, 520-790, if you'd like to be part of the show."}, {"id": 382, "start": 774.12, "end": 776.96, "text": " Or you can join us in the chat, gurushow.com slash chat."}, {"id": 383, "start": 777.52, "end": 779.3, "text": " Or you can get your questions answered."}, {"id": 384, "start": 779.96, "end": 786.32, "text": " And especially if they're, you know, they don't make it into the show, you'll at least get an answer there."}, {"id": 385, "start": 786.62, "end": 788.74, "text": " Yeah, and we also really do like to hear your feedback."}, {"id": 386, "start": 788.74, "end": 793.3, "text": " So you can come in there and talk to us and give us feedback and criticism as we're, you know, doing it."}, {"id": 387, "start": 793.42, "end": 794.44, "text": " Yeah, please criticize me."}, {"id": 388, "start": 794.58, "end": 796.82, "text": " And let's talk to Tom."}, {"id": 389, "start": 797.54, "end": 798.36, "text": " Hey, Tom, how you doing?"}, {"id": 390, "start": 799.5600000000001, "end": 800.36, "text": " Good morning."}, {"id": 391, "start": 800.48, "end": 801.12, "text": " How are you today?"}, {"id": 392, "start": 801.24, "end": 802.34, "text": " I'm doing okay."}, {"id": 393, "start": 802.58, "end": 803.38, "text": " What can I do for you?"}, {"id": 394, "start": 804.0, "end": 810.5, "text": " Well, I've got a perplexing problem that I've just gone through two days with."}, {"id": 395, "start": 812.32, "end": 824.48, "text": " Virtually my Asus 502L or Q502L, it's not giving me the Wi-Fi speeds that's coming out of my modem."}, {"id": 396, "start": 824.82, "end": 827.44, "text": " I've connected directly to the modem."}, {"id": 397, "start": 827.62, "end": 828.6, "text": " I've got Comcast."}, {"id": 398, "start": 828.6, "end": 831.46, "text": " I'm getting 105 megs plus."}, {"id": 399, "start": 832.22, "end": 832.26, "text": " Right."}, {"id": 400, "start": 833.34, "end": 844.66, "text": " I've checked the speed coming out of the Wi-Fi with my wife's MacBook with my Samsung S6 Edge, and I'm getting the same speeds."}, {"id": 401, "start": 845.08, "end": 848.1, "text": " With my Asus, it's like 25, 20."}, {"id": 402, "start": 848.38, "end": 851.88, "text": " Yesterday, it was down below one megabyte."}, {"id": 403, "start": 852.44, "end": 854.94, "text": " Down below one, you can't explain away."}, {"id": 404, "start": 855.3000000000001, "end": 858.58, "text": " But the 25 to 30 is just the first."}, {"id": 405, "start": 858.6, "end": 859.8000000000001, "text": " That's the frequency that it's running on."}, {"id": 406, "start": 860.28, "end": 864.1, "text": " So, your MacBook, what kind of router is this?"}, {"id": 407, "start": 864.96, "end": 866.52, "text": " It's a Netgear."}, {"id": 408, "start": 867.34, "end": 867.88, "text": " Which one?"}, {"id": 409, "start": 869.7, "end": 871.22, "text": " Is it a Nighthawk series?"}, {"id": 410, "start": 871.46, "end": 873.36, "text": " Is it one of those big, fancy ones?"}, {"id": 411, "start": 874.5400000000001, "end": 874.88, "text": " Yeah."}, {"id": 412, "start": 876.24, "end": 877.46, "text": " How much did it cost?"}, {"id": 413, "start": 878.5600000000001, "end": 882.62, "text": " It was like maybe $100, $70, $80, something like that."}, {"id": 414, "start": 883.78, "end": 885.38, "text": " Crap, I was just working with that."}, {"id": 415, "start": 885.38, "end": 886.38, "text": " I wish I had the..."}, {"id": 416, "start": 888.6, "end": 889.6, "text": " Oh, here it is."}, {"id": 417, "start": 889.6, "end": 890.6, "text": " All right."}, {"id": 418, "start": 890.6, "end": 891.6, "text": " How old is that laptop?"}, {"id": 419, "start": 891.6, "end": 892.6, "text": " Or the Asus?"}, {"id": 420, "start": 892.6, "end": 894.6, "text": " The laptop is two years old."}, {"id": 421, "start": 894.6, "end": 895.6, "text": " Okay."}, {"id": 422, "start": 895.6, "end": 899.64, "text": " So, it sounds to me like it's just connecting on a different band, on one of the slower"}, {"id": 423, "start": 899.64, "end": 900.64, "text": " bands."}, {"id": 424, "start": 900.64, "end": 901.64, "text": " Okay."}, {"id": 425, "start": 901.64, "end": 906.66, "text": " So, do you have the five gigahertz band and the other bands all with the same name?"}, {"id": 426, "start": 906.66, "end": 907.98, "text": " Or are they different?"}, {"id": 427, "start": 907.98, "end": 912.24, "text": " I have the five, and I have the 2.4 gigahertz."}, {"id": 428, "start": 912.24, "end": 915.28, "text": " Are they the same name, or do you have them as a different name?"}, {"id": 429, "start": 915.28, "end": 916.28, "text": " Well..."}, {"id": 430, "start": 916.28, "end": 917.2, "text": " I had to reset the..."}, {"id": 431, "start": 917.2, "end": 918.2, "text": " Oh, okay."}, {"id": 432, "start": 918.2, "end": 919.2, "text": " ...the router."}, {"id": 433, "start": 919.2, "end": 924.82, "text": " So, everything is the same name, but they're identified in the Genie as a five gig and"}, {"id": 434, "start": 924.82, "end": 925.82, "text": " 2.4."}, {"id": 435, "start": 925.82, "end": 926.82, "text": " Right."}, {"id": 436, "start": 926.82, "end": 927.82, "text": " So..."}, {"id": 437, "start": 927.82, "end": 928.82, "text": " And it's a..."}, {"id": 438, "start": 928.82, "end": 930.82, "text": " By the way, the model of the router is an R6400."}, {"id": 439, "start": 930.82, "end": 931.82, "text": " Okay."}, {"id": 440, "start": 931.82, "end": 940.0400000000001, "text": " So, I would give them different names so that the five gigahertz has a separate name."}, {"id": 441, "start": 940.0400000000001, "end": 941.72, "text": " That way, you can connect to that one."}, {"id": 442, "start": 941.72, "end": 945.84, "text": " Because the 2.4 gigahertz band, there's just not enough bandwidth to push that kind of"}, {"id": 443, "start": 945.84, "end": 946.84, "text": " throughput."}, {"id": 444, "start": 946.84, "end": 947.84, "text": " Okay."}, {"id": 445, "start": 947.84, "end": 951.1800000000001, "text": " So, you need to be connecting on the five gigahertz band."}, {"id": 446, "start": 951.1800000000001, "end": 955.36, "text": " And if they're both the same name, then the devices themselves are going to choose which"}, {"id": 447, "start": 955.36, "end": 956.36, "text": " one they want."}, {"id": 448, "start": 956.36, "end": 961.46, "text": " I have identified them on the Genie."}, {"id": 449, "start": 961.46, "end": 964.4, "text": " Well, they come up as a five gigahertz."}, {"id": 450, "start": 964.4, "end": 968.96, "text": " Netgear 61, five gig, and then the other one is just Netgear 61."}, {"id": 451, "start": 968.96, "end": 972.6, "text": " My laptop is taking the signal from the 5G."}, {"id": 452, "start": 972.6, "end": 973.6, "text": " Okay."}, {"id": 453, "start": 973.6, "end": 976.84, "text": " And is there a difference in proximity to the router or anything like that?"}, {"id": 454, "start": 976.84, "end": 977.84, "text": " No."}, {"id": 455, "start": 977.84, "end": 986.6600000000001, "text": " I'm basically maybe 50 feet further away from it."}, {"id": 456, "start": 986.6600000000001, "end": 987.6600000000001, "text": " I'm in my office."}, {"id": 457, "start": 987.6600000000001, "end": 988.6600000000001, "text": " Okay."}, {"id": 458, "start": 988.6600000000001, "end": 992.6600000000001, "text": " If you were to take that laptop and move it somewhere else, do you get different speeds?"}, {"id": 459, "start": 992.6600000000001, "end": 993.6600000000001, "text": " No."}, {"id": 460, "start": 993.6600000000001, "end": 994.6600000000001, "text": " Okay."}, {"id": 461, "start": 994.6600000000001, "end": 999.1, "text": " So, if you were to go get 50 feet closer, like where your other devices are, would that"}, {"id": 462, "start": 999.1, "end": 1003.36, "text": " still have a different speed going on or have you tested that?"}, {"id": 463, "start": 1003.36, "end": 1007.2800000000001, "text": " I tested it briefly when I was on with Texas."}, {"id": 464, "start": 1007.28, "end": 1014.3199999999999, "text": " I was on with Texas for Netgear, and it gave me the same speeds coming out of my modem."}, {"id": 465, "start": 1014.3199999999999, "end": 1021.98, "text": " Then I came back in, put it in the office, went in and changed the name after the reset"}, {"id": 466, "start": 1021.98, "end": 1026.1, "text": " and everything, and tested the speed again, boom, back down to 25, 24."}, {"id": 467, "start": 1026.1, "end": 1027.1, "text": " Yeah."}, {"id": 468, "start": 1027.1, "end": 1030.22, "text": " It sounds like a geography problem."}, {"id": 469, "start": 1030.22, "end": 1036.1, "text": " So either there's something in the way or you're getting like a reflection, something,"}, {"id": 470, "start": 1036.1, "end": 1041.34, "text": " something where that thing is located relative to the router, is what it sounds like to me."}, {"id": 471, "start": 1041.34, "end": 1042.34, "text": " Okay."}, {"id": 472, "start": 1042.34, "end": 1046.4199999999998, "text": " So, if I were to take my laptop and set it right next to the router and I still get a"}, {"id": 473, "start": 1046.4199999999998, "end": 1049.8799999999999, "text": " slow speed, is there something in this?"}, {"id": 474, "start": 1049.8799999999999, "end": 1054.4599999999998, "text": " I would say anytime that you're within like 20 or 30 feet of those things, you're going"}, {"id": 475, "start": 1054.4599999999998, "end": 1056.86, "text": " to get some really crazy results."}, {"id": 476, "start": 1056.86, "end": 1064.2199999999998, "text": " But if you're in sort of that sweet spot that's further away, it should work, but there could"}, {"id": 477, "start": 1064.2199999999998, "end": 1065.8799999999999, "text": " be something going on with the device itself."}, {"id": 478, "start": 1065.88, "end": 1066.88, "text": " Right?"}, {"id": 479, "start": 1066.88, "end": 1070.0200000000002, "text": " Where that device is not picking up everything."}, {"id": 480, "start": 1070.0200000000002, "end": 1077.3000000000002, "text": " Maybe one of its antennas are unplugged, because there's three antennas on any of the 5G devices."}, {"id": 481, "start": 1077.3000000000002, "end": 1081.7600000000002, "text": " So there's three Wi-Fi antennas that are internal to that machine, and if any one of them gets"}, {"id": 482, "start": 1081.7600000000002, "end": 1086.46, "text": " unplugged, you're going to see kind of crazy results as far as strength is concerned."}, {"id": 483, "start": 1086.46, "end": 1091.42, "text": " Or it could be that the card burned out one of the channels."}, {"id": 484, "start": 1091.42, "end": 1094.1200000000001, "text": " So it just happens sometimes."}, {"id": 485, "start": 1094.1200000000001, "end": 1095.1200000000001, "text": " Okay."}, {"id": 486, "start": 1095.1200000000001, "end": 1099.22, "text": " So you can test this theory to see if it's the machine itself, could be software-based."}, {"id": 487, "start": 1099.22, "end": 1102.24, "text": " There's a lot going on there I want you to unpack whenever you're dealing with Wi-Fi"}, {"id": 488, "start": 1102.24, "end": 1103.24, "text": " issues."}, {"id": 489, "start": 1103.24, "end": 1104.24, "text": " Right."}, {"id": 490, "start": 1104.24, "end": 1105.24, "text": " Right."}, {"id": 491, "start": 1105.24, "end": 1110.74, "text": " Well, I got Netgear to send me a swap out, so I'm going to get a brand new one and send"}, {"id": 492, "start": 1110.74, "end": 1112.72, "text": " them back this existing one."}, {"id": 493, "start": 1112.72, "end": 1121.8200000000002, "text": " But in the meantime, I was testing the signal with the MacBook, with my Samsung Edge, and"}, {"id": 494, "start": 1121.8200000000002, "end": 1123.1200000000001, "text": " I was getting screaming results."}, {"id": 495, "start": 1123.1200000000001, "end": 1124.1200000000001, "text": " And I'm starting to think."}, {"id": 496, "start": 1124.1200000000001, "end": 1125.1200000000001, "text": " Okay."}, {"id": 497, "start": 1125.1200000000001, "end": 1126.1200000000001, "text": " Okay."}, {"id": 498, "start": 1126.1200000000001, "end": 1129.24, "text": " If there's something wrong with the receiving aspect of my Asus."}, {"id": 499, "start": 1129.24, "end": 1131.24, "text": " Well, that's where I'm going to go ahead and-"}, {"id": 500, "start": 1131.24, "end": 1132.24, "text": " It could be."}, {"id": 501, "start": 1132.24, "end": 1135.24, "text": " I'm going to err on that side, because if your other devices are working fine, then"}, {"id": 502, "start": 1135.24, "end": 1136.24, "text": " it's not the router."}, {"id": 503, "start": 1136.24, "end": 1137.24, "text": " So-"}, {"id": 504, "start": 1137.24, "end": 1138.24, "text": " That's what I'm thinking."}, {"id": 505, "start": 1138.24, "end": 1144.3400000000001, "text": " It's going to be something going on with your machine or its physical proximity, generally"}, {"id": 506, "start": 1144.3400000000001, "end": 1145.3400000000001, "text": " its proximity."}, {"id": 507, "start": 1145.3400000000001, "end": 1146.3400000000001, "text": " Right?"}, {"id": 508, "start": 1146.3400000000001, "end": 1151.5200000000002, "text": " It has something to go on, like you can get reflections from your Wi-Fi signal bouncing"}, {"id": 509, "start": 1151.5200000000002, "end": 1153.24, "text": " off of walls and causing all kinds of problems."}, {"id": 510, "start": 1153.24, "end": 1154.24, "text": " Or sometimes, you have hands."}, {"id": 511, "start": 1154.24, "end": 1155.0800000000002, "text": " Right."}, {"id": 512, "start": 1155.1200000000001, "end": 1159.72, "text": " Or a neighbor that's on the same frequency as you that's causing problems for that one"}, {"id": 513, "start": 1159.72, "end": 1161.7600000000002, "text": " specific area of the home."}, {"id": 514, "start": 1161.7600000000002, "end": 1166.24, "text": " I mean, Wi-Fi is way more complicated than people give you credit for."}, {"id": 515, "start": 1166.24, "end": 1168.24, "text": " I'm starting to learn that."}, {"id": 516, "start": 1168.24, "end": 1171.96, "text": " And Wi-Fi is remarkably unreliable and terrible."}, {"id": 517, "start": 1171.96, "end": 1173.3600000000001, "text": " Just run a wire over there and be done with it."}, {"id": 518, "start": 1173.3600000000001, "end": 1176.24, "text": " Well, you know, ultimately, if you still can't figure it out after getting the swap"}, {"id": 519, "start": 1176.24, "end": 1178.24, "text": " out, we can always come out and check it for you."}, {"id": 520, "start": 1178.24, "end": 1179.24, "text": " Okay."}, {"id": 521, "start": 1179.24, "end": 1180.24, "text": " All right."}, {"id": 522, "start": 1180.24, "end": 1181.24, "text": " Well, it's a laptop."}, {"id": 523, "start": 1181.24, "end": 1182.24, "text": " I can bring it to you, too."}, {"id": 524, "start": 1182.24, "end": 1183.24, "text": " Well, that doesn't help us, because it's all about the Wi-Fi."}, {"id": 525, "start": 1183.24, "end": 1184.24, "text": " Yeah."}, {"id": 526, "start": 1184.24, "end": 1186.24, "text": " It's all about the Wi-Fi in your home."}, {"id": 527, "start": 1186.24, "end": 1187.24, "text": " Oh."}, {"id": 528, "start": 1187.24, "end": 1188.24, "text": " Good point."}, {"id": 529, "start": 1188.24, "end": 1189.24, "text": " So."}, {"id": 530, "start": 1189.24, "end": 1190.24, "text": " Okay."}, {"id": 531, "start": 1190.24, "end": 1191.24, "text": " All right."}, {"id": 532, "start": 1191.24, "end": 1192.24, "text": " Well."}, {"id": 533, "start": 1192.24, "end": 1193.24, "text": " But Wi-Fi consultations are free, by the way."}, {"id": 534, "start": 1193.24, "end": 1194.24, "text": " So."}, {"id": 535, "start": 1194.24, "end": 1195.24, "text": " Are they really?"}, {"id": 536, "start": 1195.24, "end": 1196.24, "text": " Yes, they are."}, {"id": 537, "start": 1196.24, "end": 1199.08, "text": " So if you want to schedule it up, you give us a call down at the office and we'll get"}, {"id": 538, "start": 1199.08, "end": 1200.08, "text": " you on schedule."}, {"id": 539, "start": 1200.08, "end": 1201.08, "text": " I certainly will."}, {"id": 540, "start": 1201.08, "end": 1202.08, "text": " Thank you very much for your time."}, {"id": 541, "start": 1202.08, "end": 1203.08, "text": " Thank you for the call."}, {"id": 542, "start": 1203.08, "end": 1204.08, "text": " Yeah."}, {"id": 543, "start": 1204.08, "end": 1205.08, "text": " It's Wi-Fi."}, {"id": 544, "start": 1205.08, "end": 1210.58, "text": " You know, I remember a few years ago when I was having a similar issue, and I was losing"}, {"id": 545, "start": 1210.58, "end": 1214.2, "text": " my mind over not being able to get signal in a certain, just one place in my room."}, {"id": 546, "start": 1214.24, "end": 1217.7, "text": " And it happened to be the place where my bed was, so it was really aggravating."}, {"id": 547, "start": 1217.7, "end": 1221.56, "text": " And I explained everything to you, and eventually we figured out that there is, it was a wet"}, {"id": 548, "start": 1221.56, "end": 1222.56, "text": " wall."}, {"id": 549, "start": 1222.56, "end": 1223.76, "text": " There was a bathroom in between my room and the router."}, {"id": 550, "start": 1223.76, "end": 1224.76, "text": " Yep."}, {"id": 551, "start": 1224.76, "end": 1225.76, "text": " And that was causing the entire issue."}, {"id": 552, "start": 1225.76, "end": 1226.76, "text": " Yeah."}, {"id": 553, "start": 1226.76, "end": 1227.76, "text": " There's lots of things."}, {"id": 554, "start": 1227.76, "end": 1234.36, "text": " I mean, building materials play a huge role in how Wi-Fi is going to behave."}, {"id": 555, "start": 1234.36, "end": 1235.36, "text": " Yeah."}, {"id": 556, "start": 1235.36, "end": 1239.6, "text": " I ended up moving the router like 15 feet to the left so it could get around that wall."}, {"id": 557, "start": 1239.6, "end": 1240.6, "text": " Worked fine."}, {"id": 558, "start": 1240.6, "end": 1241.6, "text": " Yep."}, {"id": 559, "start": 1241.6, "end": 1242.6, "text": " That's how it works."}, {"id": 560, "start": 1242.6, "end": 1243.6, "text": " And."}, {"id": 561, "start": 1243.6000000000001, "end": 1247.3600000000001, "text": " One of the things is that as much as possible, I try to have people not on Wi-Fi."}, {"id": 562, "start": 1247.3600000000001, "end": 1248.3600000000001, "text": " Yeah."}, {"id": 563, "start": 1248.3600000000001, "end": 1250.1000000000001, "text": " I mean, if you're on your phone, there's really no way to avoid it."}, {"id": 564, "start": 1250.1000000000001, "end": 1254.1000000000001, "text": " But even my laptop, there's a place where I have a line connection running to it, you"}, {"id": 565, "start": 1254.1000000000001, "end": 1255.1000000000001, "text": " know, in my house."}, {"id": 566, "start": 1255.1000000000001, "end": 1257.8400000000001, "text": " Because Wi-Fi is terrible, and you should probably stay away from it."}, {"id": 567, "start": 1257.8400000000001, "end": 1262.0200000000002, "text": " I do like that they're going with, you know, multiple access point, like mesh networks"}, {"id": 568, "start": 1262.0200000000002, "end": 1263.0200000000002, "text": " nowadays."}, {"id": 569, "start": 1263.0200000000002, "end": 1264.0200000000002, "text": " Yeah."}, {"id": 570, "start": 1264.0200000000002, "end": 1266.3200000000002, "text": " And that's the other thing that we set up for people is if they have these larger homes"}, {"id": 571, "start": 1266.3200000000002, "end": 1268.92, "text": " or they have sort of oddly shaped homes."}, {"id": 572, "start": 1268.92, "end": 1269.92, "text": " Yeah."}, {"id": 573, "start": 1269.92, "end": 1271.92, "text": " Then we start putting in like mesh networks."}, {"id": 574, "start": 1271.92, "end": 1272.92, "text": " Yeah."}, {"id": 575, "start": 1272.92, "end": 1276.3400000000001, "text": " And if you have a weird shaped house and the Wi-Fi has to go through multiple exterior"}, {"id": 576, "start": 1276.3400000000001, "end": 1277.68, "text": " walls, you're going to have a bad time."}, {"id": 577, "start": 1277.68, "end": 1278.68, "text": " Oh, yeah."}, {"id": 578, "start": 1278.68, "end": 1279.68, "text": " A very bad time."}, {"id": 579, "start": 1279.68, "end": 1280.68, "text": " All right."}, {"id": 580, "start": 1280.68, "end": 1281.68, "text": " Let's go ahead and take a break."}, {"id": 581, "start": 1281.68, "end": 1283.68, "text": " And when we come back, more of the Computer Guru show."}, {"id": 582, "start": 1283.68, "end": 1285.68, "text": " And you can give us a call, 790-2040."}, {"id": 583, "start": 1285.68, "end": 1286.68, "text": " We'll be right back."}, {"id": 584, "start": 1286.68, "end": 1287.68, "text": " We'll be right back."}, {"id": 585, "start": 1287.68, "end": 1288.68, "text": " All right."}, {"id": 586, "start": 1288.68, "end": 1289.68, "text": " Thanks for watching."}, {"id": 587, "start": 1289.68, "end": 1290.68, "text": " We'll see you next time."}, {"id": 588, "start": 1290.68, "end": 1291.68, "text": " Bye-bye."}, {"id": 589, "start": 1291.68, "end": 1292.68, "text": " Bye-bye."}, {"id": 590, "start": 1292.68, "end": 1293.68, "text": " Bye-bye."}, {"id": 591, "start": 1293.68, "end": 1294.68, "text": " Bye-bye."}, {"id": 592, "start": 1294.68, "end": 1295.68, "text": " Bye-bye."}, {"id": 593, "start": 1295.68, "end": 1296.68, "text": " Bye-bye."}, {"id": 594, "start": 1296.68, "end": 1297.68, "text": " Bye-bye."}, {"id": 595, "start": 1297.68, "end": 1298.68, "text": " Bye-bye."}, {"id": 596, "start": 1298.68, "end": 1299.68, "text": " Bye-bye."}, {"id": 597, "start": 1299.68, "end": 1300.68, "text": " Bye-bye."}, {"id": 598, "start": 1300.68, "end": 1301.68, "text": " Bye-bye."}, {"id": 599, "start": 1301.68, "end": 1302.68, "text": " Bye-bye."}, {"id": 600, "start": 1302.68, "end": 1310.44, "text": " Bye-bye."}, {"id": 601, "start": 1310.44, "end": 1314.48, "text": " Bye-bye."}, {"id": 602, "start": 1314.48, "end": 1322.9, "text": " Bye-bye."}, {"id": 603, "start": 1322.9, "end": 1331.9, "text": " Bye."}, {"id": 604, "start": 1331.9, "end": 1332.18, "text": " Bye."}, {"id": 605, "start": 1332.18, "end": 1332.24, "text": " ."}, {"id": 606, "start": 1332.24, "end": 1332.5800000000002, "text": " ."}, {"id": 607, "start": 1332.5800000000002, "end": 1332.64, "text": " ."}, {"id": 608, "start": 1332.64, "end": 1332.66, "text": " ."}, {"id": 609, "start": 1332.66, "end": 1332.68, "text": " ."}, {"id": 610, "start": 1332.68, "end": 1338.5600000000002, "text": " and kick back this is the computer guru show on am 10 30 kvoy the voice"}, {"id": 611, "start": 1338.5600000000002, "end": 1347.6000000000001, "text": " mike swanson your computer guru is just a click away listen and watch a guru show.com"}, {"id": 612, "start": 1347.6000000000001, "end": 1355.92, "text": " this is a computer guru show on kvoi the voice welcome back to the computer guru show 790 2040"}, {"id": 613, "start": 1355.92, "end": 1359.38, "text": " if you'd like to be part of the show let's talk to elaine hello elaine how are you hello mike"}, {"id": 614, "start": 1359.38, "end": 1366.74, "text": " swanson hello elaine troy i have a problem hon my honey passed away in 2014 and he he's got a"}, {"id": 615, "start": 1366.74, "end": 1372.46, "text": " beautiful computer and my friends and i and even the people he worked with at work we all tried to"}, {"id": 616, "start": 1372.46, "end": 1378.44, "text": " put in a password and we can't get past the password okay and i don't know what to do mike"}, {"id": 617, "start": 1378.44, "end": 1382.5, "text": " and i know you said this a hundred times of how to do it i didn't mark it down i've forgotten i"}, {"id": 618, "start": 1382.5, "end": 1386.88, "text": " apologize well what i said is if you need this to remove a password you have to bring it down"}, {"id": 619, "start": 1386.88, "end": 1389.3600000000001, "text": " okay i can't bring it down because i don't"}, {"id": 620, "start": 1389.3600000000001, "end": 1395.8000000000002, "text": " have a car and i'm old and this thing's heavy uh you know it's it's it's um we can do an on-site"}, {"id": 621, "start": 1395.8000000000002, "end": 1400.8000000000002, "text": " you can call you can schedule and we can come to you and do it i know but you're so expensive"}, {"id": 622, "start": 1400.8000000000002, "end": 1407.3200000000002, "text": " well i mean there's a trade-off here walk me through it no because it's special tools to do"}, {"id": 623, "start": 1407.3200000000002, "end": 1413.0800000000002, "text": " it i'm sorry oh you do yeah so we have to use special pieces of software to to make that happen"}, {"id": 624, "start": 1413.0800000000002, "end": 1418.6200000000001, "text": " there is really yeah so you can't just no wonder man we tried everything under the sun i don't"}, {"id": 625, "start": 1418.6200000000001, "end": 1419.3400000000001, "text": " know what this meant"}, {"id": 626, "start": 1419.3600000000001, "end": 1422.68, "text": " put in there well you haven't tried having me come out and do it yet i know"}, {"id": 627, "start": 1422.68, "end": 1430.16, "text": " so maybe if i could volunteer something get a discount well we could probably work something"}, {"id": 628, "start": 1430.16, "end": 1435.7, "text": " out so yeah if you just call i do calligraphy i do ironing and i do i can do all kinds of things"}, {"id": 629, "start": 1435.7, "end": 1439.7800000000002, "text": " i don't think i'd need you to do any of that stuff but what you could do is you know you"}, {"id": 630, "start": 1439.7800000000002, "end": 1445.7800000000002, "text": " could probably refer some people my way no problem there all right then so call the office and i live"}, {"id": 631, "start": 1445.7800000000002, "end": 1449.3400000000001, "text": " on speedway crate cross so i live in a good neighborhood and you know whenever we need to"}, {"id": 632, "start": 1449.3600000000001, "end": 1452.8200000000002, "text": " need help like that we'll come to you yeah how about you okay mike i'll give you a call monday"}, {"id": 633, "start": 1452.8200000000002, "end": 1457.2600000000002, "text": " then you do that hey thank you so much i appreciate your show and i'm glad you're feeling better hon"}, {"id": 634, "start": 1457.2600000000002, "end": 1464.92, "text": " okay thanks okay fantastic take care okay bye-bye was i unwell i don't know i just maybe maybe it's"}, {"id": 635, "start": 1464.92, "end": 1468.0800000000002, "text": " just like one of those things you know i don't know if you were feeling bad but i'm glad you're"}, {"id": 636, "start": 1468.0800000000002, "end": 1473.42, "text": " feeling better now yeah maybe maybe you could get a tattoo what get a calligraphy tattoo maybe she"}, {"id": 637, "start": 1473.42, "end": 1479.2, "text": " does tattoo too no no no no i i am i am very staunchly anti-tattoo"}, {"id": 638, "start": 1479.3600000000001, "end": 1483.7800000000002, "text": " looking for the barter thing man i could get a free tattoo i wouldn't mind that"}, {"id": 639, "start": 1483.7800000000002, "end": 1488.5000000000002, "text": " moving right along 790 2040 if you'd like to be part of the show"}, {"id": 640, "start": 1488.5000000000002, "end": 1493.5400000000002, "text": " yeah well i'm gonna call the shop we'll remove your password that and you know make sure that"}, {"id": 641, "start": 1493.5400000000002, "end": 1498.38, "text": " uh after we do a great job you you go on yelp and let everybody know or google reviews you know"}, {"id": 642, "start": 1498.38, "end": 1505.3400000000001, "text": " that kind of stuff yeah it kind of feels unfair though it's like here's a extremely discounted"}, {"id": 643, "start": 1505.3400000000001, "end": 1509.2, "text": " password uh removal how about you just leave me nice things well i okay"}, {"id": 644, "start": 1509.3600000000001, "end": 1513.0200000000002, "text": " i should say leave us some feedback about your experience regardless of whether you leave"}, {"id": 645, "start": 1513.0200000000002, "end": 1517.5800000000002, "text": " positive or negative feedback feedback itself is valuable just for the sake of feedback it is"}, {"id": 646, "start": 1517.5800000000002, "end": 1522.92, "text": " that's another rant altogether you know i mean i will say that we really do read all of those"}, {"id": 647, "start": 1522.92, "end": 1528.3400000000001, "text": " and when people when we respond it really is it's not even me in most cases it actually is mike"}, {"id": 648, "start": 1528.3400000000001, "end": 1532.92, "text": " we'll take the time to go and sit down and respond to it yeah there's been times where i was like hey"}, {"id": 649, "start": 1532.92, "end": 1537.64, "text": " mike i can respond to this for you and he's like nah i got it i got this man you know what's funny"}, {"id": 650, "start": 1537.64, "end": 1539.3400000000001, "text": " about reviews though is that you know i've been doing a lot of reviews and i've been doing a lot of"}, {"id": 651, "start": 1539.3600000000001, "end": 1544.72, "text": " there's all kinds of things to to unpack there right it's most of the time when people do reviews"}, {"id": 652, "start": 1544.72, "end": 1550.8600000000001, "text": " they only do so when they are emotionally engaged to do so and generally it's when people are it's"}, {"id": 653, "start": 1550.8600000000001, "end": 1557.96, "text": " almost always when they're unhappy and then secondly i would say that probably half of the"}, {"id": 654, "start": 1557.96, "end": 1562.68, "text": " negative reviews that i've received over the years are because they just didn't know where"}, {"id": 655, "start": 1562.68, "end": 1568.66, "text": " they took their computer right i got some sort of permanent yelp mark on my on my account because"}, {"id": 656, "start": 1568.66, "end": 1569.3400000000001, "text": " they took their computer and they didn't know where they took their computer and they didn't"}, {"id": 657, "start": 1569.3600000000001, "end": 1573.5000000000002, "text": " know where they took their computer somewhere else and then left the review on on me yeah and"}, {"id": 658, "start": 1573.5000000000002, "end": 1576.7800000000002, "text": " they're you know they're insisting that it's us and it's like we've never had a tech by that name"}, {"id": 659, "start": 1576.7800000000002, "end": 1582.0600000000002, "text": " ever right employed ever and where it really illustrates itself is that on a couple of them"}, {"id": 660, "start": 1582.0600000000002, "end": 1586.96, "text": " you know i've contacted people and i said come down and see me we'll we'll make this right and"}, {"id": 661, "start": 1586.96, "end": 1591.18, "text": " they show up and they're like i've never been here before and i'm like well why do you have a bad"}, {"id": 662, "start": 1591.18, "end": 1596.8200000000002, "text": " review on me and then they never take it away i'm like come on you know though i will say that in"}, {"id": 663, "start": 1596.8200000000002, "end": 1599.3200000000002, "text": " the so you know of all of the reviews"}, {"id": 664, "start": 1599.3600000000001, "end": 1604.0400000000002, "text": " maybe one percent end up being just shining positive examples of a good happy customer"}, {"id": 665, "start": 1604.0400000000002, "end": 1608.0600000000002, "text": " because people are angry when they leave reviews typically right when you do when you get a review"}, {"id": 666, "start": 1608.0600000000002, "end": 1611.94, "text": " and it calls you out by name and says you did a good job it feels good it does a nice little"}, {"id": 667, "start": 1611.94, "end": 1616.5800000000002, "text": " boost to your day yeah i try to leave positive reviews just because i know how rare those are"}, {"id": 668, "start": 1616.5800000000002, "end": 1621.22, "text": " yeah and i do the same ever since i started working this in this industry if i have a really good"}, {"id": 669, "start": 1621.22, "end": 1628.2, "text": " experience i'll take the time right then on my phone you know yep yeah and you know i've toyed"}, {"id": 670, "start": 1628.2, "end": 1629.3400000000001, "text": " with the ideas of you know let's do this let's do this let's do this let's do this let's do this"}, {"id": 671, "start": 1629.3600000000001, "end": 1633.98, "text": " let's engage people more often let's be like because there's a lot of places that'll be like"}, {"id": 672, "start": 1633.98, "end": 1640.5000000000002, "text": " we'll give you a discount right now if you leave us a review right and to me it feels really i don't"}, {"id": 673, "start": 1640.5000000000002, "end": 1645.1200000000001, "text": " know it's like bribery it's like i don't want to bribe you into leaving me a review but i also"}, {"id": 674, "start": 1645.1200000000001, "end": 1649.22, "text": " understand the other side of that where it's just really hard to get unmotivated otherwise to do so"}, {"id": 675, "start": 1649.22, "end": 1652.72, "text": " yeah it's really hard to convince people that like especially once they leave your establishment and"}, {"id": 676, "start": 1652.72, "end": 1657.42, "text": " they're going home and going about their day right they have a life yeah outside of and especially"}, {"id": 677, "start": 1657.42, "end": 1659.3400000000001, "text": " like if you're if you don't often leave a review you're not going to be able to get a review"}, {"id": 678, "start": 1659.3600000000001, "end": 1662.2400000000002, "text": " reviews you get to yelp and you're like all right i'm gonna leave a review but then you can't log"}, {"id": 679, "start": 1662.2400000000002, "end": 1667.0200000000002, "text": " into your account because it's been two years and you have to like reset the password and yeah it's"}, {"id": 680, "start": 1667.0200000000002, "end": 1672.46, "text": " not worth it right by the end you're just like meh they know yeah i i told them i was happy"}, {"id": 681, "start": 1672.46, "end": 1678.6000000000001, "text": " right and and that's the thing with with all types of of reviews right whether they be just"}, {"id": 682, "start": 1678.6000000000001, "end": 1683.66, "text": " not even the ones you leave online just the ones that you say to someone else right your impression"}, {"id": 683, "start": 1683.66, "end": 1688.9, "text": " of your experience is that they say that you know if you tell one person that you're"}, {"id": 684, "start": 1688.9, "end": 1694.0800000000002, "text": " happy then one person knows that you had a good experience and if you tell one person that you"}, {"id": 685, "start": 1694.0800000000002, "end": 1700.88, "text": " were unhappy then 23 people know that you're unhappy right and and that's the normal sort of"}, {"id": 686, "start": 1700.88, "end": 1704.7, "text": " human nature of things is that you're gonna you're gonna try to watch out for those that you know"}, {"id": 687, "start": 1704.7, "end": 1709.94, "text": " and you're gonna be like oh you know what i heard and then it becomes the telephone game all right"}, {"id": 688, "start": 1709.94, "end": 1714.8000000000002, "text": " and it's like i heard that mike swanson you know not only didn't delete my password but put a much"}, {"id": 689, "start": 1714.8000000000002, "end": 1718.0400000000002, "text": " longer and more complicated password on and then laughed at me right"}, {"id": 690, "start": 1718.9, "end": 1724.4, "text": " and it was like the guy that that that left a review and he said that um that i was condescending"}, {"id": 691, "start": 1724.4, "end": 1732.2800000000002, "text": " and uh that i i was very mean to him in person and which anybody who has ever dealt with me"}, {"id": 692, "start": 1732.2800000000002, "end": 1737.8200000000002, "text": " at all in any capacity that comes when it comes to computer gurus that's not happened that's that's"}, {"id": 693, "start": 1737.8200000000002, "end": 1742.5600000000002, "text": " not my that's not what i do unless you're an employee of computer guru right in which it's"}, {"id": 694, "start": 1742.5600000000002, "end": 1747.3000000000002, "text": " in the contract you're subject to ridicule right it's in there uh but you know so i i left a"}, {"id": 695, "start": 1748.9, "end": 1753.4, "text": " very sorry that you feel that way and you know i'm i'm more than willing to make it up to you come"}, {"id": 696, "start": 1753.4, "end": 1758.4, "text": " on down here and by the way this is another one where we couldn't find any corroborating details"}, {"id": 697, "start": 1758.4, "end": 1763.7800000000002, "text": " like this person has never dealt with me um but we also have to play this this game down at the"}, {"id": 698, "start": 1763.7800000000002, "end": 1769.26, "text": " shop which is let's find out who knows mike this week right because everybody who calls up was just"}, {"id": 699, "start": 1769.26, "end": 1773.5, "text": " like oh yeah i know mike yeah i've had people call and be like yeah me and you know me and"}, {"id": 700, "start": 1773.5, "end": 1778.8600000000001, "text": " mike are friends we go way back you know and and they're like like bragging that they know you too"}, {"id": 701, "start": 1778.9, "end": 1782.92, "text": " me who has worked for you for nearly a decade you know i'm just like that's cool and then i'll"}, {"id": 702, "start": 1782.92, "end": 1787.46, "text": " mention i'll be like oh your friend called and you're like who i don't know that person sounds"}, {"id": 703, "start": 1787.46, "end": 1792.9, "text": " like a perfect t-shirt opportunity yeah i know mike yeah so my uh my dad says that i should offer"}, {"id": 704, "start": 1792.9, "end": 1798.42, "text": " a uh i should raise the prices by 20 and then give a 10 discount to everyone that says that"}, {"id": 705, "start": 1798.42, "end": 1805.8600000000001, "text": " they know me so that's a good idea it's a good idea uh anyway um yeah i mean i'm totally happy"}, {"id": 706, "start": 1805.8600000000001, "end": 1808.88, "text": " to to help people out and yeah i'll do it"}, {"id": 707, "start": 1808.9, "end": 1812.5400000000002, "text": " elaine is the freebie of the week well i mean we've we've said before but it really is true"}, {"id": 708, "start": 1812.5400000000002, "end": 1816.96, "text": " like the reason i feel like most of us all of us really who are core computer guru members the"}, {"id": 709, "start": 1816.96, "end": 1821.18, "text": " reason we work there is because we like to help people you know if i could do this if i wasn't"}, {"id": 710, "start": 1821.18, "end": 1825.8400000000001, "text": " getting paid and i was just independently wealthy right i would still be doing this that's good"}, {"id": 711, "start": 1825.8400000000001, "end": 1829.24, "text": " now i'm glad i'm glad to hear that can you can you win the lottery and then i don't have to pay"}, {"id": 712, "start": 1829.24, "end": 1833.0600000000002, "text": " that would be nice that'd be nice you know i never get excited about the lottery because that would"}, {"id": 713, "start": 1833.0600000000002, "end": 1837.92, "text": " be dumb but when it was at 1.5 billion i went and bought some tickets i'm not gonna lie you know"}, {"id": 714, "start": 1838.9, "end": 1844.0800000000002, "text": " that i uh like twice a year i'll go out and buy a lottery ticket and then uh and then i'm reminded"}, {"id": 715, "start": 1844.0800000000002, "end": 1848.72, "text": " i suck at that game you know i'm uh i'm they say i'm statistically less likely to win the lottery"}, {"id": 716, "start": 1848.72, "end": 1853.5, "text": " than most people why because my mom won it at one point oh really she won like ten thousand dollars"}, {"id": 717, "start": 1853.5, "end": 1857.92, "text": " huh so lightning doesn't strike twice in the same place that whole thing same family line"}, {"id": 718, "start": 1857.92, "end": 1862.4, "text": " they say that there's there's some correlation there i guess i don't know i think that sounds"}, {"id": 719, "start": 1862.4, "end": 1868.66, "text": " like bad statistics to me okay uh so let's do let's do another like the government doing things"}, {"id": 720, "start": 1868.9, "end": 1875.14, "text": " that doesn't make computer angry are there any of those these days there is so there's a dig once"}, {"id": 721, "start": 1875.14, "end": 1879.16, "text": " bill that's that's uh you'll have to tell me about this because i didn't read that story"}, {"id": 722, "start": 1879.16, "end": 1885.5, "text": " all right so since 2009 there has been a legislator that has been trying to get this"}, {"id": 723, "start": 1885.5, "end": 1892.96, "text": " bill called the dig once bill passed which would require that any road work that's being done"}, {"id": 724, "start": 1892.96, "end": 1898.88, "text": " or sidewalk work or any any type of the road and surrounding area that's being done is going to be"}, {"id": 725, "start": 1898.9, "end": 1903.14, "text": " a part of the federal government's work that's that is has any type of federal funding involved"}, {"id": 726, "start": 1903.14, "end": 1910.5, "text": " with it at all which is almost all of them uh that they would be required to incorporate conduit for"}, {"id": 727, "start": 1910.5, "end": 1917.46, "text": " fiber runs that's a really good idea all right and and it's it's there's been some pushback by of"}, {"id": 728, "start": 1917.46, "end": 1921.24, "text": " course oh yeah they don't want to have to do more work well not by them right because they're"}, {"id": 729, "start": 1921.24, "end": 1924.88, "text": " getting paid to put the tele you know they're getting paid to put the conduit in regardless"}, {"id": 730, "start": 1924.88, "end": 1927.76, "text": " right uh but the telecom companies have been pushing back"}, {"id": 731, "start": 1928.9, "end": 1932.4, "text": " i don't know about this right that sounds like we'd have to offer better services for more"}, {"id": 732, "start": 1932.4, "end": 1935.74, "text": " competitive rates well it sounds like it would make it easier for the little guys to be able"}, {"id": 733, "start": 1935.74, "end": 1941.92, "text": " to compete with us and that's that has been some of the pushback but some bigger names have gotten"}, {"id": 734, "start": 1941.92, "end": 1948.18, "text": " involved and said we're okay with this such as century link and verizon which is weird to mention"}, {"id": 735, "start": 1948.18, "end": 1953.26, "text": " them in a positive light yeah no kidding but both of which have said yeah i think this is a good"}, {"id": 736, "start": 1953.26, "end": 1958.0800000000002, "text": " idea it could lower the cost of of uh delivering or upgrading"}, {"id": 737, "start": 1958.9, "end": 1964.52, "text": " fan services by 90 i always forget that verizon's like an actual isp in a lot of places"}, {"id": 738, "start": 1964.52, "end": 1972.8600000000001, "text": " yeah yeah oh and it's interesting is that as an example uh so at the fort lowell office"}, {"id": 739, "start": 1972.8600000000001, "end": 1980.5800000000002, "text": " we have this smoking fast really kind of like i pay way too much for internet yeah we do and um"}, {"id": 740, "start": 1980.5800000000002, "end": 1985.6200000000001, "text": " but it's required for what i do it's only ones i can get and i can't i can't do those kinds of"}, {"id": 741, "start": 1985.6200000000001, "end": 1988.3600000000001, "text": " torrents at home i mean i would never do such a thing"}, {"id": 742, "start": 1988.9, "end": 1995.18, "text": " so uh the they were one of the days the internet was down and and they had all the cox trucks out"}, {"id": 743, "start": 1995.18, "end": 1999.44, "text": " and there i went over and talked to him i'm like first of all i was like hey what are you gonna be"}, {"id": 744, "start": 1999.44, "end": 2007.44, "text": " done with this and then secondly um i was like there's a verizon cell phone tower like 500 feet"}, {"id": 745, "start": 2007.44, "end": 2012.7, "text": " away from where they are working and like uh i imagine the internet's down for the verizon cell"}, {"id": 746, "start": 2012.7, "end": 2017.7800000000002, "text": " network and he's like oh no no no we get our internet from them it's going the other way around"}, {"id": 747, "start": 2018.9, "end": 2020.72, "text": " I just thought, well, that's interesting."}, {"id": 748, "start": 2021.18, "end": 2021.92, "text": " That is interesting."}, {"id": 749, "start": 2022.42, "end": 2029.98, "text": " So, yeah, Cox has its own thing going on, but apparently there's several areas where they just jump off of a cell phone tower."}, {"id": 750, "start": 2030.46, "end": 2034.92, "text": " Well, someone that I know worked for one of the call centers, of which we have many here in Tucson."}, {"id": 751, "start": 2035.2, "end": 2035.4, "text": " Right."}, {"id": 752, "start": 2036.0600000000002, "end": 2040.2, "text": " And she basically only did Verizon Fios support."}, {"id": 753, "start": 2041.22, "end": 2041.66, "text": " Right."}, {"id": 754, "start": 2041.76, "end": 2042.42, "text": " Yeah, from here."}, {"id": 755, "start": 2042.7, "end": 2044.3400000000001, "text": " So that's how I learned about all that."}, {"id": 756, "start": 2044.3400000000001, "end": 2050.2400000000002, "text": " Yeah, so Verizon, for much of the East Coast, is a real ISP."}, {"id": 757, "start": 2050.44, "end": 2050.76, "text": " I don't know."}, {"id": 758, "start": 2050.78, "end": 2053.44, "text": " That seems more scary than, like, Cox or Comcast to me."}, {"id": 759, "start": 2054.28, "end": 2059.48, "text": " Well, they probably have something along the lines of, like, you know, Central League Cell Phone over there."}, {"id": 760, "start": 2060.2400000000002, "end": 2062.58, "text": " It's like next year Comcast and Verizon merge."}, {"id": 761, "start": 2062.6800000000003, "end": 2064.0, "text": " They rename their company to just Evil."}, {"id": 762, "start": 2064.7000000000003, "end": 2065.56, "text": " It's just called Evil."}, {"id": 763, "start": 2066.3, "end": 2067.6600000000003, "text": " Well, Evil Corp."}, {"id": 764, "start": 2069.08, "end": 2073.6600000000003, "text": " The whole idea of this whole Dig Once bill, I think, is something that we should probably..."}, {"id": 765, "start": 2073.66, "end": 2074.94, "text": " That's a good idea."}, {"id": 766, "start": 2075.08, "end": 2079.24, "text": " ...actually have a conversation with our, you know, our senators and our representatives and say,"}, {"id": 767, "start": 2079.2999999999997, "end": 2083.94, "text": " hey, let's make this happen because it's really, it's going to be better for us all in the end."}, {"id": 768, "start": 2084.12, "end": 2088.12, "text": " And it's something that the Democrats and Republicans seem to agree on right now."}, {"id": 769, "start": 2088.12, "end": 2090.16, "text": " It's like, I know, it's like this is a gimme, you guys."}, {"id": 770, "start": 2090.24, "end": 2092.44, "text": " Like, you want to show that you can reach across the aisle."}, {"id": 771, "start": 2092.54, "end": 2094.42, "text": " This is the one, you know, it's easy."}, {"id": 772, "start": 2094.54, "end": 2095.42, "text": " Here's an easy one, right."}, {"id": 773, "start": 2095.44, "end": 2097.58, "text": " Here's an easy, it's a softball for everybody."}, {"id": 774, "start": 2097.98, "end": 2098.46, "text": " Just do it."}, {"id": 775, "start": 2098.46, "end": 2102.42, "text": " But if you notice how much money was given to senators."}, {"id": 776, "start": 2103.66, "end": 2106.5, "text": " Regarding the whole, let's go ahead and sell your private information."}, {"id": 777, "start": 2107.3199999999997, "end": 2110.8999999999996, "text": " Because that came out this last week as a list of how much money was given."}, {"id": 778, "start": 2111.1, "end": 2112.66, "text": " I don't even know which one I'm more angry about."}, {"id": 779, "start": 2112.72, "end": 2114.2599999999998, "text": " That or the one we're going to talk about later."}, {"id": 780, "start": 2114.92, "end": 2115.24, "text": " Well."}, {"id": 781, "start": 2115.44, "end": 2117.56, "text": " I mean, that really, really got to me."}, {"id": 782, "start": 2117.74, "end": 2119.64, "text": " We'll put the link in the show notes for that, too."}, {"id": 783, "start": 2120.1, "end": 2120.7999999999997, "text": " We're going to take a break."}, {"id": 784, "start": 2120.8999999999996, "end": 2123.56, "text": " When we come back, more of the Computer Guru Show, 79024."}, {"id": 785, "start": 2127.46, "end": 2127.5, "text": " We'll be right back."}, {"id": 786, "start": 2127.5, "end": 2127.56, "text": " We'll be right back."}, {"id": 787, "start": 2127.56, "end": 2127.62, "text": " We'll be right back."}, {"id": 788, "start": 2127.62, "end": 2127.66, "text": " We'll be right back."}, {"id": 789, "start": 2127.66, "end": 2127.7, "text": " We'll be right back."}, {"id": 790, "start": 2127.7, "end": 2127.72, "text": " We'll be right back."}, {"id": 791, "start": 2127.72, "end": 2127.7599999999998, "text": " We'll be right back."}, {"id": 792, "start": 2127.7599999999998, "end": 2127.7799999999997, "text": " We'll be right back."}, {"id": 793, "start": 2127.7799999999997, "end": 2127.7999999999997, "text": " We'll be right back."}, {"id": 794, "start": 2127.7999999999997, "end": 2127.8399999999997, "text": " We'll be right back."}, {"id": 795, "start": 2127.8399999999997, "end": 2127.8599999999997, "text": " We'll be right back."}, {"id": 796, "start": 2127.8599999999997, "end": 2127.8799999999997, "text": " We'll be right back."}, {"id": 797, "start": 2127.88, "end": 2157.86, "text": " We'll be right back."}, {"id": 798, "start": 2157.88, "end": 2167.2400000000002, "text": " Mike Swanson, your computer guru, is just a click away."}, {"id": 799, "start": 2167.6, "end": 2169.84, "text": " Listen and watch at gurushow.com."}, {"id": 800, "start": 2170.2200000000003, "end": 2172.02, "text": " This is the Computer Guru Show."}, {"id": 801, "start": 2172.5, "end": 2175.34, "text": " Welcome back to the Computer Guru Show."}, {"id": 802, "start": 2175.4, "end": 2176.54, "text": " Let's talk about IBM for a minute."}, {"id": 803, "start": 2176.7200000000003, "end": 2177.56, "text": " Did you know they're still around?"}, {"id": 804, "start": 2177.98, "end": 2179.1800000000003, "text": " Well, you know, I was just asking."}, {"id": 805, "start": 2179.34, "end": 2180.2200000000003, "text": " Like, they're still around, right?"}, {"id": 806, "start": 2180.26, "end": 2182.38, "text": " But it's just their computer division that's Lenovo now."}, {"id": 807, "start": 2182.6800000000003, "end": 2183.04, "text": " Right."}, {"id": 808, "start": 2183.1400000000003, "end": 2185.08, "text": " The Consumer Electronics Division sold off."}, {"id": 809, "start": 2185.2200000000003, "end": 2187.86, "text": " But they still do a lot of the work."}, {"id": 810, "start": 2187.88, "end": 2192.1800000000003, "text": " They do a lot of things in medical, and then mostly in supercomputing and storage."}, {"id": 811, "start": 2192.6, "end": 2192.7200000000003, "text": " Yeah."}, {"id": 812, "start": 2193.0, "end": 2195.88, "text": " Back in the day, my mom used to work for a company that built IBM supercomputers."}, {"id": 813, "start": 2196.96, "end": 2197.1800000000003, "text": " Yeah."}, {"id": 814, "start": 2197.5, "end": 2199.46, "text": " Well, like IBM or just IBM?"}, {"id": 815, "start": 2199.6400000000003, "end": 2200.88, "text": " It was called Thor Electronics."}, {"id": 816, "start": 2201.7200000000003, "end": 2201.92, "text": " Ah."}, {"id": 817, "start": 2202.3, "end": 2205.92, "text": " So, yeah, there's all kinds of stuff that IBM is still doing."}, {"id": 818, "start": 2206.02, "end": 2207.48, "text": " They do a lot of medical stuff."}, {"id": 819, "start": 2207.6600000000003, "end": 2214.12, "text": " They do mostly storage, as far as gigantic storage devices for banks and other federal entities."}, {"id": 820, "start": 2214.12, "end": 2219.72, "text": " And they also are doing a lot of machine learning AI stuff."}, {"id": 821, "start": 2220.2599999999998, "end": 2226.8399999999997, "text": " And one of the things that they've recently patented is a backup system or a co-pilot for autonomous vehicles."}, {"id": 822, "start": 2227.54, "end": 2233.7799999999997, "text": " So they're saying, they're seeing that, you know, in the future, there's going to be mostly self-driving cars around."}, {"id": 823, "start": 2234.08, "end": 2241.7, "text": " And what they wanted to do was build something that accounts for system failures or glitches on the primary side."}, {"id": 824, "start": 2241.7, "end": 2244.04, "text": " So it's like a sub-computer specifically to handle?"}, {"id": 825, "start": 2244.04, "end": 2245.56, "text": " Yeah, to handle failures of the main system."}, {"id": 826, "start": 2245.94, "end": 2246.2799999999997, "text": " Right."}, {"id": 827, "start": 2246.54, "end": 2255.22, "text": " So, as an example, if you end up with, like, a brake failure or something along those lines or lights, you know, lights not functioning properly,"}, {"id": 828, "start": 2255.7599999999998, "end": 2261.52, "text": " that this particular AI will then help to mitigate the disaster that is impending."}, {"id": 829, "start": 2261.84, "end": 2263.02, "text": " It's probably a good idea."}, {"id": 830, "start": 2263.54, "end": 2266.74, "text": " Yeah, because all computer systems have glitches."}, {"id": 831, "start": 2266.74, "end": 2272.7, "text": " I mean, you know, eventually, if we follow this line of thought, though, there's just going to be infinite AIs in your car."}, {"id": 832, "start": 2272.98, "end": 2273.74, "text": " Now, if you're..."}, {"id": 833, "start": 2274.52, "end": 2276.1, "text": " Now we need a backup for the backup."}, {"id": 834, "start": 2276.24, "end": 2276.36, "text": " Yeah."}, {"id": 835, "start": 2276.6, "end": 2284.44, "text": " Now, if you were to look at this from the perspective of, yes, computers have glitches, then, and you need a backup system to help with that."}, {"id": 836, "start": 2284.52, "end": 2285.44, "text": " I mean, airplanes do this."}, {"id": 837, "start": 2285.5, "end": 2286.42, "text": " It have been for years."}, {"id": 838, "start": 2286.7, "end": 2292.58, "text": " Yeah, I really think that a lot of the autonomous vehicle industry is going to be modeled after the airplane, the airline industry."}, {"id": 839, "start": 2292.8, "end": 2294.22, "text": " Yeah, I can agree with that."}, {"id": 840, "start": 2295.04, "end": 2301.36, "text": " But they're saying that they come up with this idea just mainly to deal with glitches and other types of failures within the system."}, {"id": 841, "start": 2302.5, "end": 2304.02, "text": " But as you'll find out..."}, {"id": 842, "start": 2304.04, "end": 2312.56, "text": " Yeah, in the next segment of the show, there could be other areas where this would be useful, as in if your vehicle gets hacked."}, {"id": 843, "start": 2312.64, "end": 2314.22, "text": " Some intentional failures?"}, {"id": 844, "start": 2314.22, "end": 2325.42, "text": " Yeah, it could be this, you know, a failure that maybe would be hard to find, forensically speaking, of, you know, your brand new car crashing into a tree at high speed."}, {"id": 845, "start": 2325.6, "end": 2326.9, "text": " You know, these types of things."}, {"id": 846, "start": 2327.3, "end": 2327.42, "text": " Yeah."}, {"id": 847, "start": 2327.5, "end": 2331.84, "text": " So maybe this type of system would help to prevent those types of things."}, {"id": 848, "start": 2332.0, "end": 2334.02, "text": " Or if you're more..."}, {"id": 849, "start": 2334.02, "end": 2337.88, "text": " Like me, the technological cynic, which would be..."}, {"id": 850, "start": 2337.88, "end": 2340.68, "text": " Or it's just another point of weakness that you..."}, {"id": 851, "start": 2340.68, "end": 2341.18, "text": " Can exploit."}, {"id": 852, "start": 2341.42, "end": 2346.94, "text": " That will be exploited, and maybe someone will hack the backup system that will take over the car."}, {"id": 853, "start": 2347.2, "end": 2351.4, "text": " Or worse yet, what if the two systems come into an argument state?"}, {"id": 854, "start": 2351.78, "end": 2358.44, "text": " So, you know, the main thing that bothers me about autonomous vehicles, and I won't lie, there are some things that bother me."}, {"id": 855, "start": 2358.44, "end": 2363.34, "text": " Even though I tend to be an optimist when it comes to at least this industry, because I really want it to happen."}, {"id": 856, "start": 2363.7, "end": 2363.8, "text": " Right."}, {"id": 857, "start": 2364.02, "end": 2371.84, "text": " Is that computer systems nowadays, if I really feel like there's something wrong with my computer, I can take it apart and work on it and repair it if necessary."}, {"id": 858, "start": 2372.42, "end": 2374.62, "text": " Your cars are being built to not let you do that."}, {"id": 859, "start": 2375.44, "end": 2377.68, "text": " For several years now, the whole right to fix thing."}, {"id": 860, "start": 2377.72, "end": 2377.84, "text": " Yeah."}, {"id": 861, "start": 2378.22, "end": 2380.08, "text": " I'm a strong believer in the right to repair."}, {"id": 862, "start": 2380.4, "end": 2382.78, "text": " However, when it comes to cars, they're not..."}, {"id": 863, "start": 2382.78, "end": 2384.18, "text": " It's like there's not even an argument there."}, {"id": 864, "start": 2384.24, "end": 2385.1, "text": " They're just not letting you."}, {"id": 865, "start": 2385.86, "end": 2386.12, "text": " Right."}, {"id": 866, "start": 2386.12, "end": 2387.14, "text": " Like in certain..."}, {"id": 867, "start": 2387.14, "end": 2389.12, "text": " Like the BMW i8, as an example."}, {"id": 868, "start": 2390.78, "end": 2392.0, "text": " You can't even open the hood."}, {"id": 869, "start": 2392.22, "end": 2394.0, "text": " Yeah, I mean, you need another person to do it."}, {"id": 870, "start": 2394.02, "end": 2394.28, "text": " Right."}, {"id": 871, "start": 2394.7599999999998, "end": 2400.66, "text": " You are not capable of opening the hood, because it takes two latches that are too far apart from each other."}, {"id": 872, "start": 2400.88, "end": 2402.86, "text": " It's like turning nuclear key switches, you know?"}, {"id": 873, "start": 2402.86, "end": 2403.18, "text": " Right."}, {"id": 874, "start": 2404.6, "end": 2405.72, "text": " All right, let's take this call here."}, {"id": 875, "start": 2405.7599999999998, "end": 2406.24, "text": " Let's talk to Jeff."}, {"id": 876, "start": 2406.28, "end": 2406.94, "text": " Hey, Jeff, how are you?"}, {"id": 877, "start": 2407.64, "end": 2408.58, "text": " Hey, I'm good, Mike."}, {"id": 878, "start": 2408.9, "end": 2416.04, "text": " You know, the car thing, it could be similar to the muscle cars of the 60s being simple that I could pull apart and work on."}, {"id": 879, "start": 2416.6, "end": 2423.08, "text": " And the ones of today with all the chips and tubes and everything like that, I think there's a parallel there."}, {"id": 880, "start": 2423.36, "end": 2423.68, "text": " Yeah."}, {"id": 881, "start": 2424.02, "end": 2433.64, "text": " I think that there's an option here where I think we're going to see a resurgence of open source just based on, like, the next hour of this show."}, {"id": 882, "start": 2433.7599999999998, "end": 2436.68, "text": " That's so weird to me, the concept of flashing new firmware to your car."}, {"id": 883, "start": 2437.44, "end": 2443.58, "text": " So I think that we're going to see people that are building replacements for vehicles where you can say,"}, {"id": 884, "start": 2443.7, "end": 2447.68, "text": " do you not want that closed system that has these built-in back doors?"}, {"id": 885, "start": 2448.28, "end": 2450.2599999999998, "text": " Well, here's an open source flash for your car."}, {"id": 886, "start": 2450.42, "end": 2452.7599999999998, "text": " We'll reprogram the car, and you can do whatever you want to it."}, {"id": 887, "start": 2453.3, "end": 2453.9, "text": " Wrong, Rev."}, {"id": 888, "start": 2453.9, "end": 2454.0, "text": " No."}, {"id": 889, "start": 2454.02, "end": 2455.06, "text": " Remember, I bricked my car."}, {"id": 890, "start": 2455.3, "end": 2456.08, "text": " Don't brick the car."}, {"id": 891, "start": 2456.74, "end": 2458.58, "text": " So what can we do for you, Jeff?"}, {"id": 892, "start": 2458.98, "end": 2459.3, "text": " Okay."}, {"id": 893, "start": 2459.9, "end": 2460.94, "text": " Two questions for you."}, {"id": 894, "start": 2460.98, "end": 2462.12, "text": " One is with Outlook."}, {"id": 895, "start": 2462.2599999999998, "end": 2469.6, "text": " I've got a Gmail account that I'm pulling in from Outlook 2016 on the desktop, and it gets a lot of spam."}, {"id": 896, "start": 2469.98, "end": 2474.28, "text": " The filters catch it, but I like to just make a rule."}, {"id": 897, "start": 2474.48, "end": 2477.62, "text": " If I sort it by, in the spam folder, I sort it by from."}, {"id": 898, "start": 2477.8, "end": 2483.46, "text": " And if I get a whole bunch from my one address, I create a rule and it said always move to the trash."}, {"id": 899, "start": 2483.58, "end": 2484.0, "text": " So I don't."}, {"id": 900, "start": 2484.02, "end": 2485.56, "text": " I don't have to sort through all this stuff."}, {"id": 901, "start": 2485.82, "end": 2485.9, "text": " Right."}, {"id": 902, "start": 2486.24, "end": 2487.58, "text": " Is there any downside to that?"}, {"id": 903, "start": 2487.68, "end": 2489.56, "text": " Am I going to get so many rules in there?"}, {"id": 904, "start": 2489.6, "end": 2495.86, "text": " I've done quite a few that's going to bog the system down, or am I going about this the wrong way?"}, {"id": 905, "start": 2496.04, "end": 2496.7, "text": " I mean, it depends."}, {"id": 906, "start": 2496.9, "end": 2499.32, "text": " Is your computer a potato, or is it a decent computer?"}, {"id": 907, "start": 2500.04, "end": 2501.0, "text": " That's a decent one, yeah."}, {"id": 908, "start": 2501.16, "end": 2502.7, "text": " It would have to be a lot of rules."}, {"id": 909, "start": 2503.2, "end": 2504.4, "text": " Yeah, you would have to."}, {"id": 910, "start": 2505.4, "end": 2507.7, "text": " I mean, one of the things you can do is sort of combine rules."}, {"id": 911, "start": 2508.06, "end": 2513.86, "text": " As an example, I have a rule that is a bad word rule."}, {"id": 912, "start": 2514.02, "end": 2514.46, "text": " Right?"}, {"id": 913, "start": 2514.74, "end": 2522.02, "text": " And we're not talking like naughty language or anything, but there are specific words and characters that are used very often in spam messages."}, {"id": 914, "start": 2522.52, "end": 2526.36, "text": " And so that single rule, I just keep adding different qualifiers for."}, {"id": 915, "start": 2526.62, "end": 2531.56, "text": " It's like if it's this word, or this word, or this word, and I just keep adding to that one."}, {"id": 916, "start": 2531.6, "end": 2532.56, "text": " It's still one rule."}, {"id": 917, "start": 2533.32, "end": 2537.64, "text": " So you can take rules and combine them when it really comes down to it."}, {"id": 918, "start": 2538.02, "end": 2538.46, "text": " Okay."}, {"id": 919, "start": 2538.6, "end": 2541.06, "text": " So like Russian wives or something like that."}, {"id": 920, "start": 2541.06, "end": 2543.84, "text": " Yeah, you may just have to go in there every now and then and kind of combine all your rules."}, {"id": 921, "start": 2544.62, "end": 2544.98, "text": " Gotcha."}, {"id": 922, "start": 2545.42, "end": 2545.7, "text": " Okay."}, {"id": 923, "start": 2545.98, "end": 2550.66, "text": " But yeah, as long as you've got a decent computer, you can put pretty much as many rules as you want in there."}, {"id": 924, "start": 2550.82, "end": 2554.78, "text": " I doubt that I would go over 1,000 or so."}, {"id": 925, "start": 2556.28, "end": 2559.74, "text": " And if you need that many rules, you've got something else going on."}, {"id": 926, "start": 2560.02, "end": 2568.8, "text": " And as far as we need to have a conversation about how you were getting on all of these lists in the first place."}, {"id": 927, "start": 2569.2, "end": 2569.64, "text": " Right."}, {"id": 928, "start": 2570.4, "end": 2571.2599999999998, "text": " That was a one-time."}, {"id": 929, "start": 2571.36, "end": 2572.7, "text": " I know what happened."}, {"id": 930, "start": 2572.86, "end": 2573.54, "text": " It was a one-time."}, {"id": 931, "start": 2574.02, "end": 2576.72, "text": " It was a weird site that I gave out, divulged my email."}, {"id": 932, "start": 2576.88, "end": 2579.12, "text": " And after that, it was a boom."}, {"id": 933, "start": 2579.38, "end": 2581.2, "text": " So yeah, that was my own fault."}, {"id": 934, "start": 2581.42, "end": 2586.24, "text": " And there's some additional spam filtering that can be done, especially if you're willing to move to like a private domain."}, {"id": 935, "start": 2587.38, "end": 2588.86, "text": " Like, you know, a domain that you own."}, {"id": 936, "start": 2589.04, "end": 2592.4, "text": " Then you have a lot more options as far as what you can do for spam filtering."}, {"id": 937, "start": 2592.82, "end": 2603.82, "text": " And you can teach the Google spam filter a lot if you go into the actual Gmail site and start flagging messages."}, {"id": 938, "start": 2604.02, "end": 2609.68, "text": " But if you don't have that there, then it gives you some extra functionality as far as spam filtering is concerned."}, {"id": 939, "start": 2609.88, "end": 2610.38, "text": " Great."}, {"id": 940, "start": 2610.58, "end": 2616.58, "text": " Lastly, you guys talk about antivirus and like malware bites and stuff."}, {"id": 941, "start": 2616.78, "end": 2620.14, "text": " One thing I do not know about is firewall settings."}, {"id": 942, "start": 2620.34, "end": 2622.54, "text": " There's firewall settings on the router."}, {"id": 943, "start": 2622.74, "end": 2623.94, "text": " There's Windows firewall."}, {"id": 944, "start": 2624.14, "end": 2626.94, "text": " First of all, what does that do, the firewall?"}, {"id": 945, "start": 2627.14, "end": 2633.78, "text": " And is there anything other than what it's going to set up automatically for me that we need to set up to be safer?"}, {"id": 946, "start": 2634.02, "end": 2636.98, "text": " Well, we'll have to cover that in the next hour here just because we're out of time."}, {"id": 947, "start": 2637.64, "end": 2640.2599999999998, "text": " But basically, you don't really need it."}, {"id": 948, "start": 2640.42, "end": 2642.2, "text": " Thanks for listening to the first hour of the Computer Guru Show."}, {"id": 949, "start": 2642.28, "end": 2645.14, "text": " My name is Mike, and we'll be right back after these messages."}, {"id": 950, "start": 2654.74, "end": 2659.14, "text": " If you love to read but often find you don't have the time to do so, check out Audible."}, {"id": 951, "start": 2659.78, "end": 2663.98, "text": " They have more than 180,000 audiobooks in their library, and you can listen to them on your phone,"}, {"id": 952, "start": 2664.06, "end": 2665.2599999999998, "text": " tablet, or computer."}, {"id": 953, "start": 2665.46, "end": 2671.2599999999998, "text": " Learn more and get a free book with your 30-day trial by going to audibletrial.com slash gurushow."}, {"id": 954, "start": 2672.58, "end": 2673.66, "text": " We love doing this show."}, {"id": 955, "start": 2673.86, "end": 2675.78, "text": " It's pretty expensive, though, so we could use your help."}, {"id": 956, "start": 2675.98, "end": 2680.58, "text": " For as little as a dollar a month, you can help us keep the lights on as well as contribute to our fun side projects."}, {"id": 957, "start": 2680.78, "end": 2686.58, "text": " You'll be funding everything from tech tutorial videos that we'll be putting on our YouTube channel to crazy stuff like melting Furbies with thermite."}, {"id": 958, "start": 2686.78, "end": 2687.54, "text": " We're not joking."}, {"id": 959, "start": 2687.74, "end": 2690.2599999999998, "text": " We actually did that, and our Patreon supporters made it happen."}, {"id": 960, "start": 2690.46, "end": 2693.34, "text": " With your contribution, you'll not only get access to that content and more,"}, {"id": 961, "start": 2693.34, "end": 2695.26, "text": " but you'll help us create more in the future."}, {"id": 962, "start": 2695.46, "end": 2702.98, "text": " We even have rewards set up, depending on your contribution level, where you can do things like advertise your business with us or even be a guest on the show to talk about whatever you want."}, {"id": 963, "start": 2703.1800000000003, "end": 2707.5, "text": " If you'd like to get started, go to gurushow.com and click the Patreon logo."}, {"id": 964, "start": 2723.34, "end": 2725.7000000000003, "text": " The computer guru is here."}, {"id": 965, "start": 2725.7400000000002, "end": 2727.02, "text": " Thank God you're here."}, {"id": 966, "start": 2727.1200000000003, "end": 2728.1400000000003, "text": " Call in now."}, {"id": 967, "start": 2728.38, "end": 2731.28, "text": " Now, it's Mike Swanson, your computer guru."}, {"id": 968, "start": 2732.32, "end": 2736.1200000000003, "text": " Hello, my name is Mike, here to deal with your technology needs and treat you like a person in the process."}, {"id": 969, "start": 2736.28, "end": 2740.02, "text": " This is the Computer Guru Show, and you can reach us at 520-790-2040."}, {"id": 970, "start": 2740.2200000000003, "end": 2744.1800000000003, "text": " That's 520-790-2040 if you'd like to be part of the show."}, {"id": 971, "start": 2744.38, "end": 2747.02, "text": " This is the second spicier hour of the Computer Guru Show."}, {"id": 972, "start": 2747.04, "end": 2747.98, "text": " Slightly spicier hour."}, {"id": 973, "start": 2748.02, "end": 2749.42, "text": " We're going to start with a little bit of follow-up."}, {"id": 974, "start": 2749.42, "end": 2752.88, "text": " We're going to first answer Jeff's question from the last hour, which is talking about Facebook."}, {"id": 975, "start": 2752.88, "end": 2760.88, "text": " I'm sorry, about firewalls and how useful they are or how I view them as are not."}, {"id": 976, "start": 2762.78, "end": 2766.1, "text": " There is something to be said for hardware firewalls."}, {"id": 977, "start": 2766.36, "end": 2775.44, "text": " We'll just go ahead and throw that out of the way at first, which is nice, decent firewall hardware that you install at your location."}, {"id": 978, "start": 2775.6400000000003, "end": 2778.2200000000003, "text": " And those are becoming more and more useful in the home."}, {"id": 979, "start": 2778.42, "end": 2782.54, "text": " Yeah, and they definitely are, where you can control different types of traffic."}, {"id": 980, "start": 2782.88, "end": 2788.54, "text": " And it's a separated system from the rest of your computer setup."}, {"id": 981, "start": 2788.7400000000002, "end": 2797.9, "text": " And that way, if your machine gets an infection, it can't go in and modify firewall rules without your being notified of it."}, {"id": 982, "start": 2798.1, "end": 2801.1, "text": " So hardware firewalls, I think, are useful."}, {"id": 983, "start": 2801.3, "end": 2807.06, "text": " I think that software firewalls that are built into your operating system are nearly useless."}, {"id": 984, "start": 2807.26, "end": 2808.78, "text": " It's like a nice thought, you know?"}, {"id": 985, "start": 2808.98, "end": 2810.58, "text": " Right. It's one of those things."}, {"id": 986, "start": 2810.78, "end": 2812.58, "text": " It's kind of a..."}, {"id": 987, "start": 2812.88, "end": 2816.82, "text": " It makes you feel better, but it's like most antivirus, right?"}, {"id": 988, "start": 2816.88, "end": 2821.34, "text": " The ones that have all the flashy lights and say, we protect you from everything, and they really don't."}, {"id": 989, "start": 2821.46, "end": 2823.1400000000003, "text": " They just make you feel safer."}, {"id": 990, "start": 2824.9, "end": 2835.62, "text": " Much like the Mac operating system in general, which makes you feel safe, but really doesn't have any additional safety benefits other than it's not really all that popular."}, {"id": 991, "start": 2836.36, "end": 2840.56, "text": " So that's the only safety that you have."}, {"id": 992, "start": 2840.56, "end": 2841.6600000000003, "text": " That's so sad."}, {"id": 993, "start": 2842.88, "end": 2847.06, "text": " Because there's not enough of you to make you useful on a monetary level."}, {"id": 994, "start": 2847.86, "end": 2850.88, "text": " So, yeah, that's about it."}, {"id": 995, "start": 2851.0, "end": 2856.92, "text": " Firewalls, first of all, are easily evaded and don't do a whole lot for you."}, {"id": 996, "start": 2857.04, "end": 2865.6800000000003, "text": " Inbound, yes, it can help you to a certain degree of script kitties or people that don't know what they're doing."}, {"id": 997, "start": 2865.76, "end": 2867.36, "text": " Yeah, it filters out the script kitties."}, {"id": 998, "start": 2867.36, "end": 2867.8, "text": " Right."}, {"id": 999, "start": 2868.08, "end": 2872.6, "text": " It's much along the same lines as locking your home, really."}, {"id": 1000, "start": 2872.88, "end": 2873.04, "text": " Right."}, {"id": 1001, "start": 2873.08, "end": 2874.32, "text": " That's the firewall to your house."}, {"id": 1002, "start": 2874.42, "end": 2875.32, "text": " Keeps the honest people out."}, {"id": 1003, "start": 2875.42, "end": 2875.54, "text": " Right."}, {"id": 1004, "start": 2875.6, "end": 2876.48, "text": " Keeps honest people out."}, {"id": 1005, "start": 2876.58, "end": 2879.96, "text": " If they want in, they're getting in, and that's doing nothing to stop them."}, {"id": 1006, "start": 2880.58, "end": 2884.78, "text": " So it might make a little noise, but that's about it."}, {"id": 1007, "start": 2884.94, "end": 2888.84, "text": " So, yeah, the firewall thing is not super useful."}, {"id": 1008, "start": 2889.1400000000003, "end": 2897.04, "text": " I find that antiviruses that want to manage your firewall rules tend to be more of a pain in the butt than they're worth."}, {"id": 1009, "start": 2897.7000000000003, "end": 2901.78, "text": " So, yeah, just, you know, the defaults are fine."}, {"id": 1010, "start": 2901.78, "end": 2913.0, "text": " And if you really want that added layer of security from your built-in firewall, set your machine to public so it shuts down all of the unused or dangerous ports for the most part."}, {"id": 1011, "start": 2913.1400000000003, "end": 2917.3, "text": " But it's a almost fictional level of security."}, {"id": 1012, "start": 2917.8, "end": 2921.6400000000003, "text": " Yeah, and if you're doing anything, like, related to home automation, you're going to need a hardware firewall."}, {"id": 1013, "start": 2922.1400000000003, "end": 2924.0400000000004, "text": " And we're going to be talking more about that soon."}, {"id": 1014, "start": 2924.3, "end": 2926.8, "text": " Yep, that's on the list of things to do."}, {"id": 1015, "start": 2926.8, "end": 2931.42, "text": " I will say that it has been an ongoing project for me at Computer Guru to bypass our hardware firewall."}, {"id": 1016, "start": 2931.78, "end": 2933.34, "text": " And so far, I've had virtually no luck."}, {"id": 1017, "start": 2934.32, "end": 2935.0, "text": " Which is great."}, {"id": 1018, "start": 2935.1800000000003, "end": 2936.78, "text": " It's a difficult one to crack."}, {"id": 1019, "start": 2937.2200000000003, "end": 2938.7400000000002, "text": " Even inside the network."}, {"id": 1020, "start": 2938.9, "end": 2945.9, "text": " All of the, yeah, all of the attacks that I've been able to do are like, I turned the firewall off, and I bypassed the network by signing into it."}, {"id": 1021, "start": 2947.48, "end": 2948.8, "text": " Yeah, nice."}, {"id": 1022, "start": 2950.1000000000004, "end": 2954.26, "text": " So the hardware firewalls play a, I mean, if they're set up properly."}, {"id": 1023, "start": 2954.42, "end": 2958.96, "text": " Yeah, I've actually been, I've been thinking about having, you know, we've been talking about doing some kind of an event at the shop."}, {"id": 1024, "start": 2959.3, "end": 2961.76, "text": " I think part of that will set up a dummy home network."}, {"id": 1025, "start": 2961.94, "end": 2964.2200000000003, "text": " And we have a couple other hardware firewalls there."}, {"id": 1026, "start": 2964.4, "end": 2966.82, "text": " And I want to show, this is what happens when it's plugged in."}, {"id": 1027, "start": 2966.92, "end": 2968.34, "text": " This is what happens when it's not plugged in."}, {"id": 1028, "start": 2968.5, "end": 2970.78, "text": " The difference, just in having that piece on your network."}, {"id": 1029, "start": 2971.4, "end": 2971.6000000000004, "text": " Yep."}, {"id": 1030, "start": 2971.92, "end": 2973.82, "text": " And that's even from inside."}, {"id": 1031, "start": 2974.2400000000002, "end": 2980.26, "text": " You know, for all the flack that Windows 10 gets, and especially for me, we're going to do a little bit of talking about why you shouldn't be on Windows 7 as well."}, {"id": 1032, "start": 2980.78, "end": 2981.6000000000004, "text": " Yeah, because."}, {"id": 1033, "start": 2981.78, "end": 2982.6200000000003, "text": " Because you really shouldn't be."}, {"id": 1034, "start": 2983.1800000000003, "end": 2984.82, "text": " There's some, there's some dangers."}, {"id": 1035, "start": 2985.34, "end": 2986.84, "text": " There's just a little bit of danger involved."}, {"id": 1036, "start": 2986.96, "end": 2987.8, "text": " Let's go ahead and talk to Denise."}, {"id": 1037, "start": 2987.9, "end": 2988.6600000000003, "text": " Hello, Denise, how are you?"}, {"id": 1038, "start": 2990.4, "end": 2990.76, "text": " Hello."}, {"id": 1039, "start": 2990.76, "end": 2991.44, "text": " Hello there."}, {"id": 1040, "start": 2991.78, "end": 2993.6800000000003, "text": " How are you?"}, {"id": 1041, "start": 2993.8, "end": 2994.38, "text": " I'm lovely."}, {"id": 1042, "start": 2994.48, "end": 2995.2000000000003, "text": " What can I do for you?"}, {"id": 1043, "start": 2996.0, "end": 3001.78, "text": " Well, I have a Toshiba laptop that I got a big update a couple weeks ago from Microsoft."}, {"id": 1044, "start": 3002.9, "end": 3005.2200000000003, "text": " And since then, my spacebar doesn't work."}, {"id": 1045, "start": 3006.0600000000004, "end": 3015.7000000000003, "text": " And, like, my 1 through 5 on the keyboard, not the 10-key portion of it, don't work unless I hold the Fn key in."}, {"id": 1046, "start": 3015.96, "end": 3018.48, "text": " So, on a scale of 1 to 5, how would you rate that update?"}, {"id": 1047, "start": 3020.48, "end": 3021.48, "text": " All right."}, {"id": 1048, "start": 3021.78, "end": 3030.8, "text": " So, yeah, there's a, there's a piece of software that's involved with controlling function keys and how they, how they, your keyboard interacts with you."}, {"id": 1049, "start": 3031.5400000000004, "end": 3034.6600000000003, "text": " And it sounds to me like that software is broken."}, {"id": 1050, "start": 3035.5400000000004, "end": 3036.1400000000003, "text": " Okay."}, {"id": 1051, "start": 3036.76, "end": 3049.34, "text": " So, there, if you go to the Toshiba website and, and go to the support site that's specific to your model, there's, I, I can almost guarantee without even looking that there's going to be a,"}, {"id": 1052, "start": 3049.34, "end": 3051.5400000000004, "text": " here's a really important update you should get."}, {"id": 1053, "start": 3051.78, "end": 3055.36, "text": " For this particular machine in regards to the keyboard."}, {"id": 1054, "start": 3055.76, "end": 3058.92, "text": " And they're often called hotkey updates."}, {"id": 1055, "start": 3059.92, "end": 3060.5600000000004, "text": " All right."}, {"id": 1056, "start": 3060.6400000000003, "end": 3065.5600000000004, "text": " Yeah, because when I go into the settings and I go to the keyboard, it shows that everything's up to date and."}, {"id": 1057, "start": 3066.1000000000004, "end": 3068.2200000000003, "text": " Yeah, that's, that's pretty much not going to matter."}, {"id": 1058, "start": 3068.6200000000003, "end": 3069.02, "text": " Okay."}, {"id": 1059, "start": 3069.02, "end": 3070.5, "text": " Because it doesn't know that it's broken."}, {"id": 1060, "start": 3071.5800000000004, "end": 3072.1400000000003, "text": " Oh, okay."}, {"id": 1061, "start": 3072.1400000000003, "end": 3078.28, "text": " So, I would go to the Toshiba website and get the right software, the updated software for the hotkey driver for your machine."}, {"id": 1062, "start": 3079.42, "end": 3079.82, "text": " Wonderful."}, {"id": 1063, "start": 3079.82, "end": 3081.7400000000002, "text": " Which is probably going to solve your problem."}, {"id": 1064, "start": 3081.78, "end": 3083.42, "text": " As, as it regards to function keys."}, {"id": 1065, "start": 3083.42, "end": 3099.1400000000003, "text": " Now, there's another option that you can do on certain machines, and I don't know if yours is going to support this, but if you can get into the BIOS settings, there is an option for the function key to be defaulted on or defaulted off, and you could try switching that to see if that helps your problem."}, {"id": 1066, "start": 3100.4, "end": 3100.96, "text": " Okay."}, {"id": 1067, "start": 3101.6600000000003, "end": 3111.5400000000004, "text": " But this does happen on occasion with the, this is one of the reasons I don't like all of the hotkey drivers that, that manufacturers like to put on laptops these days."}, {"id": 1068, "start": 3111.54, "end": 3116.7799999999997, "text": " They want to, like, they want to use all of the keys for all of the things, and they should stop that."}, {"id": 1069, "start": 3116.7799999999997, "end": 3122.22, "text": " It's, in my opinion, it's dumb, because it causes this exact problem."}, {"id": 1070, "start": 3122.22, "end": 3125.66, "text": " Right, yeah, because it worked fine until I got a big Windows update."}, {"id": 1071, "start": 3125.66, "end": 3126.16, "text": " Right."}, {"id": 1072, "start": 3126.16, "end": 3128.96, "text": " And then my, it's kind of hard when your space bar doesn't work."}, {"id": 1073, "start": 3128.96, "end": 3140.66, "text": " Yeah, and, and a portion of this is going to be that you're, if you got a large update from Microsoft, that means that's probably the anniversary update, which is almost a year old, which means you're way behind on updates."}, {"id": 1074, "start": 3140.66, "end": 3141.16, "text": " Yeah."}, {"id": 1075, "start": 3141.54, "end": 3151.5, "text": " And so part of that problem is going to be that, that there is a time lag here, where all of the other software has been updated, and you are late to the party."}, {"id": 1076, "start": 3151.8, "end": 3157.24, "text": " And so your, your penalty is that, for right now, your keyboard doesn't work until you go and get those other drivers."}, {"id": 1077, "start": 3158.08, "end": 3158.48, "text": " Okay."}, {"id": 1078, "start": 3158.82, "end": 3168.08, "text": " So you can get around this by just using the mouse, of course, to get your updates, or hook up an external keyboard, which won't have those problems."}, {"id": 1079, "start": 3169.7, "end": 3170.1, "text": " Okay."}, {"id": 1080, "start": 3170.66, "end": 3171.06, "text": " So."}, {"id": 1081, "start": 3171.06, "end": 3175.52, "text": " Well, great, I was hoping you weren't going to say, oh, you need to go get a new laptop."}, {"id": 1082, "start": 3175.52, "end": 3176.94, "text": " Well, you don't."}, {"id": 1083, "start": 3176.94, "end": 3178.02, "text": " That's only if you have a Mac."}, {"id": 1084, "start": 3178.02, "end": 3186.32, "text": " Well, that's coming up, but, no, you don't need a new machine, you just need to go get the right software to run the, the special keys."}, {"id": 1085, "start": 3186.32, "end": 3188.82, "text": " Oh, great, well, thank you so much."}, {"id": 1086, "start": 3188.82, "end": 3189.98, "text": " All right, thanks for the call."}, {"id": 1087, "start": 3189.98, "end": 3191.18, "text": " I have special keys."}, {"id": 1088, "start": 3191.18, "end": 3191.68, "text": " Bye-bye."}, {"id": 1089, "start": 3191.68, "end": 3192.48, "text": " You have special keys?"}, {"id": 1090, "start": 3192.48, "end": 3195.86, "text": " This reminded me of that, that contact lenses commercial, my brand."}, {"id": 1091, "start": 3195.86, "end": 3199.56, "text": " Press my buttons, please."}, {"id": 1092, "start": 3199.56, "end": 3200.52, "text": " All right, 79024."}, {"id": 1093, "start": 3200.52, "end": 3202.28, "text": " 79024, if you'd like to be a part of the show."}, {"id": 1094, "start": 3203.28, "end": 3206.52, "text": " Oh, so we, so we only have like a minute and a half."}, {"id": 1095, "start": 3206.52, "end": 3207.94, "text": " Yeah, we're not going to be able to do it this segment."}, {"id": 1096, "start": 3208.32, "end": 3210.28, "text": " So should we just tease what's coming up next?"}, {"id": 1097, "start": 3210.28, "end": 3212.7599999999998, "text": " Yeah, how do you like your Computer Guru show, spicy or mild?"}, {"id": 1098, "start": 3213.02, "end": 3215.06, "text": " Yeah, that's what I, it's about to get spicy."}, {"id": 1099, "start": 3215.06, "end": 3219.78, "text": " It's about to get a little bit spicy, especially if you have an Apple anything."}, {"id": 1100, "start": 3220.24, "end": 3220.74, "text": " Yeah."}, {"id": 1101, "start": 3220.74, "end": 3224.28, "text": " Because there's going to be a certain, certain amount of conversation."}, {"id": 1102, "start": 3224.28, "end": 3229.64, "text": " And, you know, this one, I, I hate when I have to do this, I hate when I have to defend something I don't like, but it's not really there for me."}, {"id": 1103, "start": 3229.64, "end": 3230.52, "text": " But it's not really there for me."}, {"id": 1104, "start": 3230.52, "end": 3231.36, "text": " It's not really their fault that much."}, {"id": 1105, "start": 3231.36, "end": 3233.36, "text": " It's not at all, actually, their fault."}, {"id": 1106, "start": 3233.36, "end": 3247.68, "text": " It's, this is, this is one of those things, it's like, to kind of preview where we're going here is that over the last couple of weeks, there's been a couple of very large WikiLeaks dumps about the CIA."}, {"id": 1107, "start": 3247.68, "end": 3251.82, "text": " Like of proportions where you'd be wearing a tinfoil hat if you'd just been some dude telling people this."}, {"id": 1108, "start": 3251.82, "end": 3257.52, "text": " Right, so a month ago, if you're going, you know what, this, this is actually happening."}, {"id": 1109, "start": 3257.52, "end": 3259.14, "text": " I'd have been like, all right, man, you know."}, {"id": 1110, "start": 3259.14, "end": 3260.32, "text": " You'd be like, you're kind of crazy."}, {"id": 1111, "start": 3260.32, "end": 3262.82, "text": " Because, because that just doesn't happen."}, {"id": 1112, "start": 3262.82, "end": 3264.6200000000003, "text": " And the earth is flat too, right?"}, {"id": 1113, "start": 3264.6200000000003, "end": 3266.52, "text": " Well, I mean, it actually is though, so."}, {"id": 1114, "start": 3266.52, "end": 3268.5800000000004, "text": " Stop it."}, {"id": 1115, "start": 3268.5800000000004, "end": 3275.28, "text": " Yeah, there's, there is some like persistent stuff."}, {"id": 1116, "start": 3275.28, "end": 3287.02, "text": " And, and if you're in the technology world, when, when you talk about persistence, like, let's say that, you know what, let's just go ahead and factory reset to just go ahead and get around this problem."}, {"id": 1117, "start": 3287.02, "end": 3290.1600000000003, "text": " Persistence is the ability for that malware infection to survive."}, {"id": 1118, "start": 3290.16, "end": 3292.0, "text": " Survive a factory reset."}, {"id": 1119, "start": 3292.0, "end": 3293.8599999999997, "text": " So it goes, aw, that was cute."}, {"id": 1120, "start": 3293.8599999999997, "end": 3296.3999999999996, "text": " Or let's say for instance, you're like, you know what I'm going to do?"}, {"id": 1121, "start": 3296.3999999999996, "end": 3300.96, "text": " I'm just going to yank the hard drive out of this thing, put a brand new drive in and start from scratch."}, {"id": 1122, "start": 3300.96, "end": 3302.5, "text": " Surely, surely that got it."}, {"id": 1123, "start": 3302.5, "end": 3304.3999999999996, "text": " Nope, nope, that didn't get it either."}, {"id": 1124, "start": 3304.3999999999996, "end": 3308.96, "text": " This is like back in the day when printer infections meant you had to throw your printer away to get rid of it."}, {"id": 1125, "start": 3308.96, "end": 3315.2, "text": " Yeah, it's, this is, and now even throwing away your device is not going to save you."}, {"id": 1126, "start": 3315.2, "end": 3319.7, "text": " That's, that's the scary part of this because, oh yeah."}, {"id": 1127, "start": 3319.7000000000003, "end": 3324.44, "text": " There's, there's some stuff like, as an example, just a, just a quick, quick little teaser here."}, {"id": 1128, "start": 3324.44, "end": 3330.94, "text": " Let's say that your computer gets an infection and it knows that you're, you're pretty savvy about these things, this infection."}, {"id": 1129, "start": 3330.94, "end": 3333.6400000000003, "text": " So it says, I'm going to go ahead and infect your peripherals."}, {"id": 1130, "start": 3333.6400000000003, "end": 3347.5400000000004, "text": " So that way, when you throw away your computer and go get a new one that we can reinfect the machine while it's booting before anything ever happens, it just, it just has to appear."}, {"id": 1131, "start": 3347.5400000000004, "end": 3349.0400000000004, "text": " That is craziness."}, {"id": 1132, "start": 3349.04, "end": 3352.7, "text": " And their response, you know, the official response to this, oh, it's not a hack, it's a feature."}, {"id": 1133, "start": 3353.64, "end": 3354.14, "text": " Oh yeah."}, {"id": 1134, "start": 3354.7799999999997, "end": 3357.48, "text": " Why, why did you tell people is the CIA's response?"}, {"id": 1135, "start": 3357.5, "end": 3357.8, "text": " You need this, you need it."}, {"id": 1136, "start": 3358.18, "end": 3359.2799999999997, "text": " You need this to be safe."}, {"id": 1137, "start": 3359.36, "end": 3360.34, "text": " Think about the children, will you?"}, {"id": 1138, "start": 3361.48, "end": 3363.34, "text": " 790-2040 if you'd like to be part of the show."}, {"id": 1139, "start": 3364.24, "end": 3369.74, "text": " We're going to take a, a calming break before we go all kinds of spicy on the Computer Guru Show."}, {"id": 1140, "start": 3370.02, "end": 3370.54, "text": " Be right back."}, {"id": 1141, "start": 3379.04, "end": 3393.7, "text": " Your computer guru, Mike Swanson, is here to help you tame that beast of a machine."}, {"id": 1142, "start": 3394.2599999999998, "end": 3397.5, "text": " Join the chat right now at gurushow.com or call in."}, {"id": 1143, "start": 3397.72, "end": 3401.12, "text": " This is the Computer Guru Show on KVOY, The Voice."}, {"id": 1144, "start": 3401.92, "end": 3405.18, "text": " I'm nerdy, indie, extreme, and whiter than sour cream."}, {"id": 1145, "start": 3405.52, "end": 3408.44, "text": " I was in A.V. Club and Glee Club and even the chess team."}, {"id": 1146, "start": 3408.52, "end": 3409.0, "text": " Only question."}, {"id": 1147, "start": 3409.12, "end": 3410.08, "text": " I never thought it was hard."}, {"id": 1148, "start": 3410.18, "end": 3411.7799999999997, "text": " What do I like, Kirk, or do I like my card?"}, {"id": 1149, "start": 3411.96, "end": 3413.8, "text": " Spend every weekend at the Renaissance Fair."}, {"id": 1150, "start": 3413.86, "end": 3415.02, "text": " Got my name on my underwear."}, {"id": 1151, "start": 3415.6, "end": 3417.08, "text": " They see me strolling."}, {"id": 1152, "start": 3418.02, "end": 3419.96, "text": " Welcome back to the Computer Guru Show."}, {"id": 1153, "start": 3420.48, "end": 3425.7599999999998, "text": " Spicy edition 790-2040 if you'd like to comment on what we're talking about now."}, {"id": 1154, "start": 3426.14, "end": 3429.96, "text": " And now's the part where I have to stand up for something I don't like, which I don't like doing."}, {"id": 1155, "start": 3430.36, "end": 3430.7, "text": " All right."}, {"id": 1156, "start": 3431.0, "end": 3431.88, "text": " Stand up for it then."}, {"id": 1157, "start": 3432.4, "end": 3436.86, "text": " You know, we're going to be talking about all of these massive drops that have happened, you know."}, {"id": 1158, "start": 3436.86, "end": 3437.08, "text": " Right."}, {"id": 1159, "start": 3437.46, "end": 3439.02, "text": " And maybe you can introduce them."}, {"id": 1160, "start": 3439.08, "end": 3440.94, "text": " This is a little bit better than me, but what's going on with Apple?"}, {"id": 1161, "start": 3441.48, "end": 3441.8, "text": " All right."}, {"id": 1162, "start": 3441.88, "end": 3447.32, "text": " So there are a number of leaks that have happened recently regarding WikiLeaks."}, {"id": 1163, "start": 3447.32, "end": 3456.88, "text": " And apparently some things have come to light about the hacking capabilities of the CIA when it comes to different types of devices."}, {"id": 1164, "start": 3457.68, "end": 3461.52, "text": " Now, we've known about things like Stuxnet for years now, which is\u2026"}, {"id": 1165, "start": 3461.52, "end": 3466.7599999999998, "text": " Which I've begrudgingly admired as one of the greatest examples of infiltration and hacking that has ever occurred."}, {"id": 1166, "start": 3467.22, "end": 3467.58, "text": " Right."}, {"id": 1167, "start": 3467.7599999999998, "end": 3468.98, "text": " And then it made it."}, {"id": 1168, "start": 3468.98, "end": 3470.2, "text": " And then it made it into the outside world."}, {"id": 1169, "start": 3470.3, "end": 3470.46, "text": " Right."}, {"id": 1170, "start": 3470.62, "end": 3478.84, "text": " Which is one of the complaints that we've always had in regards to why do you have these tools and not tell people about the vulnerabilities so that they can be fixed?"}, {"id": 1171, "start": 3478.84, "end": 3486.06, "text": " Because eventually these types of vulnerabilities are going to come to light and people that are not your friend."}, {"id": 1172, "start": 3486.54, "end": 3486.62, "text": " Right."}, {"id": 1173, "start": 3486.68, "end": 3490.16, "text": " And I mean, ethical hacking is discovering and divulging."}, {"id": 1174, "start": 3490.48, "end": 3494.2, "text": " You know, you find the exploit and then you tell them about it so they can fix it."}, {"id": 1175, "start": 3494.32, "end": 3497.98, "text": " As an example, let's say that you had an Apple computer."}, {"id": 1176, "start": 3497.98, "end": 3503.16, "text": " And an exploit or a vulnerability was found that said, you know what?"}, {"id": 1177, "start": 3503.44, "end": 3512.44, "text": " You can expose this machine to any number of exploits by doing a couple of very simple things."}, {"id": 1178, "start": 3512.86, "end": 3518.46, "text": " Someone would then, as an ethical hacker, go to Apple and say, listen, this is the vulnerability I've found."}, {"id": 1179, "start": 3518.8, "end": 3526.94, "text": " And you have X amount of time to get this resolved before it gets released, gets published, much like medical papers get published."}, {"id": 1180, "start": 3527.02, "end": 3527.14, "text": " Right."}, {"id": 1181, "start": 3527.14, "end": 3527.86, "text": " Because a lot of people\u2026"}, {"id": 1182, "start": 3527.98, "end": 3535.54, "text": " People don't recognize that there is a similarity there or a parallel that happens in the medical world where you can say,"}, {"id": 1183, "start": 3535.54, "end": 3543.72, "text": " I've noticed that this particular side effect happens or this particular type of thing happens when it comes to, you know,"}, {"id": 1184, "start": 3543.78, "end": 3557.76, "text": " like correlating or trying to link something between, like, as an example, diet, dietary intake and a certain type of cancer or these types of things where there is a correlation."}, {"id": 1185, "start": 3557.76, "end": 3564.9, "text": " A weakness is found, a study is done, and then results are published."}, {"id": 1186, "start": 3565.46, "end": 3576.8, "text": " And so in the tech world, there's a publishing that happens as well when it comes to this is the behavior that I've noticed, this is the steps to reproduce, this is how you can fix it."}, {"id": 1187, "start": 3577.3, "end": 3578.76, "text": " And if\u2026"}, {"id": 1188, "start": 3578.76, "end": 3579.96, "text": " Here's what I'm going to tell everyone."}, {"id": 1189, "start": 3580.0800000000004, "end": 3580.2400000000002, "text": " Right."}, {"id": 1190, "start": 3580.3, "end": 3586.44, "text": " I'm going to tell everyone about what I've found because these are actual scientific researchers that are doing this type of work in most cases."}, {"id": 1191, "start": 3586.44, "end": 3587.6400000000003, "text": " And it's all to protect\u2026"}, {"id": 1192, "start": 3587.76, "end": 3588.42, "text": " To protect the end user."}, {"id": 1193, "start": 3589.0400000000004, "end": 3589.28, "text": " Right."}, {"id": 1194, "start": 3589.44, "end": 3591.5400000000004, "text": " You're not doing this as a courtesy for the company."}, {"id": 1195, "start": 3591.5400000000004, "end": 3595.86, "text": " I mean, it's a courtesy to tell them, but it's really like, you're going to fix this because I'm going to tell everyone."}, {"id": 1196, "start": 3596.32, "end": 3596.44, "text": " Right."}, {"id": 1197, "start": 3596.5400000000004, "end": 3613.5200000000004, "text": " It is sort of a putting the feet to the fire when it comes to developers because overall what they're really looking for is a way to improve the standards for coding to a way to recognize that this is either a vulnerability or a weakness or a strength."}, {"id": 1198, "start": 3613.8, "end": 3616.82, "text": " And to be able to say, this is how you can reproduce this."}, {"id": 1199, "start": 3616.86, "end": 3617.7400000000002, "text": " This is how you can incorporate."}, {"id": 1200, "start": 3617.76, "end": 3620.5600000000004, "text": " This is how you can incorporate it into other types of work and other types of projects."}, {"id": 1201, "start": 3621.26, "end": 3625.32, "text": " And if you don't do this, then everyone's going to know about it."}, {"id": 1202, "start": 3625.76, "end": 3625.96, "text": " And\u2026"}, {"id": 1203, "start": 3625.96, "end": 3629.0, "text": " And by the way, that's what they mean when they say a zero-day exploit."}, {"id": 1204, "start": 3629.1600000000003, "end": 3631.5600000000004, "text": " They're saying you effectively now have zero days to fix this."}, {"id": 1205, "start": 3632.1000000000004, "end": 3632.36, "text": " Right."}, {"id": 1206, "start": 3632.42, "end": 3633.76, "text": " Because it's now known."}, {"id": 1207, "start": 3633.9, "end": 3634.1000000000004, "text": " Right."}, {"id": 1208, "start": 3634.36, "end": 3639.2000000000003, "text": " And so anything that is zero-day means that so far it is not\u2026"}, {"id": 1209, "start": 3639.2000000000003, "end": 3640.5400000000004, "text": " It is an unresolved problem."}, {"id": 1210, "start": 3640.5600000000004, "end": 3642.82, "text": " And they were almost certainly told about it a while ago."}, {"id": 1211, "start": 3643.34, "end": 3643.78, "text": " Yes."}, {"id": 1212, "start": 3643.8, "end": 3644.5, "text": " Yes, they were."}, {"id": 1213, "start": 3644.9, "end": 3647.5, "text": " So there is a certain amount of\u2026"}, {"id": 1214, "start": 3647.76, "end": 3650.5, "text": " Of exploits that are out there that nobody knew about."}, {"id": 1215, "start": 3651.0200000000004, "end": 3651.1400000000003, "text": " Right."}, {"id": 1216, "start": 3651.2400000000002, "end": 3652.2200000000003, "text": " CAA knew about them."}, {"id": 1217, "start": 3652.26, "end": 3654.32, "text": " Turns out they knew about like a lot of them."}, {"id": 1218, "start": 3654.86, "end": 3656.2000000000003, "text": " A whole bunch of them."}, {"id": 1219, "start": 3656.7400000000002, "end": 3663.2000000000003, "text": " And one of which allowed persistent hacks on Mac devices, which is terrifying."}, {"id": 1220, "start": 3664.1000000000004, "end": 3666.78, "text": " So they're infiltrating peripherals like we were talking about."}, {"id": 1221, "start": 3666.88, "end": 3668.6800000000003, "text": " So your hard drive doesn't matter at all."}, {"id": 1222, "start": 3668.82, "end": 3670.1600000000003, "text": " It's not what's being attacked."}, {"id": 1223, "start": 3670.28, "end": 3671.4, "text": " Even the computer doesn't matter."}, {"id": 1224, "start": 3671.5400000000004, "end": 3671.6800000000003, "text": " Yeah."}, {"id": 1225, "start": 3671.8, "end": 3671.96, "text": " Right."}, {"id": 1226, "start": 3672.0400000000004, "end": 3677.32, "text": " So basically the computer gets an infection, picks it up, and it can be done silently."}, {"id": 1227, "start": 3677.76, "end": 3679.7400000000002, "text": " Which is also terrifying."}, {"id": 1228, "start": 3680.48, "end": 3683.7000000000003, "text": " And it says, okay, now I need to embed myself in the environment."}, {"id": 1229, "start": 3684.1400000000003, "end": 3686.0, "text": " We talked about printers on the last segment."}, {"id": 1230, "start": 3686.38, "end": 3691.2400000000002, "text": " There's attack platforms that infiltrate printers and then affect all devices on the network based on that."}, {"id": 1231, "start": 3691.4, "end": 3692.88, "text": " Any device that talks to the printer."}, {"id": 1232, "start": 3693.2000000000003, "end": 3693.38, "text": " Right."}, {"id": 1233, "start": 3693.5400000000004, "end": 3697.1800000000003, "text": " So it also infects USB devices of all types."}, {"id": 1234, "start": 3697.6000000000004, "end": 3698.76, "text": " So you've got a flash drive."}, {"id": 1235, "start": 3698.88, "end": 3700.0800000000004, "text": " It puts itself on there."}, {"id": 1236, "start": 3700.36, "end": 3702.42, "text": " You have a USB-connected printer."}, {"id": 1237, "start": 3702.88, "end": 3704.0400000000004, "text": " It's on there."}, {"id": 1238, "start": 3704.5600000000004, "end": 3707.5400000000004, "text": " You have certain types of backup storage."}, {"id": 1239, "start": 3707.5400000000004, "end": 3707.7400000000002, "text": " It's on there."}, {"id": 1240, "start": 3707.7400000000002, "end": 3708.7200000000003, "text": " It's on your router."}, {"id": 1241, "start": 3708.96, "end": 3709.1400000000003, "text": " Your router."}, {"id": 1242, "start": 3709.36, "end": 3709.48, "text": " Yeah."}, {"id": 1243, "start": 3709.84, "end": 3717.6000000000004, "text": " These types of things are all infected, especially if they're all Mac products, because they all suffer the same weakness."}, {"id": 1244, "start": 3718.3, "end": 3723.2000000000003, "text": " And they basically look at each other, and there's a checks and balance system."}, {"id": 1245, "start": 3723.42, "end": 3725.5400000000004, "text": " So you're like, okay, I'm getting a new computer."}, {"id": 1246, "start": 3725.78, "end": 3726.9, "text": " Add a new computer to the network."}, {"id": 1247, "start": 3727.2000000000003, "end": 3731.6200000000003, "text": " That particular computer checks in with the network and says, hey, I'm a new computer."}, {"id": 1248, "start": 3731.7000000000003, "end": 3732.34, "text": " I'm here on the network."}, {"id": 1249, "start": 3732.7200000000003, "end": 3734.86, "text": " And those devices say, you need this software."}, {"id": 1250, "start": 3735.2000000000003, "end": 3736.6800000000003, "text": " And they emulate keyboards."}, {"id": 1251, "start": 3736.6800000000003, "end": 3746.0000000000005, "text": " Or network devices, which are allowed to speak to the computer without any type of security, because they're required to use the computer regardless of what's happening."}, {"id": 1252, "start": 3746.1800000000003, "end": 3748.0800000000004, "text": " You need a keyboard, and you need network."}, {"id": 1253, "start": 3748.1600000000003, "end": 3748.32, "text": " Yeah."}, {"id": 1254, "start": 3748.4800000000005, "end": 3751.1200000000003, "text": " I mean, when it comes to user input, those are called HID attacks."}, {"id": 1255, "start": 3751.2200000000003, "end": 3753.3, "text": " And this is like you mentioned the rubber ducky stuff last week."}, {"id": 1256, "start": 3753.4600000000005, "end": 3753.6200000000003, "text": " Right."}, {"id": 1257, "start": 3754.0000000000005, "end": 3759.1400000000003, "text": " I'm playing around with that right now, but that's essentially script kitty stuff compared to what the CIA has been doing this whole time."}, {"id": 1258, "start": 3759.26, "end": 3759.4, "text": " Right."}, {"id": 1259, "start": 3759.42, "end": 3764.88, "text": " They're doing stuff that we can't even comprehend from general developer standpoints."}, {"id": 1260, "start": 3765.1400000000003, "end": 3765.6200000000003, "text": " Right."}, {"id": 1261, "start": 3765.6200000000003, "end": 3765.88, "text": " So they're..."}, {"id": 1262, "start": 3765.88, "end": 3766.4600000000005, "text": " They're..."}, {"id": 1263, "start": 3766.46, "end": 3768.7200000000003, "text": " They're emulating network adapters."}, {"id": 1264, "start": 3768.98, "end": 3772.56, "text": " And those network adapters say, hey, I need these special permissions in order to get you on the internet."}, {"id": 1265, "start": 3772.64, "end": 3775.44, "text": " And the computer says, well, my first priority is to get on the internet."}, {"id": 1266, "start": 3775.82, "end": 3776.52, "text": " So, yeah, sure."}, {"id": 1267, "start": 3776.66, "end": 3777.28, "text": " Have whatever you want."}, {"id": 1268, "start": 3777.36, "end": 3778.32, "text": " What do I need to get that done?"}, {"id": 1269, "start": 3778.58, "end": 3778.78, "text": " Right."}, {"id": 1270, "start": 3778.88, "end": 3785.7400000000002, "text": " And the transaction happens where it says, okay, if you need this to get on the internet, if you need..."}, {"id": 1271, "start": 3785.7400000000002, "end": 3788.68, "text": " Because the computer can't start effectively, right?"}, {"id": 1272, "start": 3788.76, "end": 3789.52, "text": " It is..."}, {"id": 1273, "start": 3789.52, "end": 3791.36, "text": " It feels incomplete without the internet."}, {"id": 1274, "start": 3792.98, "end": 3796.36, "text": " If it can't get what it needs, it allows the permissions..."}, {"id": 1275, "start": 3796.46, "end": 3806.54, "text": " It allows the network card to elevate permissions to be able to say, okay, you need to install some special drivers because you're a network adapter and I need a network adapter."}, {"id": 1276, "start": 3806.78, "end": 3808.52, "text": " You can have whatever permissions you like."}, {"id": 1277, "start": 3808.58, "end": 3810.2200000000003, "text": " You can write to any file you like."}, {"id": 1278, "start": 3810.3, "end": 3816.86, "text": " And you can do this before there's ever any user input or even the possibility for user input to say yes or no to this."}, {"id": 1279, "start": 3817.38, "end": 3825.62, "text": " And so then it can install its software on the machine, also into the BIOS of the machine, so that even if you factory reset the machine,"}, {"id": 1280, "start": 3825.62, "end": 3829.22, "text": " as soon as you reinstall the operating system on there, the BIOS says, hey, guess what?"}, {"id": 1281, "start": 3829.2799999999997, "end": 3830.04, "text": " I have this network card."}, {"id": 1282, "start": 3830.12, "end": 3831.22, "text": " It requires these special permissions."}, {"id": 1283, "start": 3831.3599999999997, "end": 3832.46, "text": " Go ahead and give us those permissions."}, {"id": 1284, "start": 3832.64, "end": 3842.2, "text": " And even flashing your BIOS wouldn't matter, considering that it's already infected your USB drive or your adapter in this case, because they infect adapters as well."}, {"id": 1285, "start": 3842.4, "end": 3842.58, "text": " Yep."}, {"id": 1286, "start": 3842.66, "end": 3844.64, "text": " Like the, you know, on a Mac, the Thunderbolt adapters."}, {"id": 1287, "start": 3845.3199999999997, "end": 3846.94, "text": " Yeah, so the Thunderbolt Ethernet adapters."}, {"id": 1288, "start": 3847.24, "end": 3849.2799999999997, "text": " So they pose as those types of things."}, {"id": 1289, "start": 3849.52, "end": 3850.46, "text": " All right, so..."}, {"id": 1290, "start": 3850.46, "end": 3854.22, "text": " Anytime you have something between your computer and your Ethernet cable, there's a lot of..."}, {"id": 1291, "start": 3854.22, "end": 3855.6, "text": " There's an attack vector there for sure."}, {"id": 1292, "start": 3855.62, "end": 3858.3399999999997, "text": " Right, and that includes even just the keyboard."}, {"id": 1293, "start": 3858.66, "end": 3858.7599999999998, "text": " Yeah."}, {"id": 1294, "start": 3859.06, "end": 3866.06, "text": " All right, so anything that you can install, as an example, let's say that you are using your computer, right?"}, {"id": 1295, "start": 3866.22, "end": 3877.0, "text": " Macs are, either rightly or wrongly, known for having very good security when it comes to, you know, user permissions, right?"}, {"id": 1296, "start": 3877.38, "end": 3883.8399999999997, "text": " A piece of software cannot install without the user typing a password to confirm that that installation is allowed."}, {"id": 1297, "start": 3884.12, "end": 3885.44, "text": " And if you have a Mac..."}, {"id": 1298, "start": 3885.44, "end": 3893.98, "text": " All right, you know that this is true, at least to a certain extent, because any piece of software you try to install, you have to confirm with your password."}, {"id": 1299, "start": 3894.78, "end": 3897.7400000000002, "text": " Problem is, though, with an HID attack, you can just simulate the user."}, {"id": 1300, "start": 3898.2400000000002, "end": 3899.36, "text": " Well, not even that."}, {"id": 1301, "start": 3899.58, "end": 3902.1, "text": " So you've got your Mac, as an example, all right?"}, {"id": 1302, "start": 3902.26, "end": 3903.98, "text": " You're sitting in front of it, and you say, you know what?"}, {"id": 1303, "start": 3904.04, "end": 3910.04, "text": " I'm going to hook up this external mouse, or I'm going to hook up this external keyboard to the computer, an interface device."}, {"id": 1304, "start": 3910.92, "end": 3911.84, "text": " It doesn't ask for a password."}, {"id": 1305, "start": 3912.2000000000003, "end": 3913.46, "text": " It doesn't ask for anything, right?"}, {"id": 1306, "start": 3913.46, "end": 3914.38, "text": " You plug it in, bam."}, {"id": 1307, "start": 3914.38, "end": 3914.4, "text": " Yeah."}, {"id": 1308, "start": 3914.4, "end": 3914.48, "text": " Yeah."}, {"id": 1309, "start": 3914.48, "end": 3914.58, "text": " Yeah."}, {"id": 1310, "start": 3914.58, "end": 3914.6, "text": " Yeah."}, {"id": 1311, "start": 3914.6, "end": 3914.62, "text": " Yeah."}, {"id": 1312, "start": 3914.62, "end": 3914.64, "text": " Yeah."}, {"id": 1313, "start": 3914.64, "end": 3914.66, "text": " Yeah."}, {"id": 1314, "start": 3914.66, "end": 3914.68, "text": " Yeah."}, {"id": 1315, "start": 3914.68, "end": 3914.7400000000002, "text": " Yeah."}, {"id": 1316, "start": 3914.7400000000002, "end": 3914.76, "text": " Yeah."}, {"id": 1317, "start": 3914.76, "end": 3914.78, "text": " Yeah."}, {"id": 1318, "start": 3914.78, "end": 3914.8, "text": " Yeah."}, {"id": 1319, "start": 3914.8, "end": 3914.86, "text": " Yeah."}, {"id": 1320, "start": 3914.86, "end": 3914.9, "text": " Yeah."}, {"id": 1321, "start": 3914.9, "end": 3914.92, "text": " Yeah."}, {"id": 1322, "start": 3914.92, "end": 3917.12, "text": " Apparently trust human interface devices."}, {"id": 1323, "start": 3917.32, "end": 3918.08, "text": " Yes, they do."}, {"id": 1324, "start": 3918.38, "end": 3919.12, "text": " Because they trust people."}, {"id": 1325, "start": 3919.4, "end": 3921.02, "text": " And that's going to have to change."}, {"id": 1326, "start": 3921.4, "end": 3922.82, "text": " And I think that's really what's going to come down there."}, {"id": 1327, "start": 3922.88, "end": 3927.1800000000003, "text": " It's going to be a much more Bluetooth-esque experience, where there's going to be a..."}, {"id": 1328, "start": 3927.1800000000003, "end": 3927.86, "text": " Some other protocol."}, {"id": 1329, "start": 3928.1, "end": 3928.2200000000003, "text": " Right."}, {"id": 1330, "start": 3928.56, "end": 3933.4, "text": " And an authentication to say, are you sure you want to allow this keyboard to do this stuff?"}, {"id": 1331, "start": 3933.8, "end": 3943.5, "text": " And it's going to be, I think, a lot more Android-like in behavior, where you're going to say, by the way, this device really wants this permission to do these types of things."}, {"id": 1332, "start": 3943.5, "end": 3944.9, "text": " It's worth noting that at the current..."}, {"id": 1333, "start": 3944.92, "end": 3949.32, "text": " At the current state right now, an HID is effective on Android as well, and iPhone."}, {"id": 1334, "start": 3949.44, "end": 3951.08, "text": " Pretty much anything you can plug a keyboard into."}, {"id": 1335, "start": 3951.14, "end": 3951.26, "text": " Right."}, {"id": 1336, "start": 3951.3, "end": 3952.76, "text": " Any computer device at this point."}, {"id": 1337, "start": 3952.76, "end": 3972.04, "text": " And this is what makes these particular attacks that the CIA is using to be really, really effective, is that there are no devices, right, that we know of anyway, that you can't go and plug in a keyboard and have that keyboard issue commands in the background without you ever knowing about it."}, {"id": 1338, "start": 3972.6, "end": 3974.26, "text": " That doesn't happen."}, {"id": 1339, "start": 3974.8, "end": 3974.9, "text": " Right."}, {"id": 1340, "start": 3974.92, "end": 3979.62, "text": " There may be some instances where there's, like, single user sessions, right?"}, {"id": 1341, "start": 3979.6800000000003, "end": 3987.42, "text": " Certain Unix machines or Linux boxes that are set to single user mode, that it cannot initiate some type of a background process."}, {"id": 1342, "start": 3988.02, "end": 3989.48, "text": " That may be an instance."}, {"id": 1343, "start": 3989.64, "end": 3996.8, "text": " But at the same time, it's not going to ask for permission to spawn those background or those processes, right?"}, {"id": 1344, "start": 3996.8, "end": 3998.32, "text": " It's just going to say, you're a keyboard."}, {"id": 1345, "start": 3998.54, "end": 4000.76, "text": " You're allowed to do whatever you want because you're a keyboard."}, {"id": 1346, "start": 4001.14, "end": 4001.84, "text": " It's just a keyboard."}, {"id": 1347, "start": 4001.98, "end": 4002.5, "text": " No big deal."}, {"id": 1348, "start": 4002.9, "end": 4003.08, "text": " Right."}, {"id": 1349, "start": 4003.08, "end": 4004.08, "text": " When in reality, these..."}, {"id": 1350, "start": 4004.08, "end": 4008.68, "text": " These HID devices type at the speed of the USB bus, you know, a thousand words a minute."}, {"id": 1351, "start": 4008.96, "end": 4009.38, "text": " Or more."}, {"id": 1352, "start": 4009.42, "end": 4009.8199999999997, "text": " Or more, yeah."}, {"id": 1353, "start": 4009.8199999999997, "end": 4011.2599999999998, "text": " Or like a thousand words a second."}, {"id": 1354, "start": 4011.38, "end": 4011.5, "text": " Yeah."}, {"id": 1355, "start": 4011.5, "end": 4011.64, "text": " Sorry."}, {"id": 1356, "start": 4011.72, "end": 4013.06, "text": " So they're really moving along."}, {"id": 1357, "start": 4013.42, "end": 4017.72, "text": " Can issue as many commands as they like, as quickly as they like, as long as the computer can keep up."}, {"id": 1358, "start": 4017.88, "end": 4022.36, "text": " They call it a USB drive-by because the attack happens in 15 seconds, you know, you don't even..."}, {"id": 1359, "start": 4022.36, "end": 4022.74, "text": " Or less."}, {"id": 1360, "start": 4022.7999999999997, "end": 4023.68, "text": " You don't even know what's happening."}, {"id": 1361, "start": 4024.18, "end": 4026.48, "text": " You can open a reverse shell on a machine in less than five seconds."}, {"id": 1362, "start": 4027.34, "end": 4033.96, "text": " So it rubs them playing with one of these devices to try to learn more about them because we had teased about them last year."}, {"id": 1363, "start": 4033.96, "end": 4042.7400000000002, "text": " We even talked to Mike Emery over at Perfection Autoworks about the vulnerability of having exposed USB ports on your business network, right?"}, {"id": 1364, "start": 4042.8, "end": 4049.34, "text": " Because anybody could walk up, place a device in the USB, and in many cases, they can break all the passwords."}, {"id": 1365, "start": 4049.54, "end": 4055.36, "text": " So I tested this on my own machine and in 30 seconds was able to get all of the host information about the machine."}, {"id": 1366, "start": 4055.36, "end": 4063.46, "text": " So every update that I've installed, a full list of all of my programs and all of their updates, a plain text version of my Windows password, my domain password."}, {"id": 1367, "start": 4063.46, "end": 4068.26, "text": " All of the passwords from Chrome, all of that dumped into a file saved on my flash drive, and I walked away."}, {"id": 1368, "start": 4069.06, "end": 4073.64, "text": " So yeah, there's some inherent danger to the HID attacks."}, {"id": 1369, "start": 4074.06, "end": 4081.04, "text": " So any type of attack that emulates a keyboard or a network interface can do really dangerous things to the machine."}, {"id": 1370, "start": 4081.48, "end": 4084.28, "text": " And then the whole persistence bit when it comes to Apple."}, {"id": 1371, "start": 4084.36, "end": 4087.6, "text": " And by the way, this affects every Apple product ever."}, {"id": 1372, "start": 4087.68, "end": 4091.54, "text": " And the persistence is what makes it truly, truly scary because it's not a drive-by anymore."}, {"id": 1373, "start": 4091.54, "end": 4093.44, "text": " They parked in your garage, and they're hanging out."}, {"id": 1374, "start": 4094.06, "end": 4094.2200000000003, "text": " Right."}, {"id": 1375, "start": 4094.36, "end": 4095.8, "text": " They came in while you weren't there."}, {"id": 1376, "start": 4096.08, "end": 4102.42, "text": " They put up their little cameras and microphones all over your digital infrastructure, and you never know that they're there."}, {"id": 1377, "start": 4102.4800000000005, "end": 4105.54, "text": " Yeah, back in the day, they had to break into your house to install cameras and microphones."}, {"id": 1378, "start": 4105.7, "end": 4107.28, "text": " Now you bring them home from Walmart yourself."}, {"id": 1379, "start": 4107.82, "end": 4109.46, "text": " Yeah, you go to the Apple store and bring them home."}, {"id": 1380, "start": 4110.08, "end": 4115.16, "text": " But it's kind of terrifying, right?"}, {"id": 1381, "start": 4115.28, "end": 4117.96, "text": " And it affects all Apple products."}, {"id": 1382, "start": 4117.96, "end": 4123.14, "text": " I mean, they were even talking about affecting the supply chain before it reached you in the first place."}, {"id": 1383, "start": 4123.3, "end": 4123.36, "text": " Right."}, {"id": 1384, "start": 4123.36, "end": 4123.38, "text": " Right."}, {"id": 1385, "start": 4123.38, "end": 4123.44, "text": " Right."}, {"id": 1386, "start": 4123.46, "end": 4127.6, "text": " So this is when we're talking about the supply chain is when it comes to iOS devices."}, {"id": 1387, "start": 4128.06, "end": 4133.22, "text": " So if you're looking at the iPhone, iPad, and some versions of the MacBook Air,"}, {"id": 1388, "start": 4133.96, "end": 4140.96, "text": " there is a type of infection that can be implanted on factory-fresh machines, right?"}, {"id": 1389, "start": 4140.96, "end": 4149.18, "text": " So they can install them onto the device without ever setting anything up at all."}, {"id": 1390, "start": 4149.68, "end": 4153.02, "text": " And then you think that you've got this brand new straight from the factory."}, {"id": 1391, "start": 4153.02, "end": 4155.400000000001, "text": " You're peeling off the plastic, and it's already infected."}, {"id": 1392, "start": 4155.900000000001, "end": 4156.02, "text": " Yeah."}, {"id": 1393, "start": 4156.360000000001, "end": 4163.84, "text": " So that was the drop from last week when they were talking about the Apple infections and the vulnerabilities."}, {"id": 1394, "start": 4164.080000000001, "end": 4167.52, "text": " And in fact, over the last 10 years, they've been developing these."}, {"id": 1395, "start": 4167.620000000001, "end": 4172.1, "text": " And before we've even really had the time to impress this upon everybody, there's a new one."}, {"id": 1396, "start": 4172.88, "end": 4173.18, "text": " Oh, yeah."}, {"id": 1397, "start": 4173.64, "end": 4177.040000000001, "text": " Yeah, so that'll be for the next segment here."}, {"id": 1398, "start": 4177.900000000001, "end": 4180.0, "text": " Let's go ahead and fit Charlie in real quick."}, {"id": 1399, "start": 4180.620000000001, "end": 4181.900000000001, "text": " Charlie, how are you doing today?"}, {"id": 1400, "start": 4181.9, "end": 4184.0, "text": " Yeah, good morning, guys."}, {"id": 1401, "start": 4184.08, "end": 4184.5599999999995, "text": " How's everybody?"}, {"id": 1402, "start": 4185.0199999999995, "end": 4185.78, "text": " It's good."}, {"id": 1403, "start": 4185.879999999999, "end": 4186.92, "text": " I'm alive, so that's something."}, {"id": 1404, "start": 4187.98, "end": 4189.04, "text": " I have a question."}, {"id": 1405, "start": 4189.2, "end": 4190.24, "text": " I have a computer."}, {"id": 1406, "start": 4190.42, "end": 4193.9, "text": " I heard earlier today the fellow was talking about his network connections."}, {"id": 1407, "start": 4195.0599999999995, "end": 4197.719999999999, "text": " So I've been experiencing some, too."}, {"id": 1408, "start": 4197.839999999999, "end": 4202.98, "text": " We have a wired router here, my computer in the back room."}, {"id": 1409, "start": 4203.16, "end": 4208.4, "text": " It's only showing partial speed, even though my LAN connection shows I have a 100-megabit connection."}, {"id": 1410, "start": 4208.759999999999, "end": 4209.2, "text": " Right."}, {"id": 1411, "start": 4209.36, "end": 4211.5, "text": " My wife's computer is on the same network."}, {"id": 1412, "start": 4211.9, "end": 4216.36, "text": " And hers is showing, well, almost 100-megabits throughput, you know,"}, {"id": 1413, "start": 4216.42, "end": 4224.139999999999, "text": " to some of the web-based, browser-based speed tests, like speedof.me and places like that."}, {"id": 1414, "start": 4224.74, "end": 4230.04, "text": " And I've tried both crossover and straight-through LAN cables to my computer,"}, {"id": 1415, "start": 4230.259999999999, "end": 4236.7, "text": " and it still comes up with maybe 15-megabits throughput when I'm expecting at least 40 or 50."}, {"id": 1416, "start": 4237.259999999999, "end": 4237.9, "text": " Okay."}, {"id": 1417, "start": 4238.0199999999995, "end": 4238.66, "text": " Any suggestions?"}, {"id": 1418, "start": 4239.48, "end": 4240.219999999999, "text": " Length of the cable?"}, {"id": 1419, "start": 4241.9, "end": 4243.58, "text": " Um, comparable."}, {"id": 1420, "start": 4244.0599999999995, "end": 4245.48, "text": " You know, probably like 20 feet."}, {"id": 1421, "start": 4245.759999999999, "end": 4246.099999999999, "text": " 20 feet?"}, {"id": 1422, "start": 4246.179999999999, "end": 4246.339999999999, "text": " Okay."}, {"id": 1423, "start": 4246.74, "end": 4250.139999999999, "text": " I mean, speed and duplex setting comes to mind, but those almost never get changed."}, {"id": 1424, "start": 4250.44, "end": 4250.679999999999, "text": " Right."}, {"id": 1425, "start": 4251.139999999999, "end": 4252.62, "text": " Hopefully it's not a duplex setting."}, {"id": 1426, "start": 4252.86, "end": 4257.12, "text": " But I'm going to go with straight quality of wire."}, {"id": 1427, "start": 4257.92, "end": 4258.36, "text": " Okay."}, {"id": 1428, "start": 4258.86, "end": 4261.16, "text": " So, I mean, is it the same type of cable that's being used?"}, {"id": 1429, "start": 4261.639999999999, "end": 4262.5, "text": " Pretty much, yeah."}, {"id": 1430, "start": 4262.62, "end": 4263.12, "text": " It's black."}, {"id": 1431, "start": 4263.9, "end": 4264.66, "text": " Cat 5."}, {"id": 1432, "start": 4266.32, "end": 4271.5599999999995, "text": " And hers is using straight, straight-through, and runs down the hall to her computer."}, {"id": 1433, "start": 4271.9, "end": 4275.379999999999, "text": " Mine is right here in the back room, really pretty close to the router."}, {"id": 1434, "start": 4275.639999999999, "end": 4278.36, "text": " It's an Ubiquiti kind of router."}, {"id": 1435, "start": 4278.719999999999, "end": 4279.5599999999995, "text": " That's a nice router."}, {"id": 1436, "start": 4280.12, "end": 4280.5199999999995, "text": " Okay."}, {"id": 1437, "start": 4280.62, "end": 4283.86, "text": " So, if you were to plug into her cable, do you get the same results?"}, {"id": 1438, "start": 4285.54, "end": 4287.099999999999, "text": " I don't know."}, {"id": 1439, "start": 4287.259999999999, "end": 4288.4, "text": " I'd have to bring it down."}, {"id": 1440, "start": 4288.48, "end": 4289.28, "text": " I'm going to try that."}, {"id": 1441, "start": 4289.28, "end": 4293.219999999999, "text": " I just tried a different crossover a little bit ago, and it gave me the same results."}, {"id": 1442, "start": 4293.66, "end": 4294.879999999999, "text": " So, I don't know."}, {"id": 1443, "start": 4294.879999999999, "end": 4297.719999999999, "text": " First of all, the whole crossover versus straight-through means nothing anymore."}, {"id": 1444, "start": 4298.32, "end": 4298.639999999999, "text": " Okay."}, {"id": 1445, "start": 4298.679999999999, "end": 4300.04, "text": " Because switches are automatic."}, {"id": 1446, "start": 4300.339999999999, "end": 4300.4, "text": " Yeah."}, {"id": 1447, "start": 4300.4, "end": 4301.86, "text": " They adapt for that."}, {"id": 1448, "start": 4302.099999999999, "end": 4302.839999999999, "text": " They know stuff."}, {"id": 1449, "start": 4302.96, "end": 4303.139999999999, "text": " Yeah."}, {"id": 1450, "start": 4303.16, "end": 4303.759999999999, "text": " It used to be a thing."}, {"id": 1451, "start": 4303.82, "end": 4304.299999999999, "text": " Not so much."}, {"id": 1452, "start": 4304.46, "end": 4304.66, "text": " Yeah."}, {"id": 1453, "start": 4304.719999999999, "end": 4309.639999999999, "text": " So, the only time that a crossover cable is even remotely useful is if there are no switches."}, {"id": 1454, "start": 4310.5, "end": 4310.82, "text": " Okay."}, {"id": 1455, "start": 4310.92, "end": 4314.54, "text": " So, that's the whole point of it, is that there is no switch, so you must do the crossover"}, {"id": 1456, "start": 4314.54, "end": 4318.32, "text": " to flip those wires so that you can have two computers talk to each other directly with"}, {"id": 1457, "start": 4318.32, "end": 4319.4, "text": " no switches in between."}, {"id": 1458, "start": 4320.259999999999, "end": 4320.379999999999, "text": " Gotcha."}, {"id": 1459, "start": 4320.759999999999, "end": 4327.78, "text": " Well, it's got a gigabit built-in gigabit Intel R82579V type."}, {"id": 1460, "start": 4327.78, "end": 4329.0599999999995, "text": " Tell me more about your computer, though."}, {"id": 1461, "start": 4329.36, "end": 4331.259999999999, "text": " What speed is your processor?"}, {"id": 1462, "start": 4331.26, "end": 4332.58, "text": " How much RAM do you have?"}, {"id": 1463, "start": 4332.58, "end": 4333.16, "text": " What type of stuff?"}, {"id": 1464, "start": 4333.18, "end": 4336.42, "text": " It's an i5 running probably three gig."}, {"id": 1465, "start": 4337.08, "end": 4337.4800000000005, "text": " Okay."}, {"id": 1466, "start": 4337.58, "end": 4340.54, "text": " Do you have any kind of crazy software firewalls going on in there?"}, {"id": 1467, "start": 4340.62, "end": 4342.5, "text": " You got like Norton antivirus installed or something?"}, {"id": 1468, "start": 4342.8, "end": 4343.06, "text": " No."}, {"id": 1469, "start": 4343.12, "end": 4344.84, "text": " No firewalls like that."}, {"id": 1470, "start": 4344.900000000001, "end": 4347.320000000001, "text": " I have malware bytes, and I did have a VAST on there."}, {"id": 1471, "start": 4347.68, "end": 4347.96, "text": " Okay."}, {"id": 1472, "start": 4348.64, "end": 4353.400000000001, "text": " So, first, we're going to eliminate hardware, which is you plug it into that same cable"}, {"id": 1473, "start": 4353.400000000001, "end": 4356.08, "text": " that your wife's machine is working and see if you get different results."}, {"id": 1474, "start": 4356.74, "end": 4357.04, "text": " Okay."}, {"id": 1475, "start": 4357.04, "end": 4359.84, "text": " And then, beyond that, you have to test the other hardware."}, {"id": 1476, "start": 4360.1, "end": 4360.58, "text": " Okay."}, {"id": 1477, "start": 4360.58, "end": 4362.2, "text": " What about all the ports on your router?"}, {"id": 1478, "start": 4362.2, "end": 4363.36, "text": " Are they all in good shape?"}, {"id": 1479, "start": 4363.36, "end": 4365.66, "text": " So, let's try a different port and see if you get a different thing."}, {"id": 1480, "start": 4365.66, "end": 4365.9, "text": " Mm-hmm."}, {"id": 1481, "start": 4365.9, "end": 4367.5199999999995, "text": " Try a different cable on your computer."}, {"id": 1482, "start": 4367.5199999999995, "end": 4369.98, "text": " So, we need to eliminate the hardware portion of it first."}, {"id": 1483, "start": 4369.98, "end": 4371.32, "text": " Yeah, the stuff I can reach."}, {"id": 1484, "start": 4371.32, "end": 4371.5, "text": " Yeah."}, {"id": 1485, "start": 4371.5, "end": 4376.5599999999995, "text": " It says the processor's running at 3.4 gigs, and it's all a 3570K processor."}, {"id": 1486, "start": 4376.5599999999995, "end": 4376.7, "text": " Yeah."}, {"id": 1487, "start": 4376.7, "end": 4379.34, "text": " Well, you just said it was an i5, so it's fast enough to do this."}, {"id": 1488, "start": 4379.72, "end": 4382.46, "text": " And you don't have any crazy software problems going on as far as like, you"}, {"id": 1489, "start": 4382.46, "end": 4384.7, "text": " know, McAfee or Norton or something along those lines."}, {"id": 1490, "start": 4384.7, "end": 4385.96, "text": " No, no, no, no, no."}, {"id": 1491, "start": 4385.96, "end": 4390.44, "text": " So, then you're going to, the last thing that you're going to check is, do you have"}, {"id": 1492, "start": 4390.4400000000005, "end": 4393.26, "text": " a problem with the network adapter on your machine, which happens."}, {"id": 1493, "start": 4393.26, "end": 4393.68, "text": " Yeah."}, {"id": 1494, "start": 4393.68, "end": 4397.76, "text": " So, then you make sure that you've got the right driver for that, or just grab a"}, {"id": 1495, "start": 4397.76, "end": 4401.200000000001, "text": " different network adapter altogether and plug it into your computer and see if you"}, {"id": 1496, "start": 4401.200000000001, "end": 4401.9400000000005, "text": " get a different result."}, {"id": 1497, "start": 4401.9400000000005, "end": 4402.76, "text": " Okay."}, {"id": 1498, "start": 4402.76, "end": 4403.56, "text": " I've tried it also."}, {"id": 1499, "start": 4403.56, "end": 4408.34, "text": " I have a Wi-Fi feature in my, it's a mother, a Yeezus motherboard, and I tried"}, {"id": 1500, "start": 4408.34, "end": 4410.660000000001, "text": " the Wi-Fi and it gives exactly the same results."}, {"id": 1501, "start": 4411.9400000000005, "end": 4412.700000000001, "text": " Interesting."}, {"id": 1502, "start": 4413.120000000001, "end": 4413.68, "text": " Yeah."}, {"id": 1503, "start": 4413.68, "end": 4416.320000000001, "text": " Exactly as in, like, you're getting."}, {"id": 1504, "start": 4416.320000000001, "end": 4420.4400000000005, "text": " Same download speed through using, like, speedof.me, that website."}, {"id": 1505, "start": 4420.4400000000005, "end": 4421.4400000000005, "text": " It's HTML-based."}, {"id": 1506, "start": 4421.4400000000005, "end": 4426.06, "text": " Here's the other question I have for you is that, is your Wi-Fi always on, on that"}, {"id": 1507, "start": 4426.06, "end": 4427.06, "text": " computer?"}, {"id": 1508, "start": 4427.06, "end": 4428.06, "text": " Yeah."}, {"id": 1509, "start": 4428.06, "end": 4429.06, "text": " Yeah."}, {"id": 1510, "start": 4429.06, "end": 4431.06, "text": " How about turn that off?"}, {"id": 1511, "start": 4431.06, "end": 4433.06, "text": " Yeah, just disable that adapter."}, {"id": 1512, "start": 4433.06, "end": 4434.06, "text": " Okay."}, {"id": 1513, "start": 4434.06, "end": 4438.200000000001, "text": " Because it could be defaulting to Wi-Fi, regardless of whether or not you've got"}, {"id": 1514, "start": 4438.200000000001, "end": 4439.200000000001, "text": " a wire plugged in."}, {"id": 1515, "start": 4439.200000000001, "end": 4441.4400000000005, "text": " Even though it shows in the corner I'm wired, huh?"}, {"id": 1516, "start": 4441.4400000000005, "end": 4442.4400000000005, "text": " It could, yes."}, {"id": 1517, "start": 4442.4400000000005, "end": 4443.4400000000005, "text": " So, turn that off."}, {"id": 1518, "start": 4443.4400000000005, "end": 4444.4400000000005, "text": " Okay."}, {"id": 1519, "start": 4444.4400000000005, "end": 4445.4400000000005, "text": " I'm doing that."}, {"id": 1520, "start": 4445.4400000000005, "end": 4449.4400000000005, "text": " And that might give you a different result, and this is very much a problem"}, {"id": 1521, "start": 4449.4400000000005, "end": 4450.4400000000005, "text": " for most Macs, by the way."}, {"id": 1522, "start": 4450.4400000000005, "end": 4457.200000000001, "text": " Is that people will wire themselves in for, like, Macintosh computers, but the whole switching"}, {"id": 1523, "start": 4457.200000000001, "end": 4461.9400000000005, "text": " between wired and Wi-Fi is automatic and fast, and it very much confuses everything on the"}, {"id": 1524, "start": 4461.9400000000005, "end": 4462.9400000000005, "text": " network."}, {"id": 1525, "start": 4462.9400000000005, "end": 4467.9400000000005, "text": " So, if you have both, you should disable the one you're not using."}, {"id": 1526, "start": 4467.9400000000005, "end": 4474.240000000001, "text": " So, if you have Wi-Fi and wired capability on any computer, you pick the one that you're"}, {"id": 1527, "start": 4474.240000000001, "end": 4479.06, "text": " using and stick with it, and disable the other one so that there isn't any confusion."}, {"id": 1528, "start": 4479.06, "end": 4480.06, "text": " Yeah."}, {"id": 1529, "start": 4480.4400000000005, "end": 4481.4400000000005, "text": " I prefer to run wired."}, {"id": 1530, "start": 4481.4400000000005, "end": 4482.4400000000005, "text": " Yeah, for sure."}, {"id": 1531, "start": 4482.4400000000005, "end": 4487.9400000000005, "text": " I'm still showing the same kind of speed throughput at download around 12 and a half"}, {"id": 1532, "start": 4487.9400000000005, "end": 4488.9400000000005, "text": " right now."}, {"id": 1533, "start": 4488.9400000000005, "end": 4489.9400000000005, "text": " All right."}, {"id": 1534, "start": 4489.9400000000005, "end": 4491.9400000000005, "text": " So, I'm thinking that one of two things is happening here, is that you've got a bad"}, {"id": 1535, "start": 4491.9400000000005, "end": 4494.9400000000005, "text": " cable, which is a super easy fix."}, {"id": 1536, "start": 4494.9400000000005, "end": 4495.9400000000005, "text": " Yeah."}, {"id": 1537, "start": 4495.9400000000005, "end": 4503.780000000001, "text": " Or that you've got some sort of interface, like some type of packet sniffing or a firewall"}, {"id": 1538, "start": 4503.780000000001, "end": 4506.9400000000005, "text": " problem on the machine that may not even be represented."}, {"id": 1539, "start": 4506.9400000000005, "end": 4508.9400000000005, "text": " It could be just Windows firewall is broken."}, {"id": 1540, "start": 4508.9400000000005, "end": 4509.9400000000005, "text": " Yeah."}, {"id": 1541, "start": 4509.9400000000005, "end": 4510.9400000000005, "text": " It happens."}, {"id": 1542, "start": 4510.9400000000005, "end": 4516.4400000000005, "text": " So, there's something going on that is affecting all of your network traffic on that machine."}, {"id": 1543, "start": 4516.4400000000005, "end": 4517.4400000000005, "text": " All right."}, {"id": 1544, "start": 4517.4400000000005, "end": 4520.4400000000005, "text": " Well, I thought maybe it was just reporting erroneously."}, {"id": 1545, "start": 4520.4400000000005, "end": 4525.4400000000005, "text": " Maybe I was getting the same results that she is, it's just mine doesn't show it like"}, {"id": 1546, "start": 4525.4400000000005, "end": 4526.4400000000005, "text": " hers."}, {"id": 1547, "start": 4526.4400000000005, "end": 4527.4400000000005, "text": " Hers is much newer."}, {"id": 1548, "start": 4527.4400000000005, "end": 4528.4400000000005, "text": " That's an optimistic way to think about it."}, {"id": 1549, "start": 4528.4400000000005, "end": 4529.4400000000005, "text": " Hers is a rogue."}, {"id": 1550, "start": 4529.4400000000005, "end": 4531.4400000000005, "text": " If you really want to try another speed test, you can go to fast.com."}, {"id": 1551, "start": 4531.4400000000005, "end": 4534.4400000000005, "text": " That's the one that I recommend right now, but I'm sure you're going to get the same"}, {"id": 1552, "start": 4534.4400000000005, "end": 4535.4400000000005, "text": " results."}, {"id": 1553, "start": 4535.4400000000005, "end": 4536.4400000000005, "text": " Okay."}, {"id": 1554, "start": 4536.4400000000005, "end": 4537.4400000000005, "text": " I'll give it a swirl."}, {"id": 1555, "start": 4537.4400000000005, "end": 4538.4400000000005, "text": " Thanks, guys."}, {"id": 1556, "start": 4538.4400000000005, "end": 4539.4400000000005, "text": " All right."}, {"id": 1557, "start": 4539.4400000000005, "end": 4540.4400000000005, "text": " All right."}, {"id": 1558, "start": 4540.4400000000005, "end": 4541.4400000000005, "text": " See you later."}, {"id": 1559, "start": 4541.4400000000005, "end": 4542.4400000000005, "text": " Bye."}, {"id": 1560, "start": 4542.4400000000005, "end": 4543.9400000000005, "text": " All these weird network issues."}, {"id": 1561, "start": 4543.9400000000005, "end": 4544.9400000000005, "text": " It's the CIA, man."}, {"id": 1562, "start": 4544.9400000000005, "end": 4545.9400000000005, "text": " It's the CIA."}, {"id": 1563, "start": 4545.9400000000005, "end": 4546.9400000000005, "text": " They're all about it."}, {"id": 1564, "start": 4546.9400000000005, "end": 4547.9400000000005, "text": " We'll be right back."}, {"id": 1565, "start": 4547.9400000000005, "end": 4550.9800000000005, "text": " Male voiceover minded voiceover"}, {"id": 1566, "start": 4550.9800000000005, "end": 4551.500000000001, "text": "\uc6b4\ub370"}, {"id": 1567, "start": 4569.4400000000005, "end": 4573.9400000000005, "text": " Mike Swanson is answering all your questions one by one."}, {"id": 1568, "start": 4574.22, "end": 4576.160000000001, "text": " So call in or chat in with yours."}, {"id": 1569, "start": 4576.56, "end": 4578.68, "text": " The website, gurushow.com."}, {"id": 1570, "start": 4579.18, "end": 4581.280000000001, "text": " Tune in, click in, and kick back."}, {"id": 1571, "start": 4581.64, "end": 4586.200000000001, "text": " This is the Computer Guru Show on AM1030, KVOY, The Voice."}, {"id": 1572, "start": 4596.500000000001, "end": 4598.3, "text": " Welcome back to the Computer Guru Show."}, {"id": 1573, "start": 4598.3, "end": 4601.66, "text": " My name is Mike, here to deal with your technology needs and treat you like a person in the process"}, {"id": 1574, "start": 4601.66, "end": 4605.02, "text": " and let you know what CIA is up to, because apparently that's my job now."}, {"id": 1575, "start": 4605.320000000001, "end": 4607.900000000001, "text": " Yeah, it's getting to the point where we're almost just going to have to ignore this stuff"}, {"id": 1576, "start": 4607.900000000001, "end": 4610.06, "text": " if we want to have, like, a reasonable, nice show."}, {"id": 1577, "start": 4610.34, "end": 4613.860000000001, "text": " Yeah, it's going to be a separate, you know, tinfoil hat wearing."}, {"id": 1578, "start": 4614.6, "end": 4616.9800000000005, "text": " Once a month, we'll just update you on all the new leaks."}, {"id": 1579, "start": 4617.2, "end": 4619.900000000001, "text": " Yeah, we'll just do a podcast, a separate podcast for this."}, {"id": 1580, "start": 4620.26, "end": 4620.72, "text": " That's sad."}, {"id": 1581, "start": 4621.46, "end": 4623.9400000000005, "text": " Speaking of, if you want to get in on any of the podcasts that we do"}, {"id": 1582, "start": 4623.9400000000005, "end": 4627.72, "text": " or any of the member-exclusive things that we're going to do,"}, {"id": 1583, "start": 4627.76, "end": 4628.28, "text": " like the Home Automotive Show,"}, {"id": 1584, "start": 4628.3, "end": 4632.52, "text": " then you can become a patron."}, {"id": 1585, "start": 4632.860000000001, "end": 4634.860000000001, "text": " You can go to patreon.com slash gurushow."}, {"id": 1586, "start": 4635.4400000000005, "end": 4639.2, "text": " Yeah, Howard and I are already planning some more, you know, explosive stuff."}, {"id": 1587, "start": 4639.56, "end": 4641.320000000001, "text": " You guys are all about destroying."}, {"id": 1588, "start": 4641.46, "end": 4642.62, "text": " I'm going to try to be about building."}, {"id": 1589, "start": 4643.02, "end": 4644.96, "text": " Well, you know, that's why we have you."}, {"id": 1590, "start": 4647.02, "end": 4657.62, "text": " So, on March 7th, WikiLeaks began releasing things about the hacking arsenal that is held by the CIA."}, {"id": 1591, "start": 4657.62, "end": 4657.76, "text": " Okay."}, {"id": 1592, "start": 4657.76, "end": 4668.74, "text": " There was almost 9,000 documents that were obtained that show the capabilities that the CIA has when dealing with technology."}, {"id": 1593, "start": 4669.74, "end": 4673.1, "text": " And it's a little scary, right?"}, {"id": 1594, "start": 4673.12, "end": 4676.7, "text": " Because there are things that we have been, as security experts, right,"}, {"id": 1595, "start": 4676.76, "end": 4682.88, "text": " have been assured by the manufacturers that this stuff just can't happen, right?"}, {"id": 1596, "start": 4682.88, "end": 4685.88, "text": " This defies the level of..."}, {"id": 1597, "start": 4687.76, "end": 4690.64, "text": " Obfuscation that should be allowed."}, {"id": 1598, "start": 4690.900000000001, "end": 4694.76, "text": " It turns out in many cases they were saying that with, like, a metaphorical gun to the head."}, {"id": 1599, "start": 4695.5, "end": 4697.12, "text": " And some of them they just didn't know about."}, {"id": 1600, "start": 4697.22, "end": 4697.42, "text": " Right."}, {"id": 1601, "start": 4697.6, "end": 4697.84, "text": " Right."}, {"id": 1602, "start": 4698.06, "end": 4701.2, "text": " As an example, in Apple's case, their defense is,"}, {"id": 1603, "start": 4701.62, "end": 4705.46, "text": " we didn't know this existed and we've already fixed most of them through patching recently, right,"}, {"id": 1604, "start": 4705.46, "end": 4706.42, "text": " that they found out about."}, {"id": 1605, "start": 4706.54, "end": 4710.54, "text": " So, Apple says that they have fixed them, but to what degree?"}, {"id": 1606, "start": 4710.92, "end": 4713.92, "text": " But then there's cases like, wasn't it Cisco just a couple of years ago"}, {"id": 1607, "start": 4713.92, "end": 4715.92, "text": " that was found to be, like, installing..."}, {"id": 1608, "start": 4716.900000000001, "end": 4716.92, "text": " Um..."}, {"id": 1609, "start": 4716.92, "end": 4719.7, "text": " Exploits before you even received your product?"}, {"id": 1610, "start": 4719.88, "end": 4720.08, "text": " Right."}, {"id": 1611, "start": 4720.18, "end": 4723.84, "text": " They, basically, the governments could go to Cisco and say,"}, {"id": 1612, "start": 4724.18, "end": 4729.36, "text": " we would like you for these particular orders or any orders that are going to these particular geographical locations"}, {"id": 1613, "start": 4729.36, "end": 4735.6, "text": " to install a specific backdoor that allows the U.S. government into those routers."}, {"id": 1614, "start": 4735.64, "end": 4738.62, "text": " And in many cases, those were their hardware firewall products."}, {"id": 1615, "start": 4738.82, "end": 4742.06, "text": " So, you know, if you own the hardware firewall, you don't need to worry about it."}, {"id": 1616, "start": 4742.06, "end": 4745.72, "text": " Yeah, if you're already inside, all right, then it doesn't really matter."}, {"id": 1617, "start": 4745.72, "end": 4752.16, "text": " So, yeah, there's, in the CIA, you know, in their defense, right,"}, {"id": 1618, "start": 4752.280000000001, "end": 4759.88, "text": " they say that they are here to protect the U.S. from external invasion and terrorism attacks."}, {"id": 1619, "start": 4760.22, "end": 4763.9800000000005, "text": " You know, it just, at this point, it feels a little bit like the mob's protection racket."}, {"id": 1620, "start": 4764.7, "end": 4765.66, "text": " Sort of, right?"}, {"id": 1621, "start": 4766.88, "end": 4771.320000000001, "text": " And they say that none of this stuff is being used on U.S. citizens,"}, {"id": 1622, "start": 4771.320000000001, "end": 4775.320000000001, "text": " but I find that, mathematically speaking, to be..."}, {"id": 1623, "start": 4776.12, "end": 4779.56, "text": " a ridiculous assertion, right, as far as..."}, {"id": 1624, "start": 4779.56, "end": 4781.6, "text": " It's just logically a ridiculous assertion."}, {"id": 1625, "start": 4781.84, "end": 4783.34, "text": " They're like, don't worry, we're not using it on you."}, {"id": 1626, "start": 4783.6, "end": 4783.92, "text": " Don't worry."}, {"id": 1627, "start": 4784.2, "end": 4784.400000000001, "text": " Right."}, {"id": 1628, "start": 4784.54, "end": 4785.860000000001, "text": " We're not allowed to do that."}, {"id": 1629, "start": 4786.14, "end": 4788.42, "text": " But the NSA wasn't allowed to do that either."}, {"id": 1630, "start": 4788.56, "end": 4788.820000000001, "text": " Right."}, {"id": 1631, "start": 4789.04, "end": 4792.320000000001, "text": " And so there's a certain amount of..."}, {"id": 1632, "start": 4792.9400000000005, "end": 4798.18, "text": " As an example, I mean, just on a smaller level, right,"}, {"id": 1633, "start": 4798.18, "end": 4802.52, "text": " there are laws that are in place that says that public schools,"}, {"id": 1634, "start": 4802.7, "end": 4805.7, "text": " because they're government entities, aren't allowed to do certain things."}, {"id": 1635, "start": 4806.64, "end": 4810.18, "text": " Then why is it that there are so many lawsuits"}, {"id": 1636, "start": 4810.18, "end": 4813.18, "text": " between the public and the public school system"}, {"id": 1637, "start": 4813.18, "end": 4815.76, "text": " regarding breaches of those rules?"}, {"id": 1638, "start": 4815.9800000000005, "end": 4817.240000000001, "text": " And it's blatant."}, {"id": 1639, "start": 4817.64, "end": 4819.780000000001, "text": " It's not like it's something that's being hidden."}, {"id": 1640, "start": 4820.360000000001, "end": 4823.400000000001, "text": " It's because, ultimately, it's easier to ask for forgiveness than permission."}, {"id": 1641, "start": 4823.740000000001, "end": 4823.88, "text": " Right."}, {"id": 1642, "start": 4823.9400000000005, "end": 4825.46, "text": " And that's what I'm sort of getting at here,"}, {"id": 1643, "start": 4825.5, "end": 4828.6, "text": " is that you can go ahead and say that you're not allowed to do it."}, {"id": 1644, "start": 4828.9800000000005, "end": 4830.84, "text": " That's all fine and dandy until you do it."}, {"id": 1645, "start": 4831.08, "end": 4835.4800000000005, "text": " But why is there evidence to the contrary, that you are doing it?"}, {"id": 1646, "start": 4835.4800000000005, "end": 4835.64, "text": " Right."}, {"id": 1647, "start": 4835.64, "end": 4835.7, "text": " Right."}, {"id": 1648, "start": 4835.72, "end": 4837.280000000001, "text": " Even though you're not allowed to do it."}, {"id": 1649, "start": 4837.860000000001, "end": 4840.240000000001, "text": " So there's a certain..."}, {"id": 1650, "start": 4840.240000000001, "end": 4843.2, "text": " I don't care what you are or are not allowed to do."}, {"id": 1651, "start": 4843.3, "end": 4845.22, "text": " What are you actually doing?"}, {"id": 1652, "start": 4845.22, "end": 4847.4800000000005, "text": " And, I mean, personally, maybe it's the cynic in me,"}, {"id": 1653, "start": 4847.54, "end": 4849.9400000000005, "text": " but I feel like a lot of it comes down to the CIA and the NSA"}, {"id": 1654, "start": 4849.9400000000005, "end": 4852.18, "text": " just knowing that next news cycle, it's going to go away."}, {"id": 1655, "start": 4852.68, "end": 4855.62, "text": " Oh, and the other part is that what is the oversight?"}, {"id": 1656, "start": 4856.38, "end": 4856.56, "text": " Right."}, {"id": 1657, "start": 4856.84, "end": 4858.4800000000005, "text": " Who is watching the watchers?"}, {"id": 1658, "start": 4858.64, "end": 4858.72, "text": " Right."}, {"id": 1659, "start": 4859.04, "end": 4861.360000000001, "text": " And the answer is nobody."}, {"id": 1660, "start": 4861.780000000001, "end": 4862.02, "text": " Right."}, {"id": 1661, "start": 4862.18, "end": 4865.6, "text": " And nobody of importance or nobody that's looking out for us."}, {"id": 1662, "start": 4865.6, "end": 4867.240000000001, "text": " Nobody who understands it, surely,"}, {"id": 1663, "start": 4867.38, "end": 4870.18, "text": " because all the people who understand it work at the NSA or the CIA."}, {"id": 1664, "start": 4870.4800000000005, "end": 4870.58, "text": " Right."}, {"id": 1665, "start": 4870.64, "end": 4871.52, "text": " Or the FISA courts."}, {"id": 1666, "start": 4871.6, "end": 4871.76, "text": " Right."}, {"id": 1667, "start": 4871.820000000001, "end": 4871.9400000000005, "text": " Right."}, {"id": 1668, "start": 4871.9800000000005, "end": 4873.360000000001, "text": " Which are completely..."}, {"id": 1669, "start": 4873.360000000001, "end": 4877.52, "text": " They're not allowed to say anything to anyone about anything that's going on."}, {"id": 1670, "start": 4877.9800000000005, "end": 4880.42, "text": " So who watches the watchers?"}, {"id": 1671, "start": 4880.56, "end": 4884.0, "text": " Maybe we should have a class at the shop where we invite congressmen to come down"}, {"id": 1672, "start": 4884.0, "end": 4887.26, "text": " and learn how the internet works and how these hacks work."}, {"id": 1673, "start": 4887.34, "end": 4888.240000000001, "text": " That would be awesome."}, {"id": 1674, "start": 4889.02, "end": 4889.360000000001, "text": " It's great."}, {"id": 1675, "start": 4889.54, "end": 4889.84, "text": " Don't worry."}, {"id": 1676, "start": 4890.1, "end": 4892.6, "text": " We'll start with Jeff Flake and McCain."}, {"id": 1677, "start": 4893.14, "end": 4895.6, "text": " We won't even charge $9 million for the congressmen."}, {"id": 1678, "start": 4896.22, "end": 4896.38, "text": " Right."}, {"id": 1679, "start": 4896.4800000000005, "end": 4896.820000000001, "text": " Or anything like that."}, {"id": 1680, "start": 4896.84, "end": 4898.46, "text": " You won't even have to have a $40 breakfast."}, {"id": 1681, "start": 4898.68, "end": 4905.240000000001, "text": " Just come down and we will show you for free the importance of security on the network"}, {"id": 1682, "start": 4905.240000000001, "end": 4913.620000000001, "text": " and what happens when tools that are designed to be malicious are just left to their own devices."}, {"id": 1683, "start": 4913.620000000001, "end": 4921.5, "text": " Because the CIA, which has an extensive arsenal of hacking capability, lost control of that."}, {"id": 1684, "start": 4922.120000000001, "end": 4922.240000000001, "text": " Right."}, {"id": 1685, "start": 4922.3, "end": 4923.76, "text": " Which means it's in the wild."}, {"id": 1686, "start": 4923.9400000000005, "end": 4925.4800000000005, "text": " Now, when we talk about that..."}, {"id": 1687, "start": 4925.6, "end": 4926.660000000001, "text": " In a technological sense."}, {"id": 1688, "start": 4927.14, "end": 4929.700000000001, "text": " In the wild means that it's out there."}, {"id": 1689, "start": 4929.88, "end": 4930.9800000000005, "text": " You could just go download it."}, {"id": 1690, "start": 4931.3, "end": 4931.4800000000005, "text": " Yeah."}, {"id": 1691, "start": 4931.620000000001, "end": 4934.8, "text": " If you know where to look, it is very much available to you."}, {"id": 1692, "start": 4934.84, "end": 4938.68, "text": " And it can be modified in any way to be your own product."}, {"id": 1693, "start": 4939.06, "end": 4941.18, "text": " And make no mistake, that will happen."}, {"id": 1694, "start": 4941.58, "end": 4942.46, "text": " Or is happening."}, {"id": 1695, "start": 4943.3, "end": 4948.3, "text": " Malware gains a whole new platform when you can't even detect that it's on your machine."}, {"id": 1696, "start": 4948.700000000001, "end": 4948.780000000001, "text": " Right."}, {"id": 1697, "start": 4948.860000000001, "end": 4954.700000000001, "text": " So if you were to link this back to another type of analogy, we already use the word virus."}, {"id": 1698, "start": 4954.7, "end": 4961.4, "text": " When it comes to computers and it also applies to people because they behave very much in the same way."}, {"id": 1699, "start": 4961.88, "end": 4967.04, "text": " Where you have a piece of software that is programmed to do a very specific thing"}, {"id": 1700, "start": 4967.04, "end": 4972.679999999999, "text": " and it will evolve to make sure that it survives, right?"}, {"id": 1701, "start": 4972.74, "end": 4975.54, "text": " Because survival is, that's how things work."}, {"id": 1702, "start": 4975.679999999999, "end": 4978.66, "text": " And now you're introducing things like general AIs."}, {"id": 1703, "start": 4978.92, "end": 4984.0599999999995, "text": " Or you have artificial intelligence that's built into the virus itself that says,"}, {"id": 1704, "start": 4984.0599999999995, "end": 4984.54, "text": " okay."}, {"id": 1705, "start": 4984.7, "end": 4988.099999999999, "text": " If I run into this roadblock, let's try a bunch of different other things."}, {"id": 1706, "start": 4988.2, "end": 4989.08, "text": " And it learns."}, {"id": 1707, "start": 4989.5199999999995, "end": 4991.94, "text": " So how are you going to stop those types of infections?"}, {"id": 1708, "start": 4992.2, "end": 4999.92, "text": " Well, the stuff that's coming out from the CIA is along the lines of, let's say that it's not a virus anymore."}, {"id": 1709, "start": 5000.38, "end": 5004.139999999999, "text": " This is a biological agent, right?"}, {"id": 1710, "start": 5004.179999999999, "end": 5008.28, "text": " This is one of these things where it takes on and it's a difference in kind."}, {"id": 1711, "start": 5008.5199999999995, "end": 5011.42, "text": " It's not just executing commands and going, oh, that didn't work."}, {"id": 1712, "start": 5011.5199999999995, "end": 5011.98, "text": " Error, error."}, {"id": 1713, "start": 5012.08, "end": 5013.16, "text": " It's like, okay, that didn't work."}, {"id": 1714, "start": 5013.16, "end": 5014.3, "text": " We need to try this instead."}, {"id": 1715, "start": 5014.5, "end": 5014.5599999999995, "text": " Right."}, {"id": 1716, "start": 5014.7, "end": 5020.5599999999995, "text": " This is along the same lines of something becoming epidemic or plague-like in nature, right?"}, {"id": 1717, "start": 5020.58, "end": 5023.46, "text": " Because it's unstoppable once that stuff gets out there."}, {"id": 1718, "start": 5023.54, "end": 5025.82, "text": " In the famous words of Bill Paxton, game over, man."}, {"id": 1719, "start": 5026.32, "end": 5027.0199999999995, "text": " No kidding."}, {"id": 1720, "start": 5027.639999999999, "end": 5028.98, "text": " And here's the thing."}, {"id": 1721, "start": 5029.099999999999, "end": 5035.66, "text": " The latest release is they released something called the Marble Platform, right?"}, {"id": 1722, "start": 5035.7, "end": 5036.86, "text": " The Marble Framework."}, {"id": 1723, "start": 5037.599999999999, "end": 5042.639999999999, "text": " And what this is, and this is just crazy to me,"}, {"id": 1724, "start": 5042.94, "end": 5044.66, "text": " is that it's a piece of software."}, {"id": 1725, "start": 5044.66, "end": 5044.679999999999, "text": " It's a piece of software."}, {"id": 1726, "start": 5044.68, "end": 5050.6, "text": " It's a piece of software that's designed to hide the CIA malware by obfuscating text"}, {"id": 1727, "start": 5050.6, "end": 5057.280000000001, "text": " and encrypting it and then decrypting only when necessary to run it, but still is designed"}, {"id": 1728, "start": 5057.280000000001, "end": 5060.9400000000005, "text": " to thwart forensic investigation."}, {"id": 1729, "start": 5061.280000000001, "end": 5065.16, "text": " It's pretty much the software equivalent of when a classified document gets released"}, {"id": 1730, "start": 5065.16, "end": 5067.14, "text": " and it has black bars across everything important."}, {"id": 1731, "start": 5067.72, "end": 5068.06, "text": " Right."}, {"id": 1732, "start": 5068.3, "end": 5073.34, "text": " So yeah, basically it's redacting the manufacturer of said malware."}, {"id": 1733, "start": 5073.6, "end": 5074.54, "text": " And it manages to do that."}, {"id": 1734, "start": 5074.54, "end": 5080.36, "text": " It manages to not only redact it, but maybe put something else in there, right?"}, {"id": 1735, "start": 5080.38, "end": 5083.84, "text": " Make it look like this came from somewhere else."}, {"id": 1736, "start": 5084.62, "end": 5092.08, "text": " As an example, I mean, there's been some stuff recently in, well, let's go back a little bit."}, {"id": 1737, "start": 5092.1, "end": 5093.48, "text": " Let's go to France, right?"}, {"id": 1738, "start": 5093.48, "end": 5098.9, "text": " So in the France elections, and this was, let's see, what year is it?"}, {"id": 1739, "start": 5098.9, "end": 5101.5, "text": " 2012 election in France."}, {"id": 1740, "start": 5102.08, "end": 5104.48, "text": " The CIA decided."}, {"id": 1741, "start": 5104.54, "end": 5111.98, "text": " The CIA decided that they needed to know what was going on in the election of all of the parties, right?"}, {"id": 1742, "start": 5112.08, "end": 5118.64, "text": " So basically they hacked all of the, everyone involved in the French election to find out"}, {"id": 1743, "start": 5118.64, "end": 5124.54, "text": " whether or not or which particular candidates were more ideologically aligned with the U.S.'s interests"}, {"id": 1744, "start": 5124.54, "end": 5130.9, "text": " so that they could then shape the perception and give other political parties,"}, {"id": 1745, "start": 5130.9, "end": 5134.46, "text": " the ones that were more favored, information that maybe,"}, {"id": 1746, "start": 5134.54, "end": 5140.0, "text": " should be brought to light and maybe potentially influence the election of France."}, {"id": 1747, "start": 5140.0, "end": 5140.96, "text": " Wait a minute."}, {"id": 1748, "start": 5140.96, "end": 5142.42, "text": " That sounds kind of familiar."}, {"id": 1749, "start": 5142.42, "end": 5143.34, "text": " It does sound kind of familiar."}, {"id": 1750, "start": 5143.34, "end": 5144.34, "text": " Just a little bit."}, {"id": 1751, "start": 5144.34, "end": 5145.68, "text": " Oh, wait a minute."}, {"id": 1752, "start": 5145.68, "end": 5148.94, "text": " What's weird is that the malware that they used to do that,"}, {"id": 1753, "start": 5148.94, "end": 5151.22, "text": " they didn't want it to point back to the United States."}, {"id": 1754, "start": 5151.22, "end": 5155.06, "text": " So it kind of looks like it came from Russia."}, {"id": 1755, "start": 5155.06, "end": 5156.14, "text": " Hmm."}, {"id": 1756, "start": 5156.14, "end": 5160.42, "text": " When you hear things said like, it's almost like the Russians wanted us to know it was them."}, {"id": 1757, "start": 5160.42, "end": 5162.72, "text": " Yeah, I mean, because I mean, any good hacker, right?"}, {"id": 1758, "start": 5162.72, "end": 5163.46, "text": " They're not going to."}, {"id": 1759, "start": 5163.46, "end": 5164.5, "text": " People smart enough to do this."}, {"id": 1760, "start": 5164.5, "end": 5167.0, "text": " They're not going to leave their fingerprints on it, are they?"}, {"id": 1761, "start": 5167.0, "end": 5168.0, "text": " Well, they wouldn't do that."}, {"id": 1762, "start": 5168.0, "end": 5168.64, "text": " That'd be silly."}, {"id": 1763, "start": 5168.64, "end": 5169.72, "text": " That would be dumb."}, {"id": 1764, "start": 5169.72, "end": 5172.38, "text": " That would be very, very dumb."}, {"id": 1765, "start": 5172.38, "end": 5176.8, "text": " So let's just go ahead and make it look like it came from somewhere else."}, {"id": 1766, "start": 5176.8, "end": 5184.54, "text": " Now, if you fast forward to, I don't know, last year where you have a major political party,"}, {"id": 1767, "start": 5184.54, "end": 5191.72, "text": " in fact, hack attempts on both of them, but only one of which was at least known to be successful."}, {"id": 1768, "start": 5191.72, "end": 5194.22, "text": " And it's really weird that it kind of,"}, {"id": 1769, "start": 5194.5, "end": 5198.46, "text": " looks like it might be coming from another place."}, {"id": 1770, "start": 5198.46, "end": 5207.74, "text": " So I don't know what the veracity of the claim is when it comes to whether or not the Russians were very much involved or not."}, {"id": 1771, "start": 5207.74, "end": 5210.3, "text": " The problem is that now it's no longer tinfoil hat stuff."}, {"id": 1772, "start": 5210.3, "end": 5213.7, "text": " The tools literally are there and they are literally for that purpose."}, {"id": 1773, "start": 5213.7, "end": 5215.12, "text": " Exactly for that purpose."}, {"id": 1774, "start": 5215.12, "end": 5221.5, "text": " They are designed to make it look like another state sponsored attack."}, {"id": 1775, "start": 5221.5, "end": 5224.04, "text": " Basically, you can put whatever fingerprints you want on there."}, {"id": 1776, "start": 5224.04, "end": 5224.48, "text": " Exactly. For that purpose. They are designed to make it look like another state sponsored attack. Basically, you can put whatever fingerprints you want on there."}, {"id": 1777, "start": 5224.5, "end": 5225.2, "text": " They are designed to make it look like another state sponsored attack."}, {"id": 1778, "start": 5225.2, "end": 5225.52, "text": " Which is completely different from the malware."}, {"id": 1779, "start": 5225.52, "end": 5227.54, "text": " And we've got evidence that it happened."}, {"id": 1780, "start": 5227.54, "end": 5231.12, "text": " Yeah. So it's not just this thing that's theoretical. You could do that."}, {"id": 1781, "start": 5231.12, "end": 5232.56, "text": " No, no, you've done that."}, {"id": 1782, "start": 5232.56, "end": 5235.5, "text": " They did it in the past and have had time to evolve since then."}, {"id": 1783, "start": 5235.5, "end": 5240.84, "text": " So the question now becomes, right, not whether or not it happened,"}, {"id": 1784, "start": 5240.84, "end": 5244.14, "text": " it becomes whether or not you can believe who,"}, {"id": 1785, "start": 5244.74, "end": 5247.1, "text": " just believe any detail of it."}, {"id": 1786, "start": 5247.1, "end": 5252.86, "text": " The mystery of lies or the web of lies has gotten so entangled at this point"}, {"id": 1787, "start": 5252.86, "end": 5253.98, "text": " that you can't take any of that information."}, {"id": 1788, "start": 5253.98, "end": 5254.48, "text": " and,"}, {"id": 1789, "start": 5254.4800000000005, "end": 5261.22, "text": " anyone's word for anything when it comes to the technological aspects of the any election"}, {"id": 1790, "start": 5261.22, "end": 5266.92, "text": " anywhere and that is the most frightening part of all we're going to take a quick break we'll"}, {"id": 1791, "start": 5266.92, "end": 5268.000000000001, "text": " be right back after this"}, {"id": 1792, "start": 5284.4800000000005, "end": 5285.4400000000005, "text": " so"}, {"id": 1793, "start": 5285.4400000000005, "end": 5291.46, "text": " computer troubles need some advice call in now mike swanson will be back after these messages"}, {"id": 1794, "start": 5291.46, "end": 5296.22, "text": " the computer guru show am 10 30 kby the voice"}, {"id": 1795, "start": 5296.22, "end": 5314.4400000000005, "text": " mike swanson your computer guru is just a click away listen and watch a guru show"}, {"id": 1796, "start": 5314.4400000000005, "end": 5314.46, "text": " you"}, {"id": 1797, "start": 5314.4800000000005, "end": 5318.6, "text": " all right if you want to take an opportunity to learn more about this stuff you can contact us"}, {"id": 1798, "start": 5318.6, "end": 5323.740000000001, "text": " at the shop you can call us at 304-8300 or you can come see us 510 east fort lowell or 64 north"}, {"id": 1799, "start": 5323.740000000001, "end": 5329.9400000000005, "text": " harrison thanks to our sponsors desert pro commercial cleaning that is uh the best"}, {"id": 1800, "start": 5329.9400000000005, "end": 5336.52, "text": " janitorial cleaning services in tucson or desert uh tucson desert pro.com check them out and check"}, {"id": 1801, "start": 5336.52, "end": 5341.240000000001, "text": " us out over at azcomputerguru.com we appreciate you listening and we'll see you next week"}]} \ No newline at end of file