diff --git a/.gitignore b/.gitignore index cfb3a56..de9215f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -/target/ +target/ **/*.rs.bk Cargo.lock .vscode @@ -8,6 +8,6 @@ _build vendor/ .flatpak-builder/ flatpak-build/ -flatpak-repo/ repo/ Makefile +.criterion diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8726f9e..0f9f325 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,29 +11,30 @@ before_script: - apt-get install -yqq --no-install-recommends libgtk-3-dev # - apt-get install -yqq --no-install-recommends meson -# kcov -# - apt-get install -y libcurl4-openssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev - .cargo_test_template: &cargo_test stage: test script: - rustc --version && cargo --version + # Force regeneration of gresources regardless of artifacts chage + - cd hammond-gtk/resources/ && glib-compile-resources --generate resources.xml && cd ../../ - cargo build - cargo test --verbose -- --test-threads=1 + - cargo test --verbose -- --test-threads=1 --ignored variables: # RUSTFLAGS: "-C link-dead-code" RUST_BACKTRACE: "FULL" + CARGO_HOME: $CI_PROJECT_DIR/cargo stable:test: # https://hub.docker.com/_/rust/ image: "rust" <<: *cargo_test -nightly:test: - # https://hub.docker.com/r/rustlang/rust/ - image: "rustlang/rust:nightly" - <<: *cargo_test +# nightly:test: +# # https://hub.docker.com/r/rustlang/rust/ +# image: "rustlang/rust:nightly" +# <<: *cargo_test # Configure and run rustfmt on nightly # Exits and builds fails if on bad format @@ -44,15 +45,17 @@ rustfmt: CFG_RELEASE_CHANNEL: "nightly" script: - rustc --version && cargo --version - - cargo install rustfmt-nightly + - cargo install rustfmt-nightly --force - cargo fmt --all -- --write-mode=diff # Configure and run clippy on nightly # Only fails on errors atm. -clippy: - image: "rustlang/rust:nightly" - stage: lint - script: - - rustc --version && cargo --version - - cargo install clippy - - cargo clippy --all +# clippy: +# image: "rustlang/rust:nightly" +# stage: lint +# script: +# - rustc --version && cargo --version +# - cargo install clippy --force +# # Force regeneration of gresources regardless of artifacts chage +# - cd hammond-gtk/resources/ && glib-compile-resources --generate resources.xml && cd ../../ +# - cargo clippy --all diff --git a/.gitlab/issue_templates/BrokenFeed.md b/.gitlab/issue_templates/BrokenFeed.md new file mode 100644 index 0000000..f74b997 --- /dev/null +++ b/.gitlab/issue_templates/BrokenFeed.md @@ -0,0 +1,24 @@ +## Invalid RSS Feed Template. + +Please provide the source of the xml rss feed. + +**Feed URL** + +example.com/podcast + +**Detailed description of the issue** + +Would be helpfull if error messages where included from stderr. +If you are not sure how to do it, feel free to ask and we will walk you through it! + +Some common cases might be: +* Feed cannot be added +* Broken Feed Image +* Episode(s) do not download + +Steps to reproduce: + +1. Open Hammond +2. Do an action +3. ... + diff --git a/.gitlab/issue_templates/Bug.md b/.gitlab/issue_templates/Bug.md index e42b565..17060a6 100644 --- a/.gitlab/issue_templates/Bug.md +++ b/.gitlab/issue_templates/Bug.md @@ -7,14 +7,3 @@ Steps to reproduce: 2. Do an action 3. ... -## Design Tasks - -* [ ] design tasks - -## Development Tasks - -* [ ] development tasks - -## QA Tasks - -* [ ] qa (quality assurance) tasks diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..31086ac --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.3.0] - xxxx-01-xx + +No Notes where provided prior to this release. + +## [0.2.0] - 2017-11-28 + +No Notes where provided prior to this release. + +## [0.1.0] - 2017-11-13 + +Initial Release \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f1f3d07..e60124b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,30 +1,57 @@ -## Contributing +## Contributing to Hammond + +Thank you for looking in this file! When contributing to the development of Hammond, please first discuss the change you wish to make via issue, email, or any other method with the maintainers before making a change. -Please note we have a code of conduct, please follow it in all your interactions with the project. +If you have any questions regarding the use or development of Hammond, +want to discuss design or simply hang out, please join us in [#hammond on irc.gnome.org.](irc://irc.gnome.org/#hammond) + +Please note we have a [code of conduct](https://wiki.gnome.org/Foundation/CodeOfConduc), please follow it in all your interactions with the project. + +## Source repository + +Hammond's main source repository is at gitlab.gnome.org. You can view +the web interface [here](https://gitlab.gnome.org/alatiera/hammond) + +Development happens in the master branch. + +Note that we don't do bug tracking in the Github mirror. + +If you need to publish a branch, feel free to do it at any +publically-accessible Git hosting service, although gitlab.gnome.org +makes things easier for the maintainers. ## Style -We use rustfmt for code formatting and we enforce it on the gitlab-CI server. +We use [rustfmt](https://github.com/rust-lang-nursery/rustfmt) for code formatting and we enforce it on the gitlab-CI server. Quick setup - ``` - cargo install rustfmt-nightly - cargo fmt --all - ``` +``` +cargo install rustfmt-nightly +cargo fmt --all + ``` -It is recommended to add a pre-commit hook to run cargo test and cargo fmt - ``` - #!/bin/sh - cargo test -- --test-threads=1 && cargo fmt --all -- --write-mode=diff - ``` +It is recommended to add a pre-commit hook to run cargo test and `cargo fmt`. +Don't forget to `git add` again after `cargo fmt`. +``` +#!/bin/sh +cargo test -- --test-threads=1 && cargo fmt --all -- --write-mode=diff +``` + +## Running the test suite + +Running the tests requires an internet connection and it it will download some files from the [Internet Archive](archive.org) + +The test suite sets a temporary sqlite database in the `/tmp` folder. +Due to that it's not possible to run them in parrallel. + +In order to run the test suite use the following: `cargo test -- --test-threads=1` # Issues, issues and more issues! There are many ways you can contribute to Hammond, and all of them involve creating issues -in [Hammond issue tracker](https://gitlab.gnome.org/alatiera/Hammond/issues). This is the -entry point for your contribution. +in [Hammond issue tracker](https://gitlab.gnome.org/alatiera/Hammond/issues). This is the entry point for your contribution. To create an effective and high quality ticket, try to put the following information on your ticket: @@ -67,8 +94,10 @@ Steps to reproduce: ## Pull Request Process 1. Ensure your code compiles. Run `make` before creating the pull request. -2. If you're adding new API, it must be properly documented. -3. The commit message is formatted as follows: +2. Ensure the test suit passes. Run `cargo test -- --test-threads=1`. +3. Ensure your code is properly formated. Run `cargo fmt --all`. +4. If you're adding new API, it must be properly documented. +5. The commit message is formatted as follows: ``` component: @@ -78,7 +107,7 @@ Steps to reproduce: ``` -4. You may merge the pull request in once you have the sign-off of the maintainers, or if you +6. You may merge the pull request in once you have the sign-off of the maintainers, or if you do not have permission to do that, you may request the second reviewer to merge it for you. ## Code of Conduct diff --git a/Cargo.lock b/Cargo.lock index 910f55f..6c1d6ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3,15 +3,6 @@ name = "adler32" version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "advapi32-sys" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "aho-corasick" version = "0.6.4" @@ -22,12 +13,12 @@ dependencies = [ [[package]] name = "ammonia" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "html5ever 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "maplit 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "html5ever 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -51,33 +42,30 @@ dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "atty" -version = "0.2.3" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-demangle 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -85,24 +73,19 @@ name = "backtrace-sys" version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "base64" -version = "0.6.0" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "bitflags" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "bitflags" version = "0.9.1" @@ -125,11 +108,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bytes" -version = "0.4.5" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -144,9 +127,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "c_vec 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "cairo-sys-rs 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -155,14 +138,19 @@ name = "cairo-sys-rs" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "cast" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "cc" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -176,7 +164,21 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "num 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "clap" +version = "2.29.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ansi_term 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -194,7 +196,7 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -202,33 +204,56 @@ name = "core-foundation-sys" version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "crc" -version = "1.6.0" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "build_const 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "crypt32-sys" -version = "0.2.0" +name = "criterion" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "clap 2.29.2 (registry+https://github.com/rust-lang/crates.io-index)", + "criterion-plot 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "criterion-stats 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "isatty 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "simplelog 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "dbghelp-sys" -version = "0.2.0" +name = "criterion-plot" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cast 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "criterion-stats" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cast 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", + "thread-scoped 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -250,17 +275,17 @@ dependencies = [ [[package]] name = "derive_builder" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "derive_builder_core 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_builder_core 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "derive_builder_core" -version = "0.1.7" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -269,17 +294,18 @@ dependencies = [ [[package]] name = "diesel" -version = "0.99.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "diesel_derives 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libsqlite3-sys 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "diesel_derives 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libsqlite3-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "r2d2 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "diesel_derives" -version = "0.99.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", @@ -288,11 +314,11 @@ dependencies = [ [[package]] name = "diesel_migrations" -version = "0.99.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "migrations_internals 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", - "migrations_macros 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", + "migrations_internals 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "migrations_macros 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -311,7 +337,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "derive-error-chain 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -326,7 +352,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "encoding_rs" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -337,7 +363,7 @@ name = "error-chain" version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -345,7 +371,26 @@ name = "error-chain" version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -363,19 +408,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "fuchsia-zircon" -version = "0.2.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "fuchsia-zircon-sys" -version = "0.2.0" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "futf" @@ -388,16 +431,16 @@ dependencies = [ [[package]] name = "futures" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "futures-cpupool" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -411,10 +454,10 @@ dependencies = [ "gdk-pixbuf 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "gdk-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pango 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -424,10 +467,10 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "gdk-pixbuf-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -439,7 +482,7 @@ dependencies = [ "gio-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -454,7 +497,7 @@ dependencies = [ "gio-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pango-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -466,10 +509,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "gio-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -480,20 +523,20 @@ dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "glib" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -502,10 +545,15 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "glob" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "gobject-sys" version = "0.5.0" @@ -513,7 +561,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -531,11 +579,11 @@ dependencies = [ "gdk-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "gio-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gtk-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pango 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -552,7 +600,7 @@ dependencies = [ "gio-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pango-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -561,24 +609,30 @@ dependencies = [ name = "hammond-data" version = "0.1.0" dependencies = [ - "ammonia 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "ammonia 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "derive_builder 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", - "diesel_migrations 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", + "criterion 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_builder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "diesel 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "diesel_migrations 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "itertools 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "r2d2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "r2d2-diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "reqwest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "reqwest 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", "rfc822_sanitizer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "rss 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "xdg 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -587,13 +641,13 @@ dependencies = [ name = "hammond-downloader" version = "0.1.0" dependencies = [ - "diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "hammond-data 0.1.0", - "hyper 0.11.7 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "mime_guess 1.8.3 (registry+https://github.com/rust-lang/crates.io-index)", - "reqwest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "reqwest 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -601,20 +655,23 @@ dependencies = [ name = "hammond-gtk" version = "0.1.0" dependencies = [ - "diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "dissolve 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "gdk 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "gdk-pixbuf 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "gio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "gtk 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "hammond-data 0.1.0", "hammond-downloader 0.1.0", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "loggerv 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "loggerv 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", "open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "send-cell 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -622,35 +679,52 @@ name = "html5ever" version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "markup5ever 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "html5ever" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "markup5ever 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "httparse" -version = "1.2.3" +version = "1.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "humansize" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "hyper" -version = "0.11.7" +version = "0.11.15" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", - "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "futures-cpupool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", - "httparse 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "httparse 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "mime 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "relay 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-proto 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -662,13 +736,13 @@ name = "hyper-tls" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.11.7 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tls 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -683,16 +757,40 @@ dependencies = [ [[package]] name = "iovec" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "isatty" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "itertools" -version = "0.7.4" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "itertools" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itertools" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -729,27 +827,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "lazycell" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libc" -version = "0.2.34" +version = "0.2.36" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "libflate" -version = "0.1.12" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "adler32 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "crc 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crc 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "libsqlite3-sys" -version = "0.8.1" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -758,17 +856,28 @@ dependencies = [ [[package]] name = "log" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "loggerv" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ansi_term 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "atty 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -778,7 +887,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "maplit" -version = "1.0.0" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -794,6 +903,21 @@ dependencies = [ "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "markup5ever" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "matches" version = "0.1.6" @@ -804,23 +928,23 @@ name = "memchr" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "migrations_internals" -version = "0.99.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", + "diesel 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "migrations_macros" -version = "0.99.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "migrations_internals 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", + "migrations_internals 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -830,7 +954,7 @@ name = "mime" version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -865,16 +989,16 @@ dependencies = [ [[package]] name = "mio" -version = "0.6.11" +version = "0.6.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazycell 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lazycell 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -894,11 +1018,13 @@ dependencies = [ [[package]] name = "native-tls" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "openssl 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)", - "schannel 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl 0.9.23 (registry+https://github.com/rust-lang/crates.io-index)", + "schannel 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", "tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -911,7 +1037,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -923,7 +1049,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", "num-iter 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -931,7 +1057,7 @@ name = "num-integer" version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -940,20 +1066,28 @@ version = "0.1.34" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "num-traits" -version = "0.1.41" +version = "0.1.42" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "num_cpus" -version = "1.7.0" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num_cpus" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -963,23 +1097,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "openssl" -version = "0.9.22" +version = "0.9.23" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", - "openssl-sys 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "openssl-sys" -version = "0.9.22" +version = "0.9.24" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "vcpkg 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -990,10 +1124,10 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pango-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1005,7 +1139,7 @@ dependencies = [ "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1037,7 +1171,7 @@ version = "0.7.21" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1061,10 +1195,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "quick-xml" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "encoding_rs 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "encoding_rs 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1076,30 +1210,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "r2d2" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "scheduled-thread-pool 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "r2d2-diesel" -version = "0.99.0" +name = "rand" +version = "0.3.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)", - "r2d2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "rand" -version = "0.3.18" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1118,14 +1253,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "coco 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", - "num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "redox_syscall" -version = "0.1.32" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1133,24 +1268,24 @@ name = "redox_termios" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex" -version = "0.2.3" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", - "thread_local 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -1158,28 +1293,28 @@ name = "relay" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "reqwest" -version = "0.8.1" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "hyper 0.11.7 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "hyper 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libflate 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libflate 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "mime_guess 2.0.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", "serde_urlencoded 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-tls 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1191,7 +1326,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1199,8 +1334,8 @@ name = "rss" version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "derive_builder 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-xml 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "derive_builder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "quick-xml 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1220,16 +1355,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "schannel" -version = "0.1.8" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "advapi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "crypt32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "secur32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1250,15 +1380,6 @@ name = "scopeguard" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -[[package]] -name = "secur32-sys" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "security-framework" version = "0.1.16" @@ -1266,7 +1387,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", "core-foundation-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", "security-framework-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1276,23 +1397,47 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "core-foundation-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "serde" -version = "1.0.23" +name = "send-cell" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "serde" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_derive" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive_internals 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_derive_internals" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", + "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "serde_json" -version = "1.0.7" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1302,10 +1447,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", "itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "simplelog" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "term 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "siphasher" version = "0.2.2" @@ -1335,7 +1490,21 @@ dependencies = [ "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "string_cache" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", + "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", "string_cache_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1356,6 +1525,11 @@ name = "string_cache_shared" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "strsim" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "syn" version = "0.11.11" @@ -1374,6 +1548,15 @@ dependencies = [ "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "synstructure" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "take" version = "0.1.0" @@ -1384,7 +1567,7 @@ name = "tempdir" version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1394,7 +1577,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "futf 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "utf-8 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "utf-8 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "term" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1402,41 +1594,53 @@ name = "termion" version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "thread_local" -version = "0.3.4" +name = "textwrap" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread-scoped" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "thread_local" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "time" -version = "0.1.38" +version = "0.1.39" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-core" -version = "0.1.10" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", - "mio 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", "scoped-tls 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1447,9 +1651,9 @@ name = "tokio-io" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "bytes 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1457,14 +1661,14 @@ name = "tokio-proto" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", "net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", "slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "smallvec 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "take 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1474,17 +1678,17 @@ name = "tokio-service" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tokio-tls" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "native-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "native-tls 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -1517,6 +1721,11 @@ name = "unicode-normalization" version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "unicode-width" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "unicode-xid" version = "0.0.4" @@ -1550,11 +1759,8 @@ dependencies = [ [[package]] name = "utf-8" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "utf8-ranges" @@ -1566,7 +1772,7 @@ name = "uuid" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -1574,6 +1780,11 @@ name = "vcpkg" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "vec_map" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "version_check" version = "0.1.3" @@ -1589,11 +1800,30 @@ name = "winapi" version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "winapi" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "winapi-build" version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "ws2_32-sys" version = "0.2.1" @@ -1610,107 +1840,119 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [metadata] "checksum adler32 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6cbd0b9af8587c72beadc9f72d35b9fbb070982c9e6203e46e93f10df25f8f45" -"checksum advapi32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e06588080cb19d0acb6739808aafa5f26bfb2ca015b2b6370028b44cf7cb8a9a" "checksum aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d6531d44de723825aa81398a6415283229725a00fa30713812ab9323faa82fc4" -"checksum ammonia 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2cc0ea12b4977283c563e78eaf227b024d89d72a6394040fad4063899bfcfb48" +"checksum ammonia 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f1b9ec9f0a4d43499276dfba49b3e92bf9081e8f2206386caa02237bc71e1beb" "checksum ansi_term 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6b3568b48b7cefa6b8ce125f9bb4989e52fbcc29ebea88df04cc7c5f12f70455" "checksum antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "34fde25430d87a9388dadbe6e34d7f72a462c8b43ac8d309b42b0a8505d7e2a5" "checksum atk-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "33a67fd81e1922dddc335887516f2f5254534e89c9d39fa89bca5d79bd150d34" -"checksum atty 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "21e50800ec991574876040fff8ee46b136a53e985286fbe6a3bdfe6421b78860" -"checksum backtrace 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8709cc7ec06f6f0ae6c2c7e12f6ed41540781f72b488d83734978295ceae182e" +"checksum atty 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8352656fd42c30a0c3c89d26dea01e3b77c0ab2af18230835c15e2e13cd51859" +"checksum backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbbf59b1c43eefa8c3ede390fcc36820b4999f7914104015be25025e0d62af2" "checksum backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "44585761d6161b0f57afc49482ab6bd067e4edef48c12a152c237eb0203f7661" -"checksum base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "96434f987501f0ed4eb336a411e0631ecd1afa11574fe148587adc4ff96143c9" -"checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" +"checksum base64 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "229d032f1a99302697f10b27167ae6d03d49d032e6a8e2550e8d3fc13356d2b4" "checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" "checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" "checksum build_const 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e90dc84f5e62d2ebe7676b83c22d33b6db8bd27340fb6ffbff0a364efa0cb9c9" "checksum byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "652805b7e73fada9d85e9a6682a4abd490cb52d96aeecc12e33a0de34dfd0d23" -"checksum bytes 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d828f97b58cc5de3e40c421d0cf2132d6b2da4ee0e11b8632fa838f0f9333ad6" +"checksum bytes 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1b7db437d718977f6dc9b2e3fd6fc343c02ac6b899b73fdd2179163447bd9ce9" "checksum c_vec 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6237ac5a4b1e81c213c24c6437964c61e646df910a914b4ab1487b46df20bd13" "checksum cairo-rs 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6b5695f59fd036fe5741bc5a4eb20c78fbe42256e3b08a2af26bbcbe8070bf3" "checksum cairo-sys-rs 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c6e18fecaeac51809db57f45f4553cc0975225a7eb435a7a7e91e5e8113a84d" -"checksum cc 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a9b13a57efd6b30ecd6598ebdb302cca617930b5470647570468a65d12ef9719" +"checksum cast 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "011941fb53da1a8ac3e4132a1becc367c44fe13f630769f3143d8c66c91c6cb6" +"checksum cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "deaf9ec656256bb25b404c51ef50097207b9cbb29c933d31f92cae5a8a0ffee0" "checksum cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de" "checksum chrono 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7c20ebe0b2b08b0aeddba49c609fe7957ba2e33449882cb186a180bc60682fa9" +"checksum clap 2.29.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4151c5790817c7d21bbdc6c3530811f798172915f93258244948b93ba19604a6" "checksum coco 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c06169f5beb7e31c7c67ebf5540b8b472d23e3eade3b2ec7d1f5b504a85f91bd" "checksum core-foundation 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "25bfd746d203017f7d5cbd31ee5d8e17f94b6521c7af77ece6c9e4b2d4b16c67" "checksum core-foundation-sys 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "065a5d7ffdcbc8fa145d6f0746f3555025b9097a9e9cda59f7467abae670c78d" -"checksum crc 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "64d4a687c40efbc7d376958117b34d5f1cece11709110a742405bf58e7a34f00" -"checksum crypt32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e34988f7e069e0b2f3bfc064295161e489b2d4e04a2e4248fb94360cdf00b4ec" -"checksum dbghelp-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "97590ba53bcb8ac28279161ca943a924d1fd4a8fb3fa63302591647c4fc5b850" +"checksum crc 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bd5d02c0aac6bd68393ed69e00bbc2457f3e89075c6349db7189618dc4ddc1d7" +"checksum criterion 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f58b0200bf321214bdda8c797cf0071bcc638171c40ec198c3f652a4edaacde3" +"checksum criterion-plot 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "885431f7865f9d4956b466126674e5ea40a0f193d42157e56630c356c5501957" +"checksum criterion-stats 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c71521cb4c7b7eac76b540e75447fb0172c4234d6333729001b886aaa21d6da4" "checksum debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9a032eac705ca39214d169f83e3d3da290af06d8d1d344d1baad2fd002dca4b3" "checksum derive-error-chain 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3c9ca9ade651388daad7c993f005d0d20c4f6fe78c1cdc93e95f161c6f5ede4a" -"checksum derive_builder 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "03600ae366b6eb2314e54d62adc833d9866da03798acc61c61789654ceaa227a" -"checksum derive_builder_core 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eed37eae64daa5511467b1a55cebdf472deeaef108d22f62f25e8bbcaffd56ac" -"checksum diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0b97bd43f72d4819fac99f24d0030184c64c5ebdee96f94c7a7d4215c50506a7" -"checksum diesel_derives 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ad228b6fd05c86050b95f56e497a8135073ffce28602e2200e63a21047eb474d" -"checksum diesel_migrations 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "745dcfe39e3043c267e46dbe4f2ebbc9917039bdf4d81b108950be61244dfc89" +"checksum derive_builder 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c998e6ab02a828dd9735c18f154e14100e674ed08cb4e1938f0e4177543f439" +"checksum derive_builder_core 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "735e24ee9e5fa8e16b86da5007856e97d592e11867e45d76e0c0d0a164a0b757" +"checksum diesel 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925325c57038f2f14c0413bdf6a92ca72acff644959d0a1a9ebf8d19be7e9c01" +"checksum diesel_derives 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "28e2b2605ac6a3b9a586383f5f8b2b5f1108f07a421ade965b266289d2805e79" +"checksum diesel_migrations 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0928a7d6f27c849954185416bd59439837de55fbc89e2985b0e46e756ae4e3da" "checksum dissolve 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "898542be4716d992082c8e4fc331b792d626cfa71cb2b4790f828b9a8f921a90" "checksum dotenv 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d6f0e2bb24d163428d8031d3ebd2d2bd903ad933205a97d0f18c7c1aade380f3" "checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab" "checksum either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "740178ddf48b1a9e878e6d6509a1442a2d42fd2928aae8e7a6f8a36fb01981b3" -"checksum encoding_rs 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f5215aabf22b83153be3ee44dfe3f940214541b2ce13d419c55e7a115c8c51a9" +"checksum encoding_rs 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98fd0f24d1fb71a4a6b9330c8ca04cbd4e7cc5d846b54ca74ff376bc7c9f798d" "checksum error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" "checksum error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ff511d5dc435d703f4971bc399647c9bc38e20cb41452e3b9feb4765419ed3f3" +"checksum failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "934799b6c1de475a012a02dab0ace1ace43789ee4b99bcfbf1a2e3e8ced5de82" +"checksum failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c7cdda555bb90c9bb67a3b670a0f42de8e73f5981524123ad8578aafec8ddb8b" "checksum foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" "checksum foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -"checksum fuchsia-zircon 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f6c0581a4e363262e52b87f59ee2afe3415361c6ec35e665924eb08afe8ff159" -"checksum fuchsia-zircon-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "43f3795b4bae048dc6123a6b972cadde2e676f9ded08aef6bb77f5f157684a82" +"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" "checksum futf 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "51f93f3de6ba1794dcd5810b3546d004600a59a98266487c8407bc4b24e398f3" -"checksum futures 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = "118b49cac82e04121117cbd3121ede3147e885627d82c4546b87c702debb90c1" -"checksum futures-cpupool 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "e86f49cc0d92fe1b97a5980ec32d56208272cbb00f15044ea9e2799dde766fdf" +"checksum futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "0bab5b5e94f5c31fc764ba5dd9ad16568aae5d4825538c01d6bca680c9bf94a7" +"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" "checksum gdk 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e51db95be6565011bcd5cd99f9b17fdd585001057a999b21e09f1e8c28deb9" "checksum gdk-pixbuf 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "16160d212ae91abe9f3324c3fb233929ba322dde63585d15cda3336f8c529ed1" "checksum gdk-pixbuf-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "798f97101eea8180da363d0e80e07ec7ec6d1809306601c0100c1de5bc8b4f52" "checksum gdk-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d4ee916f5f25c5f4b21bd9dcb12a216ae697406940ff9476358c308a8ececada" "checksum gio 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "84ba5a2beb559059a0c9c2bd3681743cdede8d9a36c775840bca800333b22867" "checksum gio-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a303bbf7a5e75ab3b627117ff10e495d1b9e97e1d68966285ac2b1f6270091bc" -"checksum glib 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "450247060df7d52fdad31e1d66f30d967e925c9d1d26a0ae050cfe33dcd00d08" +"checksum glib 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b9b0452824cc63066940f01adc721804919f0b76cdba3cfab977b00b87f16d4a" "checksum glib-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9693049613ff52b93013cc3d2590366d8e530366d288438724b73f6c7dc4be8" +"checksum glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb" "checksum gobject-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "60d507c87a71b1143c66ed21a969be9b99a76df234b342d733e787e6c9c7d7c2" "checksum gtk 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0847c507e52c1feaede13ef56fb4847742438602655449d5f1f782e8633f146f" "checksum gtk-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "905fcfbaaad1b44ec0b4bba9e4d527d728284c62bc2ba41fccedace2b096766f" "checksum html5ever 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba3a1fd1857a714d410c191364c5d7bf8a6487c0ab5575146d37dd7eb17ef523" -"checksum httparse 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "af2f2dd97457e8fb1ae7c5a420db346af389926e36f43768b96f101546b04a07" -"checksum hyper 0.11.7 (registry+https://github.com/rust-lang/crates.io-index)" = "4959ca95f55df4265bff2ad63066147255e6fa733682cf6d1cb5eaff6e53324b" +"checksum html5ever 0.22.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e579ac8647178ab915d400d7d22938bda5cd351c6c62e1c294d56884ccfc75fe" +"checksum httparse 1.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "c2f407128745b78abc95c0ffbe4e5d37427fdc0d45470710cfef8c44522a2e37" +"checksum humansize 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b6cab2627acfc432780848602f3f558f7e9dd427352224b0d9324025796d2a5e" +"checksum hyper 0.11.15 (registry+https://github.com/rust-lang/crates.io-index)" = "4d6105c5eeb03068b10ff34475a0d166964f98e7b9777cc34b342a225af9b87c" "checksum hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c81fa95203e2a6087242c38691a0210f23e9f3f8f944350bd676522132e2985" "checksum idna 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "014b298351066f1512874135335d62a789ffe78a9974f94b43ed5621951eaf7d" -"checksum iovec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b6e8b9c2247fcf6c6a1151f1156932be5606c9fd6f55a2d7f9fc1cb29386b2f7" -"checksum itertools 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "947aa0b9bb417792efa3936c5dada2d680b3bc27ea6a88ffa062f4c4d86ef8c5" +"checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" +"checksum isatty 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8f2a233726c7bb76995cec749d59582e5664823b7245d4970354408f1d79a7a2" +"checksum itertools 0.4.19 (registry+https://github.com/rust-lang/crates.io-index)" = "c4a9b56eb56058f43dc66e58f40a214b2ccbc9f3df51861b63d51dec7b65bc3f" +"checksum itertools 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4833d6978da405305126af4ac88569b5d71ff758581ce5a987dbfa3755f694fc" +"checksum itertools 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "b07332223953b5051bceb67e8c4700aa65291535568e1f12408c43c4a42c0394" "checksum itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8324a32baf01e2ae060e9de58ed0bc2320c9a2833491ee36cd3b4c414de4db8c" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" "checksum lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c8f31047daa365f19be14b47c29df4f7c3b581832407daabe6ae77397619237d" -"checksum lazycell 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3b585b7a6811fb03aa10e74b278a0f00f8dd9b45dc681f148bb29fa5cb61859b" -"checksum libc 0.2.34 (registry+https://github.com/rust-lang/crates.io-index)" = "36fbc8a8929c632868295d0178dd8f63fc423fd7537ad0738372bd010b3ac9b0" -"checksum libflate 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "ae46bcdafa496981e996e57c5be82c0a7f130a071323764c6faa4803619f1e67" -"checksum libsqlite3-sys 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "370090ad578ba845a3ad4f383ceb3deba7abd51ab1915ad1f2c982cc6035e31c" -"checksum log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "880f77541efa6e5cc74e76910c9884d9859683118839d6a1dc3b11e63512565b" -"checksum loggerv 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b178879253fab6ddb4ea931e1e6f514d45ce6a53f7fe618a0a8751f43e42e4f1" +"checksum lazycell 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a6f08839bc70ef4a3fe1d566d5350f519c5912ea86be0df1740a7d247c7fc0ef" +"checksum libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1e5d97d6708edaa407429faa671b942dc0f2727222fb6b6539bf1db936e4b121" +"checksum libflate 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "1a429b86418868c7ea91ee50e9170683f47fd9d94f5375438ec86ec3adb74e8e" +"checksum libsqlite3-sys 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0e9eb7b8e152b6a01be6a4a2917248381875758250dc3df5d46caf9250341dda" +"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "89f010e843f2b1a31dbd316b3b8d443758bc634bed37aabade59c686d644e0a2" +"checksum loggerv 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c89b6a176c1e09d4bfc52ecfa660e19e97fbc8f7533e6c0cea2a9820ae5be4c3" "checksum mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" -"checksum maplit 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ed95049d40b8a1a7691adbabca028ad481f7e6a2921ce4846e1ee168b4e4ca5" +"checksum maplit 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08cbb6b4fef96b6d77bfc40ec491b1690c779e77b05cd9f07f787ed376fd4c43" "checksum markup5ever 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2cf89d3e0486c32c9d99521455ddf9a438910a1ce2bd376936086edc15dff5fc" +"checksum markup5ever 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfedc97d5a503e96816d10fedcd5b42f760b2e525ce2f7ec71f6a41780548475" "checksum matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "100aabe6b8ff4e4a7e32c1c13523379802df0772b82466207ac25b013f193376" "checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" -"checksum migrations_internals 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ac1d17f6f161f4d91cb7e5a72cce5b24a60b80f96580a8ac94351c56b8606a" -"checksum migrations_macros 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dc767420eac6b718cd593aaa09c06a31d4ed228291c8538b274737e28a29939b" +"checksum migrations_internals 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bd916de6df9ac7e811e7e1ac28e0abfebe5205f3b29a7bda9ec8a41ee980a4eb" +"checksum migrations_macros 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a550cfd76f6cfdf15a7b541893d7c79b68277b0b309f12179211a373a56e617" "checksum mime 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" "checksum mime 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e2e00e17be181010a91dbfefb01660b17311059dc8c7f48b9017677721e732bd" "checksum mime_guess 1.8.3 (registry+https://github.com/rust-lang/crates.io-index)" = "dc7e82a15629bb4ecd9e72365bf33d1382be91e030f820edb8e2a21c02430da8" "checksum mime_guess 2.0.0-alpha.3 (registry+https://github.com/rust-lang/crates.io-index)" = "013572795763289e14710c7b279461295f2673b2b338200c235082cd7ca9e495" -"checksum mio 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "0e8411968194c7b139e9105bc4ae7db0bae232af087147e72f0616ebf5fdb9cb" +"checksum mio 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "75f72a93f046f1517e3cfddc0a096eb756a2ba727d36edc8227dee769a50a9b0" "checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" -"checksum native-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "04b781c9134a954c84f0594b9ab3f5606abc516030388e8511887ef4c204a1e5" +"checksum native-tls 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f74dbadc8b43df7864539cedb7bc91345e532fdd913cfdc23ad94f4d2d40fbc0" "checksum net2 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)" = "3a80f842784ef6c9a958b68b7516bc7e35883c614004dd94959a4dca1b716c09" "checksum num 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "cc4083e14b542ea3eb9b5f33ff48bd373a92d78687e74f4cc0a30caeb754f0ca" "checksum num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)" = "d1452e8b06e448a07f0e6ebb0bb1d92b8890eea63288c0b627331d53514d0fba" "checksum num-iter 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)" = "7485fcc84f85b4ecd0ea527b14189281cf27d60e583ae65ebc9c088b13dffe01" -"checksum num-traits 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "cacfcab5eb48250ee7d0c7896b51a2c5eec99c1feea5f32025635f5ae4b00070" -"checksum num_cpus 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "514f0d73e64be53ff320680ca671b64fe3fb91da01e1ae2ddc99eb51d453b20d" +"checksum num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "9936036cc70fe4a8b2d338ab665900323290efb03983c86cbe235ae800ad8017" +"checksum num_cpus 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "cee7e88156f3f9e19bdd598f8d6c9db7bf4078f99f8381f43a55b09648d1a6e3" +"checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" "checksum open 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c281318d992e4432cfa799969467003d05921582a7489a8325e37f8a450d5113" -"checksum openssl 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)" = "419ef26bb651d72b6c5a603bcc4e4856a362460e62352dfffa53de91d2e81181" -"checksum openssl-sys 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)" = "5483bdc56756041ba6aa37c9cb59cc2219f012a2a1377d97ad35556ac6676ee7" +"checksum openssl 0.9.23 (registry+https://github.com/rust-lang/crates.io-index)" = "169a4b9160baf9b9b1ab975418c673686638995ba921683a7f1e01470dcb8854" +"checksum openssl-sys 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)" = "14ba54ac7d5a4eabd1d5f2c1fdeb7e7c14debfa669d94b983d01b465e767ba9e" "checksum pango 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e81c404ab81ea7ea2fc2431a0a7672507b80e4b8bf4b41eac3fc83cc665104e" "checksum pango-sys 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "34f34a1be107fe16abb2744e0e206bee4b3b07460b5fddd3009a6aaf60bd69ab" "checksum percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" @@ -1720,69 +1962,83 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "07e24b0ca9643bdecd0632f2b3da6b1b89bbb0030e0b992afc1113b23a7bc2f2" "checksum pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3a8b4c6b8165cd1a1cd4b9b120978131389f64bdaf456435caa41e630edba903" "checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" -"checksum quick-xml 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5d0fb3e41d968cd20da34a9e81abae097398b38fe0987149e321572eb75d3317" +"checksum quick-xml 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "19602854dba17f93b3011fe272af6db3133d5b495279f504bf9104dc97879717" "checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" -"checksum r2d2 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "59611202bee496c586ecd84e3ed149b4ec75981b0fc10d7f60e878fa23ae16e9" -"checksum r2d2-diesel 0.99.0 (registry+https://github.com/rust-lang/crates.io-index)" = "77aaed149a82720f4b664427f359e1b2a34d8787c1bc3fb1d167b104a1ddd866" -"checksum rand 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)" = "6475140dfd8655aeb72e1fd4b7a1cc1c202be65d71669476e392fe62532b9edd" +"checksum r2d2 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f9078ca6a8a5568ed142083bb2f7dc9295b69d16f867ddcc9849e51b17d8db46" +"checksum rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)" = "512870020642bb8c221bf68baa1b2573da814f6ccfe5c9699b1c303047abe9b1" +"checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5" "checksum rayon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed02d09394c94ffbdfdc755ad62a132e94c3224a8354e78a1200ced34df12edf" "checksum rayon-core 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e64b609139d83da75902f88fd6c01820046840a18471e4dfcd5ac7c0f46bea53" -"checksum redox_syscall 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "ab105df655884ede59d45b7070c8a65002d921461ee813a024558ca16030eea0" +"checksum redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "0d92eecebad22b767915e4d529f89f28ee96dbbf5a4810d2b844373f136417fd" "checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" -"checksum regex 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ac6ab4e9218ade5b423358bbd2567d1617418403c7a512603630181813316322" -"checksum regex-syntax 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad890a5eef7953f55427c50575c680c42841653abd2b028b68cd223d157f62db" +"checksum regex 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "744554e01ccbd98fff8c457c3b092cd67af62a555a43bfe97ae8a0451f7799fa" +"checksum regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" "checksum relay 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f301bafeb60867c85170031bdb2fcf24c8041f33aee09e7b116a58d4e9f781c5" -"checksum reqwest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f73a8482e3b2b20ef5c07168b27048fc3778a012ce9b11a021556a450a01e9b5" +"checksum reqwest 0.8.4 (registry+https://github.com/rust-lang/crates.io-index)" = "449c45f593ce9af9417c91e22f274fb8cea013bcf3d37ec1b5fb534b623bc708" "checksum rfc822_sanitizer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "680e8305c1e0cdf836dc4bec5424e045f278c975a3cac36d1ca01c4695f9d815" "checksum rss 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3fbc1a0587ebbc7404b3295c8e1f717d00dad48e3c205adadf916f15ff67d05b" "checksum rustc-demangle 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "aee45432acc62f7b9a108cc054142dac51f979e69e71ddce7d6fc7adf29e817e" "checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" "checksum safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f" -"checksum schannel 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7554288337c1110e34d7a2433518d889374c1de1a45f856b7bcddb03702131fc" +"checksum schannel 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "acece75e0f987c48863a6c792ec8b7d6c4177d4a027f8ccc72f849794f437016" "checksum scheduled-thread-pool 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a2ff3fc5223829be817806c6441279c676e454cc7da608faf03b0ccc09d3889" "checksum scoped-tls 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f417c22df063e9450888a7561788e9bd46d3bb3c1466435b4eccb903807f147d" "checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" -"checksum secur32-sys 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3f412dfa83308d893101dd59c10d6fda8283465976c28c287c5c855bf8d216bc" "checksum security-framework 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "dfa44ee9c54ce5eecc9de7d5acbad112ee58755239381f687e564004ba4a2332" "checksum security-framework-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "5421621e836278a0b139268f36eee0dc7e389b784dc3f79d8f11aabadf41bead" -"checksum serde 1.0.23 (registry+https://github.com/rust-lang/crates.io-index)" = "6a7c37d7f192f00041e8a613e936717923a71bc0c9051fc4425a49b104140f05" -"checksum serde_json 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "ea28ea0cca944668919bec6af209864a8dfe769fd2b0b723f36b22e20c1bf69f" +"checksum send-cell 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1c620dd7e056b468b9d374a9f51cfa6bb4bf17a8ca4ee62e5efa0d99aaff2c41" +"checksum serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "db99f3919e20faa51bb2996057f5031d8685019b5a06139b1ce761da671b8526" +"checksum serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "f4ba7591cfe93755e89eeecdbcc668885624829b020050e6aec99c2a03bd3fd0" +"checksum serde_derive_internals 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6e03f1c9530c3fb0a0a5c9b826bdd9246a5921ae995d75f512ac917fc4dd55b5" +"checksum serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c9db7266c7d63a4c4b7fe8719656ccdd51acf1bed6124b174f933b009fb10bcb" "checksum serde_urlencoded 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ce0fd303af908732989354c6f02e05e2e6d597152870f2c6990efb0577137480" +"checksum simplelog 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "24b615b1a3cc51ffa565d9a1d0cfcc49fe7d64737ada84eca284cddb0292d125" "checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537" "checksum slab 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23" "checksum slab 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fdeff4cd9ecff59ec7e3744cbca73dfe5ac35c2aedb2cfba8a1c715a18912e9d" "checksum smallvec 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4c8cbcd6df1e117c2210e13ab5109635ad68a929fcbb8964dc965b76cb5ee013" "checksum string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "413fc7852aeeb5472f1986ef755f561ddf0c789d3d796e65f0b6fe293ecd4ef8" +"checksum string_cache 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "39cb4173bcbd1319da31faa5468a7e3870683d7a237150b0b0aaafd546f6ad12" "checksum string_cache_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "479cde50c3539481f33906a387f2bd17c8e87cb848c35b6021d41fb81ff9b4d7" "checksum string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc" +"checksum strsim 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d15c810519a91cf877e7e36e63fe068815c678181439f2f29e2562147c3694" "checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" "checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" +"checksum synstructure 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a761d12e6d8dcb4dcf952a7a89b475e3a9d69e4a69307e01a470977642914bd" "checksum take 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b157868d8ac1f56b64604539990685fa7611d8fa9e5476cf0c02cf34d32917c5" "checksum tempdir 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "87974a6f5c1dfb344d733055601650059a3363de2a6104819293baff662132d6" "checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508" +"checksum term 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "fa63644f74ce96fbeb9b794f66aff2a52d601cbd5e80f4b97123e3899f4570f1" "checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" -"checksum thread_local 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1697c4b57aeeb7a536b647165a2825faddffb1d3bad386d507709bd51a90bb14" -"checksum time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)" = "d5d788d3aa77bc0ef3e9621256885555368b47bd495c13dd2e7413c89f845520" -"checksum tokio-core 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "c843a027f7c1df5f81e7734a0df3f67bf329411781ebf36393ce67beef6071e3" +"checksum textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c0b59b6b4b44d867f1370ef1bd91bfb262bf07bf0ae65c202ea2fbc16153b693" +"checksum thread-scoped 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bcbb6aa301e5d3b0b5ef639c9a9c7e2f1c944f177b460c04dc24c69b1fa2bd99" +"checksum thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "279ef31c19ededf577bfd12dfae728040a21f635b06a24cd670ff510edd38963" +"checksum time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "a15375f1df02096fb3317256ce2cee6a1f42fc84ea5ad5fc8c421cfe40c73098" +"checksum tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "52b4e32d8edbf29501aabb3570f027c6ceb00ccef6538f4bddba0200503e74e8" "checksum tokio-io 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "514aae203178929dbf03318ad7c683126672d4d96eccb77b29603d33c9e25743" "checksum tokio-proto 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8fbb47ae81353c63c487030659494b295f6cb6576242f907f203473b191b0389" "checksum tokio-service 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "24da22d077e0f15f55162bdbdc661228c1581892f52074fb242678d015b45162" -"checksum tokio-tls 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d88e411cac1c87e405e4090be004493c5d8072a370661033b1a64ea205ec2e13" +"checksum tokio-tls 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "772f4b04e560117fe3b0a53e490c16ddc8ba6ec437015d91fa385564996ed913" "checksum unicase 1.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" "checksum unicase 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "284b6d3db520d67fbe88fd778c21510d1b0ba4a551e5d0fbb023d33405f6de8a" "checksum unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5" "checksum unicode-normalization 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "51ccda9ef9efa3f7ef5d91e8f9b83bbe6955f9bf86aec89d5cce2c874625920f" +"checksum unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f" "checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" "checksum unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1f2ae5ddb18e1c92664717616dd9549dde73f539f01bd7b77c2edb2446bdff91" "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" "checksum url 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa35e768d4daf1d85733418a49fb42e10d7f633e394fccab4ab7aba897053fe2" -"checksum utf-8 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b6f923c601c7ac48ef1d66f7d5b5b2d9a7ba9c51333ab75a3ddf8d0309185a56" +"checksum utf-8 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1262dfab4c30d5cb7c07026be00ee343a6cf5027fdc0104a9160f354e5db75c" "checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122" "checksum uuid 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcc7e3b898aa6f6c08e5295b6c89258d1331e9ac578cc992fb818759951bdc22" "checksum vcpkg 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9e0a7d8bed3178a8fb112199d466eeca9ed09a14ba8ad67718179b4fd5487d0b" +"checksum vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "887b5b631c2ad01628bbbaa7dd4c869f80d3186688f8d0b6f58774fbe324988c" "checksum version_check 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6b772017e347561807c1aa192438c5fd74242a670a6cffacc40f2defd1dc069d" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +"checksum winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "04e3bd221fcbe8a271359c04f21a76db7d0c6028862d1bb5512d85e1e2eb5bb3" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" "checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" "checksum xdg 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a66b7c2281ebde13cf4391d70d4c7e5946c3c25e72a7b859ca8f677dcd0b0c61" diff --git a/README.md b/README.md index 89a8a06..99171a3 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,19 @@ # Hammond -## Multithreaded and reliable Gtk+ Podcast client. -This is a prototype of a podcast client written in Rust. + +## A Podcast Client for the GNOME Desktop written in Rust. [![pipeline status](https://gitlab.gnome.org/alatiera/Hammond/badges/master/pipeline.svg)](https://gitlab.gnome.org/alatiera/Hammond/commits/master) -![podcasts_view](./assets/podcasts_view.png) -![podcast_widget](./assets/podcast_widget.png) +### Features -## Getting in Touch -If you have any questions regarding the -use or development of Hammond, want to discuss design or simply hang out, please join us in [#hammond on irc.gnome.org.](irc://irc.gnome.org/#hammond) +* TBA -Sidenote: - -There isn't much documentation yet, so you will probably have question about parts of the Code. +![episdes_view](./assets/episodes_view.png) +![shows_view](./assets/shows_view.png) +![show_widget](./assets/show_widget.png) ## Quick start + The following steps assume you have a working installation of rustc and cargo. If you dont take a look at [rustup.rs](rustup.rs) @@ -25,7 +23,22 @@ cd Hammond/ cargo run -p hammond-gtk --release ``` +## Broken Feeds + +Found a feed that does not work in Hammond? +Please [open an issue](https://gitlab.gnome.org/alatiera/Hammond/issues/new) and choose the `BrokenFeed` template so we will know and fix it! + +## Getting in Touch + +If you have any questions regarding the use or development of Hammond, +want to discuss design or simply hang out, please join us in [#hammond on irc.gnome.org.](irc://irc.gnome.org/#hammond) + +Note: + +There isn't much documentation yet, so you will probably have question about parts of the Code. + ## Install from soure + ```sh git clone https://gitlab.gnome.org/alatiera/hammond.git cd Hammond/ @@ -33,31 +46,43 @@ cd Hammond/ make && sudo make install ``` -**Additionall:** +**Additional:** You can run `sudo make uninstall` for removal And `make clean` to clean up the enviroment after instalation. ### Flatpak -Flatpak instructions... Soon™. + +#### Building a Flatpak + +Download the `org.gnome.Hammond.json` flatpak manifest from this repo. + +```bash +flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo # Add flathub repo +flatpak --user install flathub org.freedesktop.Sdk.Extension.rust-stable # Install the required rust-stable extension from flathub +flatpak-builder --repo=repo hammond org.gnome.Hammond.json --force-clean +flatpak build-bundle repo hammond org.gnome.Hammond +``` ## Building -### Dependancies +### Dependencies * Rust stable 1.22 or later. * Gtk+ 3.22 or later * Meson -**Debian/Ubuntu**: +**Debian/Ubuntu** + ```sh apt-get update -yqq apt-get install -yqq --no-install-recommends build-essential apt-get install -yqq --no-install-recommends libgtk-3-dev meson ``` -**Fedora**: +**Fedora** + ```sh dnf install -y gtk3-devel glib2-devel openssl-devel sqlite-devel meson ``` @@ -70,14 +95,6 @@ cd Hammond/ cargo build --all ``` -## Call for designers - -Currently there no design plans or mockups. They are highly needed in order to advance the Gtk Client. - -There is the will for a complete client re-write if a someone contributes the mockups. - -If you happen to be a designer and want to contribute please hope on [#hammond](irc://irc.gnome.org/#hammond) and get in touch with us. - ## Contributing There alot of thins yet to be done. @@ -96,8 +113,8 @@ There are also some minor tasks tagged with `TODO:` and `FIXME:` in the source c ```sh $ tree -d ├── assets # png's used in the README.md -├── hammond-data # Storate related stuff, Sqlite db, XDG setup. -│   ├── migrations # Diesel migrations. +├── hammond-data # Storate related stuff, SQLite, XDG setup, RSS Parser. +│   ├── migrations # Diesel SQL migrations. │   │   └── ... │   ├── src │   └── tests @@ -108,8 +125,8 @@ $ tree -d │   ├── resources # GResources folder │   │   └── gtk # Contains the glade.ui files. │   └── src -│   ├── views # Currently only contains the Podcasts_view. -│   └── widgets # Contains custom widgets such as Podcast and Episode. +│   ├── views # Contains the Empty, Episodes and Shows view. +│   └── widgets # Contains custom widgets such as Show and Episode. ``` ## A note about the project's name @@ -120,9 +137,9 @@ It has nothing to do with the horrible headlines on the news. ## Acknowledgments -Hammond's design is heavily insired by [Gnome-Music](https://wiki.gnome.org/Design/Apps/Music) and [Vocal](http://vocalproject.net/). +Hammond's design is heavily insired by [GNOME Music](https://wiki.gnome.org/Design/Apps/Music) and [Vocal](http://vocalproject.net/). -We also copied some elements from [Gnome-news](https://wiki.gnome.org/Design/Apps/Potential/News). +We also copied some elements from [GNOME News](https://wiki.gnome.org/Design/Apps/Potential/News). And almost the entirety of the build system is copied from the [Fractal](https://gitlab.gnome.org/danigm/fractal) project. diff --git a/TODO.md b/TODO.md index 1ed5678..71d1fda 100644 --- a/TODO.md +++ b/TODO.md @@ -1,45 +1,32 @@ -## TODOs: +# TODOs ## Planned Features -## Priorities: +## Priorities - [ ] Unplayed Only and Downloaded only view. -- [ ] Auto-updater - [ ] OPML import/export // Probably need to create a crate. -**Proper Desing Mockups for the Gtk Client:** - -- [ ] Re-design EpisodeWidget. -- [ ] Re-design PodcastWidget. -- [ ] Polish the flowbox_child banner. - -## Second: +## Second - [ ] Make use of file metadas, [This](https://github.com/GuillaumeGomez/audio-video-metadata) might be helpfull. -- [ ] Notifications - [ ] Episode queue - [ ] Embedded player - [ ] MPRIS integration - [ ] Search Implementation +## Third -## Third: - -- [ ] Download Queue +- [ ] Download Queue - [ ] Ability to Stream content on demand - [ ] soundcloud and itunes feeds // [This](http://getrssfeed.com) seems intresting. -- [ ] Integrate with Itunes API for various crap -- [ ] YoutubeFeeds +- [ ] Integrate with Itunes API for various crap? +- [ ] YoutubeFeeds? ## Rest Tasks **Would be nice:** - [ ] Make Podcast cover fetchng and loading not block the execution of the program at startup. -- [ ] Lazy evaluate episode loading based on the podcast_widget's view scrolling. -- [ ] Headerbar back button and stack switching +- [ ] Lazy evaluate episode loading based on the show_widget's scrolling. -**FIXME:** - -- [ ] Fix Etag/Last-modified implementation. [#2](https://gitlab.gnome.org/alatiera/Hammond/issues/2) diff --git a/assets/episodes_view.png b/assets/episodes_view.png new file mode 100644 index 0000000..e03b528 Binary files /dev/null and b/assets/episodes_view.png differ diff --git a/assets/podcast_widget.png b/assets/podcast_widget.png deleted file mode 100644 index 279a48e..0000000 Binary files a/assets/podcast_widget.png and /dev/null differ diff --git a/assets/podcasts_view.png b/assets/podcasts_view.png deleted file mode 100644 index 144ed17..0000000 Binary files a/assets/podcasts_view.png and /dev/null differ diff --git a/assets/show_widget.png b/assets/show_widget.png new file mode 100644 index 0000000..f65ce72 Binary files /dev/null and b/assets/show_widget.png differ diff --git a/assets/shows_view.png b/assets/shows_view.png new file mode 100644 index 0000000..d02af92 Binary files /dev/null and b/assets/shows_view.png differ diff --git a/hammond-data/Cargo.toml b/hammond-data/Cargo.toml index c28e25f..01e42cf 100644 --- a/hammond-data/Cargo.toml +++ b/hammond-data/Cargo.toml @@ -5,31 +5,41 @@ version = "0.1.0" workspace = "../" [dependencies] -ammonia = "1.0.0" +ammonia = "1.0.1" chrono = "0.4.0" -derive_builder = "0.5.0" +derive_builder = "0.5.1" dotenv = "0.10.1" error-chain = "0.11.0" -itertools = "0.7.4" +itertools = "0.7.6" lazy_static = "1.0.0" -log = "0.3.8" -r2d2 = "0.8.1" -r2d2-diesel = "0.99.0" +log = "0.4.1" rayon = "0.9.0" -reqwest = "0.8.1" +reqwest = "0.8.4" rfc822_sanitizer = "0.3.3" rss = "1.2.1" url = "1.6.0" xdg = "2.1.0" +futures = "0.1.18" +hyper = "0.11.15" +tokio-core = "0.1.12" +hyper-tls = "0.1.2" +native-tls = "0.1.5" +futures-cpupool = "0.1.8" +num_cpus = "1.8.0" [dependencies.diesel] -features = ["sqlite"] -version = "0.99.0" +features = ["sqlite", "r2d2"] +version = "1.1.1" [dependencies.diesel_migrations] features = ["sqlite"] -version = "0.99.0" +version = "1.1.0" [dev-dependencies] -rand = "0.3.18" +rand = "0.4.2" tempdir = "0.3.5" +criterion = "0.1.2" + +[[bench]] +name = "bench" +harness = false diff --git a/hammond-data/benches/bench.rs b/hammond-data/benches/bench.rs index 4a71a8e..5113782 100644 --- a/hammond-data/benches/bench.rs +++ b/hammond-data/benches/bench.rs @@ -1,66 +1,125 @@ -#![feature(test)] +#[macro_use] +extern crate criterion; +use criterion::Criterion; -extern crate diesel; +// extern crate futures; +// extern crate futures_cpupool; extern crate hammond_data; +extern crate hyper; +extern crate hyper_tls; extern crate rand; -extern crate rayon; +extern crate tokio_core; +// extern crate rayon; extern crate rss; -extern crate tempdir; -extern crate test; -use rayon::prelude::*; +// use rayon::prelude::*; -use test::Bencher; +// use futures::future::*; +// use futures_cpupool::CpuPool; +use tokio_core::reactor::Core; +use hammond_data::FeedBuilder; use hammond_data::Source; -use hammond_data::feed::{index, Feed}; +use hammond_data::database::truncate_db; +use hammond_data::pipeline; +// use hammond_data::errors::*; use std::io::BufReader; -// Big rss feed -const PCPER: &[u8] = include_bytes!("feeds/pcpermp3.xml"); -const UNPLUGGED: &[u8] = include_bytes!("feeds/linuxunplugged.xml"); -const RADIO: &[u8] = include_bytes!("feeds/coderradiomp3.xml"); -const SNAP: &[u8] = include_bytes!("feeds/techsnapmp3.xml"); -const LAS: &[u8] = include_bytes!("feeds/TheLinuxActionShow.xml"); +// RSS feeds +const INTERCEPTED: &[u8] = include_bytes!("../tests/feeds/2018-01-20-Intercepted.xml"); +const INTERCEPTED_URL: &str = "https://web.archive.org/web/20180120083840if_/https://feeds.\ + feedburner.com/InterceptedWithJeremyScahill"; -static URLS: &[(&[u8], &str)] = &[ - (PCPER, "https://www.pcper.com/rss/podcasts-mp3.rss"), - (UNPLUGGED, "http://feeds.feedburner.com/linuxunplugged"), - (RADIO, "https://feeds.feedburner.com/coderradiomp3"), - (SNAP, "https://feeds.feedburner.com/techsnapmp3"), - (LAS, "https://feeds2.feedburner.com/TheLinuxActionShow"), +const UNPLUGGED: &[u8] = include_bytes!("../tests/feeds/2018-01-20-LinuxUnplugged.xml"); +const UNPLUGGED_URL: &str = + "https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.com/linuxunplugged"; + +const TIPOFF: &[u8] = include_bytes!("../tests/feeds/2018-01-20-TheTipOff.xml"); +const TIPOFF_URL: &str = + "https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff"; + +// This feed has HUGE descripion and summary fields which can be very +// very expensive to parse. +const CODE: &[u8] = include_bytes!("../tests/feeds/2018-01-20-GreaterThanCode.xml"); +const CODE_URL: &str = + "https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.com/feed/podcast"; + +// Relative small feed +const STARS: &[u8] = include_bytes!("../tests/feeds/2018-01-20-StealTheStars.xml"); +const STARS_URL: &str = + "https://web.archive.org/web/20180120104957if_/https://rss.art19.com/steal-the-stars"; + +static FEEDS: &[(&[u8], &str)] = &[ + (INTERCEPTED, INTERCEPTED_URL), + (UNPLUGGED, UNPLUGGED_URL), + (TIPOFF, TIPOFF_URL), + (CODE, CODE_URL), + (STARS, STARS_URL), ]; -fn index_urls() { - let feeds: Vec<_> = URLS.par_iter() - .map(|&(buff, url)| { - // Create and insert a Source into db +// This is broken and I don't know why. +fn bench_pipeline(c: &mut Criterion) { + truncate_db().unwrap(); + FEEDS.iter().for_each(|&(_, url)| { + Source::from_url(url).unwrap(); + }); + + c.bench_function("pipline", |b| { + b.iter(|| { + let sources = hammond_data::dbqueries::get_sources().unwrap(); + pipeline::run(sources, true).unwrap(); + }) + }); + truncate_db().unwrap(); +} + +fn bench_index_large_feed(c: &mut Criterion) { + truncate_db().unwrap(); + let url = "https://www.greaterthancode.com/feed/podcast"; + let mut core = Core::new().unwrap(); + + c.bench_function("index_large_feed", |b| { + b.iter(|| { let s = Source::from_url(url).unwrap(); // parse it into a channel - let chan = rss::Channel::read_from(BufReader::new(buff)).unwrap(); - Feed::from_channel_source(chan, s) + let chan = rss::Channel::read_from(BufReader::new(CODE)).unwrap(); + let feed = FeedBuilder::default() + .channel(chan) + .source_id(s.id()) + .build() + .unwrap(); + core.run(feed.index()).unwrap(); }) - .collect(); - - index(feeds); -} - -#[bench] -fn bench_index_feeds(b: &mut Bencher) { - b.iter(|| { - index_urls(); }); + truncate_db().unwrap(); } -#[bench] -fn bench_index_unchanged_feeds(b: &mut Bencher) { - // Index first so it will only bench the comparison test case. - index_urls(); +fn bench_index_small_feed(c: &mut Criterion) { + truncate_db().unwrap(); + let url = "https://rss.art19.com/steal-the-stars"; + let mut core = Core::new().unwrap(); - b.iter(|| { - for _ in 0..10 { - index_urls(); - } + c.bench_function("index_small_feed", |b| { + b.iter(|| { + let s = Source::from_url(url).unwrap(); + // parse it into a channel + let chan = rss::Channel::read_from(BufReader::new(STARS)).unwrap(); + let feed = FeedBuilder::default() + .channel(chan) + .source_id(s.id()) + .build() + .unwrap(); + core.run(feed.index()).unwrap(); + }) }); + truncate_db().unwrap(); } + +criterion_group!( + benches, + bench_pipeline, + bench_index_large_feed, + bench_index_small_feed +); +criterion_main!(benches); diff --git a/hammond-data/benches/feeds/TheLinuxActionShow.xml b/hammond-data/benches/feeds/TheLinuxActionShow.xml deleted file mode 100644 index ca65675..0000000 --- a/hammond-data/benches/feeds/TheLinuxActionShow.xml +++ /dev/null @@ -1,3806 +0,0 @@ - - - - The Linux Action Show! MP3 - http://www.jupiterbroadcasting.com - Audio versions of The Linux Action Show! A show that covers everything geeks care about in the open source and Linux world. Get a solid dose of Linux, gadgets, news events and much more! - Feeder 2.5.12(2294); Mac OS X Version 10.12.1 (Build 16B2657) http://reinventedsoftware.com/feeder/ - http://blogs.law.harvard.edu/tech/rss - en - Jupiter Broadcasting - Sun, 12 Nov 2017 17:31:58 -0800 - Sun, 12 Nov 2017 17:31:58 -0800 - http://www.jupiterbroadcasting.com/show/linuxactionshowhttp://www.jupiterbroadcasting.com/images/LAS-300-Badge.jpgThe Linux Action Show Badge - - Jupiter Broadcasting - The world's largest Linux podcast! - Linux enthusiasts talk top news stories, current trends, reviews, howto's and any other subject regarding Linux and Open Source. - -The world's largest Linux podcast, now running for a decade delights Linux users every week with a big show! - Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gpl - - no - - no - - Jupiter BroadcastingLinux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplTechnology/Tech Newschris@jupiterbroadcasting.comJupiter Broadcastinghttp://creativecommons.org/licenses/by-sa/2.0/Subscribe with FeedlySubscribe with Bitty BrowserSubscribe with Daily Rotation - Linux Action News 27 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/-R3S8R4-i7M/ - <p>New details show Linux on Galaxy phones further along than expected, Bitcoin's bad week explained & CrossOver enables Windows apps, on ChromeOS.</p> - -<p>Plus Canonical puts out a call for help, Munich votes to return to Windows & Steam on Linux turns 5.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/-R3S8R4-i7M" height="1" width="1" alt=""/> - Sun, 12 Nov 2017 17:31:07 -0800 - - 359AB502-2863-4208-9ACA-D9CC4E1B1F78 - Jupiter Broadcasting - New details show Linux on Galaxy phones further along than expected, Bitcoin's bad week explained & CrossOver enables Windows apps, on ChromeOS. - -Plus Canonical puts out a call for help, Munich votes to return to Windows & Steam on Linux turns 5. - - no - 30:06 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/119836/linux-action-news-27/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/a35f2ee4-5e96-47be-ab6b-151b633b8584.mp3 - - Linux Action News 26 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/LB4PI_0Sgzo/ - <p>It's a week of red flags and success. The Plasma Mobile project sets humble goals, Firefox learns new tricks, a TOR flaw for Linux users & Canonical joins the Gnome Advisory Board.</p> - -<p>Plus a new report claims every Bitcoin transaction uses as much energy as your house in a week & two legal matters that may have long-term impacts on the Linux community.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/LB4PI_0Sgzo" height="1" width="1" alt=""/> - Sun, 05 Nov 2017 17:04:47 -0800 - - FF9C6905-3F4A-4880-BBAD-1B21B4EA4B77 - Jupiter Broadcasting - Plasma Mobile sets humble goals, Firefox learns new tricks, a TOR flaw for Linux users & Canonical joins the Gnome Advisory Board. - -Plus two legal matters that may have long-term impacts on the Linux community & more! - - no - 23:36 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/119641/linux-action-news-26/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/19844ddc-17cc-4f06-b340-d7e4707d7cb2.mp3 - - Linux Action News 25 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/IEyon9FwEvc/ - Big changes coming to Linux Mint, hope for ZFS upstream in Linux, and Mozilla helps out TOR. Plus how Russia may help legitimize cryptocurrencies like Bitcoin, and Solus makes a call for help.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/IEyon9FwEvc" height="1" width="1" alt=""/> - Sun, 29 Oct 2017 17:42:09 -0700 - - 24803A58-FAD6-44BE-8E66-F46748E9E4ED - Jupiter Broadcasting - Big changes coming to Linux Mint, hope for ZFS upstream in Linux, and Mozilla helps out TOR. Plus how Russia may help legitimize cryptocurrencies like Bitcoin, and Solus makes a call for help. - - no - 26:30 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/119506/linux-action-news-25/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/c8c6dd4f-a5e0-40a9-a505-ca95ecd5ff0a.mp3 - - Linux Action News 24 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/KgTtuGM-Q0Q/ - <p>The Linux desktop on Samsung phones, Intel ME disabled on Purism laptops, big Kernel news & Ubuntu 17.10 is out.</p> - -<p>Plus our brief thoughts on the new Ubuntu release, its various flavors, an important milestone & the larger Open Source story.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/KgTtuGM-Q0Q" height="1" width="1" alt=""/> - Sun, 22 Oct 2017 18:04:47 -0700 - - B456BC65-893D-4847-9CBD-32D16EE22498 - Jupiter Broadcasting - The Linux desktop on Samsung phones, Intel ME disabled on Purism laptops, big Kernel news & Ubuntu 17.10 is out. - -Plus our brief thoughts on the new Ubuntu release, its various flavors, an important milestone & the larger Open Source story. - - no - 33:39 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/119306/linux-action-news-24/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/2067a454-cf8c-4bac-bd28-2aa2a7e4bf9e.mp3 - - Linux Action News 23 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/-vCznEC6DN8/ - <p>Fixing Steam on Linux for good, new toys for Fedora and Plasma users, OnePlus gets busted & the Librem 5 gets funded.</p> - -<p>Plus some key project updates & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/-vCznEC6DN8" height="1" width="1" alt=""/> - Sun, 15 Oct 2017 19:27:26 -0700 - - 09C86D9C-6171-45F6-AA71-6170F09E6F9C - Jupiter Broadcasting - Fixing Steam on Linux for good, new toys for Fedora and Plasma users, OnePlus gets busted & the Librem 5 gets funded. - -Plus some key project updates & more! - - no - 24:41 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/119091/linux-action-news-23/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/d9ab7e9b-8263-4059-9083-493206fb3a2e.mp3 - - Linux Action News 22 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/lFgDJXPG_JM/ - <p>Google's new hardware fails to impress, Sailfish X becomes a reality & the most disappointing thing about Munich's slide back to proprietary software.</p> - -<p>Plus why Bitcoin Gold is the people's coin, Oracle advises the White House against FOSS & ChromeOS gets a grownup Linux feature.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/lFgDJXPG_JM" height="1" width="1" alt=""/> - Sun, 08 Oct 2017 20:30:44 -0700 - - C0914D17-8A5E-4349-B28E-5938F5F217BD - Jupiter Broadcasting - Google's new hardware fails to impress, Sailfish X becomes a reality & the most disappointing thing about Munich's slide back to proprietary software. - -Plus Bitcoin Gold, Oracle advises the White House against FOSS & ChromeOS gets a grownup Linux feature. - - no - 32:36 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/118931/linux-action-news-22/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/80b43263-3e65-4de3-9c69-bf5632e81f1c.mp3 - - Linux Action News 21 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/0ZKcdBAmuF8/ - <p>Atari has a Linux powered console, some brief Ubuntu updates & the biggest Kernel news in years. </p> - -<p>Then we consider the recent smattering of opinion pieces on Microsoft's commitment to Open Source.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/0ZKcdBAmuF8" height="1" width="1" alt=""/> - Sun, 01 Oct 2017 17:56:48 -0700 - - 316A8817-5835-4E5B-A228-83359ED875E0 - Jupiter Broadcasting - Atari has a Linux powered console, some brief Ubuntu updates & the biggest Kernel news in years. - -Then we consider the recent smattering of opinion pieces on Microsoft's commitment to Open Source. - - no - 24:33 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/118681/linux-action-news-21/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/c89ad99a-24dc-41a9-9269-42cafb139ba4.mp3 - - Linux Action News 20 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/t6ZdA2-ZH2k/ - GNOME endorses the Librem 5, Replicant and UBports support more devices, Pipewire is major news for video on Linux, EFF walks away from W3C over DRM, Facebook reacts to community pressure & Red Hat expands their Patent promise.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/t6ZdA2-ZH2k" height="1" width="1" alt=""/> - Sun, 24 Sep 2017 18:27:51 -0700 - - 683021A7-80DB-4613-90D8-FCE500A67F81 - Jupiter Broadcasting - GNOME endorses the Librem 5, Replicant and UBports support more devices, Pipewire is major news for video on Linux, EFF walks away from W3C over DRM, Facebook reacts to community pressure & Red Hat expands their Patent promise. - - no - 24:55 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/118471/linux-action-news-20/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/63c7ec23-c8bf-460c-a5eb-aa23e33887d7.mp3 - - Linux Action News 19 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/eX_5qyQ7NkQ/ - <p>Gnome users have something to celebrate, Purism and KDE are working together & Manjaro has some hardware. </p> - -<p>Plus why we're not too worried about BlueBourne, the fight for public money to fund public code & a new power tool for Firefox users.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/eX_5qyQ7NkQ" height="1" width="1" alt=""/> - Sun, 17 Sep 2017 20:13:27 -0700 - - 68AC8F20-64B7-4B20-8B0B-1853D89DD294 - Jupiter Broadcasting - Gnome users have something to celebrate, Purism and KDE are working together & Manjaro has some hardware. - -Plus why we're not too worried about BlueBourne, the fight for public money to fund public code & a new power tool for Firefox users. - - no - 26:40 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/118296/linux-action-news-19/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/c6044b45-ee49-4fd7-8bc9-0e20723b0132.mp3 - - Linux Action News 18 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/U165-tYb7vE/ - <p>Why AsteroidOS on your wrist is worth watching, what Project Treble means for future custom ROMs, Debian's Docker dominance & why China might shut down Bitcoin exchanges.</p> - -<p>Plus how NGINX plans to make big money, Mozilla wants to reinvent online comments & more.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/U165-tYb7vE" height="1" width="1" alt=""/> - Sun, 10 Sep 2017 19:15:35 -0700 - - D1843A61-88A0-47EF-BACB-5FCCAC04AAD3 - Jupiter Broadcasting - Why AsteroidOS on your wrist is worth watching, what Project Treble means for future custom ROMs, Debian's Docker dominance & why China might shut down Bitcoin exchanges. Plus how NGINX plans to make money, Mozilla wants to reinvent online comments & more - - no - 25:40 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/118136/linux-action-news-18/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/2e40873e-34a1-44d2-bc8f-cc28a7ced7e1.mp3 - - Linux Action News 17 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/54UVgqDvfcU/ - An Ubuntu developer event is happening soon, 17.10 Beta 1 has dropped for most of the flavors, Reddit closes its source while Phoenix OS opens theirs, Google getting serious about kernel updates in Android, Essential need to up their game, Blockchain is serious business and Linux desktop marketshare hits a new high.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/54UVgqDvfcU" height="1" width="1" alt=""/> - Sun, 03 Sep 2017 19:50:54 -0700 - - 24C15FF8-0DC3-41B2-90EB-E9DC2AD33720 - Jupiter Broadcasting - More Ubuntu news, Android finally getting serious about the kernel, Blockchain is about way more than Bitcoin, great news for Linux desktop marketshare & more! - - no - 25:57 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/117936/linux-action-news-17/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/8f728621-af26-461f-8499-ce343469287b.mp3 - - Linux Action News 16 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/AWNYAwqRCUI/ - <p>New Linux hardware, Purism's Librem 5 & Jolla's €50 Sailfish ROM. </p> - -<p>Plus Chris' quick take on Android Oreo, Google goes for Microsoft's heart, while Microsoft gets cozier with Red Hat & SUSE pretends not to be upset about it.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/AWNYAwqRCUI" height="1" width="1" alt=""/> - Sun, 27 Aug 2017 17:59:02 -0700 - - B9E316BB-0F71-4A81-8A4E-05C894068A47 - Jupiter Broadcasting - New Linux hardware, Purism's Librem 5 & Jolla's €50 Sailfish ROM. - -Plus Chris' quick take on Android Oreo, Google goes for Microsoft's heart, while Microsoft gets cozier with Red Hat & SUSE pretends not to be upset about it. - - no - 26:52 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/117746/linux-action-news-16/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/32c9b2d8-22fb-4f66-b9e8-e5706cfea3d9.mp3 - - Linux Action News 15 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/BTbm-pYTeeg/ - <p>A big batch of Debian updates, Gnome turns 20, Joe's report from OggCamp, the Solus trifecta, encrypted ZFS comes to Linux finally & Bitcoin is forking, again.</p> - -<p>Plus some thoughts on tiny Linux computers, the Linage survey & more.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/BTbm-pYTeeg" height="1" width="1" alt=""/> - Sun, 20 Aug 2017 19:59:36 -0700 - - 86157E39-5680-4B72-B86F-BEC376119F47 - Jupiter Broadcasting - A big batch of Debian updates, Gnome turns 20, Joe's report from OggCamp, the Solus trifecta, encrypted ZFS comes to Linux finally & Bitcoin is forking, again. - -Plus some thoughts on tiny Linux computers, the Linage survey & more. - - no - 24:16 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/117566/linux-action-news-15/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/0888e982-d9ce-4b05-a6ab-25a6c596c60f.mp3 - - Linux Action News 14 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/U5n4d1ibkIQ/ - <p>Flatpak and snap get the Solus boost, Ubuntu's community is getting a remake & development on Ubuntu 17.10 has taken an interesting turn. </p> - -<p>Plus more good news for Firefox users & why Google's "streaming OS updates" could be great for the Android ROM community.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/U5n4d1ibkIQ" height="1" width="1" alt=""/> - Sun, 13 Aug 2017 18:19:37 -0700 - - A4FC07CD-CD8C-4C6E-BAEB-490AC7548206 - Jupiter Broadcasting - Flatpak & snap get the Solus boost, Ubuntu's community is getting a remake & development on Ubuntu 17.10 has taken a turn. - -Plus more good news for Firefox users & why Google's "streaming OS updates" could be great for the Android ROM community. - - no - 31:36 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/117401/linux-action-news-14/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/2adaaab3-82a5-457f-a971-a4e281856dd8.mp3 - - Linux Action News 13 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/BL23xpVDBlM/ - <p>Surprising details in how Ubuntu's Gnome desktop is getting implemented, Krita hits some troubles but the community comes to the rescue, Bitcoin splits, Firefox sends & Red Hat gives up on Btrfs.</p> - -<p>Plus Amazon accuses BLU of spying on Android users & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/BL23xpVDBlM" height="1" width="1" alt=""/> - Sun, 06 Aug 2017 20:37:45 -0700 - - EF1B5729-83A6-4F79-B6FB-10677FFAAEBC - Jupiter Broadcasting - Surprising details in how Ubuntu's Gnome desktop is getting implemented, Krita hits some troubles but the community comes to the rescue, Bitcoin splits, Firefox sends & Red Hat gives up on Btrfs. - -Plus Amazon accuses BLU of spying on Android users & more! - - no - 29:16 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/117206/linux-action-news-13/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/16d1d13f-f9a5-447a-ba02-9228459c34f7.mp3 - - Linux Action News 12 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Vc6x4Uq0mp4/ - <p>A good week for desktop Linux with news from Ubuntu, Fedora & openSUSE. </p> - -<p>Plus our take on the pending death of Flash, some great work by the Debian project & Mozilla's updates us on Project Common Voice.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Vc6x4Uq0mp4" height="1" width="1" alt=""/> - Sun, 30 Jul 2017 17:28:43 -0700 - - 997282BA-3805-4134-98B8-763C59D632F2 - Jupiter Broadcasting - A good week for desktop Linux with news from Ubuntu, Fedora & openSUSE. - -Plus our take on the pending death of Flash, some great work by the Debian project & Mozilla's updates us on Project Common Voice. - - no - 31:34 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/117046/linux-action-news-12/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/4dbd106e-c33b-44b5-b214-03e0d6652c04.mp3 - - Linux Action News 11 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/OXgxnuIyn3w/ - <p>Android for the desktop might be dead, Google Glass is back, the latest Firefox usage data is devastating & the next Ubuntu is ready for a shakedown.</p> - -<p>Plus a quick look at Phoenix OS & the Ubuntu 18.04 survey!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/OXgxnuIyn3w" height="1" width="1" alt=""/> - Sun, 23 Jul 2017 19:34:26 -0700 - - A850C238-6094-40F2-ABF4-C171458BF3FC - Jupiter Broadcasting - Android for the desktop might be dead, Google Glass is back, the latest Firefox usage data is devastating & the next Ubuntu is ready for a shakedown. - -Plus a quick look at Phoenix OS & the Ubuntu 18.04 survey! - - no - 30:13 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/116841/linux-action-news-11/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/b3802e81-5712-4b3b-9ac1-6c7b1b2838ea.mp3 - - Linux Action News 10 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/gbLZ16AvY_Q/ - With Chris away, Ryan joins Joe. A new release for Fedora, Yunit is now available for Ubuntu 16.04, Ubuntu is now an app in the Windows Store, Ryan gives us more details about System76's new OS, Ikey starts his new job at Solus & Beaker is a new browser that promises a truly decentralized web.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/gbLZ16AvY_Q" height="1" width="1" alt=""/> - Sun, 16 Jul 2017 16:57:06 -0700 - - F5532673-B45E-4DF4-97EC-D16F98F5F7E0 - Jupiter Broadcasting - Fedora 26 is out, progress on the Unity 8 fork, Ubuntu in the Windows Store, more Pop!_OS details, peer to peer web browsing & more! - - no - 30:33 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/116696/linux-action-news-10/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/b0bffe98-0def-42a9-b166-651776fd28f4.mp3 - - Linux Action News 9 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Rxp7IFvSUjI/ - New data gives us insight into recent bold moves by Linux hardware vendors Tuxedo & System76, Endless OS takes big steps to get closer to upstream, Mycroft's first major public appearances goes hilariously bad & Mozilla's plans to tame IoT.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Rxp7IFvSUjI" height="1" width="1" alt=""/> - Sun, 09 Jul 2017 20:40:36 -0700 - - B3E26A5D-2F9B-421E-B2E3-808A6506F110 - Jupiter Broadcasting - New data gives us insight into recent bold moves by Linux hardware vendors Tuxedo & System76, Endless OS takes big steps to get closer to upstream, Mycroft's first major public appearances goes hilariously bad & Mozilla's plans to tame IoT. - - no - 28:32 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/116486/linux-action-news-9/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/1e19143a-cf25-4e2d-9fa7-61b3e7c4e9f8.mp3 - - Linux Action News 8 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/iqStroE1IrU/ - <p>SUSE hits the Windows Store and we finally get some important classifications, System76 announces Pop!_OS and we do a deep analysis & why Mir is back with a plan to support Wayland.</p> - -<p>Plus Debian warns of Hyper Threading issues; and of course a bit more.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/iqStroE1IrU" height="1" width="1" alt=""/> - Sun, 02 Jul 2017 17:23:54 -0700 - - 995C9449-C1F2-4501-8E53-458B2742F48F - Jupiter Broadcasting - SUSE hits the Windows Store and we finally get some important classifications, System76 announces Pop!_OS and we do a deep analysis & why Mir is back with a plan to support Wayland. - -Plus Debian warns of Hyper Threading issues; and of course a bit more. - - no - 25:02 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/116311/linux-action-news-8/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/290b0b51-ccf2-465a-93b4-d1bbdda7bd28.mp3 - - Linux Action News 7 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/f2bKbpxN38Y/ - <p>More hardware acceleration comes to desktop Linux, Mozilla launches ambitious new projects, Unity 7 fans can rejoice & Jolla has an important update. </p> - -<p>Plus we discuss the 2017 Linux Laptop Survey, the really fancy new trick Opus has pulled off in the latest release & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/f2bKbpxN38Y" height="1" width="1" alt=""/> - Sun, 25 Jun 2017 16:59:13 -0700 - - F418C8FD-7D5B-4AE8-A91A-C8A63D986EA5 - Jupiter Broadcasting - More hardware acceleration comes to Linux, Mozilla launches new projects, Unity 7 fans can rejoice & Jolla has an important update. - -Plus we discuss the 2017 Linux Laptop Survey, the really fancy new trick Opus has pulled off in the latest release & more! - - no - 24:50 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/116091/linux-action-news-7/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/91f9af38-9c12-4f1d-adb2-31218ef89692.mp3 - - Linux Action News 6 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/ulHHToRwSs0/ - <p>More competition in desktop Linux, Debian 9, Tails 3, Firefox 54, FreeNAS 11 & OpenMediaVault 3 all get released. </p> - -<p>We discuss the important bits of it all, follow up on questions last week & take an open source unicorn for a spin.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/ulHHToRwSs0" height="1" width="1" alt=""/> - Sun, 18 Jun 2017 15:01:16 -0700 - - 0277E928-769E-4378-8ED8-4D40E33CB162 - Jupiter Broadcasting - More competition in desktop Linux, Debian 9, Tails 3, Firefox 54, FreeNAS 11 & OpenMediaVault 3 all get released. - -We discuss the important bits of it all, follow up on questions last week & take an open source unicorn for a spin. - - no - 30:42 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/115871/linux-action-news-6/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/4050d933-1f73-4c71-80b1-54c86f954436.mp3 - - Linux Action News 5 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Qu4z4vqhMyY/ - <p>A look at the future of the Ubuntu desktop and one of its flavors, plus Docker aims to improve Linux security upstream with LinuxKit.</p> - -<p>And a LXQt confession.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Qu4z4vqhMyY" height="1" width="1" alt=""/> - Sun, 11 Jun 2017 16:33:19 -0700 - - 6759A9FA-44E1-444C-9BF5-459D063F0705 - Jupiter Broadcasting - A look at the future of the Ubuntu desktop and one of its flavors, plus Docker aims to improve Linux security upstream with LinuxKit. - -And a LXQt confession. - - no - 26:44 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/115686/linux-action-news-5/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/915cd9f0-bd60-405e-bd74-a10eb1485b20.mp3 - - No Privacy Compromise Home Automation | Linux Action Special 2 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/DtYL4-KA120/ - Home Assistant, an open-source home automation platform that runs on Linux. Today I chat with Paulus Schoutsen, the founder of the project to learn what this project can do, where it's going & how it stacks up to competition like the Amazon Echo.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/DtYL4-KA120" height="1" width="1" alt=""/> - Fri, 09 Jun 2017 12:57:38 -0700 - - 19D99BCA-F01E-49F6-9553-A01F2AD16F63 - Jupiter Broadcasting - Home Assistant, an open-source home automation platform that runs on Linux. Today I chat with Paulus Schoutsen, the founder of the project to learn what this project can do, where it's going & how it stacks up to competition like the Amazon Echo. - - no - 18:46 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/115566/no-privacy-compromise-home-automation/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/LinuxActionSpecial2-NoPrivacyCompromiseHomeAutomation.mp3 - - Linux Action News 4 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/O-71vfuc2yo/ - <p>Two Linux desktop classics make big strides, Coreboot joins the Conservancy, and Toyota cars will soon run Linux. Plus newly announced Ambient OS will be open source, just like Android, and its creator Andy Rubin says they plan to take on the Amazon Echo & Google Pixel. </p> - -<p>This is is an episode about playing to your strengths & taking over markets.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/O-71vfuc2yo" height="1" width="1" alt=""/> - Sun, 04 Jun 2017 18:16:55 -0700 - - 00993B9D-33B2-41C1-9ED1-E7DCF964624A - Jupiter Broadcasting - Two Linux desktop classics make big strides, Coreboot joins the Conservancy & Toyota cars will soon run Linux. Plus Ambient OS will be open source, just like Android & its creator Andy Rubin says they plan to take on the Amazon Echo, Google Pixel & more! - - no - 34:42 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/115301/linux-action-news-4/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/55c4cff2-13e7-4232-81a3-ef8eb5a9b0e7.mp3 - - Linux Action News 3 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/4EB4Yqu1OSo/ - NextCloud goes global, Devuan hits one, Solus keeps expanding, Firefox is trying, but Chrome has won, more progress on Coreboot & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/4EB4Yqu1OSo" height="1" width="1" alt=""/> - Sun, 28 May 2017 18:18:08 -0700 - - 4B0B40D0-BDD6-4885-8C82-7E4DF63273A8 - Jupiter Broadcasting - NextCloud goes global, Devuan hits one, Solus keeps expanding, Firefox is trying, but Chrome has won, more progress on Coreboot & more! - - no - 41:42 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/115126/linux-action-news-3/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/76572a07-bfeb-48e0-a559-c2f9cbf0786b.mp3 - - Linux Action News 2 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/5I4eLVIYduU/2 - <p>Ubuntu's Gnome plans start to form & they want your input. The Linux subsystem is coming to Windows Server & Mycroft is finally ready to ship.</p> - -<p>Plus the Tizen surprise, elementary OS' pay-what-you-want AppCenter & what's new Android O.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/5I4eLVIYduU" height="1" width="1" alt=""/> - Sun, 21 May 2017 19:12:01 -0700 - - 7566206A-7BB5-4842-932F-EEFFA31B8E68 - Jupiter Broadcasting - Ubuntu's Gnome plans start to form & they want your input. The Linux subsystem is coming to Windows Server & Mycroft is finally ready to ship. - -Plus the Tizen surprise, elementary OS' pay-what-you-want AppCenter & what's new Android O. - - no - 36:58 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://linuxactionnews.com/2http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/c506f753-94e4-434e-a6a6-546d4ea72849.mp3 - - Loki's New AppCenter | Linux Action Special - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/aHhvbNSrAQ0/ - Daniel Foré, elementary OS founder, joins Chris to chat about their new update to Loki, their pay what you want AppCenter, what the end of Unity means for them, and the future of the project.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/aHhvbNSrAQ0" height="1" width="1" alt=""/> - Thu, 18 May 2017 13:48:08 -0700 - - 9E805DDB-68CF-420A-813F-FFB7DF4D59DD - Jupiter Broadcasting - Daniel Foré, elementary OS founder, joins Chris to chat about their new update to Loki, their pay what you want AppCenter, what the end of Unity means for them, and the future of the project. - - no - 24:06 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/114796/lokis-new-appcenter/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/LinuxActionSpecial-NewLoki.mp3 - - Linux Action News 1 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/LpxZT7mGmzs/ - <p>Canonical IPO is a go, Microsoft brings more Linux to Windows, OpenWRT and LEDE agree on Linux-for-routers peace plan, and Google launches project Treble. </p> - -<p>Welcome to Linux Action News's debut episode. It’s our goal to build the show you go to when you want to hear an informed discussion about what’s happening.</p> - -<p>We kick things off with a busy news week.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/LpxZT7mGmzs" height="1" width="1" alt=""/> - Sun, 14 May 2017 18:16:11 -0700 - - 07E87B24-2865-417D-B8F5-57929AE2F493 - Jupiter Broadcasting - Canonical IPO is a go, Microsoft brings more Linux to Windows, OpenWRT, LEDE agree on Linux-for-routers peace plan & Google launches project Treble. - - no - 32:41 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/114641/linux-action-news-1/http://www.podtrac.com/pts/redirect.mp3/aphid.fireside.fm/d/1437767933/dec90738-e640-45e5-b375-4573052f4bf4/026cc66f-bc8a-47ff-8d7f-f9d8f83b2799.mp3 - - For the LAS Time | LAS 468 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/r1EmmqwSgQ4/ - The big trends, favorite moments, audience questions & more, all live from the floor of LinuxFest Northwest 2017. It’s the final episode of the Linux Action Show!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/r1EmmqwSgQ4" height="1" width="1" alt=""/> - Mon, 08 May 2017 13:48:16 -0700 - - 4DD2C19A-3702-4EF4-9770-7053C512EABF - Jupiter Broadcasting - The big trends, favorite moments, audience questions & more, all live from the floor of LinuxFest Northwest 2017. It’s the final episode of the Linux Action Show! - - no - 59:58 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/114466/for-the-las-time-las-468/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep468.mp3 - - Second to LAS | LAS 467 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/B11xPOPSCUU/ - <p>With just one episode left we discuss the Mac threat, how script kiddies can use Linux to hack your password & why you might want to wait for Linux 4.12.</p> - -<p>Plus news, picks of the week & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/B11xPOPSCUU" height="1" width="1" alt=""/> - Sun, 30 Apr 2017 21:54:25 -0700 - - BD0B8134-A94C-4840-89C8-CEA44A679786 - Jupiter Broadcasting - With just one episode left we discuss the Mac threat, how script kiddies can use Linux to hack your password & why you might want to wait for Linux 4.12. - -Plus news, picks of the week & more! - - no - 1:34:40 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/114301/second-to-las-las-467/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep467.mp3 - - Adopt-a-Dongle | LAS 466 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/7L1iVEoww7U/ - <p>It's a tale of woes & wins in a Linux laptop showdown, from $200 to $10,000 we report back on the limits of mobile productivity. </p> - -<p>The human side of Unity’s death, the Linux kernel feature Chris has been waiting years for, picks, feedback & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/7L1iVEoww7U" height="1" width="1" alt=""/> - Sun, 23 Apr 2017 23:56:26 -0700 - - 5389E508-E189-4385-8076-8EAB30D1D0ED - It's a tale of woes & wins in a Linux laptop showdown, from $200 to $10,000 we report back on the limits of mobile productivity. - -The human side of Unity’s death, the Linux kernel feature Chris has been waiting years for, picks, feedback & more! - - no - 1:21:02 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Jupiter BroadcastingLinux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/114096/adopt-a-dongle-las-466/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep466.mp3 - - Dell’s Secret Sauce | LAS 465 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Tp6gmbP4oKo/ - <p>We didn’t go all the way to Texas for just one episode, it's a very special edition this week. We wanted to share some of the great stories, Linux memories & impressive hardware.</p> - -<p>Plus the unexpected change behind the scenes that Linux is pushing at Dell!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Tp6gmbP4oKo" height="1" width="1" alt=""/> - Mon, 17 Apr 2017 12:37:48 -0700 - - CB2C4C77-D0E8-4E9D-B57D-DF8E172593F0 - Jupiter Broadcasting - We didn’t go all the way to Texas for just one episode, it's a very special edition this week. We wanted to share some of the great stories, Linux memories & impressive hardware. - -Plus the unexpected change behind the scenes that Linux is pushing at Dell! - - no - 17:37 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/113916/dells-secret-sauce-las-465/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep465.mp3 - - Our Trip to Dell | LAS 464 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/BpuO6rjqZ9Y/ - <p>Is Dell's new hardware a sign of serious commitment to Linux or a large company’s hedge against market changes? We go inside Dell, get exclusive access to the teams & people behind many of Dell’s products that run Linux & find out.</p> - -<p>Plus we discuss Ubuntu dropping Unity for Gnome, Lightworks’ latest release & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/BpuO6rjqZ9Y" height="1" width="1" alt=""/> - Sun, 09 Apr 2017 15:59:12 -0700 - - AF556C16-9542-470C-BB65-35F27224871C - Jupiter Broadcasting - Is Dell's new hardware a commitment or a hedge against market changes? We go inside Dell, get exclusive access to the teams & people behind Dell’s Linux products that & find out. - -Plus we discuss Ubuntu dropping Unity, Lightworks’ latest release & more! - - no - 55:28 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/113646/our-trip-to-dell-las-464/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep464.mp3 - - Dubstep Allan | LAS 463 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/GEIdT3Huvsk/ - <p>We start this week covering the latest news about Red Hat’s record profits, some new changes coming video editing & audio sampling under linux & Apple releasing their new APFS file system</p> - -<p>Then Noah reveals the real reason behind LAS ending, we cover your feedback & much more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/GEIdT3Huvsk" height="1" width="1" alt=""/> - Sun, 02 Apr 2017 03:05:13 -0700 - - 0D6D3B26-DBDB-4F19-8515-30D51541D28D - Jupiter Broadcasting - We start by covering the latest news about Red Hat’s record profits, changes coming video editing & audio sampling under linux & Apple releasing their new APFS file system - -Then Noah reveals the real reason behind LAS ending, your feedback & much more! - - no - 1:12:00 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/113386/dubstep-allan-las-463/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep463b.mp3 - - The Final Countdown | LAS 462 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/t5QbqFrXEUk/ - We start with the week’s news, then announce what’s next for the Linux Action Show, our Texas sized adventure coming up & new shows coming soon!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/t5QbqFrXEUk" height="1" width="1" alt=""/> - Sun, 26 Mar 2017 19:18:54 -0700 - - 332B79D6-8052-49BC-AFC1-B67C1935763D - Jupiter Broadcasting - We start with the week’s news, then announce what’s next for the Linux Action Show, our Texas sized adventure coming up & new shows coming soon! - - no - 1:39:23 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/113241/the-final-countdown-las-462/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep462.mp3 - - #SaveLAS | LAS 461 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/wHQPZHSq9oQ/ - Behind the curtain of SCaLE 15x, news of the week, picks & we announce the future of the Linux Action Show.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/wHQPZHSq9oQ" height="1" width="1" alt=""/> - Sat, 18 Mar 2017 15:35:28 -0700 - - 42451436-7336-4965-B8F3-AD6002CA29DB - Jupiter Broadcasting - Behind the curtain of SCaLE 15x, news of the week, picks & we announce the future of the Linux Action Show. - - no - 1:31:17 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/107601/savelas-las-461/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep461.mp3 - - NextCloud's Can of Worms | LAS 460 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/QXdj8t7DOqI/ - <p>NextCloud founder Frank Karlitschek joins us to discuss the recent remote version checking initiative of private NextCloud instances, the controversial notifications sent by ISPs to users found to be running out of date NextCloud instances & the larger security problems facing all open source projects like NextCloud. </p> - -<p>Plus why Chromebook usage surging past Linux in the last year is a good thing, picks, news of the week & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/QXdj8t7DOqI" height="1" width="1" alt=""/> - Sun, 12 Mar 2017 20:15:46 -0700 - - E53E4BCC-0F80-4831-9872-D2F18FD121C9 - Jupiter Broadcasting - NextCloud founder Frank joins us to discuss the recent remote version checking initiative, the controversial notifications sent by ISPs & the larger problems facing all ohs projects like NextCloud. - -Plus Chromebook usage surging last linux & much more! - - no - 1:38:09 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/107471/nextclouds-can-of-worms-las-460/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep460.mp3 - - Live from SCaLE 15x | LAS 459 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/5wq2TdyV9Sw/ - From the floor of 2017’s Southern California Linux Expo aka SCALE 15x, we give you interviews & our impressions of the event. Plus news of the week, picks & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/5wq2TdyV9Sw" height="1" width="1" alt=""/> - Sun, 05 Mar 2017 22:36:39 -0800 - - 5339DBDF-EBE5-4C1F-89D2-75290F864C07 - Jupiter Broadcasting - From the floor of 2017’s Southern California Linux Expo aka SCALE 15x, we give you interviews & our impressions of the event. Plus news of the week, picks & more! - - no - 1:28:28 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/107286/live-from-scale-15x-las-459/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep459.mp3 - - Noah's Radio Hack | LAS 458 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/-DB4ti730_w/ - <p>Noah’s built an audio stream recording monster & he’ll share it’s inner workings.</p> - -<p>Plus Firefox’s big upgrade, the puzzling Android problem & some very spooky Fedora news!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/-DB4ti730_w" height="1" width="1" alt=""/> - Sun, 26 Feb 2017 06:06:22 -0800 - - 3C408329-90BD-4EE2-8FB9-1D4D5E2CB13F - Jupiter Broadcasting - Noah’s built an audio stream recording monster & he’ll share it’s inner workings. - -Plus Firefox’s big upgrade, the puzzling Android problem & some very spooky Fedora news! - - no - 57:20 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/107116/noahs-radio-hack-las-458/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep458.mp3 - - XPS 13 Review | LAS 457 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/mQvM3iTm_mk/ - <p>Our take on Dell’s latest Linux powered Sputnik laptop. Find out why this laptop might be your future work horse & why it’s called a developer edition.</p> - -<p>Plus rumors that suggest Valve is abandoning Steam Machines, Munich’s Linux blunder & much more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/mQvM3iTm_mk" height="1" width="1" alt=""/> - Sat, 18 Feb 2017 10:54:25 -0800 - - 3EA3F894-94B4-4688-B072-F66C1968818D - Jupiter Broadcasting - Our take on Dell’s latest Linux powered Sputnik laptop. Find out why this laptop might be your future work horse & why it’s called a developer edition. - -Plus rumors that suggest Valve is abandoning Steam Machines, Munich’s Linux blunder & much more! - - no - 1:02:27 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/106921/xps-13-review-las-457/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep457.mp3 - - Inside the Plasma Dev Den | LAS 456 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/9K7o9ucSDcw/ - <p>Jonathan Riddell & the Plasma Desktop team join us for a chat. From Neon user stats to Plasma on IoT, we get the scoop on the latest KDE & Plasma desktop developments live from their development Sprint.</p> - -<p>Plus Elementary OS founder Daniel Fore joins to discuss their Pay for what you want App store fundraiser & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/9K7o9ucSDcw" height="1" width="1" alt=""/> - Sun, 12 Feb 2017 21:36:09 -0800 - - 264EC7D1-8DDF-4520-8888-F671D4193B3A - Jupiter Broadcasting - Jonathan Riddell & the Plasma Desktop team join us. From Neon user stats to Plasma on IoT we get the scoop live from their dev Sprint. - -Plus Elementary OS founder Daniel Fore joins to discuss their Pay for what you want App store fundraiser & more! - - no - 1:28:07 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/106791/inside-the-plasma-dev-den-las-456/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep456.mp3 - - Low Cost Linux Challenge | LAS 455 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/OKb2Qsjkul4/ - <p>How inexpensive can a Linux system get & still be considered useable? We experiment with a low-end laptop & desktop, report back on the compromises you might be surprised you don’t have to make.</p> - -<p>Plus news, picks, your emails & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/OKb2Qsjkul4" height="1" width="1" alt=""/> - Sun, 05 Feb 2017 17:55:59 -0800 - - 6C214D41-8725-4BD1-A908-FD9E391B3081 - Jupiter Broadcasting - How inexpensive can a Linux system get & still be considered useable? We experiment with a low-end laptop & desktop, report back on the compromises you might be surprised you don’t have to make. - -Plus news, picks, your emails & more! - - no - 1:01:33 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/106646/low-cost-linux-challenge-las-455/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep455.mp3 - - Noah's IPSEC Adventure | LAS 454 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/8hKjgtlW3-4/ - <p>How Noah uses IPsec to set up secure network traffic. The law that might open up hardware to hobbyist & we narrow down the options for bulletproof Linux.</p> - -<p>Plus the picks, news & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/8hKjgtlW3-4" height="1" width="1" alt=""/> - Sun, 29 Jan 2017 21:15:13 -0800 - - E61E8895-A378-4115-9605-26D515059C57 - Jupiter Broadcasting - How Noah uses IPsec to set up secure network traffic. The law that might open up hardware to hobbyist & we narrow down the options for bulletproof Linux. - -Plus the picks, news & more! - - no - 1:16:52 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/106496/noahs-ipsec-adventure-las-454/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep454.mp3 - - Ghost of Predictions Past | LAS 453 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/iTRHoKnWzMM/ - We own up to our top 14 predictions for 2016, discuss a major software update, start to discuss building a bulletproof Linux install & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/iTRHoKnWzMM" height="1" width="1" alt=""/> - Sun, 22 Jan 2017 19:22:42 -0800 - - B0A500B2-C34B-4417-9315-9F396833A321 - Jupiter Broadcasting - We own up to our top 14 predictions for 2016, discuss a major software update, start to discuss building a bulletproof Linux install & more! - - no - 1:29:11 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/106336/ghost-of-predictions-past-las-453/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep453.mp3 - - Taking Linux To Heart | LAS 452 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/1tpfECPcLDc/ - <p>We get a first hand take on how Linux & Open Source could be revolutionizing the backend of healthcare.</p> - -<p>Plus a look at the ZeroPhone, Dell’s new Linux hardware, we ask you some questions & answer a few of yours.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/1tpfECPcLDc" height="1" width="1" alt=""/> - Sun, 15 Jan 2017 18:43:43 -0800 - - EE60F3AD-713C-4CF6-A708-D55BF706D108 - Jupiter Broadcasting - We get a first hand take on how Linux & Open Source could be revolutionizing the backend of healthcare. - -Plus a look at the ZeroPhone, Dell’s new Linux hardware, we ask you some questions & answer a few of yours. - - - no - 1:09:30 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/106176/taking-linux-to-heart-las-452/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep452.mp3 - - Mac's Exodus of 2017 | LAS 451 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/KGN0OBo6PKM/ - <p>What’s happening in 2017, before it happens. It’s our annual predictions episode, Chris & Noah surprise each other with their futurecasting.</p> - -<p>Plus why Ubuntu Phone is going on a hiatus of sorts, Neon puts KDE in a Container & much more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/KGN0OBo6PKM" height="1" width="1" alt=""/> - Sun, 08 Jan 2017 20:41:47 -0800 - - 0668D952-0103-41C6-B781-40202B455CA2 - Jupiter Broadcasting - What’s happening in 2017, before it happens. It’s our annual predictions episode, Chris & Noah surprise each other with their futurecasting. - -Plus why Ubuntu Phone is going on a hiatus of sorts, Neon puts KDE in a Container & much more! - - no - 1:35:17 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/106046/macs-exodus-of-2017-las-451/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep451.mp3 - - Winter Solus Review | LAS 450 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/SRfq-5-siwA/ - <p>Solus might just be the distribution to watch in 2017. Every intention & tweak coming together to create something unique in Linux land. Noah & Chris take two very different views of this important up & coming distro.</p> - -<p>Plus the big news of the week, picks, emails & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/SRfq-5-siwA" height="1" width="1" alt=""/> - Sun, 01 Jan 2017 19:25:58 -0800 - - 83A73B35-D5ED-45A5-A1F6-A892ED795EC4 - Jupiter Broadcasting - Solus might just be the distribution to watch in 2017. Every intention & tweak coming together to create something unique. Noah & Chris take two very different views of this up & coming distro. - -Plus the big news of the week, picks, emails & more! - - no - 1:25:10 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/105836/winter-solus-review-las-450/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep450.mp3 - - Forward Momentum | LAS 449 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/CHbGrd_pNxg/ - <p>This week, while the guys are away on holiday, we take a look back and see just how much Linux has progressed into new areas over the course of 2016 & also some of the spots where it may have stumbled a bit.</p> - -<p>Get settled in with your eggnog & hot cocoa because it's gonna be a BIG SHOW!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/CHbGrd_pNxg" height="1" width="1" alt=""/> - Sun, 25 Dec 2016 11:30:54 -0800 - - DA267605-E3E4-449E-844E-0CF22A44F116 - Jupiter Broadcasting - While the guys are away on holiday, we take a look back and see just how much Linux has progressed into new areas over the course of 2016 & where it may have stumbled a bit. - -Get settled in with your eggnog & hot cocoa because it's gonna be a BIG SHOW! - - no - 3:04:26 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/105661/forward-momentum-las-449/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep449.mp3 - - High on NextCloud | LAS 448 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/f6_tW8pj8xM/ - We chat with Joss from NextCloud about two factor, crazy performance improvements, the OwnCloud hangover, setting up your ultimate Dropbox and Google Docs replacements & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/f6_tW8pj8xM" height="1" width="1" alt=""/> - Mon, 19 Dec 2016 03:52:03 -0800 - - 05DA0B06-207F-41E7-85D1-6D52B691ACC3 - Jupiter Broadcasting - We chat with Joss from NextCloud about two factor, crazy performance improvements, the OwnCloud hangover, setting up your ultimate Dropbox and Google Docs replacements & more! - - no - 1:33:06 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/105501/high-on-nextcloud-las-448/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep448.mp3 - - Linux Light Show | LAS 447 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/t-yg3Eg0_oc/ - <p>It’s a holiday miracle, a fully computer controlled automated light display without the cloud. It’s also a great excuse to troll Chris about Linux video editing.</p> - -<p>Plus news, picks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/t-yg3Eg0_oc" height="1" width="1" alt=""/> - Sun, 11 Dec 2016 20:25:57 -0800 - - BE1104D7-B202-4322-9B77-C3F72429CF69 - Jupiter Broadcasting - It’s a holiday miracle, a fully computer controlled automated light display without the cloud. It’s also a great excuse to troll Chris about Linux video editing. - -Plus news, picks & more! - - no - 1:08:42 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/105346/linux-light-show-las-447/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep447.mp3 - - Distro Engagement | LAS 446 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/rWeYYAabuB8/ - <p>How do you pick the best Linux distribution for you? This week we reflect on one of the most critical questions before you switch to Linux.</p> - -<p>Plus Canonical says their taking a stand against unofficial Ubuntu images, a Mycroft update & your Linux questions!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/rWeYYAabuB8" height="1" width="1" alt=""/> - Sun, 04 Dec 2016 22:45:32 -0800 - - ECD1D554-0890-4A97-81EE-B45305CF2E87 - Jupiter Broadcasting - How do you pick the best Linux distribution? This week we reflect on one of the most critical questions before you switch to Linux. - -Plus Canonical says they’re taking a stand against unofficial Ubuntu images, a Mycroft update & your Linux questions! - - no - 1:51:07 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/105211/distro-engagement-las-446/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep446.mp3 - - Hats Off to Wayland | LAS 445 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/KehdTjlhptg/ - <p>Fedora 25 ships with Wayland by default, the latest Gnome & the promise of upgradeability.</p> - -<p>We test upgrade a Fedora 24 workstation with Gnome customizations, third party repos & some history. We capture and share the failures and successes. </p> - -<p>Plus the bigger problems the Tor phone raises, the docking station that could make convergence real & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/KehdTjlhptg" height="1" width="1" alt=""/> - Sun, 27 Nov 2016 23:34:40 -0800 - - D704F397-38A7-4160-998D-2053B7C4F382 - Jupiter Broadcasting - Fedora 25 ships with Wayland by default, the latest Gnome & the promise of upgradeability. - -We test upgrade a Fedora 24, third party repos & history. We capture and share the failures and successes. - -Plus the bigger problems the Tor phone raises & more! - - no - 1:38:43 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/105046/hats-off-to-wayland-las-445/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep445.mp3 - - This Old Linux RV | LAS 444 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/MLVznp2jYx0/ - <p>Linux server installs sometimes don’t go as planned. We take you through the hardware modifications we made to install Chris’ new NAS in Lady Jupiter (his RV).</p> - -<p>Plus are we faking it about Microsoft joining the Linux Foundation?</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/MLVznp2jYx0" height="1" width="1" alt=""/> - Sun, 20 Nov 2016 18:49:10 -0800 - - E208219C-29AB-4F5E-BB70-4D8FE2F57FAC - Jupiter Broadcasting - Linux server installs sometimes don’t go as planned. We take you through the hardware modifications we made to install Chris’ new NAS in Lady Jupiter (his RV). - -Plus are we faking it about Microsoft joining the Linux Foundation? - - - no - 1:12:16 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/104801/this-old-linux-rv-las-444/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep444.mp3 - - Qnap's Thick NAS | LAS 443 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/uhFqFdarK98/ - <p>Chris gets a big surprise when he learns the features of the QNAP NAS review unit.</p> - -<p>Plus is Linux really seeing a wave of MacBook switchers? The future of Vulkan and VR under Linux, solving IoT’s security woes & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/uhFqFdarK98" height="1" width="1" alt=""/> - Sun, 13 Nov 2016 09:01:09 -0800 - - 9B1BE177-E9EA-40A2-9188-D0C03EC0919A - Jupiter Broadcasting - Chris gets a big surprise when he learns the features of the QNAP NAS review unit. - -Plus is Linux really seeing a wave of MacBook switchers? The future of Vulkan and VR under Linux, solving IoT’s security woes & more! - - no - 1:11:01 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/104636/qnaps-thick-nas-las-443/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep443.mp3 - - Noah Switches to Arch | LAS 442 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/lVaZnWEoeiQ/ - <p>Ubuntu fails Noah during a critical moment & it’s the final straw. Noah takes us along as he switches his systems over to Arch.</p> - -<p>Plus why you might want to think twice about LessPass & is the $4 Linux computer legit?</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/lVaZnWEoeiQ" height="1" width="1" alt=""/> - Sun, 06 Nov 2016 21:22:46 -0800 - - 180BD342-3DAD-4F78-8D76-A15078DFE115 - Jupiter Broadcasting - Ubuntu fails Noah during a critical moment & it’s the final straw. Noah takes us along as he switches his systems over to Arch. - -Plus why you might want to think twice about LessPass & is the $4 Linux computer legit? - - - no - 1:27:15 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/104511/noah-switches-to-arch-las-442/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep442.mp3 - - Slaying the Arch Zombie | LAS 441 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/PUoCLeQW9Rg/ - <p>What happens if you fail to update your home Arch server for two years? Chris finds out the hard way & is forced to replace it with OpenMediaVault. We take you on the scene, and share the hard lessons learned!</p> - - -<p>Plus some big Firefox news, an update on Pirate Kodi boxes & the Lenovo egg.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/PUoCLeQW9Rg" height="1" width="1" alt=""/> - Sun, 30 Oct 2016 19:01:43 -0700 - - 8FE0FF23-5A0C-4428-A938-CE688F6E8DCC - Jupiter Broadcasting - What happens if you fail to update your home Arch server for two years? Chris finds out the hard way. We take you on the scene, and share the hard lessons learned! - - -Plus some big Firefox news, an update on Pirate Kodi boxes & the Lenovo egg. - - no - 1:03:36 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/104306/slaying-the-arch-zombie-las-441/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep441.mp3 - - Livepatch Your CoW | LAS 440 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/w7dfyUQ8ZjM/ - <p>Canonical’s Dustin Kirkland’s Beard tell us about their new Livepatch service, we discuss Dirty COW the “Most serious” Linux privilege-escalation bug ever, explain what a CRM is & what great open source solutions are available. </p> - -<p>Plus some much discussed feedback, our picks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/w7dfyUQ8ZjM" height="1" width="1" alt=""/> - Sun, 23 Oct 2016 21:42:43 -0700 - - 3032ECB7-EA7E-47AE-A442-D6D5FE324123 - Jupiter Broadcasting - Canonical’s Dustin Kirkland’s Beard tell us about their new Livepatch service, we discuss Dirty COW the “Most serious” Linux privilege-escalation bug ever, explain what a CRM is & what great open source solutions are available & more! - - no - 1:33:51 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/104121/livepatch-your-cow-las-440/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep440.mp3 - - All Aboard Ubuntu 16.10 | LAS 439 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/XUmHS6JUFkc/ - <p>Has Ubuntu fallen behind, or setting a new bar of refinement? We load up our hardware with Ubuntu 16.10, walk away with some big surprises & two totally different experiences.</p> - -<p>Plus KDE celebrates 20 years in a way only open source can, real VR gets demoed on Linux, the big BSD news & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/XUmHS6JUFkc" height="1" width="1" alt=""/> - Sun, 16 Oct 2016 19:11:58 -0700 - - 1251E997-CD82-4BE2-AAA7-E035FAE5056A - Jupiter Broadcasting - Has Ubuntu fallen behind, or setting a new bar of refinement? We load up our hardware with 16.10 & walk away with two totally different experiences. - -Plus KDE celebrates 20 years in a way only open source can, real VR gets demoed, the big BSD news & more! - - no - 1:26:59 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/103926/all-aboard-ubuntu-16-10-las-439/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep439.mp3 - - Plasma 5.8 Shines Bright | LAS 438 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/bwSsU07sGDU/ - <p>Plasma 5.8 marks a major milestone in the project's history & one that deserves a complete review.</p> - -<p>Plus we discuss the continued Fedora 24 issues, another take on Kodi box privacy, our picks & much more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/bwSsU07sGDU" height="1" width="1" alt=""/> - Sun, 09 Oct 2016 18:16:06 -0700 - - 7DBA0135-5C5A-4C53-9278-B7B16D9B5C8A - Jupiter Broadcasting - Plasma 5.8 marks a major milestone in the project's history & one that deserves a complete review. - -Plus we discuss the continued Fedora 24 issues, another take on Kodi box privacy, our picks & much more! - - no - 1:29:33 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/103736/plasma-5-8-shines-bright-las-438/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep438.mp3 - - Software Defined Networking | LAS 437 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/-GuQlbJmEnA/ - <p>What is Software Defined Networking (SDL) & why is it a major focus for The Linux Foundation? We visit the OpenDayLight Summit & discover how the open source philosophy applied to networking is transforming an industry.</p> - -<p>Plus the big Kodi crackdown in the UK, Purism want’s to build a Librem Phone, our picks, feedback & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/-GuQlbJmEnA" height="1" width="1" alt=""/> - Sun, 02 Oct 2016 19:38:29 -0700 - - 5F94115F-7425-40D4-8640-B2BC1F74965C - Jupiter Broadcasting - What is Software Defined Networking (SDL) & why is it a major focus for The Linux Foundation? We visit the OpenDayLight Summit! - -Plus the big Kodi crackdown in the UK, Purism want’s to build a Librem Phone, our picks, feedback & more! - - no - 1:31:07 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/103531/software-defined-networking-las-437/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep437.mp3 - - OpenMediaVault vs FreeNAS | LAS 436 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/5ru5_FcVxoE/ - <p>Two long-time FreeNAS users test the Debian-based OpenMediaVault, we share our favorite features FreeNAS doesn’t have, where FreeNAS still pulls ahead, standout features of version 3 over version 2 & why we think the project has a very bright future.</p> - -<p>Plus Lenovo & Intel feed Linux users another shit sandwich, take a look at Greyhole & chat up the new desktop releases.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/5ru5_FcVxoE" height="1" width="1" alt=""/> - Sun, 25 Sep 2016 21:26:30 -0700 - - ED621B4F-DEFE-464E-AD67-DF8B33D97A0F - Jupiter Broadcasting - Two long-time FreeNAS users test the Debian-based OpenMediaVault, we share our favorite features, where FreeNAS still pulls ahead & why we think the project has a bright future. - -Plus we take a look at Greyhole, chat up the new desktop releases & more! - - no - 1:39:00 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/103356/openmediavault-vs-freenas-las-436/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep436.mp3 - - Noah Builds A Linux Ark | LAS 435 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/mx4eV_m-kqk/ - <p>A new Linux build is nigh & Noah takes us through his new PC built for a specific task. </p> - -<p>Plus we try out Android N x86, get impressed by new Linux software releases, ponder what would happen if unbreakable encryption were made illegal & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/mx4eV_m-kqk" height="1" width="1" alt=""/> - Sun, 18 Sep 2016 08:54:05 -0700 - - C3A8D14A-BA94-4CF5-B2B5-0E11E0D39C2A - Jupiter Broadcasting - A new Linux build is nigh & Noah takes us through his new PC built for a specific task. - -Plus we try out Android N x86, get impressed by new Linux software releases, ponder what would happen if unbreakable encryption were made illegal & more! - - no - 1:09:04 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/103196/noah-builds-a-linux-ark-las-435/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep435.mp3 - - Looking At Loki | LAS 434 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/GrfqTueElX0/ - <p>We review the new Loki release from elementary OS. One of the most unique distributions, that’s often misunderstood. But how does it hold up for advanced Linux users? Tune in to find out!</p> - -<p>We argue about the true value of Let's Encrypt, celebrate the 10 millionth Raspberry Pi & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/GrfqTueElX0" height="1" width="1" alt=""/> - Sun, 11 Sep 2016 20:58:02 -0700 - - 93F14971-8215-4EDF-90B6-1F3449244D8D - Jupiter Broadcasting - We review the new Loki release from elementary OS. One of the most unique distributions, that’s often misunderstood. But how does it hold up for advanced Linux users? - -We argue about the true value of Let's Encrypt, celebrate the 10 millionth Pi & more! - - no - 1:28:35 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/102976/looking-at-loki-las-434/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep434.mp3 - - Linux Gets Schooled | LAS 433 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/5ex7ZqMXUbs/ - <p>We hit the road and convert a middle school to Linux, join us as we dig into their initial deployments & successes.</p> - -<p>Plus why we think the punishment for the kernel.org “hacker” is extreme, the Linux “trojan” that’s really a Drupal flaw, the big news from our BSD friends & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/5ex7ZqMXUbs" height="1" width="1" alt=""/> - Sun, 04 Sep 2016 19:58:45 -0700 - - 53561C2D-D7FC-43E6-AE44-0EEF9374864F - Jupiter Broadcasting - We hit the road and convert a middle school to Linux, join us as we dig into their deployments & successes. - -Plus why we think the punishment for the kernel.org “hacker” is extreme, the Linux “trojan” that’s really a Drupal flaw, the news from BSD & more! - - no - 1:16:14 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/102791/linux-gets-schooled-las-433/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep433.mp3 - - IoT and Chill | LAS 432 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/KsTBm9wBhrA/ - Ryan Sipes stops by to share his big news & debate the value and control Linux users can get from the much hyped Internet of Things. Plus we drool over the specs of a new Linux rig, break down the war against Linus, get impressed by Nextcloud 10 & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/KsTBm9wBhrA" height="1" width="1" alt=""/> - Sun, 28 Aug 2016 19:22:04 -0700 - - 0CE91549-7AFA-4D75-82DA-1BD8581A5298 - Jupiter Broadcasting - Ryan Sipes stops by to share his big news & debate the value and control Linux users can get from the much hyped Internet of Things. Plus we drool over the specs of a new Linux rig, break down the war against Linus, get impressed by Nextcloud 10 & more! - - no - 1:51:22 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/102556/iot-and-chill-las-432/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep432.mp3 - - Throwback Thursday… On Sunday! | LAS 431 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/8jumYQrjbL0/ - <p>We follow up on many of the projects, distros & gadgets we’ve reviewed recently & tell you where things stand now that we’ve been using them for a while. We report back to you with a series of mini-review follow ups!</p> - -<p>Plus the big “Linux Malware” threat that’s basically hype, hosting your own YouTube, Google Building a new OS & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/8jumYQrjbL0" height="1" width="1" alt=""/> - Sun, 21 Aug 2016 10:11:58 -0700 - - 7227FB71-66EA-422B-BCCF-88E4DEFB6D0C - Jupiter Broadcasting - We’ve reviewed many projects, distros & gadgets recently & we’ll tell you where things stand. We report back with a series of follow ups! - -Plus a big “Linux Malware” threat that’s basically hype, hosting your own YouTube, Google building a new OS & more! - - no - 1:38:43 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/102381/throwback-thursday-on-sunday-las-431/http://traffic.libsyn.com/jnite/linuxactionshowep431.mp3 - - Bringing Linux to the Surface | LAS 430 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/_S-D6T8j6v0/ - <p>We try out Linux on the Microsoft Surface Pro & the results were much better than we expected. We share this odd journey towards the perfect laptop…. Or Tablet…</p> - -<p>Plus the major security flaw in the Linux Kernel, the btrfs project recommends you use ZFS, Red Hat is hiring to make Linux run better on laptops & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/_S-D6T8j6v0" height="1" width="1" alt=""/> - Sun, 14 Aug 2016 22:08:18 -0700 - - DD46A230-2484-4440-871B-7E52DF91B73B - Jupiter Broadcasting - We try out Linux on the Microsoft Surface Pro & the results were much better than we expected. - -Plus the major security flaw in the Linux Kernel, the btrfs project recommends you use ZFS, Red Hat is hiring to make Linux run better on laptops & more! - - no - 1:23:53 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/102056/bringing-linux-to-the-surface-las-430/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep430.mp3 - - Fear and Linux in Las Vegas | LAS 429 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/75f8_5bDwrU/ - <p>Noah’s back from Defcon! He shares his experience at this infamous conference, his Linux in the wild sightings & his surprising takeaway.</p> - -<p>Plus Btrfs’ RAID 5/6 code has been found “unsafe”, the FossHub compromise, an Internet of Things failure that struck close to home & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/75f8_5bDwrU" height="1" width="1" alt=""/> - Sun, 07 Aug 2016 21:13:24 -0700 - - 4F6330CB-5B25-4CBB-9301-931FE12B1B76 - Jupiter Broadcasting - Noah’s back from Defcon! He shares his experience at this infamous conference & his surprising takeaway. - -Plus Btrfs’ RAID 5/6 code has been found “unsafe”, the FossHub compromise, an Internet of Things failure that struck close to home & more! - - no - 1:36:10 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/101726/fear-and-linux-in-las-vegas-las-429/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep429.mp3 - - Android TV Showdown! | LAS 428 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/n_1oENK0BmE/ - <p>We compare two very compelling boxes side by side & discover the advantages of Android as our HTPC. As two long time Linux users we were surprised & a little horrified. We share our strange journey to this place & why we are staying.</p> - -<p>Plus we discuss the impact that free Windows 10 had on Linux, Microsoft’s lost opportunity & geek out over Noah’s cool new hardware.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/n_1oENK0BmE" height="1" width="1" alt=""/> - Sun, 31 Jul 2016 20:25:20 -0700 - - 66734106-6C22-4738-ACF1-20E4FADE3766 - Jupiter Broadcasting - We compare two very compelling boxes side by side & discover the advantages of Android as our HTPC. We share our strange journey & why we are staying. - -Plus we discuss the impact that free Windows 10 had on Linux, Microsoft’s lost opportunity & more! - - no - 1:49:43 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/101551/android-tv-showdown-las-428/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep428.mp3 - - Unspecified Video Error | LAS 427 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/7sJstueyZpU/ - <p>This week we share a big project that blew up in our face, the technical speed bumps we faced & the ultimate goal to accomplish something a Mac could never do.</p> - -<p>Plus the big snap sprint that might just push the format over the edge, a quick look at Korora 24 & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/7sJstueyZpU" height="1" width="1" alt=""/> - Sun, 24 Jul 2016 21:37:27 -0700 - - 8AE385FD-D1D8-4EB7-A4B2-8BED870EF65B - Jupiter Broadcasting - We share a big project that blew up in our face, the technical speed bumps we faced & the ultimate goal to accomplish something a Mac could never do. Plus the big snap sprint that might just push the format over the edge, a quick look at Korora 24 & more! - - no - 1:32:25 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/101397/unspecified-video-error-las-427/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep427.mp3 - - Mint 18: Convenience Over Security | LAS 426 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/JHk0rgNzk7I/ - <p>We review Linux Mint 18 & our experience turns out to be a roller coaster ride from impressed glee to cautious concern. We’ve never felt more conflicted over a version of Linux Mint. </p> - -<p>Plus we discuss the Ubuntu Forum hack, a Fedora bug that’s bricking some laptops & why we just can’t quit FreeNAS.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/JHk0rgNzk7I" height="1" width="1" alt=""/> - Sun, 17 Jul 2016 22:10:21 -0700 - - 4F600224-628E-4FB2-94DB-E4B18B34ABC9 - Jupiter Broadcasting - We review Linux Mint 18 & our experience turns out to be a roller coaster ride. We’ve never felt more conflicted. - -Plus we discuss the Ubuntu Forum hack, a Fedora bug that’s bricking some laptops & why we just can’t quit FreeNAS. - - no - 2:01:57 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/101212/mint-18-convenience-over-security-las-426/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep426b.mp3 - - Remotely Helpful | LAS 425 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/RBIH-mP8TJo/ - This week we take a look at what Noah's using at Altispeed to provide remote assistance to his clients. We ponder over what Microsoft might have planned for Skype on Linux, cover why Android's full disk encryption might not be as secure as you think, Mycroft's collaboration with Canonical, the picks, your feedback & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/RBIH-mP8TJo" height="1" width="1" alt=""/> - Sun, 10 Jul 2016 20:51:54 -0700 - - 43B1DDDA-EF30-4AF3-91F9-C9BA8AA6CEBF - Jupiter Broadcasting - We look at what Noah's using at Altispeed to provide remote assistance, ponder what Microsoft may have planned for Skype on Linux, cover why Android's full disk encryption might not be as secure as you think, Mycroft's collaboration with Canonical & more! - - no - 1:16:17 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/101061/remotely-helpful-las-425/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep425.mp3 - - All By My SELF | LAS 424 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/hk1gWXVi47s/ - We go back in time and take a look at what you missed at SELF 2016. Plus we're 1% closer to the Linux Desktop, why Evernote sucks & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/hk1gWXVi47s" height="1" width="1" alt=""/> - Sun, 03 Jul 2016 21:15:45 -0700 - - 14EA0B39-990E-4A11-9EA5-86277EB4BB04 - Jupiter Broadcasting - We go back in time and take a look at what you missed at SELF 2016. Plus we're 1% closer to the Linux Desktop, why Evernote sucks & more! - - no - 1:22:27 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/100881/all-by-my-self-las-424/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep424.mp3 - - Fedora 24: Tokyo Drift | LAS 423 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/JOqqnxTPp60/ - <p>Fedora 24 is both a delight & simply frustrating at the same time. We share our experiences with one of the most highly anticipated Fedora releases. </p> - -<p>Plus Canonical makes good on the code, a big hole in Linux & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/JOqqnxTPp60" height="1" width="1" alt=""/> - Sun, 26 Jun 2016 18:30:22 -0700 - - 529CBBDE-21B6-4218-9A16-0427B5005099 - Jupiter Broadcasting - Fedora 24 is both a delight & simply frustrating at the same time. We share our experiences with one of the most highly anticipated Fedora releases. - -Plus Canonical makes good on the code, a big hole in Linux & more! - - no - 1:33:46 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/100676/fedora-24-tokyo-drift-las-423/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep423.mp3 - - A Bearded Thinkpad | LAS 422 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/MjyYt0mfacQ/ - <p>We review the ThinkPad x260 with Linux & compare it to the XPS 13. </p> - -<p>Then we discuss Snaps, AppImage, Flatpak & the Universal Package war that’s brewing, what the major downsides are & why we think this concept of universal Linux apps is not going away.</p> - -<p>Plus our picks of the week, a laptop giveaway & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/MjyYt0mfacQ" height="1" width="1" alt=""/> - Sun, 19 Jun 2016 19:18:54 -0700 - - A1EBD2E8-50E6-4204-A72B-9DA80B7C7BD0 - Jupiter Broadcasting - We review the ThinkPad x260 with Linux & compare it to the XPS 13. Then we discuss Snaps, AppImage, Flatpak & the Universal Package war that’s brewing, the major downsides are & why we think this concept of universal Linux apps is not going away & more! - - no - 1:37:15 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/100541/a-bearded-thinkpad-las-422/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep422.mp3 - - The 10th Anniversary | LAS 421 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/UEWe62oTKno/ - <p>A special celebration of 10 years of the Linux Action Show. We drop the format & have fun on a couple of projects we’ve really been wanting to share with you.</p> - -<p>How a nonprofit ISP built on tops of trees running Linux, with impressive engineering & custom code connected an entire community to the Internet.</p> - -<p>Then a special project that celebrates 10 years of Linux, our show & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/UEWe62oTKno" height="1" width="1" alt=""/> - Mon, 13 Jun 2016 00:13:50 -0700 - - 12590829-9A74-4617-81FD-5045AEF8BBEE - Jupiter Broadcasting - A special celebration of 10 years of the Linux Action Show. We drop the format & have fun on a couple of projects we’ve really been wanting to share with you. - -Then a special project that celebrates 10 years of Linux, our show & more! - - no - 1:35:50 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/100391/the-10th-anniversary-las-421/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep421b.mp3 - - Jumping to the Nextcloud | LAS 420 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/2-tDv0eJCms/ - <p>Frank & Jos of Nextcloud join us to discuss their fork of ownCloud, some of the history behind the fork, the reaction by ownCloud, & what they plan to do differently this time around.</p> - -<p>Plus we debate if Valve’s Steam Machines are a bust, a bit more on Oracle vs Google & much more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/2-tDv0eJCms" height="1" width="1" alt=""/> - Sun, 05 Jun 2016 20:18:59 -0700 - - A7C1BEB7-043F-4650-9FD3-74C42D73DE3E - Jupiter Broadcasting - Frank & Jos of Nextcloud join us to discuss their fork of ownCloud, the reaction by ownCloud, & what they plan to do differently this time around. - -Plus we debate if Valve’s Steam Machines are a bust, a bit more on Oracle vs Google & much more! - - no - 1:34:16 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/100191/jumping-to-the-nextcloud-las-420/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep420.mp3 - - 13 Inches of Freedom | LAS 419 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/U6BvZzErMdA/ - <p>Purism has sent us the Librem 13 for review, does a laptop designed to protect your digital life make a good Linux workstation? With physical kill switches, and a well built aluminum housing, we answer if this could be your next ultimate Linux laptop.</p> - -<p>Plus why were not so excited about Google’s recent win against Oracle, new features coming to Linux, what the heck is going on at OwnCloud & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/U6BvZzErMdA" height="1" width="1" alt=""/> - Sun, 29 May 2016 21:10:25 -0700 - - F24EB9C0-CD8B-43BD-B31A-3C46FFA6F477 - Jupiter Broadcasting - Purism has sent us the Librem 13 for review. We answer if this could be your next ultimate Linux laptop. - -Plus why were not so excited about Google’s recent win against Oracle, new features coming to Linux, what the heck is going on at OwnCloud & more! - - no - 1:51:34 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/100036/13-inches-of-freedom-las-419/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep419.mp3 - - Virtualization Revelation | LAS 418 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/jVeinC4e96w/ - <p>We share our early experiences with virtualization, then show you how Linux’s built-in enterprise grade virtualization curb stomps some commercial options. The discussion wraps up with examples of awesome hardware passthrough, and the major shift Linux has made possible.</p> - -<p>PLUS: Chromebooks outsell Macs, the sad story of an important project fading away, the big choice facing Fedora & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/jVeinC4e96w" height="1" width="1" alt=""/> - Sun, 22 May 2016 18:41:30 -0700 - - 33B01DF1-A99D-41C7-8A45-5D7BF27B9F15 - Jupiter Broadcasting - We share our early experiences with virtualization. The discussion wraps up with examples of awesome hardware passthrough. - -PLUS: Chromebooks outsell Macs, the sad story of an important project fading away, the big choice facing Fedora & more! - - no - 1:37:53 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/99891/virtualization-revelation-las-418/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep418.mp3 - - Penguin Powered Production | LAS 417 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/awtfhlQl720/ - <p>We go behind the scenes & give you details on our new Linux rig builds, using OBS to stream to multiple services, the hard lessons we learned & our Linux powered production pipeline. After our year long skunkworks project this episode is living proof of how for media production under Linux has come. </p> - -<p>Plus now we can all say ZFS is officially on Linux, Intel’s plans to make up for their Linux Skylake screw up, Ubuntu gets some snaps, Fedora “attempts” H.264 support, some games worth your time & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/awtfhlQl720" height="1" width="1" alt=""/> - Sun, 15 May 2016 23:40:01 -0700 - - 45861D35-CDE8-4BE2-B297-B508201E2BF2 - Jupiter Broadcasting - We go behind the scenes & give you details on our new Linux rig builds, using OBS to stream to multiple services, the hard lessons we learned & our Linux powered production pipeline. Plus now we can all say ZFS is officially on Linux & much more! - - no - 2:08:09 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/99741/penguin-powered-production-las-417/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep417.mp3 - - Getting Inside the Oryx Pro | LAS 416 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/4plupV2GVvQ/ - <p>The Oryx Pro from System76 claims to be a desktop replacement, with a lot of expandability & a ton of compute power. But do the specs & features match the price? We review one of the most potentially promising laptops built for Linux yet. </p> - -<p>If you could only buy one machine, should this be it? Tune in to find out!</p> - -<p>Plus is Linux Mint rushing into a collapse? We get really excited about the Pyra and you might too, big updates on the Linux desktop & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/4plupV2GVvQ" height="1" width="1" alt=""/> - Sun, 08 May 2016 20:58:06 -0700 - - 85AE043B-77F3-44E7-B774-486C98196AC1 - Jupiter Broadcasting - The Oryx Pro from System76 claims to be a desktop replacement, but do the specs & features match the price? - -Plus is Linux Mint rushing into a collapse? We get really excited about the Pyra and you might too, big updates on the Linux desktop & more! - - no - 1:47:37 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/99566/getting-inside-the-oryx-pro-las-416/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep416.mp3 - - Linux Switch Competition | LAS 415 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/GmCXvxj0AoQ/ - Noah & Emma set out to switch as many users to Linux as possible. Our team documents their competition to switch the most people to Linux within two hours in the Pacific Northwest!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/GmCXvxj0AoQ" height="1" width="1" alt=""/> - Sun, 01 May 2016 21:02:06 -0700 - - 1CEE61AA-764E-43B5-922B-D8AB24ACE392 - Jupiter Broadcasting - Noah & Emma set out to switch as many users to Linux as possible. Our team documents their competition to switch the most people to Linux within two hours in the Pacific Northwest! - - no - 1:03:25 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/99206/linux-switch-competition-las-415/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep415.mp3 - - LinuxFest Northwest 2016 | LAS 414 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/jr0-GNo_YyU/ - Our biggest live event yet, from the floor of LinuxFest Northwest 2016. We chat about the future of Linux desktop software, old friends from the past stop by & the switch competition is on!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/jr0-GNo_YyU" height="1" width="1" alt=""/> - Sun, 24 Apr 2016 22:46:42 -0700 - - CBD44236-1524-44A4-8AA4-10233B1A7250 - Jupiter Broadcasting - Our biggest live event yet, from the floor of LinuxFest Northwest 2016. We chat about the future of Linux desktop software, old friends from the past stop by & the switch competition is on! - - no - 1:23:01 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/99036/linuxfest-northwest-2016-las-414/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep414.mp3 - - Ubuntu 16.04: From Warty to Wimpy | LAS 413 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/qywPn2kEiPk/ - <p>We review Ubuntu 16.04 & it’s various flavors. We discuss the new features that make this one of the most important Ubuntu releases in years & debate the major challenges that modern distributions have solved, that Ubuntu still struggles with.</p> - -<p>Plus the latest stats show Ubuntu dominating where it counts, how Red Hat is making all that money, Linux in ALL the places, our weekly picks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/qywPn2kEiPk" height="1" width="1" alt=""/> - Sun, 17 Apr 2016 21:31:26 -0700 - - 83240D06-A702-4F95-8CA0-7134E2BC048B - Jupiter Broadcasting - We review Ubuntu 16.04 & it’s various flavors. We discuss the features making this an important Ubuntu release & debate the major challenges that Ubuntu still struggles with. - -Plus ubuntu’s domination,how Red Hat is making money, Linux errywhere, & more! - - no - 1:43:21 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/98906/ubuntu-16-04-from-warty-to-wimpy-las-413/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep413.mp3 - - Noah Delivers Linux | LAS 412 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/RzFymH5vnXk/ - <p>It started with speaking about Open Source. Were you thinking the Emma vs Noah showdown wasn't worth making it out? Do you have doubts that Noah can switch your friends & family? Take a trip with us & see for yourself what it takes to convert Mac & Windows users to Linux!</p> - -<p>We dive in & spend an evening with the Sandbagger crew switching their whole house to Linux, then they talk about how they're going to switch the class they're teaching next semester!</p> - -<p>Plus Linus’ hopes for the Linux desktop, setting up a network wide ad blocker using Pi-Hole & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/RzFymH5vnXk" height="1" width="1" alt=""/> - Sun, 10 Apr 2016 17:59:25 -0700 - - D2A1DF32-81EB-435D-B63A-E2CD173CFE75 - Jupiter Broadcasting - We dive in & spend an evening with the Sandbagger crew switching their whole house to Linux & how they're going to switch a class they’re teaching next semester! - -Plus Linus’ hopes for the Linux desktop, a network wide ad blocker using Pi-Hole & more! - - no - 1:19:35 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/98666/noah-delivers-linux-las-412/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep412.mp3 - - Windows Gets Bash-ed | LAS 411 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/fauP4XsFm1c/ - <p>Microsoft & Ubuntu working together to bring you Bash & the Ubuntu userland on Windows 10. Is this the ultimate Win for Linux? Or is this Embrace, Extend, Extinguish at its finest? We share our thoughts on this historic announcement.</p> - -<p>Plus Red Hat wants to save you some money, TP-Link bans OSS firmwares, Edubuntu calls it quits, our new favorite note taking app for Linux & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/fauP4XsFm1c" height="1" width="1" alt=""/> - Sun, 03 Apr 2016 19:32:40 -0700 - - 6AE08937-1A43-4A59-8FC7-6D447FEE7E2E - Jupiter Broadcasting - Microsoft & Ubuntu working together to bring you Bash & the Ubuntu userland on Windows 10. Is this the ultimate Win for Linux or Embrace, Extend, Extinguish? Plus Red Hat wants to save you money, TP-Link bans OSS firmwares, Edubuntu calls it quits & more! - - no - 1:32:17 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/98481/windows-gets-bash-ed-las-411/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep411.mp3 - - Floating on ownCloud 9 | LAS 410 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/F9IsyuIE33M/ - <p>We risk it all and toss our data into the new ownCloud 9 to give you our review. Find out about using ownCloud as an Evernote killer, Federated servers & the long-term commitment you're making as an ownCloud user.</p> - -<p>Plus Red Hat’s big news, the new Gnome & things go to the next level in our upcoming switch competition.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/F9IsyuIE33M" height="1" width="1" alt=""/> - Sun, 27 Mar 2016 19:30:21 -0700 - - 93EC0AD0-6072-4072-9A7B-64720AC2D9FA - Jupiter Broadcasting - We risk it all and toss our data into the new ownCloud 9 to give you our review. Find out about using ownCloud as an Evernote killer, Federated servers & more. - -Plus Red Hat’s big news, the new Gnome & the next level in our upcoming switch competition. - - no - 1:31:45 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/98121/floating-on-owncloud-9-las-410/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep410.mp3 - - What Is KDE Neon? | LAS 409 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/RzNr8BtcbTY/ - Jonathan Riddell joins us to discuss the KDE Neon project, the latest & greatest of KDE community software packaged on a rock-solid base. We kick the tires and give you our first impressions. Is this finally the Plasma Desktop just the way we’ve always wanted it?<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/RzNr8BtcbTY" height="1" width="1" alt=""/> - Sun, 20 Mar 2016 19:09:21 -0700 - - 6CCB5D0E-6670-4CFC-BC43-373DC54D1EBF - Jupiter Broadcasting - Jonathan Riddell joins to discuss the KDE Neon project, the latest & greatest of KDE community software packaged on a rock-solid base. We kick the tires & give you our first impression. Is this finally Plasma Desktop just the way we’ve always wanted it? - - no - 1:29:32 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/97801/what-is-kde-neon-las-409/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep409.mp3 - - Making Music with Linux | LAS 408 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/4LWQjpA-PoU/ - <p>What’s the best software under Linux to create music? We answer that & the best hardware that work together. We have something for the musician to casual hardware geek, we cover the dark art of creating music under Linux as we go inside Noah’s music studio and see what he uses.</p> - -<p>Plus we chat with ownCloud’s Community Manager about the new features in version 9, our thoughts on Microsoft’s SQL for Linux announcement & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/4LWQjpA-PoU" height="1" width="1" alt=""/> - Sun, 13 Mar 2016 19:58:48 -0700 - - 9DE46946-2F90-4D5D-9047-7E9165C16E7C - Jupiter Broadcasting - What’s the best software under Linux to create music? We have something for the musician to casual hardware geek, we cover the dark art of creating music under Linux. Plus a chat with ownCloud’s Community Manager about the features in ownCloud 9 & more! - - no - 1:29:17 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/97561/making-music-with-linux-las-408/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep408.mp3 - - 3rd Slice of Pi with Extra Mycroft | LAS 407 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/GX5g4ZRkIoc/ - <p>In special Rasberry Pi 3 edition of the show we look at the new hardware, review & chat with Mycroft CTO Ryan Sipes on how important the Raspberry Pi is for development of their open artificial intelligence platform & get the latest news.</p> - -<p>Plus replacing Spotify on Linux, the new Microsoft lock-in, our hosts face a moral quandary & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/GX5g4ZRkIoc" height="1" width="1" alt=""/> - Sun, 06 Mar 2016 23:00:27 -0800 - - 55EE8E2F-138B-431C-8D38-32A971F578BA - Jupiter Broadcasting - We look at the new Raspberry Pi 3, review & chat with Mycroft CTO Ryan Sipes on how important the Raspberry Pi is for development of their open AI platform. Plus replacing Spotify on Linux, the new Microsoft lock-in, our hosts face a moral quandary & more - - no - 1:38:49 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/97166/3rd-slice-of-pi-with-extra-mycroft-las-407/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep407.mp3 - - Entroware Apollo: Linux Macbook Killer | LAS 406 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/XCN--SrG_X8/ - <p>Has Entroware built the ultimate 13 inch Linux laptop? We put their Apollo through our battery of tests & review this good looking Skylake powered Linux portable.</p> - -<p>Plus Microsoft buys the folks behind Mono, Canonical might have a ZFS fight on their hands & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/XCN--SrG_X8" height="1" width="1" alt=""/> - Mon, 29 Feb 2016 01:46:05 -0800 - - DA4D168C-87AA-46B2-ABC6-C4C9BF26E03D - Jupiter Broadcasting - Has Entroware built the ultimate 13 inch Linux laptop? We put their Apollo through our battery of tests & review this good looking Skylake powered Linux portable. - -Plus Microsoft buys the folks behind Mono, Canonical has a ZFS fight on their hands & more! - - no - 2:02:00 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/96836/entroware-apollo-linux-macbook-killer-las-406/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep406.mp3 - - The High Price of Purism | LAS 405 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/bf535oCfjzI/ - <p>Is the Librem 15 the ultimate Linux laptop? We review Purism’s Librem 15 laptop, crowd funded and pitched as “the first high-end laptop in the world that ships without mystery software in the kernel, operating system, or any software applications.” Does it live up to the promise? Have we found the true Linux powered MacBook killer? </p> - -<p>Plus Linux Mint gets attacked, Ubuntu Touch on hardware you really want, why real ZFS support on Linux is near….</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/bf535oCfjzI" height="1" width="1" alt=""/> - Sun, 21 Feb 2016 19:33:44 -0800 - - 61A06B01-D90B-4FB4-BC65-31449F3629BC - Jupiter Broadcasting - Is the Librem 15 the ultimate Linux laptop? We review Purism’s Librem 15 laptop, crowd funded and pitched as “the first high-end laptop in the world that ships without mystery software in the kernel, operating system, or any software applications.” - - no - 2:11:40 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/96641/the-high-price-of-purism-las-405-2/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep405.mp3 - - How Not to Install Discourse | LAS 404 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/pgJWrXUAwW4/ - <p>This week we talk about how you can have a working web forum in 10 minutes or less & all open source! Last week we talked about team collaboration software, but what about when you need a wider approach? </p> - -<p>In the news we talk about an open source router; Russia dumping Windows, more updates to video editing on Linux, a super special live unboxing & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/pgJWrXUAwW4" height="1" width="1" alt=""/> - Sun, 14 Feb 2016 19:27:36 -0800 - - 41F1D002-7164-40DE-ADA4-8FECC337BECE - Jupiter Broadcasting - This week we talk about how you can have a working web forum in 10 minutes or less & all open source! - -In the news we talk about an open source router; Russia dumping Windows, more updates to video editing on Linux, a super special live unboxing & more! - - no - 1:54:27 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/93751/how-not-to-install-discourse-las-404/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep404.mp3 - - Rocket Chat & Mattermost Cut the Slack | LAS 403 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/L1yGqEyMQIs/ - <p>Teams collaborating over Slack is the new hot trend sweeping many open source projects, communities & others. We compare Rocket.Chat, Mattermost & Slack. See which best protects your privacy & makes it easier than ever to work with a group of people. Don’t hate, collaborate with this week’s episode!</p> - -<p>Plus all the details on the announced Ubuntu Tablet, the Keybase filesystem & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/L1yGqEyMQIs" height="1" width="1" alt=""/> - Sun, 07 Feb 2016 18:48:25 -0800 - - C730645E-B346-40EB-88DA-A3A2B5E8434E - Jupiter Broadcasting - Teams collaborating over Slack is the new hot trend sweeping many open source projects, communities & others. We compare Rocket.Chat, Mattermost & Slack. - -Plus all the details on the announced Ubuntu Tablet, the Keybase filesystem & more! - - no - 1:46:10 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/93521/rocket-chat-mattermost-cut-the-slack-las-403/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep403.mp3 - - The Stories of SCALE14x | LAS 402 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/YZIwjyT8Kcc/ - <p>We share our best stories from 2016’s SCALE14x. From the highlights to the bar fights we talk about what it's like to attend one of the largest community driven Linux events in the world.</p> - -<p>Plus the Linux Trojan that’s snapping screenshots & recording audio, Linux Mint is building their own X-Apps, your live calls & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/YZIwjyT8Kcc" height="1" width="1" alt=""/> - Mon, 01 Feb 2016 00:22:03 -0800 - - 5C6B9D0C-306A-48AF-A5CA-8925CB214370 - Jupiter Broadcasting - We share our stories from 2016’s SCALE14x. We talk about attending one of the largest community driven Linux events in the world. Plus the Linux Trojan that’s snapping screenshots & recording audio, Linux Mint is building their own X-Apps & more! - - no - 2:18:45 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/93271/the-stories-of-scale14x-las-402/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep402.mp3 - - Pre SCaLE LAS | LAS 401 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/y97Pwsqye8k/ - In this special episode of LAS, we go off the rails as we buckle down & prep for our visit to SCaLE live on the air! Plus picks, your feedback & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/y97Pwsqye8k" height="1" width="1" alt=""/> - Sun, 24 Jan 2016 10:14:15 -0800 - - 3EA0493B-68CC-4455-9977-75C17BE38C7E - Jupiter Broadcasting - In this special episode of LAS, we go off the rails as we buckle down & prep for our visit to SCaLE live on the air! Plus picks, your feedback & more! - - no - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/92926/pre-scale-las-las-401/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep401.mp3 - - LAS 400 Phones Home | LAS 400 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/evZDZv-ecgk/ - <p>We celebrate 400 episodes of the Linux Action Show, show you how easy it is to setup your own free phone system, never flash another USB stick again & the big Ubuntu rumors.</p> - -<p>Plus the openSSH bug you need to patch, the Steam Link SDK, Gnome 3 changes & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/evZDZv-ecgk" height="1" width="1" alt=""/> - Fri, 15 Jan 2016 21:45:31 -0800 - - CC11F959-9177-4BC8-A11B-8891108FCFEA - Jupiter Broadcasting - We celebrate 400 episodes of the Linux Action Show, show you how easy it is to setup your own phone system, never flash another USB stick again & the big Ubuntu rumors. - -Plus the openSSH bug you need to patch, the Steam Link SDK, Gnome 3 changes & more! - - no - 1:29:10 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/92716/las-400-phones-home-las-400/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep400.mp3 - - 2016 Linux Wish List | LAS 399 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/h6Y_QEBLUmc/ - <p>What if your humble hosts could have there way? A wave of their magic wands, whatever they want changed in Linux Land in 2016 would just happen? We spend sometime this week fantasizing about all things we wish would happen this year to make Linux better.</p> - -<p>Plus the welcome change in Ubuntu 16.04, Firefox OS finds new life, desktop picks that changed our lives & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/h6Y_QEBLUmc" height="1" width="1" alt=""/> - Sun, 10 Jan 2016 20:39:15 -0800 - - DA410A77-CF0B-4922-8F7B-1C36F6F28D8C - Jupiter Broadcasting - What if your humble hosts could have there way? A wave of their magic wands, whatever they want changed in Linux Land in 2016 would happen? - -Plus the welcome change in Ubuntu 16.04, Firefox OS finds new life, desktop picks that changed our lives & more! - - no - 2:28:37 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/92471/2016-linux-wish-list-las-399/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep399.mp3 - - Consulting the Oracle for 2016 | LAS 398 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/mEptyMxhCWU/ - <p>We make our annual predictions for the land of Linux in 2016, Google drops the openJDK bomb & we pay tribute to Ian Murdock.</p> - -<p>Plus we announce our SCaLE 14x plans, some changes to the show & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/mEptyMxhCWU" height="1" width="1" alt=""/> - Sun, 03 Jan 2016 18:37:30 -0800 - - 05FCEBA7-162A-4C92-9278-9269AC22B535 - Jupiter Broadcasting - We make our annual predictions for the land of Linux in 2016, Google drops the openJDK bomb & we pay tribute to Ian Murdock. - -Plus we announce our SCaLE 14x plans, some changes to the show & more! - - no - 2:02:24 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/92261/consulting-the-oracle-for-2016-las-398/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep398.mp3 - - Big Moments From 2015 | LAS 397 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/vFdSDAZYxnA/ - <p>Some of our very favorite moments from 2015. Witness as Chris attempts to slam a whole bunch of big show into one big show. </p> - -<p>Our favorite interview, our biggest rant & our most popular howto. Plus a look back at classic on-location moments from the year.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/vFdSDAZYxnA" height="1" width="1" alt=""/> - Sun, 27 Dec 2015 13:21:05 -0800 - - 2B1183C6-D971-4004-A9DF-88FC65425CE9 - Jupiter Broadcasting - Some of our very favorite moments from 2015. Witness as Chris attempts to slam a whole bunch of big show into one big show. - -Our favorite interview, our biggest rant & our most popular howto. Plus a look back at classic on-location moments from the year. - - no - 1:31:15 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/91986/big-moments-from-2015-las-397/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep397.mp3 - - Let's Encrypt: A New Hope | LAS 396 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/YMTIe5l7zFE/ - <p>Inspired by the Let’s Encrypt project, we break down the basics of SSL & how easy it is to set up on your Linux box now. </p> - -<p>Plus hacking GRUB by hitting backspace 28 times, the Linux Foundation wants the Blockchain, without the Bitcoin and their bedfellows are concerning, the steady steps towards cross distro application bundles & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/YMTIe5l7zFE" height="1" width="1" alt=""/> - Sun, 20 Dec 2015 05:57:04 -0800 - - 49188463-6AC7-4089-AB15-7D9FE6472E1C - Jupiter Broadcasting - Inspired by the Let’s Encrypt project, we break down the basics of SSL & how easy it is to set up on your Linux box now. - -Plus hacking GRUB by hitting backspace 28 times, the Linux Foundation wants the Blockchain & more! - - no - 1:06:25 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/91736/lets-encrypt-a-new-hope-las-396/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep396.mp3 - - Shooting the Breeze with KDE | LAS 395 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/JmtckZIQ7xM/ - <p>Plasma Desktop 5.5 shipped this week. We cover what’s new, what's improved & what work still remains for the latest & greatest from KDE. Plus some of the great supporting cast of applications that make the Plasma desktop great.</p> - -<p>Plus Mozilla ends their Smartphone plans, Microsoft is offering a Linux certification, the new KeePassX, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/JmtckZIQ7xM" height="1" width="1" alt=""/> - Sun, 13 Dec 2015 06:13:10 -0800 - - B982781A-42D1-4A70-B896-A3B990A3C7F9 - Jupiter Broadcasting - Plasma Desktop 5.5 shipped this week. We cover what’s new, what's improved & what work still remains for the latest & greatest from KDE. Plus Mozilla ends their Smartphone plans, Microsoft offers a Linux cert, the new KeePassX, your feedback & more! - - no - 1:31:10 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/91451/shooting-the-breeze-with-kde-las-395/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep395.mp3 - - Linux in Mint Condition | LAS 394 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/b0f2f4Uv8Jg/ - <p>Linux Mint 17.3 proves you can based a Linux desktop on a stable core (Ubuntu 14.04) & still deliver an innovative and polished desktop. We take back some of our concerns about Linux Mint & discuss the areas where they are pushing user experience forward.</p> - -<p>Plus Mozilla plans to dump Thunderbird, the big release that completely ignores Windows & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/b0f2f4Uv8Jg" height="1" width="1" alt=""/> - Sun, 06 Dec 2015 09:18:00 -0800 - - 129D4171-4F83-4DBF-A9F4-4CD70B43F765 - Jupiter Broadcasting - Linux Mint 17.3 proves you can based a Linux desktop on a stable core. We take back some of our concerns about Linux Mint & discuss the areas where they are pushing user experience forward. Plus Mozilla plans to dump Thunderbird & more! - - no - 2:03:10 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/91181/linux-in-mint-condition-las-394/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep394.mp3 - - Thankfully It's Open Source | LAS 393 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/MwqrCtC3HTw/ - <p>It’s a special holiday edition of the Linux Action Show & we get thankful for some super important, innovative, and critically necessary open source projects. We throw out the format and cover many projects listed in our notes & off the tops of our heads. </p> - -<p>Plus some really unique weekly picks, through providing feedback…</p> - -<p>AND A FEW SURPRISES!</p> - -<p>All this week on, the Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/MwqrCtC3HTw" height="1" width="1" alt=""/> - Sun, 29 Nov 2015 18:45:42 -0800 - - 30A9B150-C55C-4CBE-8B8D-8348C75BD68D - Jupiter Broadcasting - It’s a special holiday edition of the Linux Action Show, and we get thankful for some super important, innovative & critically necessary open source projects. We throw out the format, and cover many projects listed in our notes & off the tops of our heads - - no - 1:53:14 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/90881/thankfully-its-open-source-las-393/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep393.mp3 - - The Evolution of Solus | LAS 392 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/8W34DW0MUP8/ - <p>We review Solus OS, a new distribution from scratch with it’s own GTK based desktop called Budgie. Budgie is the flagship desktop of the Solus Operating System & we give you our first impressions. </p> - -<p>Plus projects like Jolla & Canonical's convergence have been doomed from the start, the big changes coming to GTK, the Plasma desktop gets another great release, highlights from the 2015 kernel summit & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/8W34DW0MUP8" height="1" width="1" alt=""/> - Sun, 22 Nov 2015 10:12:03 -0800 - - 2FD02426-EED7-4E5B-AC3A-8339F8E971A7 - Jupiter Broadcasting - We review Solus, a new distro from scratch with it’s own GTK-based desktop called Budgie & we give you our first impressions. - -Plus big changes coming to GTK, the Plasma desktop gets another great release, highlights from the 2015 kernel summit & more! - - no - 1:45:04 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/90616/the-evolution-of-solus-las-392/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep392.mp3 - - Live From System76 | LAS 391 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/cNMWXXWEq7M/ - <p>We traveled to Denver Colorado to meet the folks behind System76, tour their office & record a live show on location. Join us as we go behind the scenes of a dedicated Linux hardware manufacture.</p> - -<p>Plus Linux goes to space, Firefox OS has a new trick, the good news for open source router firmware & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/cNMWXXWEq7M" height="1" width="1" alt=""/> - Sun, 15 Nov 2015 10:59:14 -0800 - - 6E76F0A5-2165-4A61-9B04-C129AFD6A4D3 - Jupiter Broadcasting - We traveled to Denver Colorado to meet the folks behind System76, tour their office & record a live show on location. - -Plus Linux goes to space, Firefox OS has a new trick, the good news for open source router firmware & more! - - no - 1:22:13 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/90386/live-from-system76-las-391/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep391.mp3 - - Fedora from the Cockpit | LAS 390 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/yC41dkG7jK8/ - <p>Fedora 23 has hit the web and we think this is the release that changes everything, forever. Find out why we think the changes made in Fedora 23 make this nearly a future proof distribution in some work cases. </p> - -<p>Plus Linus Torvalds is under attack this week from multiple sources, we’ll break down one of the more technical assaults, Ubuntu is finally killing the software center & the biggest feature coming to systemd ever, just got delayed.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/yC41dkG7jK8" height="1" width="1" alt=""/> - Sun, 08 Nov 2015 09:55:08 -0800 - - C4EA75CA-546F-494C-B8CF-FF54B3675DC3 - Jupiter Broadcasting - Fedora 23 has hit the web and we think this is the release that changes everything, forever. Plus Linus Torvalds is under attack from multiple sources. Ubuntu is finally killing the software center & the biggest feature coming to systemd ever is delayed. - - no - 2:13:23 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/90206/fedora-from-the-cockpit-las-390/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep390.mp3 - - The Linux WiFI Tower | LAS 389 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/MmijOsP3PfU/ - <p>We go 350ft into the air to find out how Linux powers a wireless ISP (WISP). Get an inside look at how a modern services business can be built around Linux.</p> - -<p>Plus our thoughts on Chrome OS & Android merging, what it means for desktop Linux, new secure messaging options & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/MmijOsP3PfU" height="1" width="1" alt=""/> - Sun, 01 Nov 2015 17:13:10 -0800 - - 73AAAEDA-6580-4656-8ECD-385BC89D327A - Jupiter Broadcasting - We go 350ft into the air to find out how Linux powers a wireless ISP (WISP). Plus our thoughts on Chrome OS & Android merging, what it means for desktop Linux, new secure messaging options & more! - - no - 1:43:35 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/89956/the-linux-wifi-tower-las-389/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep389.mp3 - - Wolfing Down Ubuntu 15.10 | LAS 388 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/R54d7kiwxPg/ - <p>Our review of Ubuntu 15.10 Wily Werewolf, what new, noteworthy changes there are & who we think this new release is just right for. Also, we look the various flavors with bold new features worth checking out.</p> - -<p>Plus Kubuntu’s release manager calls it quits, our impressions of the Steam Controller & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/R54d7kiwxPg" height="1" width="1" alt=""/> - Sun, 25 Oct 2015 08:21:14 -0700 - - 28E9055B-EED6-4ABF-BAF5-18C9389D7441 - Jupiter Broadcasting - Our review of Ubuntu 15.10 Wily Werewolf, what new, noteworthy changes there are & who we think this new release is just right for. - -Plus Kubuntu’s release manager calls it quits, our impressions of the Steam Controller & more! - - no - 1:12:39 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/89676/wolfing-down-ubuntu-15-10-las-388/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep388.mp3 - - Passing On LastPass | LAS 387 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/UCYs7fNxGCs/ - <p>Our best open source alternatives to LastPass. We run down the easy, the straight forward & the totally custom solutions to rolling your password managment. All our picks are totally open source, auditable & ready to use today.</p> - -<p>Plus the first reviews of the Steam Machines hit the web, Red Hat’s big buy, GIMP in your browser & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/UCYs7fNxGCs" height="1" width="1" alt=""/> - Sun, 18 Oct 2015 11:47:53 -0700 - - 55A2ED6A-7756-4B19-AB13-A9404C844285 - Jupiter Broadcasting - Our best open source alternatives to LastPass. We run down the easy, the straight forward & the totally custom solutions to your password managment. Plus the first reviews of the Steam Machines hit the web, Red Hat’s big buy, GIMP in your browser & more! - - - no - 2:11:20 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/89366/passing-on-lastpass-las-387/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep387.mp3 - - Rolling with Netrunner | LAS 386 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/qoSkahL7zPY/ - Sun, 11 Oct 2015 08:46:14 -0700 - - A4AEFBBD-F5DF-4A68-97F7-97242514DD9D - Jupiter Broadcasting - Some say it's the best Plasma 5 Desktop experience to be had, we review Netrunner Rolling & take a walk on the KDE side of things for a bit. Then we put the great Ubuntu Conspiracy to bed, our best LastPass alternatives, a quick look at Slackel & more! - - no - 1:37:31 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Audio versions of The Linux Action Show! A show that covers everything geeks care about in the computer industry. Get a solid dose of Linux, gadgets, news events and much more!Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gpl<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/qoSkahL7zPY" height="1" width="1" alt=""/>http://www.jupiterbroadcasting.com/88931/rolling-with-netrunner-las-386/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep386.mp3 - - OpenSUSE’s Big Leap | LAS 385 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/3_6FK3TGtuk/ - <p>It might just be the future of openSUSE. We take a indepth look at openSUSE Leap 42.1 beta. Find out why this might be the most ambitious Linux distribution release to date, the features that appeal the power user & the newbie.</p> - -<p>Plus the Linux malware that fixes up your box, why it might never be the year of the Linux desktop, the Linux botnet that hits with 150 Gbps DDoS attacks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/3_6FK3TGtuk" height="1" width="1" alt=""/> - Sun, 04 Oct 2015 09:53:17 -0700 - - 456B8B53-2F24-450E-A582-3AA47FC2EA29 - Jupiter Broadcasting - It might just be the future of openSUSE. We take a indepth look at openSUSE Leap 42.1 beta. Find out why this might be the most ambitious Linux distribution release to date. Plus the Linux malware that fixes up your box & more! - - no - 1:25:05 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/88561/opensuses-big-leap-las-385/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep385.mp3 - - Rooting Noah's House | LAS 384 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/MNF91znYjA8/ - <p>Home automation can make you feel like you're living in the future. This week we dig into the technology, advantages & disadvantages to fully automating all aspects of your home or office. We share our hard learned lessons!</p> - -<p>Plus Valve’s huge milestone, what’s great about Gnome 3.18, Ubuntu powered Drones, the creepy Windows 10 feature that’s pushing people to adopt Linux & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/MNF91znYjA8" height="1" width="1" alt=""/> - Sun, 27 Sep 2015 10:51:50 -0700 - - 4C36F25C-7AE9-4A96-8CA4-BD1832D015A7 - Jupiter Broadcasting - Home automation can make you feel like you're living in the future. This week we dig into the tech of fully automating all aspects of your home or office. - -Plus Valve’s milestone, Gnome 3.18, Ubuntu powered Drones & more! - - no - 1:24:45 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/88201/rooting-noahs-house-las-384/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep384.mp3 - - Open Source Plex Alternative | LAS 383 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/a_DKyRdmoeU/ - <p>Emby is an open source home media server, that brings all of your media together into one place & automatically converts and streams your media on-the-fly to any device. In other words, a legitimate Plex competitor. We give you our in-depth look.</p> - -<p>Plus Microsoft announces its own Linux distribution, why it's the year of the Linux Desktop in China, why it might be time to drop VirtualBox & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/a_DKyRdmoeU" height="1" width="1" alt=""/> - Sun, 20 Sep 2015 09:41:49 -0700 - - 0076BBF6-BEC6-4638-B5A0-3670359763FE - Jupiter Broadcasting - Emby is an open source home media server, a legitimate Plex competitor. We give you our in-depth look. - -Plus Microsoft announces its own Linux distribution, why it's the year of the Linux Desktop in China, why it might be time to drop VirtualBox & more! - - no - 1:32:59 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/87956/open-source-plex-alternative-las-383/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep383.mp3 - - Gmail in the Black Tank | LAS 382 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/3in5wLALVeE/ - <p>After the last straw Noah dumps Gmail, shares his battle and solution & Chris runs down five great open source Gmail alternatives.</p> - -<p>Plus why Dell stopped shipping the XPS 13 in Europe, a big update to a Linux video editor, the news of the week & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/3in5wLALVeE" height="1" width="1" alt=""/> - Sun, 13 Sep 2015 11:01:10 -0700 - - 56B2E36C-2904-4C38-A7B2-995CE50DEB21 - Jupiter Broadcasting - After the last straw Noah dumps Gmail, shares his battle and solution & Chris runs down five great open source Gmail alternatives. - -Plus why Dell stopped shipping the XPS 13 in Europe, a big update to a Linux video editor, the news of the week & more! - - no - 1:19:27 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/87616/gmail-in-the-black-tank-las-382/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep382.mp3 - - How We Got Started With Linux | LAS 381 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/gsyinw_xbps/ - <p>We finally share our getting started with Linux stories. And it turns out, it was nearly a freak happenstance for both of us & some great stories from our community.</p> - -<p>Plus the Safe Wifi campaign you need to know about, we discuss the new elementaryOS, an update on the Munich situation & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/gsyinw_xbps" height="1" width="1" alt=""/> - Sun, 06 Sep 2015 08:54:28 -0700 - - F8DAE818-C3A3-499A-9CE3-EE35081EE1A5 - Jupiter Broadcasting - We finally share our getting started with Linux stories & some great stories from our community. - -Plus the Safe Wifi campaign you need to know about, we discuss the new elementaryOS, an update on the Munich situation & more! - - no - 1:25:19 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/87321/how-we-got-started-with-linux-las-381/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep381.mp3 - - Remote Controlled Terminal | LAS 380 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Tosz1nlx5hI/ - Share your terminal as a web application with anyone in the world in seconds, we’ll show you how. Why Ubuntu’s dominance over EC2 matters so much, Munich follow up, why Cortona can go suck a banana & more!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Tosz1nlx5hI" height="1" width="1" alt=""/> - Sun, 30 Aug 2015 07:29:38 -0700 - - A928FE24-B4AA-47BD-9000-D8F3A7B665F0 - Jupiter Broadcasting - Share your terminal as a web application with anyone in the world in seconds, we’ll show you how. Why Ubuntu’s dominance over EC2 matters so much, Munich follow up, why Cortona can go suck a banana & more! - - no - 1:52:40 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/87101/remote-controlled-terminal-las-380/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep380.mp3 - - Experience LinuxCon 2015 | LAS 379 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/y-S8Z_-DZZE/ - <p>We take you to LinuxCon like never before. The container trend goes big and community leaders are taking bold stands & the quiet debate that’s brewing. </p> - -<p>Plus a super thin Linux laptop, Google’s Linux router the OnHub, Munich to ditch Linux for Windows & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/y-S8Z_-DZZE" height="1" width="1" alt=""/> - Sun, 23 Aug 2015 19:41:35 -0700 - - F48CABDE-A791-4EA4-AF2C-AEDE3944BA85 - Jupiter Broadcasting - We take you to LinuxCon like never before. The container trend goes big and community leaders are taking bold stands & the debate that’s brewing. - -Plus a super thin Linux laptop, Google’s Linux router the OnHub, Munich to ditch Linux for Windows & more! - - no - 1:17:34 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/86832/experience-linuxcon-2015-las-379/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep379b.mp3 - - Serval: A Desktop Dominator | LAS 378 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/EieNaOwA65I/ - <p>System76’s Serval WS is in house & we put it through our series of tests. With it’s 4Ghz Intel i7 CPU and Nvidia 970M GPU we set out to see what kind of workloads this desktop replacement is ideal for. </p> - -<p>Is the claim that a laptop can replace your desktop really true? We aim to find out! </p> - -<p>Plus the insane popularity of Chromebooks, how Google just gave a major boost to desktop Linux, looking back at 18 years of Gnome & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/EieNaOwA65I" height="1" width="1" alt=""/> - Sun, 16 Aug 2015 16:59:50 -0700 - - 6BC22B8E-5ED2-4B2B-A681-95D80A3C1FAA - Jupiter Broadcasting - System76’s Serval WS is in house! Is the claim that a laptop can replace your desktop really true? We’ll find out! - -Plus the insane popularity of Chromebooks, how Google just gave a major boost to desktop Linux, looking back at 18 years of Gnome & more! - - no - 1:39:13 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/86577/serval-a-desktop-dominator-las-378/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep378.mp3 - - Level Up Your LAN | LAS 377 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/028t51kl-K8/ - <p>We take a deep dive into the basics of getting a home network up and running. It you’ve lived with whatever the ISP has given you have no fear, not only are we going to show you how to do it, it’s going to be all done from Linux!</p> - -<p>Plus Firefox has a major flaw that impacts Linux users, an update on the Jolla tablet, we discuss our big format experiment & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/028t51kl-K8" height="1" width="1" alt=""/> - Sun, 09 Aug 2015 11:05:23 -0700 - - 9146FEEE-DBB7-4D81-A918-6E987D4D7087 - Jupiter Broadcasting - We take a deep dive into the basics of getting a home network up and running. It you’ve lived with whatever the ISP has given you have no fear. - -Plus Firefox has a major flaw, an update on the Jolla tablet, we discuss our big format experiment & more! - - no - 1:51:53 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/86282/level-up-your-lan-las-377/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep377.mp3 - - Windows 10 vs Linux | LAS 376 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Y4-4RLQDckU/ - How do two long-time Linux users react to trying Windows 10? This week we run Windows so you don’t have to. How does Windows 10 compare to the modern Linux desktop, are it’s best new features a knockoff, and what areas does Windows 10 pull ahead? It’s a review of Windows 10 like you won’t find anywhere else!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Y4-4RLQDckU" height="1" width="1" alt=""/> - Sun, 02 Aug 2015 16:21:55 -0700 - - 3405DDD2-2D1E-48AF-BB57-3DB2F858385A - Jupiter Broadcasting - How do two long-time Linux users react to trying Windows 10? This week we run Windows so you don’t have to. How does Windows 10 compare to the modern Linux desktop? It’s a review of Windows 10 like you won’t find anywhere else! - - no - 1:45:41 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/85922/windows-10-vs-linux-las-376/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep376.mp3 - - OSCON 2015 | LAS 375 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/58uPeSSDiSY/ - <p>It was a huge OSCON this year, and we have a bunch of great interviews from the floor. We’ll feature some amazing Linux powered gadgets, exciting hardware, and our massive interview with Todd Weaver, the man behind Purism Librem 13 and the Librem 15 Linux laptops.</p> - -<p>Plus our thoughts on the Plasma Phone, the Linux distro adding secret watermarks to files & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/58uPeSSDiSY" height="1" width="1" alt=""/> - Sun, 26 Jul 2015 18:43:04 -0700 - - 2BCFBF2C-FE65-4176-AE2D-0C5F76393E5A - Jupiter Broadcasting - It was a huge OSCON this year! We’ll feature some Linux powered gadgets, amazing hardware & our interview with Todd Weaver, the man behind Purism Librem laptops. Plus thoughts on the Plasma Phone, the Linux distro adding secret watermarks to files & more! - - no - 2:06:08 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/85582/oscon-2015-las-375/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep375.mp3 - - Get Going with X2Go | LAS 374 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/WrfK0ZnyWu0/ - <p>The best remote desktop experience has never been easier, we’ll show you the power of X2Go with the security of SSH!</p> - -<p>Plus the push to kill flash picks up, Firefox OS fork “H5OS” gets a $100 million boost, how to watch Amazon Prime video under Linux & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/WrfK0ZnyWu0" height="1" width="1" alt=""/> - Sun, 19 Jul 2015 15:57:42 -0700 - - 39581288-E38F-4264-B7CD-FC2BAAB55967 - Jupiter Broadcasting - The best remote desktop experience has never been easier, we’ll show you the power of X2Go with the security of SSH! Plus the push to kill flash picks up, Firefox OS fork “H5OS” gets a $100 million boost, how to watch Amazon Prime video under Linux & more - - no - 1:12:35 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/85377/get-going-with-x2go-las-374/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep374.mp3 - - SSH Authentication with YubiKey | LAS 373 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Cd-lddExYpE/ - <p>Take your Linux logins up to the next level with YubiKey. YubiKeys support one-time passcode, smart card & more – enabling one security key to an unlimited number of applications. Today we’ll show you how to make it work with SSH under Linux.</p> - -<p>Plus our thoughts on the NSA using Red Hat, the big changes coming to openSUSE, our picks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Cd-lddExYpE" height="1" width="1" alt=""/> - Sun, 12 Jul 2015 18:56:46 -0700 - - 672334E5-FA93-408F-9051-8A4382673185 - Jupiter Broadcasting - Take your Linux logins up to the next level with YubiKey. YubiKeys support one-time passcode, smart card & more. We’ll show you how to make it work with SSH under Linux. - -Plus our thoughts on NSA using Red Hat, the changes coming to openSUSE & more! - - - no - 2:03:51 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/85062/ssh-authentication-with-yubikey-las-373/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep373.mp3 - - Linux Photography in Focus | LAS 372 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/QnDkbx-HwPU/ - <p>From total beginner to photo pro, we’ll share workflow tips, tools, tricks & backup techniques to super-charge your photography workflow under Linux.</p> - -<p>Plus the Pinos project promises to bring PulseAudio to video, how DirectX11 is coming to Linux, the Yotaphone upset, OwnCloud dreams & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/QnDkbx-HwPU" height="1" width="1" alt=""/> - Sun, 05 Jul 2015 17:32:26 -0700 - - 1BD48D6F-6A3B-45EE-B244-72AF0FDF82DE - Jupiter Broadcasting - We share workflow tips, tools, tricks & backup techniques to super-charge your photography workflow under Linux. - -Plus the Pinos project promises to bring PulseAudio to video, how DirectX11 is coming to Linux, the Yotaphone upset, OwnCloud dreams & more! - - - no - 1:22:04 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/84722/linux-photography-in-focus-las-372/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep372.mp3 - - SIPing on some Linux | LAS 371 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/F5FZ7vGgiQo/ - <p>Find out about the best software and hardware to make and take amazingly good sounding calls. From the best open source solutions, to turnkey solutions today’s episode has something from the beginner to the expert.</p> - -<p>Plus Google removes "always listening" code from Chromium, The Linux Foundation invests some serious cash, why Red Hat’s CEO thinks Linux has “won” the datacenter & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/F5FZ7vGgiQo" height="1" width="1" alt=""/> - Sun, 28 Jun 2015 17:43:17 -0700 - - 9F91E078-4BA3-4092-9A72-63036F935EFF - Jupiter Broadcasting - Find out about the best software and hardware to make and take amazingly good sounding calls. Plus Google removes "always listening" from Chromium, The Linux Foundation invests some cash, why Red Hat’s CEO thinks Linux has “won” the datacenter & more! - - no - 1:34:58 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/84332/siping-on-some-linux-las-371/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep371.mp3 - - A Chat with Red Hat | LAS 370 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/37bbYdVU__0/ - The linux action show sits down to have a chat with Red Hat!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/37bbYdVU__0" height="1" width="1" alt=""/> - Sun, 21 Jun 2015 08:21:39 -0700 - - F025CD10-027D-4D86-B49C-F6371FAFE722 - Jupiter Broadcasting - The linux action show sits down to have a chat with Red Hat! - - no - 55:33 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/84017/a-chat-with-red-hat-las-370/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep370.mp3 - - Live from SouthEast LinuxFest | LAS 369 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/2REM8prvgUU/ - <p>Exclusive interviews and coverage from one of the show’s favorite events, SouthEast LinuxFest, aka SELF 2015. Find out the latest with the Ubuntu project, a humble approach to Linux advocacy & how the boundaries of science are being pushed by Linux.</p> - -<p>Plus the new MATE release, HP kills The Machine, a quick update on Ubuntu's Unity 8 & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/2REM8prvgUU" height="1" width="1" alt=""/> - Sun, 14 Jun 2015 17:33:13 -0700 - - 360E03E7-F301-4037-9C42-654A724DF943 - Jupiter Broadcasting - Exclusive interviews and coverage from SELF 2015. Find out the latest with the Ubuntu project, humble Linux advocacy & how the boundaries of science are being pushed by Linux. - -Plus A new MATE release, HP kills The Machine, updates on Unity 8 & more! - - - no - 1:55:58 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/83662/live-from-southeast-linuxfest-las-369/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep369.mp3 - - Party with Linux | LAS 368 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/HHLgcKn5FuM/ - <p>Who doesn't like a good party? Some folks will tell you that Linux is boring, or for geeks. This week we'll show you how you can have a very loud and bright time with Linux.</p> - -<p>Plus Valve officially pins down a Steam Machine launch date. More encryption for Linux, and did the CHIP guys underestimate the cost of their $9 computer?</p> - -<p>Plus some great feedback, some helpful app picks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/HHLgcKn5FuM" height="1" width="1" alt=""/> - Sun, 07 Jun 2015 19:08:33 -0700 - - FDAB84DE-1777-4AA0-9705-A37595CF384C - Jupiter Broadcasting - Who doesn't like a good party? Some folks will tell you that Linux is boring. This week we'll show you how you can have a very loud & bright time with Linux. - -Plus Valve officially pins down a Steam Machine launch date. More encryption for Linux & more! - - - no - 1:23:44 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/83342/party-with-linux-las-368/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep368.mp3 - - Fedora 22 Review | LAS 367 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/bqX-JRhERJ4/ - <p>Fedora 22 builds on top of the great Fedora 21 release. With big changes like the new DNF package manager, Gnome 3.16, and more there is a lot to talk about and a few bumps. We’ll share our experience with Fedora’s latest and greatest!</p> - -<p>Plus why Mandriva shutdown, SourceForge messes with GIMP, the Kubuntu drama we don’t want to talk about, great feedback, some helpful app picks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/bqX-JRhERJ4" height="1" width="1" alt=""/> - Sun, 31 May 2015 21:59:39 -0700 - - 1EBB849E-73DE-4649-97DE-02A7B9871E3B - Jupiter Broadcasting - Fedora 22 builds on top of the Fedora 21 release. Changes like DNF package manager, Gnome 3.16 & more! -Plus why Mandriva shut down, SourceForge messes with GIMP, the Kubuntu drama we don’t want to talk about, great feedback, some helpful app picks & more! - - no - 2:18:11 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/83032/fedora-22-review-las-367/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep367.mp3 - - Bodhi: Enlightened Linux | LAS 366 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/kiQYNx2qGHE/ - <p>Lead developer of Bodhi Linux, Jeff Hoogland, joins us to discuss this exciting distribution that showcases the Enlightenment desktop.</p> - -<p>Plus Canonical could be going public, but what will that mean for the desktop? We debate. Firefox OS see’s a major course change ahead & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/kiQYNx2qGHE" height="1" width="1" alt=""/> - Sun, 24 May 2015 18:29:18 -0700 - - 63679E6B-ABB1-4CEA-8772-192AC5F0DE13 - Jupiter Broadcasting - Lead developer of Bodhi Linux, Jeff Hoogland, joins us to discuss this exciting distribution that showcases Enlightenment. - -Plus Canonical could be going public, but what will that mean for the desktop? Firefox OS see’s a major course change ahead & more! - - no - 1:30:05 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/82642/bodhi-enlightened-linux-las-366/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep366.mp3 - - The Emulation Game | LAS 365 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/IiQ2R92FBU0/ - <p>We showcase the best in emulated gameplay experiences under Linux. A topic that sometimes is shrouded in shame is actually one of Linux’s strongest suits. Backed by an historical announcement this week, if you had any doubts, today’s episode will change your mind!</p> - -<p>Plus Oculus abandons their Linux backers & we’ll explain why this short-sighted move might be a good thing, the next big Ubuntu phone ships & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/IiQ2R92FBU0" height="1" width="1" alt=""/> - Sun, 17 May 2015 19:08:57 -0700 - - B399B61B-72C5-4610-B8FD-1238B17095FD - Jupiter Broadcasting - We showcase the best in emulated gameplay experiences under Linux. A topic that sometimes is shrouded in shame is actually one of Linux’s strongest suits. - -Plus Oculus abandons their Linux backers, the next big Ubuntu phone ships & more! - - no - 1:41:55 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/82207/the-emulation-game-las-365/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep365.mp3 - - Krita Developer Interview | LAS 364 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/DD5UEO92xH8/ - <p>We get the opportunity to talk to the Krita project. Can professional graphic design be done on Linux? What it will take to get the project to the next level? We find out! </p> - -<p>Plus a crazy member of our audience takes CentOS desktop challenge & we check in. CryEngine to support Linux, Firefox OS in Africa, Snappy packages, Python 3 in Ubuntu by Default & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/DD5UEO92xH8" height="1" width="1" alt=""/> - Sun, 10 May 2015 18:04:15 -0700 - - D491135F-F3A8-4624-A9E3-A581BDDD9917 - Jupiter Broadcasting - We get the opportunity to talk to the Krita project. Can professional graphic design be done on Linux? - -Plus a viewer takes CentOS desktop challenge & we check in. CryEngine on Linux, Firefox OS in Africa, Snappy packages, Python 3 in Ubuntu & more! - - no - 1:25:26 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/81807/krita-developer-interview-las-364/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep364.mp3 - - Linux's Victory Blow | LAS 363 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/BjXfIII43vQ/ - <p>The founder of Open Broadcaster, a free and open source software for video recording and live streaming joins us to discuss the project, challenges they face & what the future holds.</p> - -<p>Plus we go into detail on the miracles we pulled off to make LinuxFest Northwest coverage Linux powered. A new alternative to systemd, a cheap Linux PC for everyone, three years of Steam & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/BjXfIII43vQ" height="1" width="1" alt=""/> - Sun, 03 May 2015 08:13:55 -0700 - - 576CB0B8-EAFB-4938-A82C-5B87F0FDAC66 - Jupiter Broadcasting - The founder of Open Broadcaster joins to discuss the project, challenges they face & what the future holds. - -Plus how we made LFNW coverage Linux powered. A new alternative to systemd, a cheap Linux PC for everyone, three years of Steam & more! - - no - 1:22:52 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/81432/linuxs-victory-blow-las-363/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep363.mp3 - - Rockin 2015 LinuxFest NW | LAS 362 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/mdsHW2H9s18/ - <p>Live from the floor of LinuxFest Northwest 2015, we chat with the new Microsoft about their new Linux attitude, chat with some familiar friends & take the pulse of the community.</p> - -<p>Plus an overview of the new Debian & Ubuntu releases, a historical app pick & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/mdsHW2H9s18" height="1" width="1" alt=""/> - Sun, 26 Apr 2015 17:35:00 -0700 - - ECCE25A0-D8A7-4120-99C7-1CB5965A7F53 - Jupiter Broadcasting - Live from the floor of LinuxFest Northwest 2015, we chat with the new Microsoft about their new Linux attitude, chat with some familiar friends & take the pulse of the community. - -Plus an overview of the new distro releases, a historical app pick & more! - - no - 1:01:28 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/81137/rockin-2015-linuxfest-nw-las-362/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep362.mp3 - - From Apples to Penguins | LAS 361 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/TW6GfpZ-kck/ - Since the beginning of the show, we've had project #1 & that project will finally be coming to a close. Recent changes in the MacOS system & key applications require the user to learn a new workflow, so Chris & Noah have begun the daunting task of converting Chris’ wife & long-time Mac user, Angela, to Linux.<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/TW6GfpZ-kck" height="1" width="1" alt=""/> - Sun, 19 Apr 2015 18:00:04 -0700 - - 9EE28DC9-3117-44A8-9832-74250E7698B4 - Jupiter Broadcasting - Poject #1 will finally be coming to a close. Recent changes in the MacOS system & key applications require the user to learn a new workflow, so Chris & Noah have begun the daunting task of converting Chris’ wife & long-time Mac user, Angela, to Linux. - - no - 1:24:57 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/80702/from-apples-to-penguins-las-361/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep361.mp3 - - Chronicles of a Linux Switcher | LAS 360 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/OVt-e9Pa_m8/ - <p>We follow the journey of users who have just made the switch to Linux. We document what went great & what hasn’t worked. </p> - -<p>Plus a big announcement is made, great news for Ubuntu MATE, a quick look at Elementary OS Freya Beta & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/OVt-e9Pa_m8" height="1" width="1" alt=""/> - Sun, 12 Apr 2015 18:24:20 -0700 - - 947104BE-EE7E-4F9F-8E45-CA8E4B4831A7 - Jupiter Broadcasting - We follow the journey of users who have just made the switch to Linux. We document what went great & what hasn’t worked. - -Plus a big announcement is made, great news for Ubuntu MATE, a quick look at Elementary OS Freya Beta & more! - - no - 1:53:35 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/80312/chronicles-of-a-linux-switcher-las-360/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep360.mp3 - - Get A Job, You Linux Bum! | LAS 359 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/rqZ7pqAL2N8/ - <p>Have you ever thought it’s better to create a job then apply for one? This week we dive into what it takes to build a business that runs on open source & supports open source.</p> - -<p>Plus Microsoft’s surprise move, openSUSE jumps ahead, running just about any Android app under Linux & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/rqZ7pqAL2N8" height="1" width="1" alt=""/> - Sun, 05 Apr 2015 07:48:51 -0700 - - 6AE1A8D1-2707-4B44-8061-7B02A4D7AA9E - Jupiter Broadcasting - Have you ever thought it’s better to create a job then apply for one? This week we dive into what it takes to build a business that runs on & supports open source. - -Plus Microsoft’s surprise move, openSUSE jumps ahead, running Android apps on Linux & more - - no - 1:26:46 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/79937/get-a-job-you-linux-bum-las-359/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep359.mp3 - - Remote Desktop Roundup | LAS 358 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/2yPA3UoQioE/ - <p>We take a look at remote desktop on Linux. We go behind the scenes to see how Linux can be used to remotely support business at scale as well as providing help to family and friends and round up the best solutions. </p> - -<p>Plus is SteamOS diverging too far from Debian? LibreOffice has big online plans, Gnome 3.16 is out, tons of Kodi follow up & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/2yPA3UoQioE" height="1" width="1" alt=""/> - Sun, 29 Mar 2015 18:38:22 -0700 - - 6A739E7B-D6D2-405E-B559-2C8AC08F0ECF - Jupiter Broadcasting - We take a look at remote desktop on Linux. We go behind the scenes to see how Linux can be used to remotely suppor at scale. Plus is SteamOS diverging too far from Debian? LibreOffice has big online plans, Gnome 3.16 is out, tons of Kodi follow up & more! - - no - 1:41:02 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/79607/remote-desktop-roundup-las-358/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep358.mp3 - - Kodiculious Review | LAS 357 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/6S8fFQaKkvE/ - <p>Is Kodi the one true open source home theater system? We look at the latest release of Kodi, formerly known as XBMC. Discuss the projects current state, and what the future release holds.</p> - -<p>Plus the BQ Ubuntu Touch devices runs into some GPL issues, Microsoft’s Secure Boot policy change, our picks & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/6S8fFQaKkvE" height="1" width="1" alt=""/> - Sun, 22 Mar 2015 18:31:16 -0700 - - B6D17AB9-369C-4F2C-9486-0D1F64E61D71 - Jupiter Broadcasting - We look at the latest release of Kodi, formerly known as XBMC. Discuss the projects current state, and what the future release holds. - -Plus the BQ Ubuntu Touch devices runs into some GPL issues, Microsoft’s Secure Boot policy change, our picks & more! - - no - 1:26:43 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/79247/kodiculious-review-las-357/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep357.mp3 - - Linux's Slice of HAM | LAS 356 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/TixO19PE2KA/ - <p>Have you heard of Ham Radio? It’s the original open source! We dive in and take you into a ham shack to see what Ham Radio is all about, how it can done on Linux, and how the principles and communities of open source so closely align with this old hobby.</p> - -<p>Plus Linux hits over 1k games & the new distro that makes Fedora approachable & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/TixO19PE2KA" height="1" width="1" alt=""/> - Sun, 15 Mar 2015 17:27:17 -0700 - - 99310FF0-3C53-459E-87BB-6EA604B3D5D5 - Jupiter Broadcasting - Have you heard of Ham Radio? It’s the original open source! We dive in and take you into a ham shack to see what Ham Radio is all about. Plus Linux hits over 1k games & the new distro that makes Fedora approachable & more! - - no - 1:32:08 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/78797/linuxs-slice-of-ham-las-356/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep356.mp3 - - Linux Media Production | LAS 355 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/GM5SP5FJo_w/ - <p>Over the past few weeks we’ve been doubling down on production on Linux. We go over the tips, tricks & hardware we use to make the show now with more Linux.</p> - -<p>Plus the really big news for Linux gaming & the big new feature for Linux 4.0…</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/GM5SP5FJo_w" height="1" width="1" alt=""/> - Sun, 08 Mar 2015 20:08:17 -0700 - - 3F7CECEB-B597-47AA-AA9E-04DEB5841C57 - Jupiter Broadcasting - Over the past few weeks we’ve been doubling down on production on Linux. We go over the tips, tricks & hardware we use to make the show now with more Linux. - -Plus the really big news for Linux gaming & the big new feature for Linux 4.0… - - no - 1:48:44 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/78447/linux-media-production-las-355/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep355.mp3 - - Outstanding SCALE 13x | LAS 354 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/44DoMpDGySM/ - <p>Exclusive interviews from the Southern California Linux Expo. We chat with elementary OS, VLC, Firefox, System76 & many more.</p> - -<p>Plus the big news for Ubuntu MATE, XFCE, Gnome & others.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/44DoMpDGySM" height="1" width="1" alt=""/> - Sun, 01 Mar 2015 18:03:06 -0800 - - A6886F63-F409-4894-B61F-C747C886BCA7 - Jupiter Broadcasting - Exclusive interviews from the Southern California Linux Expo. We chat with elementary OS, VLC, Firefox, System76 & many more. - -Plus the big news for Ubuntu MATE, XFCE, Gnome & others. - - no - 1:48:47 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/78027/outstanding-scale-13x-las-354/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep354.mp3 - - SCALE13x: Linux Action Show From the Floor - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Dja6ch97R9o/ - <p>Raw from our Sunday SCALE13x extravaganza. The video starts a bit slow, but after a bit it’s a full on event.</p> - -<p>Interviews, gadgets, discussion, and floor coverage.</p> - -<p>Enjoy every unedited, and unscripted moment!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Dja6ch97R9o" height="1" width="1" alt=""/> - Wed, 25 Feb 2015 13:32:50 -0800 - - 5A336FFF-3816-48F4-84D4-50C34E85A662 - Jupiter Broadcasting - Raw from our Sunday SCALE13x extravaganza. The video starts a bit slow, but after a bit it’s a full on event. - -Interviews, gadgets, discussion, and floor coverage. - -Enjoy every unedited, and unscripted moment! - - no - 4:30:00 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/77892/scale13x-linux-action-show-from-the-floor/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/LASfromSCALE13x.mp3 - - Retro Blasted Action | LAS 353 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/-9LfVOSHqas/ - Join us as we revisit some retro topics from the archives!<img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/-9LfVOSHqas" height="1" width="1" alt=""/> - Sun, 22 Feb 2015 08:08:37 -0800 - - D2D9B6E8-1102-4DA0-9A8E-9A8364DFFDAB - Jupiter Broadcasting - Join us as we revisit some retro topics from the archives! - - no - 1:26:36 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/77752/retro-blasted-action-las-353/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep353.mp3 - - Questions for elementary OS | LAS 352 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/l9o69w5EO5k/ - <p>Two members of the elementary OS project join us to discuss the recent dust up around their blog post asking for more funding from their users. We’ll ask the hard questions you’ve been wondering, get the latest from the project & talk about the future.</p> - -<p>Plus we look at the sales for the first BQ Ubuntu Touch edition, Linus’ personal choice award, some good news for OpenShot & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/l9o69w5EO5k" height="1" width="1" alt=""/> - Sun, 15 Feb 2015 18:03:12 -0800 - - 9B8083B0-82A8-4469-85D7-E9132F3E6453 - Jupiter Broadcasting - Two members of the elementary OS project join us to discuss the recent dust up around their blog post asking for more funding from their users. We ask the hard questions you’ve been wondering, get the latest from the project, talk about the future & more - - no - 1:22:00 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/77377/questions-for-elementary-os-las-352/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep352.mp3 - - Meet SELKS | Linux Action Show 351 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/wZuX00f1Bus/ - <p>The Co-creators of a Linux distribution that allows you to harness some of the most powerful open source security software join us to discuss bringing Enterprise grade security to the masses.</p> - -<p>Plus building your own ideal Linux laptop, the Yolla Tablet surprise & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/wZuX00f1Bus" height="1" width="1" alt=""/> - Sun, 08 Feb 2015 11:09:30 -0800 - - 367B2FE5-3738-452D-A976-D9C56D34392B - Jupiter Broadcasting - The Co-creators of a Linux distro that allows you to harness some of the most powerful open source security software join us to discuss Enterprise grade security for the masses. - -Plus building your own ideal Linux laptop, the Yolla Tablet surprise & more! - - no - 1:02:21 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/76982/meet-selks-linux-action-show-351/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep351.mp3 - - How Non-Devs Can Help Linux | LAS 350 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/ydY1Qvo2_QU/ - <p>What are the best options for non-coders and developers to contribute to their favorite open source project? We’ll break down some of the barriers we’ve faced & approaches we like to help out in a non-development capacity.</p> - -<p>Plus the common ways the Ghost vulnerability is being exploited, how you can do your taxes under Linux & a few surprises!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/ydY1Qvo2_QU" height="1" width="1" alt=""/> - Sun, 01 Feb 2015 19:24:11 -0800 - - 211CA8F5-993A-4480-A8E2-0608F1F2881D - Jupiter Broadcasting - What are the best options for non-coders and developers to contribute to their favorite open source project? We discuss. Plus the common ways the Ghost vulnerability is being exploited, how you can do your taxes under Linux & a few surprises! - - no - 1:09:23 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/76592/how-non-devs-can-help-linux-las-350/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep350.mp3 - - Trisquel Founder Interview | LAS 349 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/4igPc66Ci50/ - <p>The main developer and founder of Trisquel GNU/Linux Ruben Rodriguez joins us to discuss the projects mission, the major headwinds it faces, what the future holds, and their new focus on privacy.</p> - -<p>Plus: Mark Shuttleworth sees a future where Ubuntu powers Robots and Drones, a mini-review of KDE Plasma 5.2 desktop, what’s coming up in Gnome…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/4igPc66Ci50" height="1" width="1" alt=""/> - Sun, 25 Jan 2015 20:51:51 -0800 - - F980946B-73E4-4131-BF15-20252B73800E - Jupiter Broadcasting - The main developer and founder of Trisquel GNU/Linux Ruben Rodriguez joins us to discuss the projects mission, the headwinds it faces, what the future holds & their new focus on privacy. Plus a mini-review of KDE Plasma 5.2 desktop & more! - - no - 1:02:03 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/76167/trisquel-founder-interview-las-349/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep349.mp3 - - The Deepin Review | Linux Action Show 348 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/8hcFCtU4Lic/ - <p>Deepin Linux might just be one of the freshest takes on the desktop this year. We review this compelling Ubuntu based alternative. </p> - -<p>Plus: The Steam bug that leaves you fresh and clean, some great new open source releases, goodbye Photoshop…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/8hcFCtU4Lic" height="1" width="1" alt=""/> - Sun, 18 Jan 2015 16:09:28 -0800 - - 0E6C897D-CEA6-4464-A1EF-07D56E549E8B - Jupiter Broadcasting - Deepin Linux might just be one of the freshest takes on the desktop this year. We review this compelling Ubuntu based alternative. - -Plus: The Steam bug that leaves you fresh and clean, some great new open source releases, goodbye Photoshop & more! - - no - 55:02 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/75737/the-deepin-review-linux-action-show-348/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep348.mp3 - - Meet MATE’s Mastermind | LAS 347 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/sYS4J7iV-f8/ - <p>Developer of the MATE desktop & more, Stefano Karapetsas joins us to discuss the projects transition to GTK3, balancing traditional desktop design with new features & the big challenges facing MATE.</p> - -<p>Plus a huge announcement, news, picks…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/sYS4J7iV-f8" height="1" width="1" alt=""/> - Sun, 11 Jan 2015 16:03:40 -0800 - - 8CF3457F-2B58-4284-98A4-418562CDC191 - Jupiter Broadcasting - Developer of the MATE desktop & more, Stefano Karapetsas joins us to discuss the projects transition to GTK3, balancing traditional desktop design with new features & the big challenges facing MATE. - -Plus a huge announcement! & more! - - no - 1:00:27 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/75242/meet-mates-mastermind-las-347/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep347.mp3 - - Greg KH: The Interview | LAS 346 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/6R5nwRlVSSs/ - <p>Greg Kroah-Hartman long time Linux kernel developer and maintainer of a few subsystems you depend on joins us to discuss his insights on the pace of Linux’s development, third party involvement, the rolling future & what gets him excited about Linux.</p> - -<p>Plus Linus reviews Fedora 21, the questions facing Gnome Software…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/6R5nwRlVSSs" height="1" width="1" alt=""/> - Sun, 04 Jan 2015 18:31:08 -0800 - - A8B91009-6CCC-4AA7-94F6-0887B74B2BC7 - Jupiter Broadcasting - Greg Kroah-Hartman long time Linux kernel developer and maintainer of a few subsystems you depend on joins us to discuss the pace of Linux’s development, third party involvement, the rolling future & what gets him excited about Linux & more! - - no - 1:07:25 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/74867/greg-kh-the-interview-las-346/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep346.mp3 - - 2015 Linux Predictions | Linux Action Show 345 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/6kOyc91ZtVE/ - <p>With 2015 around the corner we own up to our predictions for 2014, we admit to what we got wrong, and what we got right. Then we look forward to 2015 and go on the record for the big developments we expect to see.</p> - -<p>Plus our picks, your feedback…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/6kOyc91ZtVE" height="1" width="1" alt=""/> - Sun, 28 Dec 2014 20:19:39 -0800 - - 03F970D4-C8DA-4257-9E9A-A6A53EB894AC - Jupiter Broadcasting - With 2015 around the corner we own up to our predictions for 2014, we admit to what we got wrong, and what we got right. Then we look forward to 2015 and go on the record for the big developments we expect to see. - -Plus our picks & your feedback! - - no - 1:40:08 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/74497/2015-linux-predictions-linux-action-show-345/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep345.mp3 - - Best Of LAS 2014 | LAS 344 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/B-UlzvnAPx0/ - <p>We take a look back at the history of the Linux Action Show along with the audience and pick out some of our best moments plus a few bits of JB News.</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/B-UlzvnAPx0" height="1" width="1" alt=""/> - Sun, 21 Dec 2014 13:16:21 -0800 - - C5370004-9B49-4761-8865-8E77E73E3A7B - Jupiter Broadcasting - We take a look back at the history of the Linux Action Show along with the audience and pick out some of our best moments plus a few bits of JB News. - -AND SO MUCH MORE! - -All this week on, The Linux Action Show! - - no - 1:01:03 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/74262/best-of-las-2014-las-344/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep344.mp3 - - Fedora Developer Roundtable | LAS 343 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/lilDfXQhfks/ - <p>We talk with five developers from the Fedora project behind some of the recent amazing work that has seen a major milestone release in Fedora 21, treating Fedora more as a product & laying the groundwork for amazing future technologies. </p> - -<p>Plus Dustin Kirkland from Canonical joins us to explain what Ubuntu Snappy Core is & some of it’s killer new features, our picks, news…</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/lilDfXQhfks" height="1" width="1" alt=""/> - Sun, 14 Dec 2014 17:44:56 -0800 - - 84789F47-982D-4154-B0F9-71FE16997564 - Jupiter Broadcasting - We talk with five debs from the Fedora project behind some of the recent work that has seen a major release in Fedora 21 & more. Plus Dustin Kirkland from Canonical joins us to explain what Ubuntu Snappy Core is & some of it’s killer new features. - - no - 1:33:09 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/73857/fedora-developer-roundtable-las-343/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep343.mp3 - - Lennart's Linux Revolution | LAS 342 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/4HpzYERH7Q0/ - <p>Lennart Poettering shares the surprising origins of systemd, his thoughts on the community reaction & his ideas for a universal Linux software installer. He addresses some common criticism & takes questions from the audience.</p> - -<p>Plus Brandon Philips the co-found of CoreOS discusses Rocket & Matthew Miller from the Fedora project talks about the upcoming Fedora 21 release...</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/4HpzYERH7Q0" height="1" width="1" alt=""/> - Sun, 07 Dec 2014 17:05:05 -0800 - - 6095668F-BD56-41BF-8CB1-33B0502C3110 - Jupiter Broadcasting - Lennart Poettering shares the origins of systemd, thoughts on community reactiosn & ideas on a universal software installer. Plus Brandon Philips, co-found of CoreOS, talks Rocket & Matthew Miller from the Fedora project talks about the Fedora 21 release - - no - 1:34:44 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/73122/lennarts-linux-revolution-las-342/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep342.mp3 - - Mark Shuttleworth Interview | LAS 341 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/7EpjsKlIsR8/ - <p>Mark Shuttleworth sits down with the big show to reflect on 10 years of Ubuntu, the state of the Debian community, their efforts with Mir & the switch to systemd. Plus he’ll give us some insights to his competitive advantage when dealing with a contentious market. </p> - -<p>Plus Mint 17.1 is out and we’ll dig into what’s great, the Debian fork is looking for funds, FreeBSD’s plans to compete with systemd...</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/7EpjsKlIsR8" height="1" width="1" alt=""/> - Sun, 30 Nov 2014 19:31:00 -0800 - - 6BEA7DA2-20C1-4141-A516-D7507FA3EECE - Jupiter Broadcasting - Mark Shuttleworth sits down to reflect on 10 years of Ubuntu, the state of the Debian community, their efforts with Mir & the systemd switch. - -Plus Mint 17.1, the Debian fork is looking for funds, FreeBSD’s plans to compete with systemd & more! - - no - 1:33:18 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/72637/mark-shuttleworth-interview-las-341/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep341.mp3 - - Rooting for the Kids | LAS 340 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/JBwKcJ0MTP8/ - <p>Charlie Reisinger the pioneer of an extremely forward looking program to give every student a Linux laptop joins us. Find out how they integrate the students into the IT program, why they give their students root access & much more. It’s a truly inspiring story of how Linux can make a difference in education.</p> - -<p>Plus the Jolla tablet is real, and boy is it funded! Ubuntu Phone rumors get white hot, our picks of the week…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/JBwKcJ0MTP8" height="1" width="1" alt=""/> - Sun, 23 Nov 2014 17:55:20 -0800 - - 02691335-9A7F-42C1-9423-9748702976A4 - Jupiter Broadcasting - Charlie Reisinger the pioneer of an forward looking program to give every student a Linux laptop joins us. Find out how they integrate the students into the IT program. Plus the Jolla tablet is real, Ubuntu Phone rumors get white hot & more! - - no - 1:40:20 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/72112/rooting-for-the-kids-las-340/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep340.mp3 - - Making Linux Beautiful | LAS 339 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/y-6JRAxgpqc/ - <p>We chat with three developers that are working to make the Linux desktop look even better. From building hardware to working with upstream we dig into the process at the ground level, with some exciting announcements. </p> - -<p>Plus why Linux makes Docker relevant, a quick tour of some new Ubuntu MATE features & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/y-6JRAxgpqc" height="1" width="1" alt=""/> - Sun, 16 Nov 2014 18:08:44 -0800 - - 6BAA3564-6CD9-4E21-B140-F449CAB21BDC - Jupiter Broadcasting - We chat with three developers that are making the Linux desktop look even better, from building hardware to working with upstream & we cover some exciting announcements. - -Plus Linux makes Docker relevant, a tour of some new Ubuntu MATE features & more! - - no - 1:22:00 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/71512/making-linux-beautiful-las-339/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep339.mp3 - - Lumina Desktop Preview | LAS 338 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/Z8BY96bKRrQ/ - <p>It’s one of our favorite things to do, we look ahead at the not too distant future of desktop Linux. Ken Moore from PC-BSD, and the creator of the Lumina desktop joins us to give us a tour of his new Qt based lightweight desktop. </p> - -<p>Plus you know the old saying, where there is lots of blog rumors, there is fire. We’ll the rumor mill is hot hot hot with predictions of an Ubuntu based Tablet shipping very soon. But is it legit? The huge performance gain coming to Haswell Graphics users & the big Debian drama over the weekend.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/Z8BY96bKRrQ" height="1" width="1" alt=""/> - Sun, 09 Nov 2014 18:59:51 -0800 - - 31415431-558B-4443-8807-19D23325456C - Jupiter Broadcasting - We look a the Lumina desktop with it's creator, Ken Moore. Plus the rumor mill is hot with predictions of an Ubuntu based Tablet shipping very soon.the huge performance gain coming to Haswell Graphics users, the big Debian drama over the weekend & more! - - no - 1:25:31 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/70922/lumina-desktop-preview-las-338/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep338.mp3 - - openSUSE 13.2 Review | Linux Action Show 337 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/4pvaGIE4DM0/ - <p>Is openSUSE 13.2 the best distro to take advantage of tomorrow’s Linux tools today? Or do the rough-spots of this distribution in transition leave us frustrated? We set out to live in openSUSE 13.2 & share our results. </p> - -<p>Plus China’s big switch to Linux gets official, we call time out on feeding the drama monster & one of the best open source talks we’ve ever seen & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/4pvaGIE4DM0" height="1" width="1" alt=""/> - Sun, 02 Nov 2014 16:15:57 -0800 - - 1CDEED74-8B28-499A-8C65-BCD61A566EE0 - Jupiter Broadcasting - Is openSUSE 13.2 the best distro to take advantage of tomorrow’s Linux tools today? We set out to live in openSUSE 13.2 & share our results. - -Plus China’s big switch to Linux gets official, one of the best open source talks we’ve ever seen & more! - - no - 1:10:52 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/70397/opensuse-13-2-review-linux-action-show-337/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep337.mp3 - - Best of Ohio LinuxFest | Linux Action Show 336 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/L8lkozIVbg0/ - <p>Our interviews, stories, and adventures from Ohio LinuxFest 2014. The big show traveled to Columbus Ohio for one of the best Linux events on the East coast of the US, and we came away with some great stories, friends, and interviews. We'll feature some of the best in today's episode.</p> - -<p>Plus the big news for openSUSE, Oculus Linux users get some love...</p> - -<p>And so much more!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/L8lkozIVbg0" height="1" width="1" alt=""/> - Mon, 27 Oct 2014 20:12:36 -0700 - - 26D24380-E376-411D-B451-4A721AA2FD40 - Jupiter Broadcasting - Our interviews, stories, and adventures from Ohio LinuxFest 2014. The big show traveled to Columbus Ohio & we came away with some great stories, friends, and interviews. - -Plus the big news for openSUSE, Oculus Linux users get some love & more! - - no - 1:21:37 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/70022/best-of-ohio-linuxfest-linux-action-show-336/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep336.mp3 - - Ubuntu 14.10 Mega Review | LAS 335 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/GA2RUe2yeOk/ - <p>Our review of the major flavors of Ubuntu 14.10. We’ll show you how this tried and true desktop can be the fertile playground of future desktop technologies. Our all-star lineup will review everything from Kubuntu to the MATE Edition of Ubuntu 14.10 Utopic Unicorn.</p> - -<p>Plus Linus responds to the culture of hostility claims, Plasma 5’s big update, Docker’s surprising news, a new AAA game for Linux…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/GA2RUe2yeOk" height="1" width="1" alt=""/> - Sun, 19 Oct 2014 17:44:16 -0700 - - 18389638-95A2-4F93-817E-FB3CF9DC24F1 - Jupiter Broadcasting - We review the major flavors of Ubuntu 14.10. We review everything from Kubuntu to the MATE Edition of Ubuntu 14.10, plus Linus responds to the culture of hostility claims, Plasma 5’s big update, Docker’s surprising news, a new AAA game for Linux & more - - no - 1:23:02 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/69512/ubuntu-14-10-mega-review-las-335/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep335.mp3 - - Painless Plex Migration | Linux Action Show 334 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/q3DX5og7nbY/ - <p>Our guide to moving your Plex, btsync, SmokePing, and others to a new Linux server. And our take on how the Intel NUC performs as a home server with heavy Plex usage.</p> - -<p>Plus the big features coming to a distro near you & has Netflix coming to Linux shown us how Linux users are now “all-in with DRM”? We debate.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/q3DX5og7nbY" height="1" width="1" alt=""/> - Sun, 12 Oct 2014 16:02:54 -0700 - - 3560B616-17B2-4E7B-A80C-F0DC736A43C3 - Jupiter Broadcasting - Our guide to moving your Plex, btsync, SmokePing, and others to a new Linux server. And our take on how the Intel NUC performs as a home server with heavy Plex usage, big new distro features, DRM discussions & more! - - no - 1:11:30 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/68967/painless-plex-migration-linux-action-show-334/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep334.mp3 - - Top 5 Linux Games | LAS 333 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/losW6c1gHlY/ - <p>The top 5 best Linux games on Steam for the fall get demoed on today’s show. Every game we feature, will be one worth buying & how to get a lot more out of Steam.</p> - -<p>Then sandboxing any Linux process, the news of the week, our picks & much more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/losW6c1gHlY" height="1" width="1" alt=""/> - Sun, 05 Oct 2014 17:24:38 -0700 - - DBD93A2A-E20E-49F7-9FAD-675B17E1D691 - Jupiter Broadcasting - The top 5 best Linux games on Steam for the fall get demoed on today’s show. Every game we feature, will be one worth buying & how to get a lot more out of Steam. - -Then sandboxing any Linux process, the news of the week, our picks & much more! - - no - 1:42:08 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/68222/top-5-linux-games-las-333/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep333.mp3 - - Weaponized Bash | Linux Action Show 332 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/E5LVzV2MFJQ/ - <p>The Shellshock bug is taking the internet by storm, Fedora project lead Matthew Miller joins us to discuss how this Bash bug works, how big of a problem it really is, and how large projects are responding to the issue. Plus we chat a little Fedora.next and more!</p> - -<p>Then it’s our look at what’s great in Gnome 3.14, Ubuntu 14.10 & another systemd alternative that’s doing it right.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/E5LVzV2MFJQ" height="1" width="1" alt=""/> - Sun, 28 Sep 2014 17:59:04 -0700 - - 2FFA3CEF-D804-4E7B-9564-6B9920D54796 - Jupiter Broadcasting - The Shellshock bug is taking the internet by storm, Fedora project lead Matthew Miller joins us to discuss how the Bash bug works, how big of a problem it is & how large projects are responding to the issue, plus we chat a little Fedora.next & more! - - no - 1:19:51 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/67717/weaponized-bash-linux-action-show-332/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep332.mp3 - - Security Onion Review | LAS 331 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/u5wRndT-Zls/ - <p>Security Onion can turn you into a network super warrior, with its easy to setup IDS, Network Syslog, and more. We'll show you how to take advantage of some of the best tools in open source, from beginner to expert!</p> - -<p>Plus a great new game for Linux, Uselessd looks needed but is stirring up drama, why Gnome 3.14 will be the best Gnome yet & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/u5wRndT-Zls" height="1" width="1" alt=""/> - Sun, 21 Sep 2014 16:37:27 -0700 - - 3D8BB10A-8462-4D52-A34D-793573EBE418 - Jupiter Broadcasting - Learn about Security Onion and its easy to setup IDS, Network Syslog. a great new linux game, Uselessd discussion, Gnome 3.14 will be the best Gnome yet & more! - - no - 1:15:01 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/67182/security-onion-review-las-331/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep331.mp3 - - Switching Ubuntu to Gnome | LAS 330 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/F8190vr4D-4/Gnome%20users.Plus%20ZFS%20on%20Linux%20gets%20the%20green%20light,%20the%20great%20news%20for%20Arch%20usersAnd%20so%20much%20more!All%20this%20week%20on,%20the%20Linux%20Action%20Show! - <p>Install the latest version of Gnome on your Ubuntu box, without losing your data, or needing to reinstall your apps. Our guide will get you up and running with the latest and greatest in no time. And also provides great insight for non-Ubuntu/Gnome users.</p> - -<p>Plus ZFS on Linux gets the green light, the great news for Arch users</p> - -<p>And so much more!</p> - -<p>All this week on, the Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/F8190vr4D-4" height="1" width="1" alt=""/> - Sun, 14 Sep 2014 17:02:15 -0700 - - A349F830-3697-44FC-AA28-AA062C2EEE88 - Jupiter Broadcasting - Install the latest version of Gnome on your Ubuntu box, without losing your data or reinstalling your apps. And also provides great insight for non-Ubuntu/Gnome users. Plus ZFS on Linux gets the green light, the great news for Arch users & more! - - no - 1:13:13 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://Install%20the%20latest%20version%20of%20Gnome%20on%20your%20Ubuntu%20box,%20without%20losing%20your%20data,%20or%20needing%20to%20reinstall%20your%20apps.%20Our%20guide%20will%20get%20you%20up%20and%20running%20with%20the%20latest%20and%20greatest%20in%20no%20time.%20And%20also%20provides%20great%20insight%20for%20non-Ubuntu/Gnome%20users.Plus%20ZFS%20on%20Linux%20gets%20the%20green%20light,%20the%20great%20news%20for%20Arch%20usersAnd%20so%20much%20more!All%20this%20week%20on,%20the%20Linux%20Action%20Show!http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep330.mp3 - - OwnCloud Your Chromebook | LAS 329 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/1SvfkwL3wxo/ - <p>Linux is the ultimate productivity OS. This week we’ll show you how to divorce your Chromebook from Google, sync all your Linux desktops with free software, and improve your workflow at the same time.</p> - -<p>Plus the new tool from Red Hat you’ll be using soon, Ubuntu shows developers some love & the big game coming to Linux we’re excited about!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/1SvfkwL3wxo" height="1" width="1" alt=""/> - Sun, 07 Sep 2014 16:34:39 -0700 - - D2F57FF1-4487-4EB2-9EF2-87529F76E380 - Jupiter Broadcasting - We’ll show you how to divorce your Chromebook from Google, sync your Linux desktops and improve your workflow. - -Plus the new tool from Red Hat you’ll be using soon, Ubuntu shows developers some love & the big game coming to Linux we’re excited about! - - no - 1:19:09 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/66142/owncloud-your-chromebook-las-329/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep329.mp3 - - A Chat with Icculus | LAS 328 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/5ULWNhVdZWs/ - <p>Ryan C. Gordon aka Icculus joins us to discuss past, present and future of Linux gaming. Plus the fundamental technology challenges facing Linux gaming, the hope for SteamOS, and much more.</p> - -<p>Then - Red Hat’s internal politics burst out into the spotlight, John C. Dvorak trolls Linux users….</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/5ULWNhVdZWs" height="1" width="1" alt=""/> - Sun, 31 Aug 2014 17:36:11 -0700 - - BB40C60F-966B-43DC-B304-7F94F56597B6 - Jupiter Broadcasting - Ryan C. Gordon aka Icculus joins us to discuss past, present and future of Linux gaming. Plus the technology challenges facing Linux gaming & the hope for SteamOS. Then - Red Hat’s politics burst out into the spotlight, John C. Dvorak trolls Linux users - - no - 1:29:06 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/65607/a-chat-with-icculus-linux-action-show-328/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep328.mp3 - - Best of LinuxCon 2014 | LAS 327 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/ki7n1ls4ZHo/ - <p>LinuxCon 2014 just wrapped up and we have five great interviews from the floor, cover some of the best talks, and more.</p> - -<p>Plus the big guy who’s still pulling for Desktop Linux, the greatly exaggerated Munich situation & more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/ki7n1ls4ZHo" height="1" width="1" alt=""/> - Sun, 24 Aug 2014 16:09:41 -0700 - - 6A0F44C1-85CE-4FB8-A95C-E7A28B181B14 - Jupiter Broadcasting - LinuxCon 2014 just wrapped up and we have five great interviews from the floor, cover some of the best talks, and more. - -Plus the big guy who’s still pulling for Desktop Linux, the greatly exaggerated Munich situation & more! - - no - 1:16:54 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/65207/best-of-linuxcon-2014-las-327/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep327b.mp3 - - What’s Next for Fedora | LAS 326 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/1R0A3m7QteQ/ - <p>The Fedora Project Lead joins us to explain Fedora.next, their ambitions for the cloud, desktop, and what success means for Fedora.next. Tyler from Arch Assault joins us to update us on the latest from Blackhat, the new developments with their distro, and the what the future holds.</p> - -<p>Plus news of the week, our picks, your feedback, and more!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/1R0A3m7QteQ" height="1" width="1" alt=""/> - Sun, 17 Aug 2014 19:59:46 -0700 - - BF562E69-12E8-4A7D-97A4-ED3A4C769CA0 - Jupiter Broadcasting - The Fedora Project Lead joins us to explain Fedora.next, their ambitions for the cloud, desktop, and what success means for Fedora.next. Tyler from Arch Assault joins us to update us on the new developments with their distro, and the what the future holds - - no - 1:29:32 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/64637/whats-next-for-fedora-las-326/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep326.mp3 - - Tomb of Secrets | LAS 325 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/bDR3eT6fkcA/ - <p>What’s the best TrueCrypt alternative for Linux? We’ll introduce you to Tomb, a tool that sits on top of open source encryption tools you can trust, that come built into every install of Linux.</p> - -<p>Plus we’ll demo native Netflix working on Linux without any plugins, the big changes coming to Fedora...</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/bDR3eT6fkcA" height="1" width="1" alt=""/> - Sun, 10 Aug 2014 16:54:00 -0700 - - 49E0FAD0-C0A5-4864-BE65-0AC1512AEF03 - Jupiter Broadcasting - What’s the best TrueCrypt alternative for Linux? We’ll introduce you to Tomb. - -Plus we’ll demo native Netflix working on Linux without any plugins, the big changes coming to Fedora... - -AND SO MUCH MORE! - -All this week on, The Linux Action Show! - - no - 1:22:23 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/64207/tomb-of-secrets-las-325/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep325.mp3 - - ownCloud 7 Interview | LAS 324 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/-gSxllQ3XaM/ - <p>The founder of ownCloud joins us to discuss their latest release, future plans and challenges. And we’ll ask a batch of the tough questions you sent in.</p> - -<p>Then we take a look at CRUX, a legendary Linux distribution with an amazing history. Plus an app pick that will instantly tickle your retro bone, a cautious tale…</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/-gSxllQ3XaM" height="1" width="1" alt=""/> - Sun, 03 Aug 2014 16:45:18 -0700 - - C0A1AB02-A690-4924-969E-C12FD626834C - Jupiter Broadcasting - The founder of ownCloud joins us to discuss their latest release, future plans and challenges. - -Then we take a look at CRUX, a legendary Linux distribution with an amazing history. Plus a retro app pick & a cautious tale… - - no - 1:26:28 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/63592/owncloud-7-interview-las-324/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep324.mp3 - - OSCON Interview Roundup | LAS 323 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/_POBEH_8TMo/ - <p>We’re back from OSCON 2014 with some great interviews with Christian Heilmann from the Mozilla Developer Evangelist, Karen Sandler from the Software Freedom Conservancy, and Chris DiBona the director of open source at Google.</p> - -<p>Plus the UK Government adopts ODF, CoreOS gets a huge boost and a new release, making your Linux installers faster and easier than ever…. </p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/_POBEH_8TMo" height="1" width="1" alt=""/> - Sun, 27 Jul 2014 17:06:06 -0700 - - 53CF509E-5F98-44A1-901F-FFC0ECECCDCC - Jupiter Broadcasting - We’re back from OSCON 2014 with some great interviews with Christian Heilmann from the Mozilla Developer Evangelist, Karen Sandler from the Software Freedom Conservancy, and Chris DiBona the director of open source at Google. - - no - 1:33:24 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/63147/oscon-interview-roundup-las-323/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep323.mp3 - - Debunking Manjaro Myths | LAS 322 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/kLuFDoDpQYA/ - <p>Rob McCathie from the Manjaro project joins us to discuss some recent troubles in the community, bust common myths about Manjaro, their relationship with Arch Linux, and what the future holds for the project.</p> - -<p>Plus we look at some Fedora 21 features, Google’s Project Zero, Linus’ home office…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/kLuFDoDpQYA" height="1" width="1" alt=""/> - Sun, 20 Jul 2014 16:01:18 -0700 - - F4BC19A9-89A2-4BCA-B131-220139B0A15A - Jupiter Broadcasting - Rob McCathie from Manjaro joins us to discuss some recent troubles, bust common myths about Manjaro, their relationship with Arch Linux, and what the future holds for the project. - -Plus Fedora 21 features, Google’s Project Zero & Linus’ home office… - - no - 1:23:40 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/62637/debunking-manjaro-myths-las-322/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep322.mp3 - - Kali Linux Interview | LAS 321 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/m2YFV5YR_kM/ - <p>The core developer of Kali Linux joins us to discuss the projects history, what keeps Kali Linux so relevant in the penetration testing industry, the future and the major misconceptions he wants to correct about the distro.</p> - -<p>Plus we’ll explains all the recent KDE releases, and demo the latest state of the Plasma 5 desktop and tour a radio station that runs linux.</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/m2YFV5YR_kM" height="1" width="1" alt=""/> - Sun, 13 Jul 2014 18:16:55 -0700 - - 03A5C477-33BC-4009-8371-569338084A68 - Jupiter Broadcasting - The core developer of Kali Linux joins us to discuss the projects history, what keeps Kali Linux relevant in the pentesting industry, the future and the major misconceptions he wants to correct about the distro. Plus, we tour a radio station & more. - - no - 1:23:45 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/62177/kali-linux-interview-las-321/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep321.mp3 - - Preventing a btrfs Nightmare | LAS 320 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/sLQpAJOBIlU/ - <p>What happens when btrfs goes bad? After rescuing our system from a massive crash, we’ll share what went wrong, how you can prevent problems, reclaim gigabytes of space, and optimize your Linux box for an SSD drive.</p> - -<p>Plus a quick look at Ubuntu MATE Remix, the NSA targets Linux users, solving the distro hopping bug….</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/sLQpAJOBIlU" height="1" width="1" alt=""/> - Sun, 06 Jul 2014 17:25:16 -0700 - - 76EFEB8F-54B1-480D-8FAF-595B62848CEB - Jupiter Broadcasting - What happens when btrfs goes bad? We’ll share what went wrong, how you can prevent problems, reclaim gigabytes of space & optimize your Linux box for an SSD drive - -Plus a look at Ubuntu MATE Remix, NSA targets Linux users & solving the distro hopping bug - - no - 1:18:51 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/61572/preventing-a-btrfs-nightmare-las-320/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep320.mp3 - - Sharing with Samba | LAS 319 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/3k3lC4h7vxQ/ - <p>Easily share files between Windows and Linux, and we’ll solve some common network browsing challenges under Linux. </p> - -<p>Plus a quick look at Linux Mint 17 KDE edition, the huge new features coming to OwnCloud, a new hacker event….</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/3k3lC4h7vxQ" height="1" width="1" alt=""/> - Sun, 29 Jun 2014 15:39:28 -0700 - - FBF146BA-C9AB-4D1A-89F8-624F2EB16885 - Jupiter Broadcasting - Easily share files between Windows and Linux, and we’ll solve some common network browsing challenges under Linux. - -Plus a quick look at Linux Mint 17 KDE edition, the huge new features coming to OwnCloud, a new hacker event…. - - no - 1:08:12 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/60967/sharing-with-samba-las-319/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep319.mp3 - - SouthEast LinuxFest Highlights | LAS 318 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/xGNR_0vl4N0/ - <p>Interviews and awesome gear from the floor of SouthEast LinuxFest 2014. We round up the highlights of Linux from the south!</p> - -<p>Plus some Firefox news we’re stoked about, and we take another step closer to becoming a commandline ninja... </p> - -<p>And so much more!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/xGNR_0vl4N0" height="1" width="1" alt=""/> - Sun, 22 Jun 2014 16:00:33 -0700 - - C25DD4E1-93BD-4035-9927-244AD3E438C5 - Jupiter Broadcasting - Interviews and awesome gear from the floor of SouthEast LinuxFest 2014. We round up the highlights of Linux from the south! - -Plus some Firefox news we’re stoked about, and we take another step closer to becoming a commandline ninja... - - no - 1:21:19 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/60412/southeast-linuxfest-highlights-las-318/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/linuxactionshowep318.mp3 - - Qubes OS: Security By Isolation | LAS 317 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/KYtd8gwhcUk/ - <p>Qubes OS, you could call it Linux for the truly paranoid. This system offers a unique isolated approach to keep you and your data safe, we dive in to show you how this system works!</p> - -<p>Plus: The big Red Hat news, Docker goes 1.0, a Linux port done right…</p> - -<p>And so much more!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/KYtd8gwhcUk" height="1" width="1" alt=""/> - Sun, 15 Jun 2014 15:19:25 -0700 - - 9076DB21-1A18-4A41-AAE8-CBA8951FC966 - Jupiter Broadcasting - Qubes OS, you could call it Linux for the truly paranoid. This system offers a unique isolated approach to keep you and your data safe, we dive in to show you how this system works! - -Plus: The big Red Hat news, Docker goes 1.0, a Linux port done right… - - - no - 58:14 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/59912/qubes-os-security-by-isolation-las-317/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep317.mp3 - - Introducing Bedrock Linux | LAS 316 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/LARojIUod34/ - <p>With Bedrock Linux you are longer restricted to any single Linux distro’s userland. Mix CentOS, Arch, Debian, Ubuntu and more all on the same installation! You can have your cake and eat it too! Want X11 from Debian and Chromium from Arch? No problem! We’ll show you how Bedrock Linux make it all possible.</p> - -<p>Plus: A new round of SSL vulnerabilities strike Linux, the FSF helps you encrypt your emails, then a quick steam roundup…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/LARojIUod34" height="1" width="1" alt=""/> - Sun, 08 Jun 2014 17:52:50 -0700 - - 8A202515-D69B-45BF-840E-5C26D826EB3C - Jupiter Broadcasting - With Bedrock Linux you are longer restricted to any single Linux distro’s userland. We’ll show you how Bedrock Linux makes it all possible. - -Plus: A new round of SSL vulnerabilities, the FSF helps you encrypt your emails and a quick steam roundup! - - no - 1:02:40 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/59352/introducing-bedrock-linux-las-316/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep316.mp3 - - CoreOS: Future of Servers | LAS 315 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/RngmDk-ngFE/ - <p>The CTO of CoreOS joins us to go into detail about how CoreOS deploys applications in Docker Containers, allows for automatic server updates, and might just finally fix security on the web.</p> - -<p>Plus: We’ll wrap up the TrueCrypt upset, and discuss our preferred Linux TrueCrypt replacements, a quick look at Mint 17...</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/RngmDk-ngFE" height="1" width="1" alt=""/> - Sun, 01 Jun 2014 17:58:02 -0700 - - 7C564816-0BB4-4150-9D3C-59F3E1718013 - Jupiter Broadcasting - The CTO of CoreOS joins us to go into detail about how CoreOS deploys applications in Docker Containers, allows for automatic server updates and may finally fix security on the web. - -Plus: A TrueCrypt wrap-up and replacement chat & a quick look at Mint 17 - - no - 1:14:13 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/58602/coreos-future-of-servers-las-315/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep315.mp3 - - OpenShot 2.0 Interview | LAS 314 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/ak-v8h54IY0/ - <p>Jonathan Thomas, founder of the OpenShot join us to update us on the latest with his open source cross platform video editor. Plus we discuss the challenges and benefits of crowd funded open source, the task of building a video editor for Linux, and more.</p> - -<p>Then our take on the big Linux gaming controversy of the week, a little Chrome hat eating…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/ak-v8h54IY0" height="1" width="1" alt=""/> - Sun, 25 May 2014 15:27:32 -0700 - - E79AEA16-F9C0-46E2-96EC-E71B48480558 - Jupiter Broadcasting - Jonathan Thomas, founder of OpenShot join us to update us on the latest with his open source video editor, plus we discuss crowd funded open source & more - no - 1:08:04 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Audio versions of The Linux Action Show! A show that covers everything geeks care about in the computer industry. Get a solid dose of Linux, gadgets, news events and much more!Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/58192/openshot-2-0-interview-las-314/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep314b.mp3 - - Arch Home Server Challenge | LAS 313 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/huUhZmlTUCI/ - <p>Coming up on this week’s episode of The Linux Action Show!</p> - -<p>Arch Linux can make the perfect Home Server, we’ll share our tips to build the ultimate home server running the latest software, powered by Arch Linux.</p> - -<p>Plus Ubuntu rocks the OpenStack summit, a first look at Syncthing (the fully OSS Bittorrent Sync killer), results from our Btrfs poll, our picks…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/huUhZmlTUCI" height="1" width="1" alt=""/> - Sun, 18 May 2014 17:29:51 -0700 - - 6BB6E161-91B1-4C6D-B285-B9FE052C083B - Jupiter Broadcasting - Arch Linux can make the perfect Home Server, we’ll share our tips to build the ultimate home server running the latest software, powered by Arch. - -Plus Ubuntu rocks the OpenStack summit, a first look at Syncthing , results from our Btrfs poll & our picks! - - no - 1:28:16 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/57622/arch-home-server-challenge-las-313/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jbmirror/linuxactionshowep313.mp3 - - LXQt the Xfce Killer? | LAS 312 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/lE-_S70i23U/ - <p>The first big release of LXQt is out, and we give it our first look. Where does this minimal desktop fit? And is it taking a direct shot at XFCE’s crown? </p> - -<p>Plus the community demonstrates their passion to Unreal, FireFox OS news AND do YOU trust Btrfs? </p> - -<p>All this week on, The Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/lE-_S70i23U" height="1" width="1" alt=""/> - Sun, 11 May 2014 15:10:20 -0700 - - 7F66533D-4492-4F01-82D0-48D619199F56 - Jupiter Broadcasting - The first big release of LXQt is out, and we give it our first look. Where does this minimal desktop fit? And is it taking a direct shot at XFCE’s crown? - -Plus the community demonstrates their passion to Unreal, FireFox OS news AND do YOU trust Btrfs? - - no - 1:30:47 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/57112/lxqt-the-xfce-killer-las-312/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep312.mp3 - - Linux Gaming for Everyone | LAS 311 - http://feedproxy.google.com/~r/TheLinuxActionShow/~3/XMXCkKWRxh0/ - <p>Chris and Matt showcase some fun games for casual or hardcore gamers. From space shooters to fun puzzles, if you’ve been holding off on gaming for Linux we’ll change your mind!</p> - -<p>Plus: Is Ubuntu for Android dead? Linus receives another award, the big update to Edward Snowden’s favorite Linux distribution…</p> - -<p>AND SO MUCH MORE!</p> - -<p>All this week on, the Linux Action Show!</p><img src="http://feeds.feedburner.com/~r/TheLinuxActionShow/~4/XMXCkKWRxh0" height="1" width="1" alt=""/> - Mon, 05 May 2014 01:05:14 -0700 - - B4B2FB8C-4154-4ADA-B72F-16CEE1FDFFAE - Jupiter Broadcasting - Chris and Matt showcase some fun games for casual or hardcore gamers. From space shooters to fun puzzles, if you’ve been holding off on gaming for Linux we’ll change your mind! - - no - 1:14:50 - - chris@jupiterbroadcasting.com (Jupiter Broadcasting)Linux,Ubuntu,Arch,Gnome,MATE,Mint,howto,review,KDE,Firefox,news,gplhttp://www.jupiterbroadcasting.com/56552/linux-gaming-for-everyone-las-311/http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jupiterbroadcasting/linuxactionshowep311.mp3 - Jupiter BroadcastingnonadultThe world's largest Linux podcast! - diff --git a/hammond-data/benches/feeds/coderradiomp3.xml b/hammond-data/benches/feeds/coderradiomp3.xml deleted file mode 100644 index 23578a3..0000000 --- a/hammond-data/benches/feeds/coderradiomp3.xml +++ /dev/null @@ -1,4171 +0,0 @@ - - - - Coder Radio MP3 - http://www.jupiterbroadcasting.com/ - A weekly talk show taking a pragmatic look at the art and business of software development and related technologies. - Feeder 2.5.12(2294); Mac OS X Version 10.12.1 (Build 16B2657) http://reinventedsoftware.com/feeder/ - http://blogs.law.harvard.edu/tech/rss - en - Mon, 06 Nov 2017 15:26:16 -0800 - Mon, 06 Nov 2017 15:26:16 -0800 - - http://www.jupiterbroadcasting.com/images/CR-rssBadge144.jpg - Coder Radio MP3 - http://www.jupiterbroadcasting.com/ - 144 - 144 - A weekly talk show taking a pragmatic look at the art and business of Software Development and related technologies. - - - chris@jupiterbroadcasting.com - - programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platform - - no - - no - - Jupiter Broadcastingprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,PlatformTechnology/Software How-ToTechnology/Tech Newschris@jupiterbroadcasting.comchris@jupiterbroadcasting.comA weekly talk show taking a pragmatic look at the art and business of Software Development and related technologies. - Ice Age | CR 282 - http://feedproxy.google.com/~r/coderradiomp3/~3/AspBroIWrOg/ - Mike makes the case that he and Chris are dying breeds from a bygone era that need to hunker down & prepare for the cold winter. Plus we respond to a batch of great feedback, chat some contested hoopla & wrap it all up with a bit of small business wisdom.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/AspBroIWrOg" height="1" width="1" alt=""/> - Mon, 06 Nov 2017 15:26:06 -0800 - - 69A94C73-7737-4759-BC34-6FFD9EE19666 - Jupiter Broadcasting - Mike makes the case that he and Chris are dying breeds from a bygone era that need to hunker down & prepare for the cold winter. Plus we respond to a batch of great feedback, chat some contested hoopla & wrap it all up with a bit of small business wisdom. - - no - 52:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/119656/ice-age-cr-282/ - - Selling the FLOSS | CR 281 - http://feedproxy.google.com/~r/coderradiomp3/~3/OVlyKpyHsd0/ - <p>Mike and Chris begrudgingly accept the fundamental problem in sticking with boring and safe platforms, debate building a brand around FLOSS, get burned by Angular & reflect on some regrets in our business.</p> - -<p>Plus SQL’s new hype, some feedback & a project pick of the week!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/OVlyKpyHsd0" height="1" width="1" alt=""/> - Mon, 30 Oct 2017 17:52:41 -0700 - - 88A82C10-C4F3-4647-B046-6D5CE72290D3 - Jupiter Broadcasting - Mike and Chris accept the fundamental problem in sticking with boring & safe platforms, debate building a brand around FLOSS, get burned by Angular & reflect on some regrets in our business. Plus SQL’s new hype, some feedback & a project pick of the week! - - no - 1:01:37 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/119521/selling-the-floss-cr-281/ - - Mike Was Right | CR 280 - http://feedproxy.google.com/~r/coderradiomp3/~3/-_PmyXa_kYg/ - Mike walks us through Optionals & gives us a specific code example. Plus we launch a new segment long in the making, “Mike Was Right” & it’s a doozy!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/-_PmyXa_kYg" height="1" width="1" alt=""/> - Mon, 23 Oct 2017 20:01:52 -0700 - - A3B446FC-362A-407D-AFC8-952B02EC922B - Jupiter Broadcasting - Mike walks us through Optionals & gives us a specific code example. Plus we launch a new segment long in the making, “Mike Was Right” & it’s a doozy! - - no - 51:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/119326/mike-was-right-cr-280/ - - Evolving Software Development | CR 279 - http://feedproxy.google.com/~r/coderradiomp3/~3/4O5-HGSY-AI/ - <p>Kotlin seems to have a very strong future on Android & Mike and Chris debate the hype vs reality. Plus Mike review’s his new Galago Pro.</p> - -<p>Then the guys get rather excited by an astute breakdown of developer workflow breakdowns & what the next 20 years of software development methodologies might look like.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/4O5-HGSY-AI" height="1" width="1" alt=""/> - Tue, 17 Oct 2017 08:14:13 -0700 - - F492CA29-D11B-4082-8479-37DDFA065F4A - Jupiter Broadcasting - Kotlin seems to have a very strong future on Android & Mike and Chris debate the hype vs reality. Plus Mike review’s his new Galago Pro. - -Then the guys get rather excited by an astute breakdown of developer workflow breakdowns & more! - - no - 55:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/119106/evolving-software-development-cr-279/ - - A New Kit for Home | CR 278 - http://feedproxy.google.com/~r/coderradiomp3/~3/RPTonZdi428/ - After a ninja dance though some “Coder Hoopla” Chris has a go at convincing Mike he might be missing the next big app goldmine.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/RPTonZdi428" height="1" width="1" alt=""/> - Mon, 09 Oct 2017 17:38:31 -0700 - - A7B12E3C-09CF-4D46-82CE-2634BD338A33 - Jupiter Broadcasting - After a ninja dance though some “Coder Hoopla” Chris has a go at convincing Mike he might be missing the next big app goldmine. - - no - 50:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/118946/a-new-kit-for-home-cr-278/ - - Elixir of My Soul | CR 277 - http://feedproxy.google.com/~r/coderradiomp3/~3/CpXhS01ll14/ - Wes is back to talk politics and Node.js. Plus, is it finally time to kill the Web? We discuss the purity of native development & the merits of the Web. Then Mike's got some top IT automation tips for managers, we explore concurrency, distributed systems & Elixir's secret sauce.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/CpXhS01ll14" height="1" width="1" alt=""/> - Sat, 07 Oct 2017 01:50:09 -0700 - - E25153CD-31A1-4C9F-826E-460D01B52160 - Jupiter Broadcasting - Wes is back to talk politics and Node.js. Plus, we discuss the purity of native development & the merits of the Web. Then Mike's got some top IT automation tips for managers, we explore concurrency, distributed systems & Elixir's secret sauce. - - no - 1:17:16 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/118856/elixir-of-my-soul-cr-277/ - - Bite of the AR Apple | CR 276 - http://feedproxy.google.com/~r/coderradiomp3/~3/WwYSE3Cz12Y/ - Wes joins Mike to chat all things Apple. We discuss the surprising implications of the iPhone X, including the challenges of its new special shape & the exciting possibilities of ARKit. Plus, we debate FaceID and APFS, check in on HomeKit & search for the right level of abstraction for UI development.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/WwYSE3Cz12Y" height="1" width="1" alt=""/> - Thu, 05 Oct 2017 08:23:55 -0700 - - 38455E91-7FA0-4B13-BB0F-82AA2D5AE3DC - Jupiter Broadcasting - Wes joins Mike to chat all things Apple. We discuss the surprising implications of the iPhone X & the exciting possibilities of ARKit. Plus, we debate FaceID and APFS, check in on HomeKit & search for the right level of abstraction for UI development. - - no - 1:06:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/118761/bite-of-the-ar-apple-cr-276/ - - Reacting To React | CR 275 - http://feedproxy.google.com/~r/coderradiomp3/~3/9drUWMmaaAY/ - While Chris is away Wes joins Mike to chat FOSS Burnout & the dark side of open source communities. Plus, we continue to react to React's recent license change, debate about the Virtual DOM & explain why React Native's license might be more important.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/9drUWMmaaAY" height="1" width="1" alt=""/> - Fri, 29 Sep 2017 22:26:02 -0700 - - 99BA5F9D-15A3-4EE3-ACA0-572AC36B8F62 - Jupiter Broadcasting - While Chris is away Wes joins Mike to chat FOSS Burnout & the dark side of open source communities. Plus, we continue to react to React's recent license change, debate about the Virtual DOM & explain why React Native's license might be more important. - - no - 55:24 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/118641/reacting-to-react-cr-275/ - - No Love for Open Source | CR 274 - http://feedproxy.google.com/~r/coderradiomp3/~3/YkMQ_VaVjPU/ - <p>What’s really the root cause of open source developer burnout? Plus an honest chat about Electron’s bad parts & Mike finally reveals his master plan.</p> - -<p>It’s a Coder quickie this week, with Mike back in Florida there is much to be done, including a little criticism of the iPhone X.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/YkMQ_VaVjPU" height="1" width="1" alt=""/> - Mon, 18 Sep 2017 18:49:17 -0700 - - A038C91C-A663-4A9B-B0CB-47A00B580F5F - Jupiter Broadcasting - What’s really the root cause of open source developer burnout? Plus an honest chat about Electron’s bad parts & Mike finally reveals his master plan. - -It’s a Coder quickie this week, with Mike back in Florida there is much to be done. - no - 36:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)A weekly talk show taking a pragmatic look at the art and business of Software Development and related technologies.programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/118326/no-love-for-open-source-cr-274/ - - A Hurricane of Feedback | CR 273 - http://feedproxy.google.com/~r/coderradiomp3/~3/sdRKSxoBheA/ - <p>Mike takes refuge from Irma to respond to audience feedback & share some thoughts on future plans.</p> - -<p>Chris has some thoughts on hardware that will help you get more work done & neither of us are worrying about Bash on Windows.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/sdRKSxoBheA" height="1" width="1" alt=""/> - Mon, 11 Sep 2017 19:36:21 -0700 - - 4AC68D12-2311-47BF-A242-C2CADD2A0A24 - Jupiter Broadcasting - Mike takes refuge from Irma to respond to audience feedback & share some thoughts on future plans. - -Chris has some thoughts on hardware that will help you get more work done & neither of us are worrying about Bash on Windows. - - no - 35:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/118156/a-hurricane-of-feedback-cr-273/ - - The State of Stateless | CR 272 - http://feedproxy.google.com/~r/coderradiomp3/~3/2UF0i12Nz0E/ - <p>Mike and Chris discuss the types of workloads that better suit Serverless Architecture systems like Lambda & when you should roll a server.</p> - -<p>Plus Mike has major hardware woes, makes a surprising move on air & Chris is left pontificating on the future of AR.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/2UF0i12Nz0E" height="1" width="1" alt=""/> - Thu, 31 Aug 2017 19:44:08 -0700 - - 42D9C4B8-1CE2-4CB0-9476-84DD187A0AB0 - Jupiter Broadcasting - Mike & Chris discuss the types of workloads that better suit Serverless Architecture systems like Lambda & when you should roll a server. - -Plus Mike has major hardware woes, makes a surprising move on air & Chris is left pontificating on the future of AR. - - no - 1:04:50 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/117886/the-state-of-stateless-cr-272/ - - The Future is Serverless | CR 271 - http://feedproxy.google.com/~r/coderradiomp3/~3/nAG3luL2f1Y/ - The serverless revolution is nigh, we discuss AWS Lambda and Azure Functions, rebuilding jbot, basing the business computers around Pop!_OS & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/nAG3luL2f1Y" height="1" width="1" alt=""/> - Mon, 28 Aug 2017 17:18:34 -0700 - - 0B617BE1-9608-4BE4-863E-C115C4F66A39 - Jupiter Broadcasting - The serverless revolution is nigh, we discuss AWS Lambda and Azure Functions, rebuilding jbot, basing the business computers around Pop!_OS & more! - - no - 57:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/117761/the-future-is-serverless-cr-271/ - - Daily Stand Up Myth | CR 270 - http://feedproxy.google.com/~r/coderradiomp3/~3/XEJy-v7ICIY/ - <p>Mike busts the myth of the daily standup meeting & tracks it back to its origins. Then we play a little defense for Electron, share the mind of a PMO & wax on about TypeScript.</p> - -<p>Plus a little taste of Mike’s busy week, an update on Alice & Chris’ upcoming trip.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/XEJy-v7ICIY" height="1" width="1" alt=""/> - Thu, 17 Aug 2017 16:15:04 -0700 - - A63164C0-AD47-4E15-BECE-4F80E37F40AB - Jupiter Broadcasting - Mike busts the myth of the daily standup meeting & tracks it to its origins. Then we play a little defense for Electron, share the mind of a PMO & wax on about TypeScript. Plus a little taste of Mike’s busy week, an update on Alice & Chris’ upcoming trip. - - no - 49:01 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/117526/daily-stand-up-myth-cr-270/ - - Clustered Pi | CR 269 - http://feedproxy.google.com/~r/coderradiomp3/~3/t9tGCSKUOME/ - <p>A special guest and creator of PiCluster joins us to discuss the open source Docker cluster management project. PiCluster is a bit of a community hit & seems to strike a great balance compared to other solutions.</p> - -<p>We’ll dig into the technologies they use and what it's all built on, what they love working with & thoughts about growing a community.</p> - -<p>Plus some of our personal projects that are brewing & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/t9tGCSKUOME" height="1" width="1" alt=""/> - Thu, 10 Aug 2017 17:29:36 -0700 - - A18FBD20-50DE-4003-9205-8C7779E99472 - Jupiter Broadcasting - A special guest and creator of PiCluster joins us to discuss the open source Docker cluster management project. We’ll dig into the tecg they use and what it's all built on, what they love working with, some of our personal projects that are brewing & more - - no - 37:55 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/117356/clustered-pi-cr-269/ - - Ask Alice | CR 268 - http://feedproxy.google.com/~r/coderradiomp3/~3/uyTMJsYBoxo/ - Mike has a huge announcement towards the end of the show. Leading up to it we discuss the case against Kotlin, the next tech after Flash to die & the obvious reason Bots are going to be big.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/uyTMJsYBoxo" height="1" width="1" alt=""/> - Thu, 03 Aug 2017 16:08:23 -0700 - - DBCC6410-0257-48EB-874C-3AACD1899155 - Jupiter Broadcasting - Mike has a huge announcement towards the end of the show. Leading up to it we discuss the case against Kotlin, the next tech after Flash to die & the obvious reason Bots are going to be big. - - no - 51:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/117151/ask-alice-cr-268/ - - Skills to Pay the Bills | CR 267 - http://feedproxy.google.com/~r/coderradiomp3/~3/_JuM84R_Kz8/ - <p>We solve some problems, and then go down the rat hole of self hacking to increase work, productivity & our health. </p> - -<p>Then we gleefully watch as Coding Bootcamps begin to collapse & discuss the misleading metric that led them to their doom.</p> - -<p>Plus Mike shares some straightforward code that solved a very annoying problem.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/_JuM84R_Kz8" height="1" width="1" alt=""/> - Thu, 27 Jul 2017 14:41:30 -0700 - - 3133E197-1A76-457D-95B0-A4B9E486FDCE - Jupiter Broadcasting - We solve some problems, and then go down the rat hole of self hacking to increase work, productivity & our health. - -Then we gleefully watch as Coding Bootcamps begin to collapse. Plus Mike shares some straightforward code that solved an annoying problem - - - no - 48:16 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/117006/skills-to-pay-the-bills-cr-267/ - - Mike the Botter | CR 266 - http://feedproxy.google.com/~r/coderradiomp3/~3/GoN1XtlQZ0w/ - <p>Wes sits down with Mike to talk about Starbucks not-so-secret API, the state of the developer ecosystem & difficult challenges faced by FOSS vendors in the medical field.</p> - -<p>Plus some fantastic feedback, Mike's true feelings about Swift & a whole lot more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/GoN1XtlQZ0w" height="1" width="1" alt=""/> - Thu, 20 Jul 2017 17:03:42 -0700 - - D006EE16-91A9-480F-B720-6AD5773D0D97 - Jupiter Broadcasting - Wes sits down with Mike to talk about Starbucks not-so-secret API, the state of the developer ecosystem & difficult challenges faced by FOSS vendors in the medical field. - -Plus some fantastic feedback, Mike's true feelings about Swift & a whole lot more! - - no - 1:11:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/116811/mike-the-botter-cr-266/ - - Rented Windows Theory | CR 265 - http://feedproxy.google.com/~r/coderradiomp3/~3/U2ZUz950Bmc/ - <p>Microsoft slips a little Windows 10 into your Office365 & we discuss the huge shift they just pulled off, plus a little real talk about growing pains and doldrums & the pains of over building a system.</p> - -<p>Plus your feedback & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/U2ZUz950Bmc" height="1" width="1" alt=""/> - Thu, 13 Jul 2017 09:52:34 -0700 - - 5A5299ED-B88A-4DA7-946D-193926BC8FBD - Jupiter Broadcasting - Microsoft slips a little Windows 10 into your Office365 & we discuss the huge shift they just pulled off, plus a little real talk about growing pains and doldrums & the pains of over building a system. - -Plus your feedback & much more! - - no - 53:03 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/116616/rented-windows-theory-cr-265/ - - Toxic Licensing | CR 264 - http://feedproxy.google.com/~r/coderradiomp3/~3/LTsjX1_1qQY/ - <p>Mike updates on spinning up his business in Florida, we debate limiting the use of the GPL & try to better understand the recent System76 Pop!_OS news.</p> - -<p>Plus the industry is going all in on AI & spending less and less on other types of research. Mike discusses the huge potential issue that could be facing developers down the road.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/LTsjX1_1qQY" height="1" width="1" alt=""/> - Thu, 06 Jul 2017 17:16:40 -0700 - - 8F64D780-8F43-4B62-9C0F-642C2E607874 - Jupiter Broadcasting - Mike updates on spinning up his business in Florida, we debate limiting the use of the GPL & we try to understand the recent System76 Pop!_OS news. - -Plus the industry is going all in on AI & Mike discusses the huge potential issue that could be facing. - - no - 1:04:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/116451/toxic-licensing-cr-264/ - - The Guilty Bug | CR 263 - http://feedproxy.google.com/~r/coderradiomp3/~3/x8qTTorA2_I/ - <p>We ponder the ethical dilemma of a developer who has replaced himself with a bot, debate the possibility of ever making money from bots & have some tough love for Apple on the iPhone’s 10th anniversary. </p> - -<p>Plus discuss System76’s new Pop!_OS & Mike’s adventures in Florida.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/x8qTTorA2_I" height="1" width="1" alt=""/> - Fri, 30 Jun 2017 09:56:37 -0700 - - C682D61B-E0BE-4837-A751-64748FD9303C - Jupiter Broadcasting - We ponder the ethical dilemma of a developer who has replaced himself with a bot, debate the possibility of ever making money from bots & have some tough love for Apple. -Plus discuss System76’s new Pop!_OS & Mike’s adventures in Florida. - - no - 57:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/116261/the-guilty-bug-cr-263/ - - Summer of GitHub | CR 262 - http://feedproxy.google.com/~r/coderradiomp3/~3/pcvcCA4WXsM/ - We discuss the week’s developer hoopla & the beard joins us to share his insights. It's a fun episode with a range of topics, including the recent rush to GitHub by a number of open source projects.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/pcvcCA4WXsM" height="1" width="1" alt=""/> - Thu, 22 Jun 2017 17:40:20 -0700 - - FD222419-E975-41E8-8401-88430EC2A38B - Jupiter Broadcasting - We discuss the week’s developer hoopla & the beard joins us to share his insights. It's a fun episode with a range of topics, including the recent rush to GitHub by a number of open source projects. - - no - 50:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/116041/summer-of-github-cr-262/ - - Basic Bot | CR 261 - http://feedproxy.google.com/~r/coderradiomp3/~3/dG_mwXyJB-M/ - Mike shares some insights into building bots & a little sample code to get you started. Plus we discuss the week’s developer news & spend a bit of time on feedback.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/dG_mwXyJB-M" height="1" width="1" alt=""/> - Thu, 15 Jun 2017 15:28:56 -0700 - - C129CAC7-D490-4E89-A68B-B6103E3D302E - Jupiter Broadcasting - Mike shares some insights into building bots & a little sample code to get you started. Plus we discuss the week’s developer news & spend a bit of time on feedback. - - no - 47:34 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/115846/basic-bot-cr-261/ - - The WWDC17 Episode | CR 260 - http://feedproxy.google.com/~r/coderradiomp3/~3/ncFKXgsYPZg/ - After Mike gets a few things off his chest, we dive into the most developer relevant announcements & news from Apple’s WWDC 2017.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/ncFKXgsYPZg" height="1" width="1" alt=""/> - Thu, 08 Jun 2017 17:37:15 -0700 - - 432D343B-F6A6-4A9B-BE05-9EDC02BC36EC - Jupiter Broadcasting - After Mike gets a few things off his chest, we dive into the most developer relevant announcements & news from Apple’s WWDC 2017. - - no - 1:11:12 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/115446/the-wwdc17-episode-cr-260/ - - Hi-Tech Lady Tubes | CR 259 - http://feedproxy.google.com/~r/coderradiomp3/~3/D1X0Ek7L9WU/ - The open source model has won, we discuss the impact that’s having on the development industry. Plus Swift gets a little more interesting, & Chris is ready for his lady in a tube!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/D1X0Ek7L9WU" height="1" width="1" alt=""/> - Thu, 01 Jun 2017 19:53:26 -0700 - - 0234900E-B65C-4F02-AE8C-9B3685A8252B - Jupiter Broadcasting - The open source model has won, we discuss the impact that’s having on the development industry. Plus Swift gets a little more interesting, & Chris is ready for his lady in a tube! - - no - 56:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/115271/hi-tech-lady-tubes-cr-259/ - - Bad Process SIGKILLs | CR 258 - http://feedproxy.google.com/~r/coderradiomp3/~3/FUqHqRl02V0/ - The “process manager from hell” is driving our listener crazy! We have advice that’s a little unconventional. Then we discuss the slow demolition of the culture of youth taking place in tech, that could be shifting everything. -<br /> -<p>Plus Microsoft’s huge Git commit, Quick Designer in Qt Creator 4.3 & some follow up on Kotlin.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/FUqHqRl02V0" height="1" width="1" alt=""/> - Thu, 25 May 2017 19:19:07 -0700 - - 8F052587-EA8D-4B9A-8F74-868A06DCA3B6 - Jupiter Broadcasting - The “process manager from hell” is driving our listener crazy! Then we discuss the slow demolition of the culture of youth taking place in tech. - -Plus Microsoft’s huge Git commit, Quick Designer in Qt Creator 4.3 & some follow up on Kotlin. - - no - 1:04:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/115066/bad-process-sigkills-cr-258/ - - Kotlin, Swiftly | CR 257 - http://feedproxy.google.com/~r/coderradiomp3/~3/xJvsai9stnk/ - <p>Mike argues you should go hybrid today & end up progressive tomorrow. The Docker reality & why Swift is a bit like Kotlin. </p> - -<p>Speaking of Kotlin we chat a bit about the Google I/O news, Project Treble, Xamarin’s Live Player & Mike’s new rig.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/xJvsai9stnk" height="1" width="1" alt=""/> - Fri, 19 May 2017 15:40:20 -0700 - - 8A1B427F-FF1D-4BE4-AFAC-41CD7DC119D0 - Jupiter Broadcasting - Mike argues you should go hybrid today & end up progressive tomorrow. The Docker reality & why Swift is a bit like Kotlin. - -Speaking of Kotlin we chat a bit about the Google I/O news, Project Treble, Xamarin’s Live Player & Mike’s new rig. - - no - 1:02:17 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/114836/kotlin-swiftly-cr-257/ - - Legalize Math | CR 256 - http://feedproxy.google.com/~r/coderradiomp3/~3/vw1W8ibR_3U/ - Getting fined for doing math without a license, Windows 10 S goes app store only, a Coder community project goes into production & Chris learns a hard lesson about his tools!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/vw1W8ibR_3U" height="1" width="1" alt=""/> - Mon, 08 May 2017 17:21:01 -0700 - - 388B3178-5AD3-4C14-9570-26D12FA38EC9 - Jupiter Broadcasting - Getting fined for doing math without a license, Windows 10 S goes app store only, a Coder community project goes into production & Chris learns a hard lesson about his tools! - - no - 51:24 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/114486/legalize-math-cr-256/ - - Moby’s Logs | CR 255 - http://feedproxy.google.com/~r/coderradiomp3/~3/tyzYoS6SqWY/ - <p>After digging into some rather tempting Hoopla, Mike shares his clever solution to one of Docker’s bigger problems & manages to motivate Chris into trying it out during the show.</p> - -<p>Plus thoughts on continuing your coding education, stories of past exams gone wrong & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/tyzYoS6SqWY" height="1" width="1" alt=""/> - Mon, 01 May 2017 16:09:40 -0700 - - D422AB87-7108-46EF-902B-5D9281AED42F - Jupiter Broadcasting - After digging into some rather tempting Hoopla, Mike shares his clever solution to one of Docker’s bigger problems & manages to motivate Chris into trying it out during the show. - -Plus thoughts on continuing your coding education & more! - - no - 44:47 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/114321/mobys-logs-cr-255/ - - Riding the Whale | CR 254 - http://feedproxy.google.com/~r/coderradiomp3/~3/fxwzgkbmAM8/ - <p>Mike is betting big on Docker, Angular has a new release, JavaScript is taking the lead & Uber is playing with fire.</p> - -<p>It’s a packed episode & wraps up with the bombshell that Mike is selling his new MacBook.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/fxwzgkbmAM8" height="1" width="1" alt=""/> - Mon, 24 Apr 2017 18:20:50 -0700 - - 0FA973E3-4774-44F4-8B29-649A87669D19 - Jupiter Broadcasting - Mike is betting big on Docker, Angular has a new release, JavaScript is taking the lead & Uber is playing with fire. - -It’s a packed episode & wraps up with the bombshell that Mike is selling his new MacBook. - - no - 54:48 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/114121/riding-the-whale-cr-254/ - - 4k of Sin | CR 253 - http://feedproxy.google.com/~r/coderradiomp3/~3/jGqSe95Zi_g/ - <p>Habitat promises full automation that travels with app. Basically it's a great way to have an extremely lightweight "environment + your app" (hence the name) that has everything you need except the OS or OS related bits. But is this a layer of abstraction too far for Mike?</p> - -<p>Plus the chronicles of one developer's journey of getting started with Open Source, some cool dark matter development Chris spotted at Dell & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/jGqSe95Zi_g" height="1" width="1" alt=""/> - Mon, 17 Apr 2017 16:07:15 -0700 - - 88520598-DEFE-401D-B53F-F8C02994132F - Jupiter Broadcasting - Habitat promises full automation that travels with app. But is this a layer of abstraction too far for Mike? Plus the chronicles of one developer's journey getting started with Open Source, some cool dark matter development Chris spotted at Dell & more! - - no - 54:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/113936/4k-of-sin-cr-253/ - - DysFunctional | CR 252 - http://feedproxy.google.com/~r/coderradiomp3/~3/lFjh5Ju64iI/ - <p>Wes from Linux Unplugged joins Mike to host a special edition of the show. They chat about the merits (or not!) of Electron, Mike’s week from hell & their true feelings about Javascript. Then they discuss Clojurescript, React Native, & the benefits of a more functional programming style.</p> - -<p>Plus Docker, Devops & of course the Beer of the Week!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/lFjh5Ju64iI" height="1" width="1" alt=""/> - Fri, 14 Apr 2017 13:21:24 -0700 - - 02F2F406-E14D-4041-BE47-BDCA35BBA6BF - Jupiter Broadcasting - Wes joins to chat about the merits (or not!) of Electron, Mike’s week from hell & their true feelings about Javascript. Then they discuss Clojurescript, React Native, & the benefits of a more functional programming style. - -Plus Docker, Devops & more! - - no - 1:26:41 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/113881/dysfunctional-cr-252/ - - Roadshow Special | CR 251 - http://feedproxy.google.com/~r/coderradiomp3/~3/9iZOjCtqeis/ - <p>Tune in for a special road edition of the show today! After Mike & Chris cover some feedback, they share their worst hire stories, eat some Apple crow & debate the end of the exodus.</p> - -<p>Plus Chris shares some surprisingly topical experiences from his Dell trip, Mike’s got a tool of the week & Jonny’s feeling the hero rage.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/9iZOjCtqeis" height="1" width="1" alt=""/> - Tue, 11 Apr 2017 21:40:52 -0700 - - C88461DC-C139-41D2-A60F-08A0197EEEDB - Jupiter Broadcasting - Tune in for a special road edition of the show! Mike & Chris cover feedback, share their worst hire stories, eat Apple crow & debate the end of the exodus. - -Plus Chris shares topical experiences from his Dell trip, Jonny’s feeling the hero rage & more! - - no - 1:01:21 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/113746/roadshow-special-cr-251/ - - Captivated by Containers | CR 250 - http://feedproxy.google.com/~r/coderradiomp3/~3/eYM18nZHCZk/ - <p>Mike’s got a new testing pipeline & he’s fired up and ready to go. He shares what might be a game changer for his business.</p> - -<p>Plus we discuss the damage done by “Coding Heroes”, the value of a namespace, a handy tool & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/eYM18nZHCZk" height="1" width="1" alt=""/> - Mon, 27 Mar 2017 15:29:31 -0700 - - 0C12263D-1E57-402D-BB90-5F8D5F7E86B8 - Jupiter Broadcasting - Mike’s got a new testing pipeline & he’s fired up and ready to go. He shares what might be a game changer for his business. - -Plus we discuss the damage done by “Coding Heroes”, the value of a namespace, a handy tool & more! - - no - 50:18 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/113276/captivated-by-containers-cr-250/ - - Just Some Tools | CR 249 - http://feedproxy.google.com/~r/coderradiomp3/~3/cjKDeRH_qBo/ - Mike’s new client has some strict requirements so we get very practical about the tools we use, compromises made & the line we won’t cross.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/cjKDeRH_qBo" height="1" width="1" alt=""/> - Mon, 20 Mar 2017 16:12:10 -0700 - - 05A84A2C-D0E7-4DE4-918A-DEBFC084338F - Jupiter Broadcasting - Mike’s new client has some strict requirements so we get very practical about the tools we use, compromises made & the line we won’t cross. - - no - 50:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/107626/just-some-tools-cr-249/ - - Some WebAssembly Required | CR 248 - http://feedproxy.google.com/~r/coderradiomp3/~3/D7AJr0mK3Y8/ - We follow up on WebAssembly, it’s not just the future, it’s already here & it might be great! Plus C# 7’s release gets us thinking & Canonical’s got us ranting.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/D7AJr0mK3Y8" height="1" width="1" alt=""/> - Mon, 13 Mar 2017 16:51:08 -0700 - - 439352B5-7C69-4CA7-BD20-FF084F6264B1 - Jupiter Broadcasting - We follow up on WebAssembly, it’s not just the future, it’s already here & it might be great! Plus C# 7’s release gets us thinking & Canonical’s got us ranting. - - no - 57:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/107491/some-webassembly-required-cr-248/ - - Always Be Coding | CR 247 - http://feedproxy.google.com/~r/coderradiomp3/~3/JQibd17ZXuE/ - <p>Why coding everyday makes a big difference for Mike & Chris reflects on keeping momentum to prevent project rot.</p> - -<p>Plus our first look at Java 9, hopes & fears of Web Assembly & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/JQibd17ZXuE" height="1" width="1" alt=""/> - Mon, 06 Mar 2017 16:25:12 -0800 - - D2ACB116-6E4E-40D7-9BF3-AB54FE14DA81 - Jupiter Broadcasting - Why coding everyday makes a big difference for Mike & Chris reflects on keeping momentum to prevent project rot. - -Plus our first look at Java 9, hopes & fears of Web Assembly & more! - - no - 59:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/107311/always-be-coding-cr-247/ - - Mozilla's Pocket Pick | CR 246 - http://feedproxy.google.com/~r/coderradiomp3/~3/vPmNrVXeO_o/ - <p>Our C++ alternatives quest for embedded continues, taking another look at Visual Studio Code, Mozilla’s big pockets & saving the web with Qt Quick.</p> - -<p>Plus Mike’s war story, great feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/vPmNrVXeO_o" height="1" width="1" alt=""/> - Mon, 27 Feb 2017 16:17:50 -0800 - - B30D6C95-6204-4E05-A877-EF711BA19DAC - Jupiter Broadcasting - Our C++ alternatives quest for embedded continues, taking another look at Visual Studio Code, Mozilla’s big pockets & saving the web with Qt Quick. - -Plus Mike’s war story, great feedback & more! - - no - 1:01:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/107151/mozillas-pocket-pick-cr-246/ - - Java Rusts Over | CR 245 - http://feedproxy.google.com/~r/coderradiomp3/~3/3qEeQyqxWK0/ - Rust has a busy 2017 ahead of it, Mike ponders Java’s failure on small Internet of Things & searches for a C++ alternative, then dazzles us with the new gear he’s recently picked up.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/3qEeQyqxWK0" height="1" width="1" alt=""/> - Mon, 20 Feb 2017 08:23:34 -0800 - - F24AAC8F-0121-479F-8808-3E12FB7D5055 - Jupiter Broadcasting - Rust has a busy 2017 ahead of it, Mike ponders Java’s failure on small Internet of Things & searches for a C++ alternative, then dazzles us with the new gear he’s recently picked up. - - no - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106926/java-rusts-over-cr-245/ - - Still Playing Mono | CR 244 - http://feedproxy.google.com/~r/coderradiomp3/~3/QB5DBhd9h6c/ - Mike reports back from his recent travels, we debate the renaissance .Net & solve all of future Mike’s problems.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/QB5DBhd9h6c" height="1" width="1" alt=""/> - Mon, 13 Feb 2017 18:35:04 -0800 - - 2609C376-48C6-4661-B63D-8948CA31A01B - Jupiter Broadcasting - Mike reports back from his recent travels, we debate the renaissance .Net & solve all of future Mike’s problems. - - no - 55:08 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106816/still-playing-mono-cr-244/ - - iPad Shrinkage | CR 243 - http://feedproxy.google.com/~r/coderradiomp3/~3/kqdn0ZNn2fM/ - The fear of productivity loss & the crazy things we do to avoid it, a sober look at the tablet market for developers, GitLab’s recent disaster & we bring it all home with a little time travel.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/kqdn0ZNn2fM" height="1" width="1" alt=""/> - Mon, 06 Feb 2017 05:43:02 -0800 - - 5077049C-53E2-4865-ACA3-A59742B64E0E - Jupiter Broadcasting - The fear of productivity loss & the crazy things we do to avoid it, a sober look at the tablet market for developers, GitLab’s recent disaster & we bring it all home with a little time travel. - - no - 54:47 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106681/ipad-shrinkage-cr-243/ - - Cowboy Code | Coder Radio 242 - http://feedproxy.google.com/~r/coderradiomp3/~3/v_d6Nd3IOAc/ - The tools we use to do the job, Microservices Gone Wrong, the real problem with TypeScript & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/v_d6Nd3IOAc" height="1" width="1" alt=""/> - Thu, 02 Feb 2017 14:01:48 -0800 - - 65C9D45D-38B7-4175-8DC8-024B728F049B - Jupiter Broadcasting - The tools we use to do the job, Microservices Gone Wrong, the real problem with TypeScript & more! - - no - 53:24 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106626/cowboy-code-cr-242/ - - Tricks of the Trade | CR 241 - http://feedproxy.google.com/~r/coderradiomp3/~3/FbfP7WyB0WE/ - <p>Your emails this week get us discussing & sharing some really hard learned lessons & insights.</p> - -<p>Plus Mike spends the weekend preparing to shame Chris & shares a favorite book pick</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/FbfP7WyB0WE" height="1" width="1" alt=""/> - Mon, 23 Jan 2017 15:25:56 -0800 - - FE2CE972-7450-4B9F-89B8-33D755F51291 - Jupiter Broadcasting - Your emails this week get us discussing & sharing some really hard learned lessons & insights. - -Plus Mike spends the weekend preparing to shame Chris & shares a favorite book pick - - no - 36:25 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106376/tricks-of-the-trade-cr-241/ - - Disillusioned NixBeards | CR 240 - http://feedproxy.google.com/~r/coderradiomp3/~3/NbhjUh0MeCg/ - Mike and Chris start things off with some traditional feedback, get into some Dart discussion & then get into the hardware throw down.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/NbhjUh0MeCg" height="1" width="1" alt=""/> - Mon, 16 Jan 2017 16:27:59 -0800 - - 96C49D1C-78AD-4472-94CD-C50713539DEA - Jupiter Broadcasting - Mike and Chris start things off with some traditional feedback, get into some Dart discussion & then get into the hardware throw down. - - no - 1:02:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106201/disillusioned-nixbeards-cr-240/ - - Living in a Clamshell | CR 239 - http://feedproxy.google.com/~r/coderradiomp3/~3/-Ng3PMcxK6o/ - After we answer some audience feedback and chat about the week’s Hoopla & a fresh batch of Coder Radio 2017 predictions!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/-Ng3PMcxK6o" height="1" width="1" alt=""/> - Mon, 09 Jan 2017 16:31:44 -0800 - - 0AC8AF4E-4982-4C4C-A92D-1CE7DBA75A33 - Jupiter Broadcasting - After we answer some audience feedback and chat about the week’s Hoopla & a fresh batch of Coder Radio 2017 predictions! - - no - 50:30 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106066/living-in-a-clamshell-cr-239/ - - Undockered | CR 238 - http://feedproxy.google.com/~r/coderradiomp3/~3/8FhxgAZqZJc/ - <p>Mike’s got three wishes for the new year, Chris has a new Echo Dot & Google has partnerships to put Assistant in your TV.</p> - -<p>Plus why Mike got rid of his office, GitHub’s near term future & how terrible code gets written by sane people.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/8FhxgAZqZJc" height="1" width="1" alt=""/> - Thu, 05 Jan 2017 14:04:34 -0800 - - EB04CB08-CDB9-46AA-A19A-DA6442A224AF - Jupiter Broadcasting - Mike’s got three wishes for the new year, Chris has a new Echo Dot & Google has partnerships to put Assistant in your TV. - -Plus why Mike got rid of his office, GitHub’s near term future & how terrible code gets written by sane people. - - no - 43:37 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/106011/undockered-cr-238/ - - Shuffling Code | CR 237 - http://feedproxy.google.com/~r/coderradiomp3/~3/TxVuZcBUNWY/ - <p>We've given the guys the week off after a year of hard work, so in this episode we'll take a look back at a series of events where the guys ended up realigning their opinions. From hybrid vs native apps & developing on linux to Pokémon & Bots, a lot changed in 2016.</p> - -<p>So sit back, grab a nice warm beverage & enjoy the show!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/TxVuZcBUNWY" height="1" width="1" alt=""/> - Mon, 26 Dec 2016 10:40:13 -0800 - - 483C98AB-18C9-4F3E-AC83-41F629273540 - Jupiter Broadcasting - We've given the guys the week off after a year of hard work, so we'll take a look back at a series of events where the guys ended up realigning their opinions. From hybrid vs native apps & developing on linux to Pokémon & Bots, a lot changed in 2016! - - no - 3:02:28 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/105701/shuffling-code-cr-237/ - - Refactoring 2016 | CR 236 - http://feedproxy.google.com/~r/coderradiomp3/~3/qy4i-RnjdJg/ - We reflect on the trainwreck that was 2016 & what might be emerging in 2017 as a real market opportunity. It's our last live show of the year, so we throw out the rules!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/qy4i-RnjdJg" height="1" width="1" alt=""/> - Mon, 19 Dec 2016 14:58:25 -0800 - - 093C0B85-CAF0-48F7-928D-A0266F4B2258 - Jupiter Broadcasting - We reflect on the trainwreck that was 2016 & what might be emerging in 2017 as a real market opportunity. It's our last live show of the year, so we throw out the rules! - - no - 51:32 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/105531/refactoring-2016-cr-236/ - - Okay Google, Take Over the World | CR 235 - http://feedproxy.google.com/~r/coderradiomp3/~3/Msau5zZv-2I/ - <p>Mike reviews his Google Home and we discuss Google Actions, Fitbit buying Pebble & the usefulness of some of these products.</p> - -<p>Plus Mike adopts a new philosophy about remote workers!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Msau5zZv-2I" height="1" width="1" alt=""/> - Mon, 12 Dec 2016 16:06:40 -0800 - - 0B6C6AFA-E441-4ED8-BF78-5CF15CC045D6 - Jupiter Broadcasting - Mike reviews his Google Home and we discuss Google Actions, Fitbit buying Pebble & the usefulness of some of these products. - -Plus Mike adopts a new philosophy about remote workers! - - no - 52:24 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/105366/okay-google-take-over-the-world-cr-235/ - - Legend Of The Snow Leopard | CR 234 - http://feedproxy.google.com/~r/coderradiomp3/~3/qwl5n-UaYZk/ - Mike shares his swift migration pain from over the weekend & opens up a bar in the office in honor of his new Google Home.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/qwl5n-UaYZk" height="1" width="1" alt=""/> - Mon, 05 Dec 2016 16:28:57 -0800 - - 9A92CB0F-15D3-4F3F-924E-D53DFC24D25A - Jupiter Broadcasting - Mike shares his swift migration pain from over the weekend & opens up a bar in the office in honor of his new Google Home. - - no - 52:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/105236/legend-of-the-snow-leopard-cr-234/ - - Stalker Box | CR 233 - http://feedproxy.google.com/~r/coderradiomp3/~3/7JcS7pomw-8/ - <p>Mike reviews the state of hybrid development in the last days of 2016 & chat about his new Google Home and what he’s looking forward to testing.</p> - -<p>Plus a quick chat about ethics in coding.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/7JcS7pomw-8" height="1" width="1" alt=""/> - Mon, 28 Nov 2016 15:54:37 -0800 - - EEEC646C-9663-4610-BADA-08745822BE9A - Jupiter Broadcasting - Mike reviews the state of hybrid development in the last days of 2016 & chat about his new Google Home and what he’s looking forward to testing. - -Plus a quick chat about ethics in coding. - - no - 1:06:16 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/105066/stalker-box-cr-233/ - - Minimal Functional Product | CR 232 - http://feedproxy.google.com/~r/coderradiomp3/~3/cCIKRQeViaA/ - Mike is back from vacation has somethings on his mind he shares this week. Hardware follow up, customer management for devs, book recommendations & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/cCIKRQeViaA" height="1" width="1" alt=""/> - Mon, 21 Nov 2016 16:30:24 -0800 - - 0E81E8EC-C1B6-4E37-9DEF-A7ABD5C5D637 - Jupiter Broadcasting - Mike is back from vacation has somethings on his mind he shares this week. Hardware follow up, customer management for devs, book recommendations & more! - - no - 1:02:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/104836/minimal-functional-product-cr-232/ - - Scrum Burger | CR 231 - http://feedproxy.google.com/~r/coderradiomp3/~3/HPN_X16FkKU/ - We ponder why Docker is a dumpster fire, doubt Samsung’s new Ai Bot platform, discover Botkit & discuss killing the Scrum.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/HPN_X16FkKU" height="1" width="1" alt=""/> - Mon, 14 Nov 2016 14:46:47 -0800 - - 94138594-5287-4A71-9BD6-9D15AB1AD453 - Jupiter Broadcasting - We ponder why Docker is a dumpster fire, doubt Samsung’s new Ai Bot platform, discover Botkit & discuss killing the Scrum. - - no - 48:55 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/104651/scrum-burger-cr-231/ - - Microsoft’s Public Shame | CR 230 - http://feedproxy.google.com/~r/coderradiomp3/~3/bvhVvoLsvsM/ - Ballmer is trying to pin it all on Bill, MacBook follow up & Lemur struggles.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/bvhVvoLsvsM" height="1" width="1" alt=""/> - Mon, 07 Nov 2016 16:38:01 -0800 - - 0AD6AEA0-F5D8-4867-B4DA-B101FD32DBB2 - Jupiter Broadcasting - Ballmer is trying to pin it all on Bill, MacBook follow up & Lemur struggles. - - no - 58:57 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/104531/microsofts-public-shame-cr-230/ - - Old Men Yell at Macbooks | CR 229 - http://feedproxy.google.com/~r/coderradiomp3/~3/XsrD6QnJUvA/ - Let's get real about the tools we use this week.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/XsrD6QnJUvA" height="1" width="1" alt=""/> - Mon, 31 Oct 2016 16:25:35 -0700 - - CDC77A17-730F-402E-A210-1C206E2D74F5 - Jupiter Broadcasting - Let's get real about the tools we use this week. - - no - 1:02:55 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/104326/old-men-yell-at-macbooks-cr-229/ - - A Lemur Eats an Apple | CR 228 - http://feedproxy.google.com/~r/coderradiomp3/~3/jx_rFkf1sGg/ - <p>Mike betting on server side bots & AI, making the big jump from the MacBook to a System76 Lemur running Linux. We talk about the platform development opportunities for a small shop.</p> - -<p>Plus how to design APIs that don’t suck & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/jx_rFkf1sGg" height="1" width="1" alt=""/> - Mon, 24 Oct 2016 16:48:25 -0700 - - 3D395633-D5B9-4ED3-8242-5530BB38D4E1 - Jupiter Broadcasting - Mike betting on server side bots & AI, making the big jump from the MacBook to a System76 Lemur running Linux. We talk about the platform development opportunities for a small shop. - -Plus how to design APIs that don’t suck & more! - - no - 56:17 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/104161/a-lemur-eats-an-apple-cr-228/ - - Everybody's Keyboard Fighting | CR 227 - http://feedproxy.google.com/~r/coderradiomp3/~3/l-NGEfC5sEY/ - <p>The Dash debacle gets the full Coder this week & Mike’s got a new sweet keyboard he tells us all about. </p> - -<p>Plus how it feels to learn Javascript in a React world & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/l-NGEfC5sEY" height="1" width="1" alt=""/> - Mon, 17 Oct 2016 16:05:25 -0700 - - D41C5EC9-2F08-4B22-AB5F-26F8D0376A46 - Jupiter Broadcasting - The Dash debacle gets the full Coder this week & Mike’s got a new sweet keyboard he tells us all about. - -Plus how it feels to learn Javascript in a React world & more! - - no - 1:02:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/103956/everybodys-keyboard-fighting-cr-227/ - - Coder Profiling | CR 226 - http://feedproxy.google.com/~r/coderradiomp3/~3/FbS_Td2HpPo/ - We flunk and debunk the Joel test, and ponder the long tail of coder interviews gone wrong, Apple's removal of Dash, KDevelop on windows & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/FbS_Td2HpPo" height="1" width="1" alt=""/> - Mon, 10 Oct 2016 14:43:16 -0700 - - 0DF16639-4245-4608-8691-3012CA8F8CE0 - Jupiter Broadcasting - We flunk and debunk the Joel test, and ponder the long tail of coder interviews gone wrong, Apple's removal of Dash, KDevelop on windows & more! - - no - 45:08 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/103756/coder-profiling-cr-226/ - - The ROI of Things | CR 225 - http://feedproxy.google.com/~r/coderradiomp3/~3/o3ovddIsWUE/ - Mike & Chris share hard earned lessons for the first time about the expected value in the effort we put into our various next great ideas, marketing, attending conferences & whatever “networking” is suppose to be.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/o3ovddIsWUE" height="1" width="1" alt=""/> - Mon, 03 Oct 2016 16:20:52 -0700 - - 4C4647AD-5F07-4271-AE30-BD95D19FD1E8 - Jupiter Broadcasting - Mike & Chris share hard earned lessons for the first time about the expected value in the effort we put into our various next great ideas, marketing, attending conferences & whatever “networking” is suppose to be. - - no - 59:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/103556/the-roi-of-things-cr-225/ - - Vaporware on the Server | CR 224 - http://feedproxy.google.com/~r/coderradiomp3/~3/pRyCN7FZV1E/ - The growing case for Swift on the server & Java 8’s underplayed success are the two main topics this week. We also discuss Dart on Android & some platform fundamentals with renewed vigor!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/pRyCN7FZV1E" height="1" width="1" alt=""/> - Mon, 26 Sep 2016 15:33:57 -0700 - - 9F4D52EB-481A-4316-AAE3-67BF9C4DCBB4 - Jupiter Broadcasting - The growing case for Swift on the server & Java 8’s underplayed success are the two main topics this week. We also discuss Dart on Android & some platform fundamentals with renewed vigor! - - no - 48:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/103376/vaporware-on-the-server-cr-224/ - - Get Swifty | CR 223 - http://feedproxy.google.com/~r/coderradiomp3/~3/bXbr-MDXNOs/ - <p>Mike & Chris travel interdimensionally to discuss the pressure to get Swifty, marvel at Vapor.codes, witness the fall of Eclipse & the rise of Microsoft.</p> - -<p>Plus our super quick take on the iPhone 7 & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/bXbr-MDXNOs" height="1" width="1" alt=""/> - Mon, 19 Sep 2016 16:48:03 -0700 - - 296EC9B4-ED74-4E45-8CFA-5653E73254D0 - Jupiter Broadcasting - Mike & Chris travel interdimensionally to discuss the pressure to get Swifty, marvel at Vapor.codes, witness the fall of Eclipse & the rise of Microsoft. - -Plus our super quick take on the iPhone 7 & more! - - no - 52:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/103236/get-swifty-cr-223/ - - Rusty Support | CR 222 - http://feedproxy.google.com/~r/coderradiomp3/~3/JyzwnluXIBI/ - The world's most egregious gadget sin is committed, why Mike still wants Star Trek gadgets, a Rust divorce, learning the fragile state of state & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/JyzwnluXIBI" height="1" width="1" alt=""/> - Mon, 12 Sep 2016 16:05:48 -0700 - - 217D2D2E-8C00-43DF-8FEF-D53E4A8ECB69 - Jupiter Broadcasting - The world's most egregious gadget sin is committed, why Mike still wants Star Trek gadgets, a Rust divorce, learning the fragile state of state & more! - - no - 54:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/103006/rusty-support-cr-222/ - - Bag of jQuery | CR 221 - http://feedproxy.google.com/~r/coderradiomp3/~3/_hiD7IFtZp4/ - <p>The guys daydream about making the perfect developer platform, follow up a bit on Android N & grouse about Mike’s new Note getting recalled.</p> - -<p>Plus some of our speculation about the September 7th Apple event, what old unmaintained code says about you & clearing the air on Angular v2.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/_hiD7IFtZp4" height="1" width="1" alt=""/> - Mon, 05 Sep 2016 09:52:49 -0700 - - 778DAAF0-6C3D-4C7E-A8D5-B9481441A956 - Jupiter Broadcasting - The guys daydream about making the perfect developer platform & grouse about Mike’s new Note getting recalled. - -Plus our speculation about the September 7th Apple event, what old unmaintained code says about you, clearing the air on Angular v2 & more! - - no - 1:08:54 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/102816/bag-of-jquery-cr-221/ - - Docker Dumpster Fire | CR 220 - http://feedproxy.google.com/~r/coderradiomp3/~3/i5iozAi5BEk/ - <p>Docker quality appears to be getting worse, Mike & Chris analyze the mystery of Docker’s decline & likely causes. </p> - -<p>Plus we discuss the possibility of an AI monopoly, moving fasting & looking for a web-framework matchmaker.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/i5iozAi5BEk" height="1" width="1" alt=""/> - Mon, 29 Aug 2016 15:54:57 -0700 - - BF5B5CE2-1D6B-4005-A152-7687693B0624 - Jupiter Broadcasting - Docker quality appears to be getting worse, Mike & Chris analyze the mystery of Docker’s decline & likely causes. - -Plus we discuss the possibility of an AI monopoly, moving fasting & looking for a web-framework matchmaker. - - no - 57:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/102576/docker-dumpster-fire-cr-220/ - - Dollar Store Quality | CR 219 - http://feedproxy.google.com/~r/coderradiomp3/~3/muSEYjmyaVs/ - <p>Mike and Chris share their experiences with selling yourself just enough to get your foot in the door. Is productizing yourself and your work is worth feeling a little slimy?</p> - -<p>Plus Microsoft’s move in open sourcing PowerShell, the fixed bid scam & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/muSEYjmyaVs" height="1" width="1" alt=""/> - Mon, 22 Aug 2016 15:37:40 -0700 - - ADB56E02-6CD6-4AA6-B5A7-B6160A4BF6E8 - Jupiter Broadcasting - Mike and Chris share their experiences with selling yourself just enough to get your foot in the door. Is productizing yourself and your work is worth feeling a little slimy? - -Plus Microsoft’s move in open sourcing PowerShell, the fixed bid scam & more! - - no - 50:27 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/102401/dollar-store-quality-cr-219/ - - Agile Scapegoat | CR 218 - http://feedproxy.google.com/~r/coderradiomp3/~3/PpcbwUDpXTk/ - Fresh off new Agile courses Mike shares what he feels might be his core problems with Agile software development. Our thoughts on software quality in general, the big slack problem & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/PpcbwUDpXTk" height="1" width="1" alt=""/> - Mon, 15 Aug 2016 17:43:04 -0700 - - E234A73C-9AAD-42C2-AA48-A79AF93B82E3 - Jupiter Broadcasting - Fresh off new Agile courses Mike shares what he feels might be his core problems with Agile software development. Our thoughts on software quality in general, the big slack problem & more! - - no - 1:11:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/102101/agile-scapegoat-cr-218/ - - Botpocalypse Now | CR 217 - http://feedproxy.google.com/~r/coderradiomp3/~3/_sPDBXD3UBc/ - <p>Special guest Ryan Sipes from Mycroft joins us to discuss his ambitious projects & fulfilling the mission of an open source project.</p> - -<p>Plus our thoughts on the impending Bot revolution, the “Internet of APIs” it all depends on & the massive shift that bots could cause in the industry.</p> - -<p>We start it all off with a new Coding Challenge!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/_sPDBXD3UBc" height="1" width="1" alt=""/> - Mon, 08 Aug 2016 17:26:08 -0700 - - A39ECBF8-BD90-4FC1-8DD1-DD4260D0C657 - Jupiter Broadcasting - Special guest Ryan Sipes from Mycroft joins us to discuss his projects & fulfilling the mission of an open source project. - -Plus our thoughts on the bot revolution, the “Internet of APIs” it depends on & the shift that bots could cause in the industry. - - no - 1:08:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/101746/botpocalypse-now-cr-217/ - - Mismatch Patterns in Productivity | CR 216 - http://feedproxy.google.com/~r/coderradiomp3/~3/gx36adv0qn0/ - Mike & Chris rip up the thinking behind iPad-only is the new desktop Linux mantra, discuss the date of LaunchKit, announce a new coding challenge & much more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/gx36adv0qn0" height="1" width="1" alt=""/> - Mon, 01 Aug 2016 15:25:37 -0700 - - 12F608A5-17D3-4745-87A4-AB93BDAD9589 - Jupiter Broadcasting - Mike & Chris rip up the thinking behind iPad-only is the new desktop Linux mantra, discuss the date of LaunchKit, announce a new coding challenge & much more! - - no - 38:07 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/101566/mismatch-patterns-in-productivity-cr-216/ - - Real Life on the Ratel | CR 215 - http://feedproxy.google.com/~r/coderradiomp3/~3/SdE09HV-i7I/ - <p>Mike shares his recent Linux switch experience & why he thinks it might stick this time. We chew on Verizon buying Yahoo & the grief Marissa Mayer is getting.</p> - -<p>Plus we congratulate the winner of last week’s challenge & announce the next one!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/SdE09HV-i7I" height="1" width="1" alt=""/> - Mon, 25 Jul 2016 15:30:39 -0700 - - 1837C8AA-32C4-4048-8150-B9EAC21CCEAF - Jupiter Broadcasting - Mike shares his recent Linux switch experience & why he thinks it might stick this time. We chew on Verizon buying Yahoo & the grief Marissa Mayer is getting. - -Plus we congratulate the winner of last week’s challenge & announce the next one! - - no - 51:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/101417/real-life-on-the-ratel-cr-215/ - - Make Coding Great Again | CR 214 - http://feedproxy.google.com/~r/coderradiomp3/~3/6HdHduJDkzU/ - Mike reflects on some critical feedback, shares impressions of his new Linux PC, we announce the new Coding Challenge & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/6HdHduJDkzU" height="1" width="1" alt=""/> - Mon, 18 Jul 2016 18:50:19 -0700 - - 5C651EDA-C76F-40E3-918F-4045C774EE7F - Jupiter Broadcasting - Mike reflects on some critical feedback, shares impressions of his new Linux PC, we announce the new Coding Challenge & more! - - no - 52:33 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/101247/make-coding-great-again-cr-214/ - - PokéCode | CR 213 - http://feedproxy.google.com/~r/coderradiomp3/~3/TgGljvsDYZQ/ - <p>Nintendo has a hit on their hands, is this a game changer for the company? Mike & Chris discuss the big picture ramifications of Pokémon GO.</p> - -<p>Plus beer brewed by bots, our thoughts on Java EE, Spring Boot & getting PHP to really do what you want.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/TgGljvsDYZQ" height="1" width="1" alt=""/> - Mon, 11 Jul 2016 17:26:57 -0700 - - EAE5DB2C-9D6A-4ED7-9EE1-483871A9F33A - Jupiter Broadcasting - Nintendo has a hit on their hands, is this a game changer for the company? Mike & Chris discuss the big picture ramifications of Pokémon GO. - -Plus beer brewed by bots, our thoughts on Java EE, Spring Boot & getting PHP to really do what you want. - - no - 1:04:37 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/101076/pokecode-cr-213/ - - Derailing Java | CR 212 - http://feedproxy.google.com/~r/coderradiomp3/~3/kECyTPmWjDE/ - This week Noah steps in to host while Chris is out and cover Rails 5, Oracle’s suspicious silence around Java EE, talk about mike’s latest linux adventure, give some freelancing advice & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/kECyTPmWjDE" height="1" width="1" alt=""/> - Mon, 04 Jul 2016 19:03:06 -0700 - - 85FAC976-6872-4EBB-9E49-C2114E37619E - Jupiter Broadcasting - This week Noah steps in to host while Chris is out and cover Rails 5, Oracle’s suspicious silence around Java EE, talk about mike’s latest linux adventure, give some freelancing advice & more! - - no - 1:09:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/100921/derailing-java-cr-212/ - - Ai Theater | CR 211 - http://feedproxy.google.com/~r/coderradiomp3/~3/5SoTBtk_zjo/ - <p>What is Machine Learning? How are companies & developers using it? We discuss that, the major approaches in the market & Apple’s use of Differential Privacy.</p> - -<p>Plus Mike’s new Linux desktop, some feedback & a lot more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/5SoTBtk_zjo" height="1" width="1" alt=""/> - Mon, 27 Jun 2016 16:13:00 -0700 - - 8ED1F0E7-5557-45C7-B45F-A4E0BE360527 - Jupiter Broadcasting - What is Machine Learning? How are companies & developers using it? We discuss that, the major approaches in the market & Apple’s use of Differential Privacy. - -Plus Mike’s new Linux desktop, some feedback & a lot more! - - no - 55:49 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/100716/ai-theater-cr-211/ - - Productivity Theater | CR 210 - http://feedproxy.google.com/~r/coderradiomp3/~3/7Zu2TDuzI68/ - <p>It’s death by a thousand scrums this week & then admit there may be some value in frequent project communication.</p> - -<p>Then we start the machine learning discussion, talk a little Android N & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/7Zu2TDuzI68" height="1" width="1" alt=""/> - Tue, 21 Jun 2016 14:37:13 -0700 - - BE921D06-5E14-4273-AE60-FFABCB8DECDB - Jupiter Broadcasting - It’s death by a thousand scrums this week & then admit there may be some value in frequent project communication. - -Then we start the machine learning discussion, talk a little Android N & more! - - no - 47:54 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/100591/productivity-theater-cr-210/ - - WWDC Hypercap | CR 209 - http://feedproxy.google.com/~r/coderradiomp3/~3/Ob5rZFLu0ao/ - <p>We start with some developer news of the week, then dig into the best bits from WWDC. </p> - -<p>Plus Mike shares his thoughts on some new hardware & the guys discuss the mystery of differential privacy.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Ob5rZFLu0ao" height="1" width="1" alt=""/> - Mon, 13 Jun 2016 17:56:06 -0700 - - 48E50B2E-79AD-42E4-A0F7-6E6954DFA843 - Jupiter Broadcasting - We start with some developer news of the week, then dig into the best bits from WWDC. - -Plus Mike shares his thoughts on some new hardware & the guys discuss the mystery of differential privacy. - - no - 1:07:14 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/100441/wwdc-hypercap-cr-209/ - - Fair-use Frustrations | CR 208 - http://feedproxy.google.com/~r/coderradiomp3/~3/DI1It0RKe4o/ - Mike & Chris have very different opinions on how interview tests should be conducted & this week they try to come to some common ground. Plus the real reasons to develop software on Linux are not the ones often cited, bit more on Google’s fair use & the master plan to get Mike to move to the west coast.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/DI1It0RKe4o" height="1" width="1" alt=""/> - Mon, 06 Jun 2016 17:12:37 -0700 - - 188CA776-F94B-4AA5-B3B8-52E10965D46F - Jupiter Broadcasting - Mike & Chris have very different opinions on how interview tests should be conducted. Plus the real reasons to develop software on Linux are not the ones often cited, bit more on Google’s fair use & the master plan to get Mike to move to the west coast. - - no - 45:33 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/100206/fair-use-frustrations-cr-208/ - - AGILE: Too Big to Fail | CR 207 - http://feedproxy.google.com/~r/coderradiomp3/~3/I8leP22M9DY/Q - <p>Mike shares a humbling war story, then we dig into the great “Android Instant App Conspiracy”, the announcement that destroyed the .Net ecosystem & the poverty trap of software development.</p> - -<p>Plus some closing thoughts on Google vs Oracle, a neat tool of the week & a special holiday bonus extended laid back chat!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/I8leP22M9DY" height="1" width="1" alt=""/> - Mon, 30 May 2016 17:28:40 -0700 - - ADCC9723-EFC7-44EF-8994-6F3D8382AA49 - Jupiter Broadcasting - Mike shares a humbling war story, the great “Android Instant App Conspiracy”, the announcement that destroyed the .Net ecosystem & the poverty trap of software development. - -Plus some closing thoughts on Google vs Oracle, a neat tool of the week & more! - - no - 1:35:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/100066/agile-too-big-to-fail-cr-207/Q - - Fat Bottom APIs | CR 206 - http://feedproxy.google.com/~r/coderradiomp3/~3/dmdlBD0Iw_E/ - <p>We dig through the relevant bits of Google I/O, the possible anti-web move Instant Apps represent, no Kotlin & big improvements we’re excited about.</p> - -<p>Plus Mike’s take on Android Studio 2.2 & Chris’ take on what we’re all calling “services”.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/dmdlBD0Iw_E" height="1" width="1" alt=""/> - Mon, 23 May 2016 16:24:44 -0700 - - F6573F89-372B-427B-A16B-BB529F785DB6 - Jupiter Broadcasting - We dig through the relevant bits of Google I/O, the possible anti-web move Instant Apps represent, no Kotlin & big improvements we’re excited about. - -Plus Mike’s take on Android Studio 2.2 & Chris’ take on what we’re all calling “services”. - - no - 1:00:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/99906/fat-bottom-apis-cr-206/ - - Git off the Rails | CR 205 - http://feedproxy.google.com/~r/coderradiomp3/~3/JsFQNYeAgXM/ - <p>Github’s new pricing has a bit of a catch, Rob Robinson says Rails is yesterday’s software in light of Swift & GO. Which we simply have to talk about.</p> - -<p>Then we jump in our time machine and dazzle you with our new term predictions & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/JsFQNYeAgXM" height="1" width="1" alt=""/> - Mon, 16 May 2016 15:21:08 -0700 - - 83F42D83-A692-4DE6-93F3-8F3DAD556F50 - Jupiter Broadcasting - Github’s new pricing has a bit of a catch, Rob Robinson says Rails is yesterday’s software in light of Swift & GO. Which we simply have to talk about. - -Then we jump in our time machine and dazzle you with our new term predictions & more! - - no - 1:02:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/99766/git-off-the-rails-cr-205/ - - Revenge of the Swift | CR 204 - http://feedproxy.google.com/~r/coderradiomp3/~3/EFAousNo0fU/ - <p>In a podcast far far away, you asked for it & this week we delivered. It’s code review time, with a twist! </p> - -<p>Plus the FUD seems strong with the second Oracle v Google trial, we attempting to do some busting, Dropbox falling back to reality & 30 years later why we still love QBasic.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/EFAousNo0fU" height="1" width="1" alt=""/> - Mon, 09 May 2016 15:55:36 -0700 - - E129607E-9E27-4BB6-8B87-54036B6BB3C0 - Jupiter Broadcasting - In a podcast far far away, you asked for it & this week we delivered. It’s code review time, with a twist! - -Plus the second Oracle v Google trial, we attempting to do some busting, Dropbox falling back to reality & 30 years later why we still love QBasic - - no - 50:14 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/99581/revenge-of-the-swift-cr-204/ - - Go Go Golang | CR 203 - http://feedproxy.google.com/~r/coderradiomp3/~3/EO76Xt54H2I/ - <p>A little reflective & contemplative after a successful human forking, our hosts reflect on a well stated OO vs Functional rant, the bot frameworks that impress & the surprisingly great use case for Go.</p> - -<p>Plus the 800 pound snake in the room, a quick Linux switch update for Mike & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/EO76Xt54H2I" height="1" width="1" alt=""/> - Mon, 02 May 2016 15:31:30 -0700 - - F048BC22-3983-435B-A424-0DCF76160037 - Jupiter Broadcasting - A little reflective & contemplative, our hosts reflect on a well stated OO vs Functional rant, the bot frameworks that impress & the surprisingly great use case for Go. - -Plus the 800 pound snake in the room, a quick Linux switch update for Mike & more! - - no - 55:07 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/99221/go-go-golang-cr-203/ - - GO Swift Yourself | CR 202 - http://feedproxy.google.com/~r/coderradiomp3/~3/Ovgwr2wfTxc/ - <p>Could Google be about to make a major shake up in future development for Android? We discuss the scuttlebut about Swift on Android.</p> - -<p>Plus Mike’s new mobile rig & Noah from the Linux Action Show joins for Mike’s update on his Linux Adventure & Mike gets the hard sell.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Ovgwr2wfTxc" height="1" width="1" alt=""/> - Mon, 25 Apr 2016 18:18:06 -0700 - - 5476E895-A606-49C3-9A7D-C42707EDF63D - Jupiter Broadcasting - Could Google be about to make a major shake up in future development for Android? We discuss the scuttlebut about Swift on Android. - -Plus Mike’s new mobile rig & Noah from LAS joins for Mike’s update on his Linux Adventure & Mike gets the hard sell. - - no - 1:03:08 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/99076/go-swift-yourself-cr-202/ - - Tough Market | CR 201 - http://feedproxy.google.com/~r/coderradiomp3/~3/-lgoI3XRgDI/ - In this episode, Noah joins Chris to talk about the whole hiring process & experiences they've had while also taking a look back into the past of the show to some of the more interesting topics on the matter.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/-lgoI3XRgDI" height="1" width="1" alt=""/> - Mon, 18 Apr 2016 10:21:15 -0700 - - D51C1273-266D-49C9-85A8-0BD9F300170B - Jupiter Broadcasting - In this episode, Noah joins Chris to talk about the whole hiring process & experiences they've had while also taking a look back into the past of the show to some of the more interesting topics on the matter. - - no - 1:25:30 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/98926/tough-market-cr-201/ - - Bot Your Life | CR 200 - http://feedproxy.google.com/~r/coderradiomp3/~3/BIuZSVzhEuw/ - <p>Has the whole world gotten hot for bots? Slack’s recent $3.8B & Microsoft’s new Bot SDK suggests there is serious interest there. Mike and Chris share their thoughts & ask what makes a bot…. A bot?</p> - -<p>Plus the surprising math that makes us shed a tear, feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/BIuZSVzhEuw" height="1" width="1" alt=""/> - Mon, 11 Apr 2016 09:25:56 -0700 - - 86B95719-CAA1-4FDD-BE8D-E76697ADDBD1 - Jupiter Broadcasting - Has the whole world gotten hot for bots? Slack’s recent $3.8B & Microsoft’s new Bot SDK suggests there’s interest there. Mike and Chris share their thoughts & ask what makes a bot…. A bot? - -Plus the surprising math that makes us shed a tear & more! - - no - 41:14 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/98716/bot-your-life-cr-200/ - - The Good Xamaritan | CR 199 - http://feedproxy.google.com/~r/coderradiomp3/~3/Y5DhWaz59lM/ - <p>Fresh off Build 2016, we talk about everything from free Xamarian, Bash on Windows & the changing case for .NET.</p> - -<p>Plus Mike shares some assumption smashing news & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Y5DhWaz59lM" height="1" width="1" alt=""/> - Mon, 04 Apr 2016 14:45:44 -0700 - - B38F8480-A84C-451C-9DEA-4A12E7114D6C - Jupiter Broadcasting - Fresh off Build 2016, we talk about everything from free Xamarian, Bash on Windows & the changing case for .NET. - -Plus Mike shares some assumption smashing news & much more! - - no - 52:18 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/98521/the-good-xamaritan-cr-199/ - - Brave New Code | CR 198 - http://feedproxy.google.com/~r/coderradiomp3/~3/d1CK7MNQnr4/ - <p>Is Google dumping to compete with Nuance as they prepare to unleash their voice API to developers for free? Mike updates us on his Linux switch adventure, his new toy & a couple of important PSAs.</p> - -<p>Plus feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/d1CK7MNQnr4" height="1" width="1" alt=""/> - Mon, 28 Mar 2016 16:06:41 -0700 - - 6913339B-7C1F-41C4-A96E-29D47820CFD1 - Jupiter Broadcasting - Is Google dumping to compete with Nuance as they prepare to unleash their voice API to developers for free? Mike updates us on his Linux switch adventure, his new toy & a couple of important PSAs. - -Plus feedback & more! - - no - 1:01:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/98156/brave-new-code-cr-198/ - - Rails Crazies React | CR 197 - http://feedproxy.google.com/~r/coderradiomp3/~3/9UMMLMTjXjs/ - <p>We discuss Mike’s general thoughts on ReactJS, the NY bill that would provide a tax credit for open source contributions & the interesting details in developer data.</p> - -<p>Plus some real talk about your real value, what no indie developer wants to hear about the App Store & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/9UMMLMTjXjs" height="1" width="1" alt=""/> - Mon, 21 Mar 2016 14:54:34 -0700 - - 560B0931-4CD8-4CBB-B874-437DD07AD7F6 - Jupiter Broadcasting - We discuss Mike’s thoughts on ReactJS, the NY bill that would provide a tax credit for OSS contributions & the interesting details in dev data. - -Plus some real talk about your real value, what no indie developer wants to hear about the App Store & more! - - no - 1:00:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/97831/rails-crazies-react-cr-197/ - - Hybrid Hijinks | CR 196 - http://feedproxy.google.com/~r/coderradiomp3/~3/IboF7BHsSRw/ - <p>Whenever we discuss Hybrid development, a big elephant is sitting in the room. This week, we give this elephant the mic.</p> - -<p>Then, reflecting on a recent Android development project, the guys discuss the sticky side of Frames.</p> - -<p>Plus an update on Mike's Ubuntu experiment & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/IboF7BHsSRw" height="1" width="1" alt=""/> - Mon, 14 Mar 2016 15:51:23 -0700 - - E52F3292-A433-4B48-8D98-F24DF9E20316 - Jupiter Broadcasting - Dscussing Hybrid development ha a big elephant in the room. This week, we give this elephant the mic. Then, reflecting on a recent Android development project, the guys discuss the sticky side of Frames. Plus an update on Mike's Ubuntu experiment & more! - - no - 1:07:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/97611/hybrid-hijinks-cr-196/ - - The Xamarin Hand | CR 195 - http://feedproxy.google.com/~r/coderradiomp3/~3/b8xUS92bOj8/ - <p>We break down what we see as the top motivations, the big competitive move & what Microsoft is really saying about Android with their Xamarin acquisition.</p> - -<p>Plus during the show Microsoft releases SQL server for Linux & we discuss how it all fits together in a larger plan.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/b8xUS92bOj8" height="1" width="1" alt=""/> - Mon, 07 Mar 2016 16:39:02 -0800 - - 2AF92F31-D57A-40BE-97C7-BA77E553824E - Jupiter Broadcasting - We break down what we see as the top motivations, the big competitive move & what Microsoft is really saying about Android with their Xamarin acquisition. - -Plus Microsoft releases SQL server for Linux & we discuss how it all fits together in a larger plan - - no - 1:00:09 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/97216/the-xamarin-hand-cr-195/ - - Xamarin through the Ages | CR 194 - http://feedproxy.google.com/~r/coderradiomp3/~3/wy7vP9uJcIM/ - Mike couldn't make it this week, so we decided that with Microsoft purchasing Xamarin that this would be the perfect time to take a glance back on our coverage of Xamarin & look at how they have come to their current situation<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/wy7vP9uJcIM" height="1" width="1" alt=""/> - Tue, 01 Mar 2016 04:43:08 -0800 - - DEBB6E66-0C9C-46F8-B074-1763D13FCF33 - Jupiter Broadcasting - Mike couldn't make it this week, so we decided that with Microsoft purchasing Xamarin that this would be the perfect time to take a glance back on our coverage of Xamarin & look at how they have come to their current situation - - no - 1:31:29 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/96876/xamarin-through-the-ages-cr-194/ - - Big Blue's Swift Move | CR 193 - http://feedproxy.google.com/~r/coderradiomp3/~3/o51V5ijeUAI/ - <p>Mike shares his adventures in Ubuntu land this week, after a MacBook disaster. Then we discuss the implications of IBM backing Swift on their cloud.</p> - -<p>Plus some feedback, code as speech, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/o51V5ijeUAI" height="1" width="1" alt=""/> - Mon, 22 Feb 2016 15:09:53 -0800 - - ED70CB30-454D-4D05-A34F-C55725BEB5EF - Jupiter Broadcasting - Mike shares his adventures in Ubuntu land this week, after a MacBook disaster. Then we discuss the implications of IBM backing Swift on their cloud. - -Plus some feedback, code as speech, and more! - - no - 1:12:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/96696/big-blues-swift-move-cr-193/ - - Post Apocalyptic Linux Desktop | CR 192 - http://feedproxy.google.com/~r/coderradiomp3/~3/6m5Tg-RMBSI/ - <p>Mike and Chris talk about bombing job interviews, picking the right Android device for development, writing code that’s easy to delete & Mike shares an Ubuntu update!</p> - -<p>Plus… Has the show forgotten about VR? A new device from Mattel might change our tune, some feedback & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/6m5Tg-RMBSI" height="1" width="1" alt=""/> - Mon, 15 Feb 2016 15:33:44 -0800 - - F1148776-C6A5-4062-90E4-6A3B3E610583 - Jupiter Broadcasting - Mike and Chris talk about bombing job interviews, picking the right Android device for development, writing code that’s easy to delete & Mike shares an Ubuntu update! - -Plus… Has the show forgotten about VR? Some feedback & much more! - - no - 1:26:47 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/93816/post-apocalyptic-linux-desktop-cr-192/ - - Parsing Your Options | CR 191 - http://feedproxy.google.com/~r/coderradiomp3/~3/3qGUnbaYvbU/ - <p>Something is rotten at GitHub. We discuss the big problem they're facing & why for most of us, we already have a backup plan.</p> - -<p>Plus why Project Rider might get you excited & how the Parse shutdown is hitting Mike.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/3qGUnbaYvbU" height="1" width="1" alt=""/> - Mon, 08 Feb 2016 14:31:35 -0800 - - 622A566C-DF98-4ED7-B24A-CED0A019FFF1 - Jupiter Broadcasting - Something is rotten at GitHub. We discuss the big problem they're facing & why for most of us, we already have a backup plan. - -Plus why Project Rider might get you excited & how the Parse shutdown is hitting Mike. - - no - 38:17 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/93551/parsing-your-options-cr-191/ - - Death of the Freelancer | CR 190 - http://feedproxy.google.com/~r/coderradiomp3/~3/EMZSmflU_1M/ - A brutally honest episode. Mike and Chris air some hard learned lessons, toss out the episode playbook & tell it like it is!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/EMZSmflU_1M" height="1" width="1" alt=""/> - Mon, 01 Feb 2016 15:10:14 -0800 - - BB32049F-6BE6-4426-B4EB-A80B22598C59 - Jupiter Broadcasting - A brutally honest episode. Mike and Chris air some hard learned lessons, toss out the episode playbook & tell it like it is! - - no - 50:30 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/93306/death-of-the-freelancer-cr-190/ - - I'm OOPting Out | CR 189 - http://feedproxy.google.com/~r/coderradiomp3/~3/yVZ3BDxc96s/ - <p>We discuss a compelling case against Object-Oriented programming, is it truly all bad? Plus the cold chills the new Rails Doctrine gives us, the worrying long-term ramifications of progress over stability & convention vs configuration strategy.</p> - -<p>Plus a chat about the market position of Jetbrains’ AppCode, blaming Java & unplanning your work and travels.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/yVZ3BDxc96s" height="1" width="1" alt=""/> - Mon, 25 Jan 2016 16:11:58 -0800 - - 6B7E68EC-8E86-404A-A7C9-24D5A908DE2B - Jupiter Broadcasting - We discuss a compelling case against Object-Oriented programming, is it truly all bad? Plus the cold chills the new Rails Doctrine gives us, the long-term ramifications of progress over stability & convention vs configuration strategy & more! - - - no - 1:09:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/93026/im-oopting-out-cr-189/ - - Linux: Bug or Feature? | CR 188 - http://feedproxy.google.com/~r/coderradiomp3/~3/WduuA--qol4/ - Ang and Mike discuss business operational tools, practices & common issues, how Ang got her kids started on computers, good languages to get started with & she makes a pretty poignant comment about Linux. Mike discusses TarDisk & whether or not he recommends it & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/WduuA--qol4" height="1" width="1" alt=""/> - Mon, 18 Jan 2016 17:49:22 -0800 - - B38684FB-5283-45D5-AF40-984A934A2AC8 - Jupiter Broadcasting - Ang and Mike discuss business operational tools, practices & common issues, how Ang got her kids started on computers, good languages to get started with & she makes a poignant comment about Linux. Mike discusses TarDisk & whether he recommends it & more! - - no - 48:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/92751/linux-bug-or-feature-cr-188/ - - Slacking while Coding | CR 187 - http://feedproxy.google.com/~r/coderradiomp3/~3/Psjf5zkBS08/ - <p>Is the age of Apps finally coming to an end? Data points to yes & we discuss how platforms like Slack might offer more potential.</p> - -<p>Then, more web developers are switching to Linux, is this the start of a trend?</p> - -<p>Plus what caught our attention in the new iOS release, and interesting projects Google has in store for 2016.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Psjf5zkBS08" height="1" width="1" alt=""/> - Mon, 11 Jan 2016 15:33:30 -0800 - - 7FB0C55B-DD5A-4D72-9C28-47FDFFD8C7F6 - Jupiter Broadcasting - Is the age of Apps finally coming to an end? Data points to yes & we discuss how platforms like Slack might offer more potential. - -Then, more web developers are switching to Linux, this may be the start of a trend & more! - - no - 52:50 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/92501/slacking-while-coding-cr-187/ - - Decision 2016: Native vs Hybrid | CR 186 - http://feedproxy.google.com/~r/coderradiomp3/~3/_RYybYEuSUk/ - <p>Can Web standards make mobile apps obsolete? The new generation of hybrid apps aren't your grandparents solution to code once, run everywhere.</p> - -<p>Plus why Swift is going to be big on Linux in 2016, Google has a thing with openJDK & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/_RYybYEuSUk" height="1" width="1" alt=""/> - Mon, 04 Jan 2016 15:25:27 -0800 - - 265290FE-A601-4E2D-ABEE-57FFFD461515 - Jupiter Broadcasting - Can Web standards make mobile apps obsolete? The new generation of hybrid apps aren't your grandparents solution to code once, run everywhere. - -Plus why Swift is going to be big on Linux in 2016, Google has a thing with openJDK & much more! - - no - 55:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/92306/decision-2016-native-vs-hybrid-cr-186/ - - Predictive Coder | CR 185 - http://feedproxy.google.com/~r/coderradiomp3/~3/pVZp-6vxlII/ - When you look back at the year, a few really big things jump out for developers. Mike & Chris discuss the trends that seem to have really mattered, then debate about how things might change in 2016.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/pVZp-6vxlII" height="1" width="1" alt=""/> - Mon, 28 Dec 2015 15:59:46 -0800 - - 8609C6CE-06E5-4CDD-9F49-6C60785AA6D4 - Jupiter Broadcasting - When you look back at the year, a few really big things jump out for developers. Mike & Chris discuss the trends that seem to have really mattered, then debate about how things might change in 2016. - - no - 1:08:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/92071/predictive-coder-cr-185/ - - Mike’s Big Year | CR 184 - http://feedproxy.google.com/~r/coderradiomp3/~3/ole2UO4BPRw/ - <p>As we gear up for our end of year episode, we look back at a few moments in 2015 that we loved. From big news, new directions & industry trends that reflected into our personal lives.</p> - -<p>It’s a very special edition of Coder Radio!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/ole2UO4BPRw" height="1" width="1" alt=""/> - Mon, 21 Dec 2015 10:31:50 -0800 - - 6ED516D9-54E9-428C-A963-7A19F2A4574F - Jupiter Broadcasting - As we gear up for our end of year episode, we look back at a few moments in 2015 that we loved. From big news, new directions & industry trends that reflected into our personal lives. - -It’s a very special edition of Coder Radio! - - no - 1:02:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/91791/mikes-big-year-cr-184/ - - Android Instability | CR 183 - http://feedproxy.google.com/~r/coderradiomp3/~3/B2EwtrxJNrI/ - <p>The Pixel C is the perfect example of a compromised device, caused in large part, by Google’s Strategy Tax. This week we debate if this is the underlying reason tablet apps are so far behind on Android, what Mike’s plans are as an Android developer & why the long-term picture might look rosy.</p> - -<p>Plus the Jar Jar true Sith Master mega theory comes to light, some iPad Pro follow up, the missed Mameo opportunity, the hard reality of the “pro tablet” market & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/B2EwtrxJNrI" height="1" width="1" alt=""/> - Mon, 14 Dec 2015 16:33:53 -0800 - - EF544C1F-4A03-46C4-A4EC-BB17D621D59D - Jupiter Broadcasting - The Pixel C is the perfect example of a compromised device thanks to Google’s Strategy Tax. We cover Mike’s plans are as an Android dev & why the long-term picture might be rosy. Plus some iPad Pro follow up, the reality of the “pro tablet” market & more! - - no - 1:10:14 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/91511/android-instability-cr-183/ - - Open Season on Swift | CR 182 - http://feedproxy.google.com/~r/coderradiomp3/~3/Z7Zziv887cM/ - <p>Ballmer calls out Microsoft’s bogus revenue numbers over Azure, & we expand on his point to discuss an overall trend towards “hero CEOs”.</p> - -<p>But the majority of our discussion this week is around the open sourcing of Swift, what Apple got really right & what areas still really need improvement. </p> - -<p>Plus the real possibility of replacing your laptop with a large tablet, starting your first app the “easy way” vs the “hard way" & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Z7Zziv887cM" height="1" width="1" alt=""/> - Mon, 07 Dec 2015 17:06:41 -0800 - - 27C43BDA-4FA3-4B1C-8475-13DEE83548CC - Jupiter Broadcasting - Ballmer calls out Microsoft’s bogus revenue numbers over Azure, & we expand on his point to discuss an overall trend towards “hero CEOs”. The open sourcing of Swift, what Apple got really right & what areas still really need improvement & more! - - no - 1:14:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/91246/open-season-on-swift-cr-182/ - - Code a Little Deeper | CR 181 - http://feedproxy.google.com/~r/coderradiomp3/~3/svsoMZ-UO8w/ - <p>Mike shares his open source picks for 2015 & why they are a real game changer for him. Then we read through a few submissions by the audience & then discuss Microsoft’s huge new PowerApps initiative. </p> - -<p>Plus some feedback that cuts deep & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/svsoMZ-UO8w" height="1" width="1" alt=""/> - Mon, 30 Nov 2015 15:16:42 -0800 - - 3211E34A-E4B5-4C7B-8C12-27A6468D83E1 - Jupiter Broadcasting - Mike shares his open source picks for 2015 & why they are a real game changer for him. Then we read through a few submissions by the audience & then discuss Microsoft’s huge new PowerApps initiative. - -Plus some feedback that cuts deep & more! - - no - 53:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/90921/code-a-little-deeper-cr-181/ - - Barkeep, Ionic, Please | CR 180 - http://feedproxy.google.com/~r/coderradiomp3/~3/zT5T8dklk6E/ - <p>Mike has a big announcement & shares his insights for discovering an underserved niche and creating software for people most of us never considered. </p> - -<p>Plus why Chris is a bit offended by the idea of Swift on the server, Microsoft delivers on the open source goods & a few quick gift ideas for anyone who wants to focus.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/zT5T8dklk6E" height="1" width="1" alt=""/> - Mon, 23 Nov 2015 15:12:07 -0800 - - 4D4D1699-41F5-4BF3-935D-8152CA0CC049 - Jupiter Broadcasting - Mike has a big announcement! Plus why Chris is a bit offended by the idea of Swift on the server, Microsoft delivers on the open source goods & a few quick gift ideas for anyone who wants to focus. - - no - 54:41 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/90671/barkeep-ionic-please-cr-180/ - - I Came, I Saw, Ionic | CR 179 - http://feedproxy.google.com/~r/coderradiomp3/~3/xtb2I4tvyJg/ - <p>Microsoft kills a major Windows development initiative & becomes one of the top contributors to Go. </p> - -<p>Mike has a new love & gets a bit ironic about Ionic. He explains why this framework just might be his new home.</p> - -<p>Plus some great feedback & we bask in the dawn of the age of utility.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/xtb2I4tvyJg" height="1" width="1" alt=""/> - Mon, 16 Nov 2015 15:08:52 -0800 - - E6C974A4-3433-4967-AA14-95058AC31ED1 - Jupiter Broadcasting - Microsoft kills a major Windows development initiative & becomes one of the top contributors to Go. - -Mike has a new love & gets a bit ironic about Ionic. - -Plus some great feedback & we bask in the dawn of the age of utility. - - no - 58:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/90411/i-came-i-saw-ionic-cr-179/ - - Windows XP of the Net | CR 178 - http://feedproxy.google.com/~r/coderradiomp3/~3/aKlm6qmwI9U/ - <p>Is open source software immoral in some market conditions? The guys debate. Plus Google’s impressive new open source project, standing while you work is going out of style & how to adapt to the changing need of your users gracefully.</p> - -<p>Plus is open source on the verge of being outlawed by the TPP? And a few of your great thoughts on Offshoring vs Onshoring.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/aKlm6qmwI9U" height="1" width="1" alt=""/> - Mon, 09 Nov 2015 15:01:16 -0800 - - 086424B0-86DD-48E8-8313-30562307F703 - Jupiter Broadcasting - Is open source software immoral in some market conditions? The guys debate. Plus Google’s impressive new open source project, standing while you work is going out of style & how to adapt to the changing need of your users gracefully & more! - - no - 53:33 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/90261/windows-xp-of-the-net-cr-178/ - - Coder Puppy Mills | CR 177 - http://feedproxy.google.com/~r/coderradiomp3/~3/w2Ua3cFKvmU/ - <p>Mike & Chris discuss the hard problem of identifying opportunity costs vs staying flexible and cheap, why making communication a priority is almost never a priority & the numbers suggest coding bootcamps are growing like crazy… But is that a good thing? </p> - -<p>Plus when to ship, and why testing can really make Mike testy, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/w2Ua3cFKvmU" height="1" width="1" alt=""/> - Mon, 02 Nov 2015 16:11:21 -0800 - - 9345EB3A-AFA1-4E45-BFC7-A62FAC8632E3 - Jupiter Broadcasting - Mike & Chris discuss the hard problem of identifying opportunity costs vs staying flexible and cheap & why making communication a priority is almost never a priority. - -Plus when to ship, and why testing can really make Mike testy, your feedback & more! - - no - 1:04:49 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/89986/coder-puppy-mills-cr-177/ - - Material Matters | CR 176 - http://feedproxy.google.com/~r/coderradiomp3/~3/TCe554vTRik/ - <p>The guys admit there is a growing amount of evidence pointing to going your own way, regardless of the design vision of the platform. What the Linux desktop has finally gotten right, why Mike is ready to can his wearable project.</p> - -<p>Plus a Android BuildConfig pro tip, feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/TCe554vTRik" height="1" width="1" alt=""/> - Mon, 26 Oct 2015 15:27:22 -0700 - - 66FCBA24-5C0C-416F-B7F8-F6E1D0348C1A - Jupiter Broadcasting - The guys admit there is a growing amount of evidence pointing to going your own way. What the Linux desktop has finally gotten right, why Mike is ready to can his wearable project. - -Plus a Android BuildConfig pro tip, feedback & more! - - no - 1:03:09 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/89706/material-matters-cr-176/ - - What The Zuck! | CR 175 - http://feedproxy.google.com/~r/coderradiomp3/~3/F9y-UcHlqEA/ - <p>Well known developers are trying out risky and bold methods to fund future development, but are they really all that practical? We debate.</p> - -<p>A massively popular app is using a dirty trick to stay in the background and consume battery. We ponder why it hasn’t been shut down already & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/F9y-UcHlqEA" height="1" width="1" alt=""/> - Mon, 19 Oct 2015 14:46:16 -0700 - - 918C4B6E-1154-42DA-A620-CEBFBB5190D7 - Jupiter Broadcasting - Well known devs are trying out risky and bold methods to fund development, but are they really all that practical? - -A popular app is using a dirty trick to stay in the background and consume battery. We ponder why it hasn’t been shut down already & more! - - no - 40:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/89391/what-the-zuck-cr-175/ - - Below the Surface | CR 174 - http://feedproxy.google.com/~r/coderradiomp3/~3/nqIhZaign8U/ - <p>The cultural challenges of living too far out of a “tech hotzone” hit home today. We discuss the recent revelations both of us have had. </p> - -<p>And our reactions and lessons learned from LastPass selling, if Microsoft has nailed convergence & the practicality of the Surface Book.</p> - -<p>Plus a quick chat about Chef & other automation platforms great for developers & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/nqIhZaign8U" height="1" width="1" alt=""/> - Mon, 12 Oct 2015 16:12:35 -0700 - - 98E5D157-5C89-452E-B6AB-D32B2FD620DC - Jupiter Broadcasting - The cultural challenges of living too far out of a “tech hotzone” hit home today. And our reactions and lessons learned from LastPass selling & if Microsoft has nailed convergence. - -Plus a quick chat about Chef & more! - - no - 56:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/89046/below-the-surface-cr-174/ - - Sun Setting on Java | CR 173 - http://feedproxy.google.com/~r/coderradiomp3/~3/P2U1bAxdACk/ - <p>A really simple mistake that many of us have made in the past, led to the Patreon hack. We discuss the situation & the bigger picture. </p> - -<p>Plus our take on the rumors that Oracle is planning the “obsolescence” of Java.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/P2U1bAxdACk" height="1" width="1" alt=""/> - Mon, 05 Oct 2015 20:29:22 -0700 - - 79E3483A-062B-4DE8-96B1-C8F70AF0FC8E - Jupiter Broadcasting - A really simple mistake that many of us have made in the past, led to the Patreon hack. We discuss the situation & the bigger picture. - -Plus our take on the rumors that Oracle is planning the “obsolescence” of Java. - - no - 52:22 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/88586/sun-setting-on-java-cr-173/ - - Advertising Cold War | CR 172 - http://feedproxy.google.com/~r/coderradiomp3/~3/sXHZLlUZM_Q/ - <p>Mike and Chris discuss malware getting injected into unsuspecting developers apps. Then the advertising cold war that’s brewing, how it impacts users, content creators & developers.</p> - -<p>Also our top three must haves before you sign any development work contract.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/sXHZLlUZM_Q" height="1" width="1" alt=""/> - Mon, 28 Sep 2015 22:03:18 -0700 - - 58171920-43F6-46B1-B847-7855EE4C8F06 - Jupiter Broadcasting - Mike and Chris discuss malware getting injected into unsuspecting developers apps. Then the advertising cold war that’s brewing, how it impacts users, content creators & developers. - -Also our top three must haves before you sign any dev work contract. - - no - 48:35 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/88231/advertising-cold-war-cr-172/ - - Coder Craftsmen | CR 171 - http://feedproxy.google.com/~r/coderradiomp3/~3/mLAVFH2nZz4/ - Mike shares his excitement for Ionic, an advanced HTML5 hybrid mobile app Framework. Then Chris asks if the tools used to make the product, as long as the end result is good, really matter?<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/mLAVFH2nZz4" height="1" width="1" alt=""/> - Fri, 18 Sep 2015 19:08:17 -0700 - - 19CF4DD2-9A45-4784-AAD9-1FDFD9AB46CB - Jupiter Broadcasting - Mike shares his excitement for Ionic, an advanced HTML5 hybrid mobile app Framework. Then Chris asks if the tools used to make the product, as long as the end result is good, really matter? - - no - 55:40 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/87916/coder-craftsmen-cr-171/ - - Apple Strokes The Tip | CR 170 - http://feedproxy.google.com/~r/coderradiomp3/~3/X3TJtnStdik/ - Is the new iPad a capable developer machine? We discuss 3D Touch, the impact on developers, the release of the iPad Pro & some quick tips for finding a local development job.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/X3TJtnStdik" height="1" width="1" alt=""/> - Mon, 14 Sep 2015 16:35:31 -0700 - - 244E93DD-6EC4-4DD9-8BD2-EF61493FEF94 - Jupiter Broadcasting - Is the new iPad a capable developer machine? We discuss 3D Touch, the impact on developers, the release of the iPad Pro & some quick tips for finding a local development job. - - no - 48:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/87656/apple-strokes-the-tip-cr-170/ - - Subscription Lock-in | CR 169 - http://feedproxy.google.com/~r/coderradiomp3/~3/J9PSCCqRN9M/ - With Mike’s move to Florida in progress he joins us via phone for a run through of the major JetBrains subscription hoopla, transitioning from a tester to a developer & that big poaching scandal comes to an expensive close!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/J9PSCCqRN9M" height="1" width="1" alt=""/> - Fri, 04 Sep 2015 11:00:52 -0700 - - 6528B724-4D50-4B25-B521-CC9CDF9909C8 - Jupiter Broadcasting - With Mike’s move to Florida in progress he joins us via phone for a run through of the major JetBrains subscription hoopla, transitioning from a tester to a developer & that big poaching scandal comes to an expensive close! - - no - 33:43 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/87291/subscription-lock-in-cr-169/ - - Template Driven Design | CR 168 - http://feedproxy.google.com/~r/coderradiomp3/~3/a6SvZGbh5lI/ - Is Amazon another paradise of brogrammer culture? We have reason to suspect the recent reports may be overblown. Then meet Gigster, the VC backed service that wants to commoditize development.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/a6SvZGbh5lI" height="1" width="1" alt=""/> - Mon, 24 Aug 2015 14:53:33 -0700 - - F441C811-87FE-4117-8B3F-49772C58E8F4 - Jupiter Broadcasting - Is Amazon another paradise of brogrammer culture? We have reason to suspect the recent reports may be overblown. Then meet Gigster, the VC backed service that wants to commoditize development. - - no - 48:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/86871/template-driven-design-cr-168/ - - The Price Isn't Right | CR 167 - http://feedproxy.google.com/~r/coderradiomp3/~3/GTlsR2laPSc/ - <p>Developers are excited by Google’s announcement that Android will support Vulkan. We explain what Vulkan is, the issues developers face around openGL, & why Mike is a bit skeptical.</p> - -<p>Plus market data suggest we’ve reached peak iPad & tablets are not selling. Is it worth creating anything but consumption based apps for tablets? We’ll debate.</p> - -<p>Plus some audience submitted topics, Apple’s 30% cut, feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/GTlsR2laPSc" height="1" width="1" alt=""/> - Fri, 14 Aug 2015 12:12:47 -0700 - - 32C32D81-D741-45B3-A085-17CC8F39302C - Jupiter Broadcasting - Devs are excited by Google’s announcement that Android will support Vulkan. We explain & why Mike is a bit skeptical. - -Has iPad peaked? Is it worth creating anything but consumption based apps for tablets? - -Plus Apple’s 30% cut, feedback & more! - - - no - 46:24 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/86537/the-price-isnt-right-cr-167/ - - Hamburger Non-Helper | CR 166 - http://feedproxy.google.com/~r/coderradiomp3/~3/R1YytgVtChA/ - The big debate over today’s biggest UI compromise comes to life, Microsoft open sources its iOS-apps-on-Windows compatibility layer, the process of evaluating a new language, plus a book recommendation & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/R1YytgVtChA" height="1" width="1" alt=""/> - Mon, 10 Aug 2015 15:21:00 -0700 - - 4883133A-383A-456A-9C3E-D3EE38F925E1 - Jupiter Broadcasting - The big debate over today’s biggest UI compromise comes to life, Microsoft open sources its iOS-apps-on-Windows compatibility layer, the process of evaluating a new language, plus a book recommendation & more! - - - no - 44:48 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/86362/hamburger-non-helper-cr-166/ - - .Net or .Not? | CR 165 - http://feedproxy.google.com/~r/coderradiomp3/~3/Ug_BK7sTiVU/ - Still smarting from his burn, Mike shares his hard learned lessons after flying too close to the sun. What really pushes us to move to the next big thing & becoming and staying employable by focusing on the right market.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Ug_BK7sTiVU" height="1" width="1" alt=""/> - Mon, 03 Aug 2015 15:34:42 -0700 - - 337DE2F0-AED2-4C74-8CF0-1F1E1F724922 - Jupiter Broadcasting - Still smarting from his burn, Mike shares his hard learned lessons after flying too close to the sun. What really pushes us to move to the next big thing & becoming and staying employable by focusing on the right market. - - no - 1:05:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/85952/net-or-not-cr-165/ - - Conditional Swift Justice | CR 164 - http://feedproxy.google.com/~r/coderradiomp3/~3/rIbb3dOUrrA/ - <p>Mike argues why the web is the default platform of the future, we debate if third party mobile platforms should be written off, first impressions of the Ionic Framework & Chris has a few surprises to announce.</p> - -<p>Plus our advice on leaving .Net, our response to ignoring the Pebble & why a slightly functional world isn't a bad thing.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/rIbb3dOUrrA" height="1" width="1" alt=""/> - Mon, 27 Jul 2015 15:24:30 -0700 - - A80D7885-18EE-4F6C-B52B-086A851C9D24 - Jupiter Broadcasting - Mike argues why the web will be the default platform, we debate if third party mobile platforms should be written off, Ionic Framework impressions & Chris has a few surprises to announce. - -Plus why a slightly functional world isn't a bad thing & more! - - no - 59:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/85617/conditional-swift-justice-cr-164/ - - Proprietary Stress Management | CR 163 - http://feedproxy.google.com/~r/coderradiomp3/~3/_rkF8HB7MBg/ - <p>A special edition of Coder Radio that dives into the darker side of start ups, the practicality of building super portable apps, the wear advantage & NASA’s top 10 coding commandments.</p> - -<p>Plus Noah from the Linux Action Show joins us, we cover some great feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/_rkF8HB7MBg" height="1" width="1" alt=""/> - Mon, 20 Jul 2015 17:25:52 -0700 - - 08A2E706-A643-42ED-8DE0-539B9B525C50 - Jupiter Broadcasting - A special edition of Coder Radio that dives into the darker side of start ups, the practicality of building super portable apps, the wear advantage & NASA’s top 10 coding commandments. - -Plus Noah from the Linux Action Show joins us & more! - - no - 57:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/85447/proprietary-stress-management-cr-163/ - - Wandering in the Woods | CR 162 - http://feedproxy.google.com/~r/coderradiomp3/~3/zCVajbiD_NY/ - We look at the tough spot developers are finding themselves in, the huge changes in backend infrastructure over the years, some Swift surprises & the big topics Mike’s been chewing on during his “down time”.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/zCVajbiD_NY" height="1" width="1" alt=""/> - Mon, 13 Jul 2015 14:24:51 -0700 - - CAF8F552-733A-4EC7-8D73-8A004C7750F4 - Jupiter Broadcasting - We look at the tough spot developers are finding themselves in, the huge changes in backend infrastructure over the years, some Swift surprises & the big topics Mike’s been chewing on during his “down time”. - - no - 40:54 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/85137/wandering-in-the-woods-cr-162/ - - Good Guy Mike | CR 161 - http://feedproxy.google.com/~r/coderradiomp3/~3/4NmFL_V69xU/ - Mike is recovering from a weekend you wouldn't believe. Plus we revisit the web vs native topic with a vengeance & discuss the sun-setting of ActiveX.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/4NmFL_V69xU" height="1" width="1" alt=""/> - Mon, 06 Jul 2015 16:25:32 -0700 - - 35AE8B47-E209-4075-816A-D556A1BF4796 - Jupiter Broadcasting - Mike is recovering from a weekend you wouldn't believe. Plus we revisit the web vs native topic with a vengeance & discuss the sun-setting of ActiveX. - - no - 53:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/84787/good-guy-mike-cr-161/ - - Developer Commodity | CR 160 - http://feedproxy.google.com/~r/coderradiomp3/~3/tdqj75WR1bw/ - <p>How willing is Apple to leverage it’s developers to make a public statement? We look at the response to the confederate flag pullings & we debate if any gatekeeper puts developers best interests first.</p> - -<p>Plus was the perfect laptop built a decade ago, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/tdqj75WR1bw" height="1" width="1" alt=""/> - Mon, 29 Jun 2015 16:52:35 -0700 - - 681EE0F6-75F2-4F6A-9BD1-260ED31A0701 - Jupiter Broadcasting - How willing is Apple to leverage it’s devs to make a public statement? We look at the response to the confederate flag pullings & debate if gatekeepers puts developers best interests first. - -Plus was the perfect laptop built a decade ago, feedback & more! - - no - 52:39 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/84397/developer-commodity-cr-160/ - - Hipster Tendencies | CR 159 - http://feedproxy.google.com/~r/coderradiomp3/~3/N6M7cu0N0zw/ - <p>Mike makes the case for Chris’ slide into hipsterhood & Chris responds in kind. Between those hijinks the guys discuss the massive LLVM advantage Apple is leveraging that nobody is talking about.</p> - -<p>Plus we reflect on the most important skill in software development, read some emails & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/N6M7cu0N0zw" height="1" width="1" alt=""/> - Mon, 22 Jun 2015 15:49:23 -0700 - - 0BAD5EB5-4CEA-4CF8-BDA7-4F02349BF842 - Jupiter Broadcasting - Mike makes the case for Chris’ slide into hipsterhood & Chris responds in kind. We also discuss the massive LLVM advantage Apple is leveraging. - -Plus we reflect on the most important skill in software development, read some emails & more! - - no - 51:59 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/84067/hipster-tendencies-cr-159/ - - Privileged Programmers | CR 158 - http://feedproxy.google.com/~r/coderradiomp3/~3/milKGcO-SCc/ - <p>Mike and Chris share their totally different perspective on the recent Yelp developer’s public exodus & discuss the big new industry trend developers need to take advantage of.</p> - -<p>Then after 158 episodes, Mike’s mission in life is realized during our feedback segment.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/milKGcO-SCc" height="1" width="1" alt=""/> - Mon, 15 Jun 2015 15:38:18 -0700 - - A9E17153-CF49-4E93-851E-F078688885B0 - Jupiter Broadcasting - Mike and Chris share their totally different perspective on the recent Yelp developer’s exodus & discuss the new industry trend developers need to take advantage of. - -Then after 158 episodes, Mike’s mission in life is realized during our feedback segment. - - no - 59:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/83707/privileged-programmers-cr-158/ - - Ahoy, El Capitan! | CR 157 - http://feedproxy.google.com/~r/coderradiomp3/~3/9TEOoxAJ0q4/ - <p>We recap and also compare & contrast WWDC 2015 with Google I/O 2015. Which new platform features stand out, which miss the target & what will really move the needle this year.</p> - -<p>Plus a quick update on Mike’s new company, Chris’ wear inspired surprise & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/9TEOoxAJ0q4" height="1" width="1" alt=""/> - Mon, 08 Jun 2015 16:21:13 -0700 - - 3FFD8AF3-6BA6-4462-A7A6-73E12D1AD213 - Jupiter Broadcasting - We recap and also compare & contrast WWDC 2015 with Google I/O 2015. Which new platform features stand out, which miss the target & what’ll really move the needle this year. - -Plus a quick update on Mike’s new company, Chris’ wear inspired surprise & more! - - no - 50:32 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/83427/ahoy-el-capitan-cr-157/ - - You're Gitting it Wrong | CR 156 - http://feedproxy.google.com/~r/coderradiomp3/~3/TTiwRz_qJRo/ - <p>Mike takes a victory lap as we discuss the big announcements from Google I/O. Then we get into a heated discussion around how GitHub should be used vs how most people use it.</p> - -<p>Plus some great feedback, Mike & Chris share some bold predictions & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/TTiwRz_qJRo" height="1" width="1" alt=""/> - Mon, 01 Jun 2015 17:50:05 -0700 - - 8B1E600F-03D5-45C9-9B64-4A1BB0757A89 - Jupiter Broadcasting - Mike takes a victory lap as we discuss the big announcements from Google I/O. Then we get into a heated discussion around how GitHub should be used vs how most people use it. - -Plus some great feedback, Mike & Chris share some bold predictions & more! - - no - 50:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/83087/youre-gitting-it-wrong-cr-156/ - - Google's Brillo Pad | CR 155 - http://feedproxy.google.com/~r/coderradiomp3/~3/FZnHcjxwf0U/ - <p>Google may be planning to scrub the grime away from the Internet of Things devices with a new operating system designed for low resources in mind.</p> - -<p>We debate what Google’s rumored Brillo OS would look like & the impact it could have on Canonicals big plans for Ubuntu Snappy.</p> - -<p>Plus Mike ponders switching to BSD, Google Play services in a library & GBA games in your browser.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/FZnHcjxwf0U" height="1" width="1" alt=""/> - Mon, 25 May 2015 15:23:10 -0700 - - 2CAD8DA9-CDDA-4A02-B9AC-9DC585117A75 - Jupiter Broadcasting - Google may be planning to scrub the grime away from the Internet of Things devices with a new OS designed for low resources. - -We debate over Google’s rumored Brillo OS. Plus Mike ponders switching to BSD, Google Play services in a library & more - - no - 57:59 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/82742/googles-brillo-pad-cr-155/ - - Chrome Took My Memory! | CR 154 - http://feedproxy.google.com/~r/coderradiomp3/~3/YOZkeGCO1dg/ - <p>Mike shares his recent experience developing Chrome apps & we debate if Chrome platform tax is costing users a decent browser. Is Chrome becoming the next Windows?</p> - -<p>Plus what we’d like to see announced next for Android and iOS & the big problems those features would solve for developers.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/YOZkeGCO1dg" height="1" width="1" alt=""/> - Fri, 22 May 2015 16:36:21 -0700 - - 1CC71F7F-3C6C-4A9C-9413-FFA83F5DCBDD - Jupiter Broadcasting - Mike shares his recent experience developing Chrome apps & we debate if Chrome platform tax is costing users a decent browser. - -Plus what we’d like to see announced next for Android and iOS & the big problems those features would solve for developers. - - no - 1:18:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/82557/chrome-took-my-memory-cr-154/ - - Bearded Buzzwords | CR 153 - http://feedproxy.google.com/~r/coderradiomp3/~3/-CZTHqVCdYU/ - <p>Electron could be the Adobe Air we all hoped for. At least Microsoft, Github, Docker, and others think so. But is it all hype? We debate Electron’s potential, and review Visual Studio Code which is built on-top of Electron.</p> - -<p>Has Agile become a failure? We discuss what can lead to a failed Agile development implementation, and some secrets to success.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/-CZTHqVCdYU" height="1" width="1" alt=""/> - Mon, 11 May 2015 19:07:50 -0700 - - FC5F4C2C-8693-453A-9089-140C12F767DB - Jupiter Broadcasting - Electron could be the Adobe Air we all hoped for. But is it all hype? We debate Electron’s potential & review Visual Studio Code which is built on-top of Electron. - -Has Agile become a failure? We discuss what can lead to a failed Agile setup & more! - - no - 1:03:55 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/81882/bearded-buzzwords-cr-153/ - - The Open Pivot | CR 152 - http://feedproxy.google.com/~r/coderradiomp3/~3/yNRmPJ1BFY8/ - <p>Mike and Chris reflect on Microsoft’s Build 2015 conference & discuss the undeniable shift to open industry wide. Mike also announces his new business with a focus on open source.</p> - -<p>Plus we discuss Visual Studio Code a bit, bad app ports, new ways for developers to make money & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/yNRmPJ1BFY8" height="1" width="1" alt=""/> - Mon, 04 May 2015 14:46:39 -0700 - - 0072C140-EDDB-414C-A09D-451044CAD3A1 - Jupiter Broadcasting - Mike and Chris reflect on Microsoft’s Build 2015 conference & discuss the shift to open industry wide. Mike also announces his new business with a focus on open source. - -Plus we discuss Visual Studio Code a bit, bad app ports, & more! - - no - 52:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/81462/the-open-pivot-cr-152/ - - Compromising Virtual Clouds | CR 151 - http://feedproxy.google.com/~r/coderradiomp3/~3/sG8jOHbXXq4/ - <p>Is Microsoft confusing the container market & blowing the implementation?</p> - -<p>Plus Apple gets caught rejecting Pebble compatible apps, we may have finally found the perfect Linux dev laptop & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/sG8jOHbXXq4" height="1" width="1" alt=""/> - Mon, 27 Apr 2015 21:12:27 -0700 - - 04146EFD-87B7-4FAE-A549-5BFAE2729523 - Jupiter Broadcasting - Is Microsoft confusing the container market & blowing the implementation? - -Plus Apple gets caught rejecting Pebble compatible apps, we may have finally found the perfect Linux dev laptop & much more! - - no - 1:01:49 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/81202/compromising-virtual-clouds-cr-151/ - - Interview Gauntlets of Pain | CR 150 - http://feedproxy.google.com/~r/coderradiomp3/~3/KAiR-1jd800/ - <p>Mike's thinking about making the big switch, a J.O.B., but the interview process has been a nightmare. He shares his perspective after sitting out of the race for a while.</p> - -<p>Plus how Google convinced their engineers to become managers, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/KAiR-1jd800" height="1" width="1" alt=""/> - Mon, 20 Apr 2015 15:27:44 -0700 - - 32E270B2-4517-402F-BFDF-5F900B86539B - Jupiter Broadcasting - Mike's thinking about making the big switch, a J.O.B., but the interview process has been a nightmare. He shares his perspective after sitting out of the race for a while. - -Plus how Google convinced their engineers to become managers, your feedback & more - - no - 42:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/80752/interview-gauntlets-of-pain-cr-150/ - - The Sociopath Code | CR 149 - http://feedproxy.google.com/~r/coderradiomp3/~3/dQUJpLL7kRI/ - We discuss the top stories submitted by the audience this week. From the ultimate bridge burn to Stack Overflow’s developer survey & being ok with a little sociopathy.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/dQUJpLL7kRI" height="1" width="1" alt=""/> - Mon, 13 Apr 2015 15:33:09 -0700 - - 483C4929-F17B-4BE2-99BB-BEC446CED486 - Jupiter Broadcasting - We discuss the top stories submitted by the audience this week. From the ultimate bridge burn to Stack Overflow’s developer survey & being ok with a little sociopathy. - - no - 49:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/80367/the-sociopath-code-cr-149/ - - Magical Contract Bids | CR 148 - http://feedproxy.google.com/~r/coderradiomp3/~3/vNsOOA4VToY/ - <p>Mike had a dream & that dream didn’t work out. Today we discuss how fixed contracts lead to fixed death & with perfect hindsight we debate what we might have done differently.</p> - -<p>Plus some great feedback, a little nostalgia & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/vNsOOA4VToY" height="1" width="1" alt=""/> - Mon, 06 Apr 2015 15:54:14 -0700 - - 96BB8136-F94D-45D9-B8D2-2F9C3A1AB217 - Jupiter Broadcasting - Mike had a dream & that dream didn’t work out. Today we discuss how fixed contracts lead to fixed death & with perfect hindsight we debate what we might have done differently. - -Plus some great feedback, a little nostalgia & more! - - no - 1:01:01 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/80047/magical-contract-bids-cr-148/ - - The Sonic Philosophy | CR 147 - http://feedproxy.google.com/~r/coderradiomp3/~3/3Ns0A3So56w/ - <p>Transitions in life comes in many forms, work, relationships, gadgets. How we deal with the process of transition is key & why we shouldn't be anxious about a transition, even if it’s a difficult one.</p> - -<p>Plus a bit about GitHub’s ongoing DDoS, switching from PHP to Ruby & a new contender for the perfect Linux dev rig.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/3Ns0A3So56w" height="1" width="1" alt=""/> - Mon, 30 Mar 2015 15:54:48 -0700 - - 203BF118-2E11-4996-80BC-8156924FA102 - Jupiter Broadcasting - Transitions in life comes in many forms, work, relationships, gadgets. How we deal with the process of transition is key. - -Plus a bit about GitHub’s ongoing DDoS, switching from PHP to Ruby & a new contender for the perfect Linux dev rig. - - no - 58:08 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/79642/the-sonic-philosophy-cr-147/ - - Open Source as a Trap | CR 146 - http://feedproxy.google.com/~r/coderradiomp3/~3/kFe2TOs6FJc/ - <p>It’s a special open mic edition of Coder Radio. We discuss the complex reasons behind Microsoft’s choice to open source MSBuild, the quest for the perfect Linux laptop continues & why, oh why, oh why HTML5 has a place.</p> - -<p>Plus emails & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/kFe2TOs6FJc" height="1" width="1" alt=""/> - Mon, 23 Mar 2015 15:07:44 -0700 - - 5BD08BD8-FB9C-4367-A998-0AB6CA55B72E - Jupiter Broadcasting - It’s a special open mic edition of Coder Radio. We discuss the complex reasons behind Microsoft’s choice to open source MSBuild, the quest for the perfect Linux laptop continues & why, oh why, oh why HTML5 has a place. - -Plus emails & more! - - no - 52:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/79347/open-source-as-a-trap-cr-146/ - - Why Mike's Disgusted by Android | CR 145 - http://feedproxy.google.com/~r/coderradiomp3/~3/1M7dRt5uUfc/ - <p>Chris shares what he’s loving about Android from a users perspective & Mike goes into what is driving him crazy from a developer's standpoint.</p> - -<p>Plus redefining DevOps, starting a multi-user database & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/1M7dRt5uUfc" height="1" width="1" alt=""/> - Mon, 16 Mar 2015 15:39:34 -0700 - - DC7FD002-D72B-43AC-9E84-57161DD8E79D - Jupiter Broadcasting - Chris shares what he’s loving about Android from a users perspective & Mike goes into what is driving him crazy from a developer's standpoint. - -Plus redefining DevOps, starting a multi-user database & more! - - no - 58:21 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/78932/why-mikes-disgusted-by-android-cr-145/ - - Apple Future vs Pebble Past | CR 144 - http://feedproxy.google.com/~r/coderradiomp3/~3/3UFjNEkk5qU/ - <p>We revisit some of the audience's favorite editors, then discuss the reality of terrible engineers.</p> - -<p>Then Chris spends the weekend with a smartwatch & believes he’s discovered their purpose. We examine the audience for smartwatch apps in light of the Apple Watch announcement today.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/3UFjNEkk5qU" height="1" width="1" alt=""/> - Mon, 09 Mar 2015 15:27:37 -0700 - - 5A087A82-F50B-4206-AFE8-6B29878B833C - Jupiter Broadcasting - We revisit some of the audience's favorite editors, then discuss terrible engineers. - -Then Chris spends time with a smartwatch & believes he’s discovered their purpose. We examine the audience for smartwatch apps in light of the Apple Watch announcement. - - no - 1:04:05 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/78497/apple-future-vs-pebble-past-cr-144/ - - Not My Problem | CR 143 - http://feedproxy.google.com/~r/coderradiomp3/~3/EVz2_LrlKA0/ - <p>The guys picture working a 9-5 job. If the security of a 9-5 paycheck is a myth, is it really just not having to worry about all the little things that's so appealing?</p> - -<p>Plus how merit based hiring could get out of control & making documentation a bit less evil.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/EVz2_LrlKA0" height="1" width="1" alt=""/> - Mon, 02 Mar 2015 14:13:45 -0800 - - 689B8867-CC14-424D-965D-8F1FD9103BF8 - Jupiter Broadcasting - The guys picture working a 9-5 job. If the security of a 9-5 paycheck is a myth, is it really just not having to worry about all the little things that’s appealing? - -Plus how merit based hiring may get out of control & making documentation a bit less evil - - no - 34:07 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/78127/not-my-problem-cr-143/ - - Accounts Percievable | CR 142 - http://feedproxy.google.com/~r/coderradiomp3/~3/j8t5s7C-wjs/ - <p>Mike and Chris start the show by sharing some hard learned advice, and discussing the events of the last two weeks.</p> - -<p>Then we touch on SuperFish, Ubuntu Touch, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/j8t5s7C-wjs" height="1" width="1" alt=""/> - Mon, 23 Feb 2015 15:19:09 -0800 - - DBCE5EFC-A69D-4812-977D-8C781A7FE823 - Jupiter Broadcasting - Mike and Chris start the show by sharing some hard learned advice, and discussing the events of the last two weeks. - -Then we touch on SuperFish, Ubuntu Touch, and more! - - no - 46:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/77837/accounts-percievable-cr-142/ - - Retro Extravaganza | CR 141 - http://feedproxy.google.com/~r/coderradiomp3/~3/vUvzif2JXgI/ - Join us as we hop in our time machine and revisit some past topics on the coder radio program.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/vUvzif2JXgI" height="1" width="1" alt=""/> - Mon, 16 Feb 2015 16:47:11 -0800 - - B9EFB213-8D18-4C79-BAA0-09C9CF54E599 - Jupiter Broadcasting - Join us as we hop in our time machine and revisit some past topics on the coder radio program. - - no - 1:09:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/77422/retro-extravaganza-cr-141/ - - NOde | CR 140 - http://feedproxy.google.com/~r/coderradiomp3/~3/jBswp7HwCb8/ - Can’t we all just settle down & focus? Mike’s just about had it with javascript framework madness. Plus could Microsoft be uniquely positioned to take advantage of the eventual die off of some frameworks?<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/jBswp7HwCb8" height="1" width="1" alt=""/> - Mon, 09 Feb 2015 15:21:22 -0800 - - AD64F8E4-0D4C-4FC8-BB39-65555FE95358 - Jupiter Broadcasting - Can’t we all just settle down & focus? Mike’s just about had it with javascript framework madness. Plus could Microsoft be uniquely positioned to take advantage of the eventual die off of some frameworks? - - no - 55:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/77022/node-cr-140/ - - Windows in the Pi | CR 139 - http://feedproxy.google.com/~r/coderradiomp3/~3/yHDV29QpMYE/ - <p>Mike is stuck in a train, stuck in the snow. So it’s an open call edition, with some great discussion around Microsoft’s investment in Cyanogen & the pitch for Python.</p> - -<p>Plus a robust chat about the new Raspberry Pi 2 & it’s ability to run Windows 10.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/yHDV29QpMYE" height="1" width="1" alt=""/> - Mon, 02 Feb 2015 15:57:03 -0800 - - 2E528A8F-D230-4837-9211-43D3881EF256 - Jupiter Broadcasting - Mike is stuck in a train, stuck in the snow. So it’s an open call edition, with some great discussion around Microsoft’s investment in Cyanogen & the pitch for Python. - -Plus a robust chat about the new Raspberry Pi 2 & it’s ability to run Windows 10. - - no - 50:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/76672/windows-in-the-pi-cr-139/ - - Deploy Like an Animal | CR 138 - http://feedproxy.google.com/~r/coderradiomp3/~3/8kwcsLv9UjI/ - <p>It’s a tip show edition of Coder Radio. Mike shares a great way to get some Heroku features without the bill.</p> - -<p>Plus the annoying honeymoon period, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/8kwcsLv9UjI" height="1" width="1" alt=""/> - Mon, 26 Jan 2015 16:00:23 -0800 - - F4D0EC40-C128-452E-9F3D-692A2A285DF1 - Jupiter Broadcasting - It’s a tip show edition of Coder Radio. Mike shares a great way to get some Heroku features without the bill. - -Plus the annoying honeymoon period, your feedback & more! - - no - 46:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/76247/deploy-like-an-animal-cr-138/ - - Monumental Android Failure | CR 137 - http://feedproxy.google.com/~r/coderradiomp3/~3/MuM0zUPRiIQ/ - <p>Well known developers have recently gone public with how much they make & where they make it from. Mike & Chris chew on the numbers & discuss the raw reality.</p> - -<p>Plus great feedback on Chris’ first development language & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/MuM0zUPRiIQ" height="1" width="1" alt=""/> - Mon, 19 Jan 2015 15:20:52 -0800 - - A692EA16-7979-44D7-B431-416C911597FD - Jupiter Broadcasting - Well known developers have recently gone public with how much they make & where they make it from. Mike & Chris chew on the numbers & discuss the raw reality. - -Plus great feedback on Chris’ first development language & more! - - no - 49:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/75807/monumental-android-failure-cr-137/ - - Ruby is not Perl | CR 136 - http://feedproxy.google.com/~r/coderradiomp3/~3/C9EjWnbE0Sw/ - <p>Chris shares what’s prevented him from getting started with development & shares the three languages that are at the top of his list to try.</p> - -<p>Plus we get passionate after some feedback to the Mac Exodus topic & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/C9EjWnbE0Sw" height="1" width="1" alt=""/> - Mon, 12 Jan 2015 19:42:48 -0800 - - E44535AC-A5AE-43E9-85C7-57B9131F0772 - Jupiter Broadcasting - Chris shares what’s prevented him from getting started with development & shares the three languages that are at the top of his list to try. - -Plus we get passionate after some feedback to the Mac Exodus topic & more! - - no - 56:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/75382/ruby-is-not-perl-cr-136/ - - Macs Exodus | CR 135 - http://feedproxy.google.com/~r/coderradiomp3/~3/C_C5WAQWejA/ - <p>Is the quality of Apple’s desktop and mobile software causing a slow bleeding of developers? Chris & Mike debate what developers will do over 2015.</p> - -<p>Plus we read some great follow up, feature a community project & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/C_C5WAQWejA" height="1" width="1" alt=""/> - Mon, 05 Jan 2015 17:06:14 -0800 - - 42E6B879-45A4-4D9E-B00C-C75FF9747BBD - Jupiter Broadcasting - Is the quality of Apple’s desktop and mobile software causing a slow bleeding of developers? Chris & Mike debate what developers will do over 2015. - -Plus we read some great follow up, feature a community project & more! - - no - 53:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/74902/macs-exodus-cr-135/ - - Fair And Balanced | CR 134 - http://feedproxy.google.com/~r/coderradiomp3/~3/cChcryPNp0Q/ - <p>Mike is fired up by a topic that has been on fire over all of 2014. </p> - -<p>Is it finally time to let the other 95% of great programmers in?</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/cChcryPNp0Q" height="1" width="1" alt=""/> - Mon, 29 Dec 2014 14:25:56 -0800 - - 520A6505-C04D-413C-AC1B-BBDE7209ADC7 - Jupiter Broadcasting - Mike is fired up by a topic that has been on fire over all of 2014. - -Is it finally time to let the other 95% of great programmers in? - - no - 50:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/74517/fair-and-balanced-cr-134/ - - Best Of Coder Radio 2014 | CR 133 - http://feedproxy.google.com/~r/coderradiomp3/~3/kGOZztobfbc/ - We peer into the past of the show to pull out the amazing clips you guys suggested to us and fondly remember how funny it is to listen to Chris get trolled. Sit back, relax & enjoy the fun in this look back at best of Coder Radio!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/kGOZztobfbc" height="1" width="1" alt=""/> - Mon, 22 Dec 2014 12:40:51 -0800 - - 7131D589-3C32-4D84-987F-1DC1551300A5 - Jupiter Broadcasting - We peer into the past of the show to pull out the amazing clips you guys suggested to us and fondly remember how funny it is to listen to Chris get trolled. Sit back, relax & enjoy the fun in this look back at best of Coder Radio! - - no - 1:07:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/74337/best-of-coder-radio-2014-cr-133/ - - Git your Pizza | CR 132 - http://feedproxy.google.com/~r/coderradiomp3/~3/LDhoCGqdjH8/ - It’s the birth of another open source project live on this week’s Coder Radio. Plus it’s an open mic edition & we discuss a wide range of topics from Microsoft’s big mobile strategy that nobody is noticing, the best Linux development environment, setting expectations, your feedback & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/LDhoCGqdjH8" height="1" width="1" alt=""/> - Mon, 15 Dec 2014 19:26:56 -0800 - - 7120C260-3E70-4E87-8015-C79730797DA5 - Jupiter Broadcasting - It’s the birth of ab open source project on this week’s Coder Radio. Plus it’s an open mic edition & we discuss a range of topics from Microsoft’s big mobile strategy that nobody is noticing, the best Linux dev environment, setting expectations & more! - - no - 58:05 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/73887/git-your-pizza-cr-132/ - - Dock Your Rocket | CR 131 - http://feedproxy.google.com/~r/coderradiomp3/~3/2oqf-oThO1c/ - <p>Has Docker’s wild success caused it grow too big & too corporate? In light of the CoreOS project’s announcement of Rocket we’ll reflect on the big problem both projects needs to solve.</p> - -<p>Plus our plans to involve community around building an API for Jupiter Broadcasting, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/2oqf-oThO1c" height="1" width="1" alt=""/> - Mon, 08 Dec 2014 15:22:47 -0800 - - 2E9EF498-19A1-42E9-8E84-B1A2C3A383C9 - Jupiter Broadcasting - Has Docker’s wild success caused it grow too big & too corporate? In light of the CoreOS Rocket announcement we reflect on the problem both projects needs to solve. Plus our plans to involve community around building an API for Jupiter Broadcasting & more - - no - 41:29 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/73207/dock-your-rocket-cr-131/ - - Get Back to the '50s | CR 130 - http://feedproxy.google.com/~r/coderradiomp3/~3/7o4631Zjhzo/ - That tech worker “shortage” Facebook and Microsoft keep telling you about is bogus. We’ll go over the study and reports that back that claim up. Then we dig into the rather understandable reasons why developers wages are being pushed down & more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/7o4631Zjhzo" height="1" width="1" alt=""/> - Mon, 01 Dec 2014 16:31:32 -0800 - - D73730EE-6E09-4652-B6D7-4ABF6073EE86 - Jupiter Broadcasting - That tech worker “shortage” Facebook and Microsoft keep telling you about is bogus. We’ll go over the study and reports that back that claim up. Then we dig into the rather understandable reasons why developers wages are being pushed down & more! - - no - 1:04:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/72752/get-back-to-the-50s-cr-130/ - - Google's Objective C | CR 129 - http://feedproxy.google.com/~r/coderradiomp3/~3/DkgT7lGToiE/ - <p>It’s a special roundtable edition of Coder Radio. Our panel discussed the advantages of Go development over PHP, creating a flat-file website with no database, and the real secret to finishing that last 10%.</p> - -<p>Then we discuss the black magic Google is using to share 70% of their new Inbox’s apps code across the Web, Android, and iOS. And if Google’s new approach is a quiet condemnation of HTML5 applications.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/DkgT7lGToiE" height="1" width="1" alt=""/> - Mon, 24 Nov 2014 16:41:07 -0800 - - 0386C0F3-342C-4434-BEAA-47AC8562B1CB - Jupiter Broadcasting - It’s a special roundtable edition of Coder Radio. Our panel discussed the advantages of Go development over PHP, creating a flat-file website with no database, and the real secret to finishing that last 10%. Plus google not using html5, iOS & more! - - no - 1:01:35 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/72247/googles-objective-c-cr-129/ - - .NET’s Open Future | CR 128 - http://feedproxy.google.com/~r/coderradiomp3/~3/6oMLpabI_6A/ - <p>Microsoft made headlines and has generated a lot of buzz around the open sourcing of .NET. So what does the future hold & what changes now? And why this could be more about what it says about Microsoft, than anything else.</p> - -<p>Plus some great feedback, how to find a developer, what to expect to pay & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/6oMLpabI_6A" height="1" width="1" alt=""/> - Mon, 17 Nov 2014 17:05:41 -0800 - - 373F9B83-DFBB-4F93-ADC4-4F54B25B303C - Jupiter Broadcasting - Microsoft made headlines and has generated a lot of buzz around the open sourcing of .NET. So what does the future hold & what changes now? - -Plus some great feedback, how to find a developer, what to expect to pay & much more! - - no - 55:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/71667/nets-open-future-cr-128/ - - The Gorilla in the Stack | CR 127 - http://feedproxy.google.com/~r/coderradiomp3/~3/1CGLU0toQZA/ - <p>Mike and Chris respond to feedback on lackluster HTML5 apps, then how developers can leverage social media to stay up to date & avoid drama. </p> - -<p>Then we blow apart the “Full Stack Developer” myth and the evolution of the term.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/1CGLU0toQZA" height="1" width="1" alt=""/> - Mon, 10 Nov 2014 15:59:14 -0800 - - 94063E83-6E80-446E-A268-08ED5C5924E3 - Jupiter Broadcasting - Mike and Chris respond to feedback on lackluster HTML5 apps, then how developers can leverage social media to stay up to date & avoid drama. - -Then we blow apart the “Full Stack Developer” myth and the evolution of the term. - - no - 51:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/71072/the-gorilla-in-the-stack-cr-127/ - - HTML5: Back To The Future | CR 126 - http://feedproxy.google.com/~r/coderradiomp3/~3/FavgDAxD3fU/ - <p>Is the need to save money & time by developers forcing end users into less than acceptable application experiences? Have we all been oversold on HTML5? </p> - -<p>Plus getting into QA, a cloud based IDE, some great feedback & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/FavgDAxD3fU" height="1" width="1" alt=""/> - Mon, 03 Nov 2014 15:33:48 -0800 - - 77B1943D-5706-4DE3-AC77-AF899C52B362 - Jupiter Broadcasting - Is the need to save money & time by developers forcing end users into less than acceptable application experiences? Have we all been oversold on HTML5? - -Plus getting into QA, a cloud based IDE, some great feedback & much more! - - no - 53:48 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/70567/html5-back-to-the-future-cr-126/ - - Behind the Schemes | CR 125 - http://feedproxy.google.com/~r/coderradiomp3/~3/OT7wAe2WFVw/ - <p>Mike and Chris go meta & discuss their thoughts about the state of Coder Radio, some ideas to mix it up & request your input.</p> - -<p>Then we dig into a revealing support chat between an Android developer & the manager for Google Play Developer Support that finally gives us some real insight into the public address debacle.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/OT7wAe2WFVw" height="1" width="1" alt=""/> - Mon, 27 Oct 2014 21:24:20 -0700 - - B7C7E73B-B6F6-4C28-9E15-6863C428FD7D - Jupiter Broadcasting - Mike and Chris & discuss their thoughts about the state of Coder Radio, some ideas to mix it up & request your input. Then we cover a support chat between an Android dev & the Google Play Dev Support manager that gives us insight into the address debacle. - - no - 58:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/69997/behind-the-schemes-cr-125/ - - Underwhelming Apple | CR 124 - http://feedproxy.google.com/~r/coderradiomp3/~3/x7N4TbkUOFU/ - We have a bunch of great feedback that keeps getting interrupted by Chris and Mike jumping into deep discussion about vendor lock in, Apple’s new hardware, balancing work and life & much more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/x7N4TbkUOFU" height="1" width="1" alt=""/> - Mon, 20 Oct 2014 14:47:24 -0700 - - D915D155-1404-4AF5-9B28-CF4BDD4E5BE6 - Jupiter Broadcasting - We have a bunch of great feedback that keeps getting interrupted by Chris and Mike jumping into deep discussion about vendor lock in, Apple’s new hardware, balancing work and life & much more! - - no - 1:00:30 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/?p=69637 - - Coder Inquisition | CR 123 - http://feedproxy.google.com/~r/coderradiomp3/~3/bdPGIVAL8G4/ - <p>Mike and Chris battle wits to expose the ridiculous nature of arguing about technology on the Internet, and this discuss why developers and enthusiasts get caught up in this mess.</p> - -<p>Plus our take on working on open source in your spare time, an update on teaching students to code & a software pick that will make you hungry!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/bdPGIVAL8G4" height="1" width="1" alt=""/> - Mon, 13 Oct 2014 15:16:03 -0700 - - 2E9D137B-078E-4B93-9C77-B9A3FF93C6B3 - Jupiter Broadcasting - Mike and Chris battle wits to expose the ridiculous nature of arguing about technology on the Internet. Plus our take on working on open source in your spare time, an update on teaching students to code & a software pick that will make you hungry! - - no - 45:22 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/69117/coder-inquisition-cr-123/ - - A Cult of Personality Tests | CR 122 - http://feedproxy.google.com/~r/coderradiomp3/~3/jtJ2jsspzk4/ - Mike and Chris discuss what to do when a client or employer requests you take a personality test. The reasons Microsoft is calling the next version of Windows 10, the recent cases of community going sour & the lessons learned for developers<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/jtJ2jsspzk4" height="1" width="1" alt=""/> - Mon, 06 Oct 2014 16:41:48 -0700 - - 9ED7EB45-28E2-4AB8-A79D-370CE6411535 - Jupiter Broadcasting - Mike and Chris discuss what to do when a client or employer requests you take a personality test. The reasons Microsoft is calling the next version of Windows 10, the recent cases of community going sour & the lessons learned for developers - - no - 47:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/68302/a-cult-of-personality-tests-cr-122/ - - Doxing Developers | CR 121 - http://feedproxy.google.com/~r/coderradiomp3/~3/2GLOOMYshzc/ - <p>Google is requiring developers to submit their physical address, and the Apple community has outed the manager behind the botched iOS 8.0.1 update. Are we seeing a dangerous threat or just a frantic response?</p> - -<p>Plus some great questions, when to lawyer up & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/2GLOOMYshzc" height="1" width="1" alt=""/> - Mon, 29 Sep 2014 15:28:39 -0700 - - 77437A6F-E930-4CA8-BAE9-4ED6C6700EDD - Jupiter Broadcasting - Google is requiring debs to submit their physical address, and the Apple community has outed the manager behind the botched iOS 8.0.1 update. Are we seeing a dangerous threat or just a frantic response? Plus great questions, when to lawyer up & much more! - - no - 50:43 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/67842/doxing-developers-cr-121/ - - Xamarin Sham | CR 120 - http://feedproxy.google.com/~r/coderradiomp3/~3/MCrBaxV1X8c/ - <p>Developers all over the web are chiming in on the short comings (or lack there of) of Xamarin’s tools. Have developers been sold a hope and a lie?</p> - -<p>Plus why Android continues to come in second for developers, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/MCrBaxV1X8c" height="1" width="1" alt=""/> - Mon, 22 Sep 2014 16:00:28 -0700 - - 0863F37A-D6BB-4C3C-B4D2-B0C617CA616F - Jupiter Broadcasting - Developers all over the web are chiming in on the short comings (or lack there of) of Xamarin’s tools. Have developers been sold a hope and a lie? - -Plus why Android continues to come in second for developers, your feedback & more! - - no - 46:03 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/67342/xamarin-sham-cr-120/ - - Notch Escapes | Coder Radio 119 - http://feedproxy.google.com/~r/coderradiomp3/~3/d5I1HUG9sXo/ - <p>Did Microsoft buying Mojang come around because Notch was burned out? Is the problem systemic to independent developers who just love to code?</p> - -<p>Plus we respond to your strong feedback regarding privacy & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/d5I1HUG9sXo" height="1" width="1" alt=""/> - Mon, 15 Sep 2014 14:43:59 -0700 - - 86C3D5CD-9FED-4DF7-92F1-B099C128D420 - Jupiter Broadcasting - Did Microsoft buying Mojang come around because Notch was burned out? Is the problem systemic to independent developers who just love to code? - -Plus we respond to your strong feedback regarding privacy & much more! - - no - 45:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/66797/notch-escapes-cr-119/ - - Privacy is a Myth | CR 118 - http://feedproxy.google.com/~r/coderradiomp3/~3/bQ87_HzKFsE/ - <p>The debate over whose responsibility it is to protect your cloud data heats up, we discuss how to get your confidence back & some Vala feedback.</p> - -<p>Plus the recent Markdown drama, the systemd hater club & much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/bQ87_HzKFsE" height="1" width="1" alt=""/> - Mon, 08 Sep 2014 15:31:12 -0700 - - F523A03E-26D7-4ABC-B4F8-8A79FEAB82AA - Jupiter Broadcasting - The debate over whose responsibility it is to protect your cloud data heats up, we discuss how to get your confidence back & some Vala feedback. - -Plus the recent Markdown drama, the systemd hater club & much more! - - no - 48:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/66337/privacy-is-a-myth-cr-118/ - - Fools Aren't Protected | CR 117 - http://feedproxy.google.com/~r/coderradiomp3/~3/fJ2w_JjMKqI/ - We take live calls, and discuss why .Net rules a Linux Admins life, learning OOP. Then, in light of the recent celebrity photo hacks, do developers have a moral obligation to protect the uninformed public?<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/fJ2w_JjMKqI" height="1" width="1" alt=""/> - Tue, 02 Sep 2014 16:06:41 -0700 - - C76AC30B-DB04-425B-8B98-D4EE559292A2 - Jupiter Broadcasting - We take live calls, and discuss why .Net rules a Linux Admins life, learning OOP. Then, in light of the recent celebrity photo hacks, do developers have a moral obligation to protect the uninformed public? - - no - 59:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/65787/fools-arent-protected-cr-117/ - - DOM Be Gone | CR 116 - http://feedproxy.google.com/~r/coderradiomp3/~3/2ZeepkKNh6c/ - Mike and Chris follow up on the TypeScript and JavaScript discussion from last week after a lot of you jumped to the defense of JavaScript. Plus the guys discuss why the phrase “work-life-balance” feels cheap & how each of us have to figure it all out for ourselves.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/2ZeepkKNh6c" height="1" width="1" alt=""/> - Mon, 25 Aug 2014 15:25:00 -0700 - - C68C5710-F628-4514-814C-D6587E937011 - Jupiter Broadcasting - Mike and Chris follow up on the TypeScript and JavaScript discussion from last week after a lot of you jumped to the defense of JavaScript. Plus we discuss why the phrase “work-life-balance” feels cheap & how each of us have to figure it out for ourselves - - no - 41:41 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/65387/dom-be-gone-cr-116/ - - The Scripting Chronicles | CR 115 - http://feedproxy.google.com/~r/coderradiomp3/~3/f33htlV1F2I/ - <p>Where does TypeScript fit in, and are the many criticisms lobbied at it legitimate? We discuss the state of scripting, and the new dark pragmatism that seems to be setting in.</p> - -<p>Plus picking your ideal client, package managers for Windows and Mac, your feedback & more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/f33htlV1F2I" height="1" width="1" alt=""/> - Mon, 18 Aug 2014 14:14:15 -0700 - - 2083052E-6D7A-4E43-9C36-EB0BF7CE9FA8 - Jupiter Broadcasting - Where does TypeScript fit in, and are the many criticisms lobbied at it legitimate? We discuss the state of scripting, and the new dark pragmatism that seems to be setting in. - -Plus picking your ideal client, package managers for Windows and Mac & more! - - no - 43:44 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/64822/the-scripting-chronicles-cr-115/ - - Contrarian Contracting | CR 114 - http://feedproxy.google.com/~r/coderradiomp3/~3/o0jmkhhBXHk/ - <p>Mike and Chris share their perspective on successfully cultivating a contact development business, and from their experience, the biggest gotchas that hurt the most.</p> - -<p>Plus hosting on your own vs shared services, a little Dart love, and the Linux user who bought a Mac.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/o0jmkhhBXHk" height="1" width="1" alt=""/> - Mon, 11 Aug 2014 15:17:06 -0700 - - CC0A3722-1A4A-4DCF-9C03-D341B2CB34B7 - Jupiter Broadcasting - Mike and Chris share their perspective on successfully cultivating a contact development business, and the biggest gotchas that hurt the most. - -Plus hosting on your own vs shared services, a little Dart love & the Linux user who bought a Mac. - - no - 50:08 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/64302/contrarian-contracting-cr-114/ - - Corner of Shame | CR 113 - http://feedproxy.google.com/~r/coderradiomp3/~3/tRMIF4DGhvY/ - <p>Mike and Chris record a bonus episode of Coder Radio for you this week. We discuss the possibility of Steam selling productivity apps for Desktop Linux, how Overcast.fm could set the trend for future mobile apps, and Chris shares his thoughts about his new Oculus Rift DK2.</p> - -<p>Plus you great feedback, some follow up and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/tRMIF4DGhvY" height="1" width="1" alt=""/> - Fri, 08 Aug 2014 12:20:46 -0700 - - A8D0A3FE-5DD9-4FF1-96DC-100C773E90B4 - Jupiter Broadcasting - Mike and Chris record a bonus episode of Coder Radio for you this week. We discuss the possibility of Steam selling productivity apps for Desktop Linux, how Overcast.fm could set the trend for future mobile apps, and thoughts about the Oculus Rift DK2. - - no - 52:17 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/64152/corner-of-shame-cr-113/ - - The Xamarin Solution | CR 112 - http://feedproxy.google.com/~r/coderradiomp3/~3/JD6kzwATewo/ - <p>Mike discusses what his business has noted after using Xamarin and Xamarin.Forms. Plus we bust some myths, discuss use cases and advantages, the disadvantages. </p> - -<p>Plus you great feedback, some follow up and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/JD6kzwATewo" height="1" width="1" alt=""/> - Mon, 04 Aug 2014 15:21:41 -0700 - - 27F9829C-BD12-4D33-9D3D-028A1CE9E0B8 - Jupiter Broadcasting - Mike discusses what his business has noted after using Xamarin and Xamarin.Forms. Plus we bust some myths, discuss use cases and advantages, the disadvantages. - -Plus you great feedback, some follow up and more! - - no - 1:03:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/63792/the-xamarin-solution-cr-112/ - - Microsoft's Culture Anchor | Coder Radio 111 - http://feedproxy.google.com/~r/coderradiomp3/~3/Mm6Crc7oLJQ/ - <p>Chris makes the case for splitting Microsoft up into a consumer and services split, and why that would be the best possible outcome for developers.</p> - -<p>Plus some great feedback, more on selling free software and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Mm6Crc7oLJQ" height="1" width="1" alt=""/> - Mon, 21 Jul 2014 15:40:11 -0700 - - 48410383-F1A8-49E8-A2EF-2AA4A818CC87 - Jupiter Broadcasting - Chris makes the case for splitting Microsoft up into a consumer and services split, and why that would be the best possible outcome for developers. - -Plus some great feedback, more on selling free software and more! - - no - 44:28 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/62802/microsofts-culture-anchor-coder-radio-111/ - - Manual Design | CR 110 - http://feedproxy.google.com/~r/coderradiomp3/~3/s_1b79tmvIo/ - <p>Have Interface designers led us down a false path? Why is it when heavy lifting is needed our tools still fall short in 2014? Mike discusses the shortcomings of some of our favorite tools, who is on the right track, and what the real solution seems to be.</p> - -<p>Plus some great feedback and Chris begins a new kind of challenge.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/s_1b79tmvIo" height="1" width="1" alt=""/> - Mon, 14 Jul 2014 14:42:37 -0700 - - 8BE487C7-8296-4C42-9AF1-EFE9F1B1CE98 - Jupiter Broadcasting - Have Interface designers led us down a false path? Mike discusses the shortcomings of some of our favorite tools, who is on the right track, and what the real solution seems to be. - -Plus some great feedback and Chris begins a new kind of challenge. - - no - 49:22 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/62257/manual-design-cr-110/ - - Go Big or Go Lean! | CR 109 - http://feedproxy.google.com/~r/coderradiomp3/~3/EvH3md3sAoo/ - <p>Mike reflects on his transition from dedicated developer to business management, what makes a business “big” vs “lean” and what the guys feel is a good fit for their goals.</p> - -<p>Plus when to cut yourself off from a pet coding project, a book that promises to help you pick a Javascript Framework and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/EvH3md3sAoo" height="1" width="1" alt=""/> - Mon, 07 Jul 2014 14:03:14 -0700 - - 0B1A1C79-B29E-4715-9B60-DED038FA3749 - Jupiter Broadcasting - Mike reflects on his transition from dedicated developer to business management, what makes a business “big” vs “lean” and what the guys feel is a good fit for their goals. - -Plus when to cut yourself off from a pet coding project and more! - - no - 41:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/61767/go-big-or-go-lean-cr-109/ - - Materially Excited | CR 108 - http://feedproxy.google.com/~r/coderradiomp3/~3/9B2T1CjvFFI/ - <p>Mike and Chris cover some great follow up on new hotness burnout. Then we discuss what impressed us and what tempers our excitement from Google I/O 2014. </p> - -<p>Plus why AndroidOne could be the Android of the future and a quick chat about Rust.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/9B2T1CjvFFI" height="1" width="1" alt=""/> - Mon, 30 Jun 2014 14:17:33 -0700 - - 5AD5EA4F-41F7-46CA-9E2D-55D7C30938DB - Jupiter Broadcasting - Mike and Chris cover some great follow up on new hotness burnout. Then we discuss what impressed us and what tempers our excitement from Google I/O 2014. - -Plus why AndroidOne could be the Android of the future and a quick chat about Rust. - - no - 43:09 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/61182/materially-excited-cr-108/ - - New Hotness Exhaustion | CR 107 - http://feedproxy.google.com/~r/coderradiomp3/~3/vtsCsJSCJcM/ - <p>Mike ponders if we can trust ourselves to walk the line between comfort, laziness and experience? </p> - -<p>Plus you great feedback, a few more I/O thoughts and a framework you can take home to mom.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/vtsCsJSCJcM" height="1" width="1" alt=""/> - Mon, 23 Jun 2014 14:51:58 -0700 - - 4749B169-D291-4C4F-B649-6349F3211F7A - Jupiter Broadcasting - Mike ponders if we can trust ourselves to walk the line between comfort, laziness and experience? - -Plus you great feedback, a few more I/O thoughts and a framework you can take home to mom. - - no - 52:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/60532/new-hotness-exhaustion-cr-107/ - - Bathroom Marketing | CR 106 - http://feedproxy.google.com/~r/coderradiomp3/~3/BBHqDmTjP-4/ - <p>Our top 10 hopes and expectations from Google I/O 2014. Is this the year Google pushes developers on design, will Google+ take a backseat and more.</p> - -<p>Plus our followup includes the challenges facing openGL, why the Nexus program will die, coping with information overload and getting your confidence back.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/BBHqDmTjP-4" height="1" width="1" alt=""/> - Mon, 16 Jun 2014 15:05:57 -0700 - - 843D2391-E0D8-49CF-A62B-DC3DB7BF4A3C - Jupiter Broadcasting - Our top 10 hopes from Google I/O 2014. Is this the year Google pushes developers on design, will Google+ take a backseat? - -Plus: The challenges facing openGL, why the Nexus program will die, coping with information overload & getting your confidence back. - - no - 49:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/60042/bathroom-marketing-cr-106/ - - The Problem with GitHub | CR 105 - http://feedproxy.google.com/~r/coderradiomp3/~3/spyvHoT7OQ4/ - <p>Mike shares his experience moving from GitHub to a self hosted GitLab installation and the benefits his team realized after making the move.</p> - -<p>Plus we’ll take a look at the new Docker announcements, your feedback and some surprise followup!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/spyvHoT7OQ4" height="1" width="1" alt=""/> - Mon, 09 Jun 2014 15:13:06 -0700 - - 9494D15C-C79A-4F87-AFEA-95239CA49206 - Jupiter Broadcasting - Mike shares his experience moving from GitHub to a self hosted GitLab installation and the benefits his team realized after making the move. - -Plus we’ll take a look at the new Docker announcements, your feedback and some surprise followup! - - no - 49:18 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/59542/the-problem-with-github-cr-105/ - - Swift exit for Obj-C | CR 104 - http://feedproxy.google.com/~r/coderradiomp3/~3/Ff7xlkUq3c0/ - Mike and Chris share their raw reactions from Apple’s WWDC Keynote, including Mike’s big concerns about Swift.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Ff7xlkUq3c0" height="1" width="1" alt=""/> - Mon, 02 Jun 2014 14:53:51 -0700 - - E6E44AB1-F5A8-4474-98F6-FCF83D00BBE4 - Jupiter Broadcasting - Mike and Chris share their raw reactions from Apple’s WWDC Keynote, including Mike’s big concerns about Swift. - - no - 27:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/58787/swift-exit-for-obj-c-cr-104/ - - WWDC Predictions 2014 | CR 103 - http://feedproxy.google.com/~r/coderradiomp3/~3/fHePzX5CY50/ - <p>Mike and Chris run down their predictions and hopes areas Apple might improve iOS, Mac hardware, and general ecosystem development during next week’s big keynote.</p> - -<p>Plus our thoughts on the state of Qt, re-thinking Linux’s market share, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/fHePzX5CY50" height="1" width="1" alt=""/> - Mon, 26 May 2014 15:36:19 -0700 - - DB648ED8-7BF9-40E4-969E-E76A1F0D0711 - Jupiter Broadcasting - Mike and Chris run down their predictions and hopes areas Apple might improve iOS, Mac hardware, and general ecosystem development during next week’s big keynote. - -Plus our thoughts on the state of Qt, re-thinking Linux’s market share, and more! - - no - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/58287/wwdc-predictions-2014-cr-103/ - - Has Microsoft Lost It's Mojo? | CR 102 - http://feedproxy.google.com/~r/coderradiomp3/~3/sgnKF9GpL2U/ - <p>Mike and Chris discuss how, even when a laptop seems like the obvious choice, sometimes a desktop may be a better fit. Then, will the fate of Microsoft be slowly and embarrassingly slipping into irrelevance?</p> - -<p>And of course your fantastic feedback and much, much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/sgnKF9GpL2U" height="1" width="1" alt=""/> - Mon, 19 May 2014 18:02:56 -0700 - - 563F843C-6584-48A6-AC21-18AB9270559F - Jupiter Broadcasting - Mike and Chris discuss how, even when a laptop seems like the obvious choice, sometimes a desktop may be a better fit. Then, will the fate of Microsoft be slowly and embarrassingly slipping into irrelevance? - -And of course your feedback and much more! - - no - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/57752/has-microsoft-lost-its-mojo-cr-102/ - - Shields Up | CR 101 - http://feedproxy.google.com/~r/coderradiomp3/~3/hHVjJ_X5kLw/ - <p>It’s a day filled with war stories, we start off by sharing how things have blown up in our laps this morning, and cover your excellent feedback. </p> - -<p>Then - Chris shares his new gadget purchase, and how it’s making him re-think some of his firm opinions.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/hHVjJ_X5kLw" height="1" width="1" alt=""/> - Mon, 12 May 2014 17:31:06 -0700 - - 0C037861-C7A5-4C2A-B3CE-486DF78CA395 - Jupiter Broadcasting - It’s a day filled with war stories, we start off by sharing how things have blown up in our laps this morning, and cover your excellent feedback. - -Then - Chris shares his new gadget purchase, and how it’s making him re-think some of his firm opinions. - - no - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/57227/shields-up-cr-101/ - - 0×64 | CR 100 - http://feedproxy.google.com/~r/coderradiomp3/~3/Alod1-Eb3KQ/ - Mike and Chris celebrate 100 weeks of Coder Radio by reading some great feedback, discussing new hardware choices, and why the future of desktop Linux is a little worrying.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Alod1-Eb3KQ" height="1" width="1" alt=""/> - Mon, 05 May 2014 19:30:05 -0700 - - 886188FC-90C2-4CFA-9B49-0137CAE2A142 - Jupiter Broadcasting - Mike and Chris celebrate 100 weeks of Coder Radio by reading some great feedback, discussing new hardware choices, and why the future of desktop Linux is a little worrying. - - no - 1:00:41 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/56747/0x64-cr-100/ - - Is That a Weave? | CR 99 - http://feedproxy.google.com/~r/coderradiomp3/~3/fWa5dbdvn8I/ - We double down on your follow up. Working remotely, scratching your itch while at your current job, why we missed Heartbleed, and the video that will make you never again complain about how hard something is.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/fWa5dbdvn8I" height="1" width="1" alt=""/> - Mon, 28 Apr 2014 16:52:09 -0700 - - 754586F3-6232-4AAE-98F0-1A93758B3B79 - Jupiter Broadcasting - We double down on your follow up. Working remotely, scratching your itch while at your current job, why we missed Heartbleed, and the video that will make you never again complain about how hard something is. - - no - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/56162/is-that-a-weave-cr-99/ - - Always Be Coding | CR 98 - http://feedproxy.google.com/~r/coderradiomp3/~3/LbagDdeNYu8/ - <p>Chris and Mike face the limitations of remote workers, and the challenges they’ve experienced. We take your live calls, and discuss the awesome projects you're working on. </p> - -<p>Why you should write code every day, the hard numbers about mobile games, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/LbagDdeNYu8" height="1" width="1" alt=""/> - Mon, 21 Apr 2014 10:53:10 -0700 - - 8F1E59C0-4D4D-4820-B3CB-19D86B841182 - Jupiter Broadcasting - Chris and Mike face the limitations of remote workers, and the challenges they’ve experienced. We take your live calls, and discuss the projects you're working on. - -Why you should write code every day, the hard numbers about mobile games, and more! - - no - 1:07:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/55527/always-be-coding-cr-98/ - - Open Source, Closed Wallets | CR 97 - http://feedproxy.google.com/~r/coderradiomp3/~3/H0KqCN_NeVQ/ - <p>The Heartbleed bug has ignited a new round of open source doubters, but are the renewed concerns about the open source development model unfounded? And what can be done to avoid catastrophes like this in the future? We discuss.</p> - -<p>Plus an honest discussion about that moment of no return, your feedback, and more!</p> - -<p>Note: Apologies for the transitional audio setup while we move between studios. Improvements next week!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/H0KqCN_NeVQ" height="1" width="1" alt=""/> - Mon, 14 Apr 2014 13:25:20 -0700 - - C493C34D-CFA2-4DC3-B917-90924B1D66DC - Jupiter Broadcasting - The Heartbleed bug has ignited a new round of open source doubters, but are the renewed concerns about the open source development model unfounded? And what can be done to avoid catastrophes like this in the future? We discuss. - - no - 59:05 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/55147/open-source-closed-wallets-cr-97/ - - MS Gadget 2.0 | CR 96 - http://feedproxy.google.com/~r/coderradiomp3/~3/4R8IEnnuEEg/ - <p>Microsoft shocks the developer community by open sourcing some of their crown .Net jewels. Mike and Chris discuss the ramifications for Java, and the overall strategy Microsoft could be shifting too. Plus why the return of the Start Menu is a massive middle finger to devs, and other interesting bits from Build 2014.</p> - -<p>Plus your follow up on Oculus VR, the Blame Game, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/4R8IEnnuEEg" height="1" width="1" alt=""/> - Mon, 07 Apr 2014 12:39:22 -0700 - - 527B4DF1-FC9B-4E96-9121-329B71C6B2B6 - Jupiter Broadcasting - Microsoft shocks the developer community by open sourcing some of their crown .Net jewels. Mike and Chris discuss the ramifications for Java, and the overall strategy Microsoft could be shifting too. - - no - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/54707/ms-gadget-2-0-cr-96/ - - The Blame Game | CR 95 - http://feedproxy.google.com/~r/coderradiomp3/~3/To4X01uSpy0/ - <p>Are your projects cursed with knowledge of the present? Mike and Chris discuss the tendency to blame the last guy, and in some cases even scapegoat the absent. And why its only human to see all the mistakes of those who came before you.</p> - -<p>Plus our thoughts on Facebook buying Oculus VR, your feedback, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/To4X01uSpy0" height="1" width="1" alt=""/> - Mon, 31 Mar 2014 11:40:54 -0700 - - 87BD6BA5-621A-4AD5-9176-303BABB6711C - Jupiter Broadcasting - Are your projects cursed with knowledge of the present? Mike and Chris discuss the tendency to blame the last guy, and in some cases even scapegoat the absent. And why its only human to see all the mistakes of those who came before you. - - no - 1:00:12 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/54357/the-blame-game-cr-95/ - - Paranoid Android Developers | CR 94 - http://feedproxy.google.com/~r/coderradiomp3/~3/7mimq3GdDCI/ - <p>Android growth is exploding, and showing no signs of slowing down… So why are big players still avoiding the platform? We’ll challenge some common misconceptions on why developers avoid Android.</p> - -<p>Plus big Silicon Valley tech companies get busted colluding to keep wages low, the contractor fudge factor, your feedback..</p> - -<p>And more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/7mimq3GdDCI" height="1" width="1" alt=""/> - Mon, 24 Mar 2014 11:47:49 -0700 - - 2EDD55C2-CADD-43E3-9D90-C00ABD47E194 - Jupiter Broadcasting - Android growth is exploding, and showing no signs of slowing down… So why are big players still avoiding the platform? We’ll challenge some common misconceptions on why developers avoid Android. - - no - 59:37 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/53982/paranoid-android-developers-cr-94/ - - Ruby off the Rails | CR 93 - http://feedproxy.google.com/~r/coderradiomp3/~3/KB5v1UzkceE/ - The Rails community was blasted by a distinguished, and disgruntled member. But does his criticism hold up? And is there a larger problem at play here? Plus our thoughts on Amazon’s rumored new console, and a great batch of your feedback!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/KB5v1UzkceE" height="1" width="1" alt=""/> - Mon, 17 Mar 2014 11:39:02 -0700 - - 08E6226C-360A-4355-BE40-9A39CC724F12 - Jupiter Broadcasting - The Rails community was blasted by a distinguished, and disgruntled member. But does his criticism hold up? And is there a larger problem at play here? Plus our thoughts on Amazon’s rumored new console, and a great batch of your feedback! - - no - 59:17 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/53532/ruby-off-the-rails-cr-93/ - - Persona Non Grata | CR 92 - http://feedproxy.google.com/~r/coderradiomp3/~3/ItX0w7uuyZ4/ - <p>We embrace Daylight saving time with a special call-in edition of Coder Radio. Topics include a chat with one of the developers behind the online JavaScript assembly emulator, the encroachment of DRM in everyday life, and why Mozilla’s Persona has been put out to pasture and the difficult problem that creates for developers. </p> - -<p>Plus your feedback, and much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/ItX0w7uuyZ4" height="1" width="1" alt=""/> - Mon, 10 Mar 2014 11:40:53 -0700 - - 20661542-3B05-4F54-B4C5-CBFA4DBE2EAC - Jupiter Broadcasting - We embrace Daylight saving time with a special call-in edition of Coder Radio. We discuss DRM, feedback, Mozilla’s Persona being put out to pasture and much more! - - no - 49:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/53142/persona-non-grata-cr-92/ - - Your Database is Slow | CR 91 - http://feedproxy.google.com/~r/coderradiomp3/~3/FiG6Fiys_f8/ - <p>Oren Eini from Hibernating Rhinos joins us to discuss their “second generation” document database written in .NET. We have an insightful conversation about RavenDB, a flexible data model designed to address requirements coming from real-world systems. </p> - -<p>Plus our surprising answer to the big certification question, your emails, and more.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/FiG6Fiys_f8" height="1" width="1" alt=""/> - Mon, 03 Mar 2014 11:28:04 -0800 - - ADA145A1-386D-4821-B572-C7F402C54967 - Jupiter Broadcasting - Oren Eini from Hibernating Rhinos joins us to discuss their “second generation” document database written in .NET. We have an insightful conversation about RavenDB, a flexible data model designed to address requirements coming from real-world systems. - - no - 54:14 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/52657/your-database-is-slow-cr-91/ - - Get Yourself Tested | CR 90 - http://feedproxy.google.com/~r/coderradiomp3/~3/tFNTmDwH3pI/ - <p>Florian Motlik from Codeship joins us to discuss automated unit testing, a practical approach to rethinking how to get started with your own testing, and how Codeship’s hosted continuous integration and continuous deployment platform is bringing much needed relief to some of developments most tedious tasks.</p> - -<p>Plus getting started with simple approach, when to take the money, your emails, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/tFNTmDwH3pI" height="1" width="1" alt=""/> - Mon, 24 Feb 2014 11:31:19 -0800 - - 6523D922-6F26-448A-9CB8-9BDCD7EBD8AF - Jupiter Broadcasting - Florian Motlik from Codeship joins us to discuss how Codeship’s hosted continuous integration and continuous deployment platform is bringing much needed relief. - - no - 57:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/52237/get-yourself-tested-cr-90/ - - The Cost of Comments | CR 89 - http://feedproxy.google.com/~r/coderradiomp3/~3/CwWkd57Hx4c/ - <p>Responding to criticism for an open source project, or a closed commercial project can be a very tricky things. Mike and Chris share their thoughts on how you can properly set expectations and respond to negative feedback.</p> - -<p>Plus what roles users play in their interaction with developers, your feedback, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/CwWkd57Hx4c" height="1" width="1" alt=""/> - Mon, 17 Feb 2014 12:35:31 -0800 - - 4D8F33E7-7138-4DAE-9022-AB01FB302BE1 - Jupiter Broadcasting - Responding to criticism for an open source project, or a closed commercial project can be a very tricky things. Mike and Chris share their thoughts on how you can properly set expectations and respond to negative feedback. - - no - 1:15:28 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/51802/the-cost-of-comments-cr-89/ - - Paper Cuts Deep | CR 88 - http://feedproxy.google.com/~r/coderradiomp3/~3/5x5txEYKr9Q/ - <p>Mike and Chris use the recent drama around Paper and Flappy Bird to have a wider discussion about the forces against Indie developers. And our reactions to the CEO change at Microsoft.</p> - -<p>Plus some great feedback, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/5x5txEYKr9Q" height="1" width="1" alt=""/> - Mon, 10 Feb 2014 12:14:40 -0800 - - 0CFE7A2F-791F-4F88-9241-DEF5CFBE5D07 - Jupiter Broadcasting - Mike and Chris use the recent drama around Paper and Flappy Bird to have a wider discussion about the forces against Indie developers. And our reactions to the CEO change at Microsoft. - -Plus some great feedback, and more! - - no - 1:12:55 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/51342/paper-cuts-deep-cr-88/ - - Waning Windows | CR 87 - http://feedproxy.google.com/~r/coderradiomp3/~3/sGLynaIflTk/ - <p>Mike and Chris address a number of topics this week, from open source project’s properly communicating with the media, Google selling Motorola to Lenovo, and a debate about Microsoft’s rumored CEO choice.</p> - -<p>Plus your feedback, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/sGLynaIflTk" height="1" width="1" alt=""/> - Mon, 03 Feb 2014 12:13:39 -0800 - - 827B3165-C45C-4A30-823D-EB2730BB1244 - Jupiter Broadcasting - Mike and Chris address a number of topics this week, from open source project’s properly communicating with the media, Google selling Motorola to Lenovo, and a debate about Microsoft’s rumored CEO choice. - -Plus your feedback, and more! - - no - 1:08:30 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/50872/waning-windows-cr-87/ - - Myth of Magic Methodology | CR 86 - http://feedproxy.google.com/~r/coderradiomp3/~3/-aVrxMp8FQE/ - <p>Is the concept of a one sized fits all methodology getting tired? We revisit Agile in the dynamic client/developer relationship. Then how opening up your development plans to the community, even for commercial software, can be full of benefits and drawbacks.</p> - -<p>Plus a great batch of your feedback, and much more.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/-aVrxMp8FQE" height="1" width="1" alt=""/> - Mon, 27 Jan 2014 12:08:09 -0800 - - 256CA2E1-DFD5-49EA-A9C1-D05EB6097631 - Jupiter Broadcasting - Is the concept of a one sized fits all methodology getting tired? We revisit Agile in the dynamic client/developer relationship. Then how opening up your development plans to the community, even for commercial software, can be full of benefits & drawbacks - - no - 1:10:28 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/50492/myth-of-magic-methodology-cr-86/ - - Backend Lockin | CR 85 - http://feedproxy.google.com/~r/coderradiomp3/~3/VFHr7q--CBk/ - <p>Back-end services are really helping developers focus on their core competency, but how quickly will you need to go outside the box? What about vendor lock-in?</p> - -<p>Plus: A ton of great feedback, resisting the urge to hate change, and much more.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/VFHr7q--CBk" height="1" width="1" alt=""/> - Mon, 20 Jan 2014 12:02:01 -0800 - - A4DCA5F9-4D49-4EF3-8573-BF964C7CDBC9 - Jupiter Broadcasting - Back-end services are really helping developers focus on their core competency, but how quickly will you need to go outside the box? What about vendor lock-in? - -Plus: A ton of great feedback, resisting the urge to hate change, and much more. - - no - 1:07:50 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/49877/backend-lockin-cr-85/ - - Ops vs Dev | CR 84 - http://feedproxy.google.com/~r/coderradiomp3/~3/L9cydpr-iBU/ - <p>The classic battle flairs up this week, and the guys discuss how an over controlling sysadmin can slow down an important project, and why that problem seems to be so much worse in business.</p> - -<p>Plus the market is still hot for Java, but down discount Python or C#, making a big career change, and the standard for replacing your own inhouse tools.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/L9cydpr-iBU" height="1" width="1" alt=""/> - Mon, 13 Jan 2014 12:02:34 -0800 - - 69EAC03C-C872-4B5A-9A02-81C4CD858332 - Jupiter Broadcasting - The classic battle flairs up this week, and the guys discuss how an over controlling sysadmin can slow down an important project, and why that problem seems to be so much worse in business. - - no - 1:00:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/49437/ops-vs-dev-cr-84/ - - It’s Java’s Year | CR 83 - http://feedproxy.google.com/~r/coderradiomp3/~3/Zk9oxccKNJw/ - <p>We’ll bust some java myths with Mark Heckler, a software engineer at Oracle. Plus the status of Duke, java on embedded systems, and what the future holds.</p> - -<p>Plus your feedback and some of Mike’s 2014 bets.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Zk9oxccKNJw" height="1" width="1" alt=""/> - Mon, 06 Jan 2014 12:02:04 -0800 - - 568EC56C-49A8-4AD6-844B-AEC438A6AB57 - Jupiter Broadcasting - We’ll bust some java myths with Mark Heckler, a software engineer at Oracle. Plus the status of Duke, java on embedded systems, and what the future holds. - -Plus your feedback and some of Mike’s 2014 bets. - - no - 1:03:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/49012/its-javas-year-cr-83/ - - Coding Transitions | CR 82 - http://feedproxy.google.com/~r/coderradiomp3/~3/AVwBYaaDiWI/ - <p>With a little reflection on the years big moments, the guys look ahead to 2014. We’ll debate what’s going to be the big stories of 2014 for developers, and the tech industry at large.</p> - -<p>Plus we’ll answer a few of your questions, and toss in a couple surprises in our last episode of 2013!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/AVwBYaaDiWI" height="1" width="1" alt=""/> - Mon, 30 Dec 2013 11:55:13 -0800 - - 1CC89E14-57B1-4D53-92C2-810DE0624D43 - Jupiter Broadcasting - With a little reflection on the years big moments, the guys look ahead to 2014. We’ll debate what’s going to be the big stories of 2014 for developers, and the tech industry at large. - - no - 1:03:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/48737/coding-transitions-cr-82/ - - The Freelancer Dilemma | CR 81 - http://feedproxy.google.com/~r/coderradiomp3/~3/1K9yzfZ77D8/ - <p>The guys take some calls and discuss a wide range of great topics. From workspace setups, developer hardware, C vs C++, and the real problems facing contract programmers.</p> - -<p>Plus a batch of your feedback, the best editor ever (for Windows), and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/1K9yzfZ77D8" height="1" width="1" alt=""/> - Mon, 23 Dec 2013 06:55:16 -0800 - - 12FA6F20-4124-4A01-AA75-84C440488819 - Jupiter Broadcasting - The guys take some calls and discuss a wide range of great topics. From workspace setups, developer hardware, C vs C++, and the real problems facing contract programmers. - -Plus a batch of your feedback, the best editor ever (for Windows), and more! - - no - 1:08:49 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/48462/the-freelancer-dilemma-cr-81/ - - The SteamOS Conspiracy | CR 80 - http://feedproxy.google.com/~r/coderradiomp3/~3/MqLR7fDajfE/ - <p>Early builds of SteamOS have landed, and we wonder what the larger implications are. Plus our thoughts on Microsoft's clear challenges, the problem with Qt Creator, and betting on the future.</p> - -<p>Plus your feedback, our thoughts on cloud build services, and much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/MqLR7fDajfE" height="1" width="1" alt=""/> - Mon, 16 Dec 2013 14:35:21 -0800 - - E7ADB6E8-8734-4534-8433-42ABF3799E27 - Jupiter Broadcasting - Early builds of SteamOS have landed, and we wonder what the larger implications are. Plus our thoughts on Microsoft's clear challenges, the problem with Qt Creator, and betting on the future. - - no - 1:12:29 - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/48132/the-steamos-conspiracy-cr-80/ - - Two French Presses | CR 79 - http://feedproxy.google.com/~r/coderradiomp3/~3/yZ4jybg2HrE/ - <p>After discussing our caffeine regimes, we take a crack at getting Q&A right. We’ll share some personal experiences with Q&A gone wrong, and our tips for fixing it.</p> - -<p>Plus a look back at one of the giant’s shoulders developers stand on today, and your emails.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/yZ4jybg2HrE" height="1" width="1" alt=""/> - Mon, 09 Dec 2013 11:53:07 -0800 - - CDD14026-0AEE-40C4-BC52-F90FA87C0342 - Jupiter Broadcasting - After discussing our caffeine regimes, we take a crack at getting Q&A right. We’ll share some personal experiences with Q&A gone wrong, and our tips for fixing it. - -Plus a look back at one of the giant’s shoulders developers stand on today. - - no - 56:18 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/47762/two-french-presses-cr-79/ - - Code Your Enthusiasm | CR 78 - http://feedproxy.google.com/~r/coderradiomp3/~3/wu_0gDNu24o/ - It’s a mailbag special with a hidden message. Mike and Chris discuss burnout a bit more, the pitfalls of bad Q&A, automated UI testing, and the open source projects we’re thankful for this year.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/wu_0gDNu24o" height="1" width="1" alt=""/> - Mon, 02 Dec 2013 14:01:30 -0800 - - 133138B1-752D-4DCD-B39F-28FD3AD4F871 - Jupiter Broadcasting - It’s a mailbag special with a hidden message. Mike and Chris discuss burnout a bit more, the pitfalls of bad Q&A, automated UI testing, and the open source projects we’re thankful for this year. - - no - 1:44:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/47307/code-your-enthusiasm-cr-78/ - - The Big Xbone | CR 77 - http://feedproxy.google.com/~r/coderradiomp3/~3/2M03vMK-7p0/ - <p>Is the Xbox One the next big App platform? We’ll share theories. Plus where to books fit in for self education? Are they too slow, or is there a place for the printed medium in a rapidly developing industry? </p> - -<p>Plus a batch of your emails, our follow up, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/2M03vMK-7p0" height="1" width="1" alt=""/> - Mon, 25 Nov 2013 12:37:28 -0800 - - 9436CC71-3489-4A76-B574-0B4C32221246 - Jupiter Broadcasting - Is the Xbox One the next big App platform? We’ll share theories. Plus where to books fit in for self education? Are they too slow, or is there a place for the printed medium in a rapidly developing industry? - - no - 1:06:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/46917/the-big-xbone-cr-77/ - - Burned by Agile | CR 76 - http://feedproxy.google.com/~r/coderradiomp3/~3/DCOuavx7B7c/ - <p>Burnout kills your productivity, creativity, and ability to get things done. The worst part? It can sneak up in different ways. Mike and Chris share how to recognize burnout, a quick fix to get you through, and their personal long term fixes.</p> - -<p>Plus a great batch of emails, setting your weekend rate, and much more.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/DCOuavx7B7c" height="1" width="1" alt=""/> - Mon, 18 Nov 2013 12:46:59 -0800 - - 3B9063D5-E5E6-4892-A36E-487D1DCA4A0D - Jupiter Broadcasting - Burnout kills your productivity, creativity, and ability to get things done. The worst part? It can sneak up in different ways. Mike and Chris share how to recognize burnout, a quick fix to get you through, and their personal long term fixes. - - no - 1:19:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/46552/burned-by-agile-cr-76/ - - Deploying the Haterade | CR 75 - http://feedproxy.google.com/~r/coderradiomp3/~3/G9LonYMop3g/ - <p>A recent snafu has left Mike in a bit of a bind with a client, and technical glitches nearly threatened to toss Chris out on the side of the road.</p> - -<p>After digging through a batch of really great emails, the guys air some dirty laundry. This week we crack open a cold one, and chug some haterade.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/G9LonYMop3g" height="1" width="1" alt=""/> - Mon, 11 Nov 2013 13:03:36 -0800 - - E93E7480-4968-43BA-9A97-700DF4B31AF9 - Jupiter Broadcasting - A recent snafu has left Mike in a bit of a bind with a client, and technical glitches nearly threatened to toss Chris out on the side of the road. - - no - 1:11:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/46167/deploying-the-haterade-cr-75/ - - Justifying Java | CR 74 - http://feedproxy.google.com/~r/coderradiomp3/~3/f1aywB59Juo/ - <p>After discussing recent hardware gadget purchases, and why, the guys jump into the case of Java. Mike’s ready to justify his love, for Java.</p> - -<p>Plus a little dev world hoopla, your feedback, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/f1aywB59Juo" height="1" width="1" alt=""/> - Mon, 04 Nov 2013 12:02:45 -0800 - - 1B0A11CC-7926-4E76-A8BF-5741FC7081C9 - Jupiter Broadcasting - After discussing recent hardware gadget purchases, and why, the guys jump into the case of Java. Mike’s ready to justify his love, for Java. - -Plus a little dev world hoopla, your feedback, and more! - - - - no - 1:00:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/45807/justifying-java-cr-74/ - - Baby Got Backend | CR 73 - http://feedproxy.google.com/~r/coderradiomp3/~3/94BI4Gs0rSw/ - <p>From backups to deployment, we go back to the backend! The new solutions giving us the opportunity to reconsider the infrastructure around our projects.</p> - -<p>Plus gearing up for 64bit development, and much more.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/94BI4Gs0rSw" height="1" width="1" alt=""/> - Mon, 28 Oct 2013 12:26:27 -0700 - - 41768EE7-D3B6-4E62-BEA8-6C1CB7D2852C - Jupiter Broadcasting - From backups to deployment, we go back to the backend! The new solutions giving us the opportunity to reconsider the infrastructure around our projects. - -Plus gearing up for 64bit development, and much more. - - no - 1:09:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/45412/baby-got-backend-cr-73/ - - Relatively Laid Out | CR 72 - http://feedproxy.google.com/~r/coderradiomp3/~3/9VyWbT4Ya-U/ - <p>With big Google and Apple events on the horizon we look at how Google’s early investment in relative UI layouts will be paying dividends in Android 4.4 KitKat.</p> - -<p>Plus: Your emails, our php follow up, a few near-term predictions, and even an RMS rap.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/9VyWbT4Ya-U" height="1" width="1" alt=""/> - Mon, 21 Oct 2013 12:42:56 -0700 - - CD6AC1ED-2366-47D4-B3AA-01DA8ECF71EA - Jupiter Broadcasting - With big Google and Apple events on the horizon we look at how Google’s early investment in relative UI layouts will be paying dividends in Android 4.4 KitKat. - -Plus: Your emails, our php follow up, a few near-term predictions, and even an RMS rap. - - no - 1:17:29 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/45077/relatively-laid-out-cr-72/ - - Betting on Linux | CR 71 - http://feedproxy.google.com/~r/coderradiomp3/~3/WVyzIx3AerA/ - <p>When targeting Linux, developers have to face some tough choices. Mike’s spent a year planning his move and discusses the opportunity and the risk of supporting Linux, how much effort should be put into targeting Ubuntu, and keeping the big picture in mind.</p> - -<p>Plus our follow up and your feedback!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/WVyzIx3AerA" height="1" width="1" alt=""/> - Mon, 14 Oct 2013 12:31:47 -0700 - - 1F28F8D7-ABBB-4F06-9B7D-EED991BEFF04 - Jupiter Broadcasting - When targeting Linux, developers have to face some tough choices. Mike’s spent a year planning his move and discusses the opportunity and the risk of supporting Linux, how much effort should be put into targeting Ubuntu. - - no - 1:13:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/44632/betting-on-linux-cr-71/ - - Toolchain Transitions | CR 70 - http://feedproxy.google.com/~r/coderradiomp3/~3/OXBOmxQYf24/ - <p>Mike’s making some big changes to his workflow, and sharing the tools in his box. We’ll look at the transition to Ubuntu Linux for Mike and his dev team, and the productivity advantages they see.</p> - -<p>Plus planning for scale, a fresh look at Vala, your emails, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/OXBOmxQYf24" height="1" width="1" alt=""/> - Mon, 07 Oct 2013 12:45:05 -0700 - - C049A7BF-6EAB-4A57-8E0F-910B8715B1BE - Jupiter Broadcasting - Mike’s making some big changes to his workflow, and sharing the tools in his box. We’ll look at the transition to Ubuntu Linux for Mike and his dev team, and the productivity advantages they see. - - no - 1:17:21 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/44217/toolchain-transitions-cr-70/ - - With Apologies to Texas | CR 69 - http://feedproxy.google.com/~r/coderradiomp3/~3/dDkOodU7xUY/ - <p>Mike and Chris chew on the major problems patent trolls are creating for small and large development shops.</p> - -<p>Then it’s a race to the bottom for software prices, and the guys have a few theories on what, if anything, developers can do to carve out a living.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/dDkOodU7xUY" height="1" width="1" alt=""/> - Mon, 30 Sep 2013 11:57:40 -0700 - - 6699EA23-0ADA-45B7-A530-0A94705AF35E - Jupiter Broadcasting - Mike and Chris chew on the major problems patent trolls are creating for small and large development shops. - -Then it’s a race to the bottom for software prices, and the guys have a few theories on what, if anything, developers can do to carve out a living - - no - 1:03:15 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/43867/with-apologies-to-texas-cr-69/ - - ASP.Magic | CR 68 - http://feedproxy.google.com/~r/coderradiomp3/~3/GrbTdQQfFBI/ - <p>Mike discusses the culture clash between the ASP.Net framework diehards, and the recent converts. ASP.Net and Azure services have been at the core of project Mike and his team have had underway for a couple months and they’ve gotten a good feeling of it’s strengths and weakness.</p> - -<p>Plus our live reaction to SteamOS, ending the platform/tool wars that even your benevolent hosts find themselves falling into, your feedback, and much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/GrbTdQQfFBI" height="1" width="1" alt=""/> - Mon, 23 Sep 2013 12:53:25 -0700 - - B0929660-F844-48BE-BF6D-9192C7C7779E - Jupiter Broadcasting - Mike discusses the culture clash between the ASP.Net framework diehards, and the recent converts. - - no - 1:18:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)programming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/43517/asp-magic-cr-68/ - - Blazing 7 | CR 67 - http://feedproxy.google.com/~r/coderradiomp3/~3/W02EHkeIcko/ - <p>iOS 7 is landing and Mike and Chris discuss what’s in store for developers, and the real reason to put a 64bit CPU in a cell phone.</p> - -<p>Plus the core of what’s wrong with Microsoft, practicing security from the start, your emails and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/W02EHkeIcko" height="1" width="1" alt=""/> - Mon, 16 Sep 2013 13:36:22 -0700 - - D1636789-DBED-405F-A582-F128ECC2B7C8 - iOS 7 is landing and Mike and Chris discuss what’s in store for developers, and the real reason to put a 64bit CPU in a cell phone. - -Plus the core of what’s wrong with Microsoft, practicing security from the start, your emails and more! - - no - 1:34:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/43192/blazing-7-cr-67/ - - Docker All The Things | CR 66 - http://feedproxy.google.com/~r/coderradiomp3/~3/bY_CGlMybbs/ - <p>We’re joined by two gentlemen from dotCloud, the folks behind Docker. We chat about what Docker is best at, how far out the 1.0 release is, the projects use of Go, the future of Docker, and much more.</p> - -<p>Plus is the commoditization of software development a bad thing? Your emails, and more.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/bY_CGlMybbs" height="1" width="1" alt=""/> - Mon, 09 Sep 2013 12:29:11 -0700 - - ABA59717-C0FC-45B7-A64C-B2C39801587E - We’re joined by two gentlemen from dotCloud, the folks behind Docker. We chat about what Docker is best at, how far out the 1.0 release is, the projects use of Go, the future of Docker, and much more. - - no - 45:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/42767/docker-all-the-things-cr-66/ - - Love’s Labor Lost | CR 65 - http://feedproxy.google.com/~r/coderradiomp3/~3/x71kvgce61k/ - <p>It’s a Monday holiday episode of the Coder Radio show, so we opened up the Skype lines and officially declare this episode a grab bag of topics!</p> - -<p>From the death of JavaScript to Android vs iOS we touch on a list of favorite topics.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/x71kvgce61k" height="1" width="1" alt=""/> - Mon, 02 Sep 2013 12:11:00 -0700 - - 8AE233D8-A1A2-4AB4-AE27-50C0159592BF - It’s a Monday holiday episode of the Coder Radio show, so we opened up the Skype lines and officially declare this episode a grab bag of topics! - -From the death of JavaScript to Android vs iOS we touch on a list of favorite topics. - - no - 1:02:07 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/42332/loves-labor-lost-cr-65/ - - Bye Bye Ballmer | CR 64 - http://feedproxy.google.com/~r/coderradiomp3/~3/Ww3vSo0TZgM/ - <p>Steve Ballmer’s legacy at Microsoft is controversial. We look over the long list of big and quiet successes and failures under his watch as CEO. Plus what we think the big problem facing Microsoft is going to be long term, and if they can really transform into a “devices and services” company.</p> - -<p>Plus we’ll discuss the big problem with SourceForge, self taught programing vs structured schooling, your emails, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/Ww3vSo0TZgM" height="1" width="1" alt=""/> - Mon, 26 Aug 2013 12:25:39 -0700 - - 5983A5E7-DE06-4DE0-BE5D-82234CA66219 - Steve Ballmer’s legacy at Microsoft is controversial. We look over the long list of big and quiet successes and failures under his watch as CEO. Plus what we think the big problem facing Microsoft is going to be long term. - - no - 1:08:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/42142/bye-bye-ballmer-cr-64/ - - Mozilla Persona | CR 63 - http://feedproxy.google.com/~r/coderradiomp3/~3/0KiXEMZS3jI/ - <p>We chat with Dan at the Mozilla about his work on the Persona project, and how Mozilla offers developers a neutral platform for effective authentication.</p> - -<p>Plus our thoughts on what’s troubling the Ubuntu Edge project, a batch of your questions, and much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/0KiXEMZS3jI" height="1" width="1" alt=""/> - Mon, 19 Aug 2013 18:51:14 -0700 - - 482C6D96-3361-4BE3-8654-787A94CB0DF1 - We chat with Dan at the Mozilla about his work on the Persona project, and how Mozilla offers developers a neutral platform for effective authentication. - -Plus our thoughts on what’s troubling the Ubuntu Edge project. - - no - 1:35:21 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/41812/mozilla-persona-cr-63/ - - FizzBuzzed! | CR 62 - http://feedproxy.google.com/~r/coderradiomp3/~3/b0Hc0WInqac/ - <p>Hiring can be a real pain in the butt. The guys share the horror stories from interviews they’ve conducted that went horribly wrong. Plus a few tips for getting a gig.</p> - -<p>Then the guys chew on the dev hoopla of the week, and read some great emails.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/b0Hc0WInqac" height="1" width="1" alt=""/> - Mon, 12 Aug 2013 12:04:49 -0700 - - 5994DA43-2974-4046-A8DB-F7F64DFE3CD2 - Hiring can be a real pain in the butt. The guys share the horror stories from interviews they’ve conducted that went horribly wrong. Plus a few tips for getting a gig. - -Then the guys chew on the dev hoopla of the week, and read some great emails. - - no - 1:00:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/41452/fizzbuzzed-cr-62/ - - Office Hours | CR 61 - http://feedproxy.google.com/~r/coderradiomp3/~3/ut4aKdP7VhM/ - <p>Mike and Chris bare it all on their classic work/life balance struggles. Dealing with the unique circumstances of working at home, why it’s not the dream 9-to-5 types picture.</p> - -<p>Plus your feedback, a few follow ups and much more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/ut4aKdP7VhM" height="1" width="1" alt=""/> - Mon, 05 Aug 2013 13:42:44 -0700 - - C36E3EA2-2244-48BA-BA7C-4477AD0C0E45 - Mike and Chris bare it all on their classic work/life balance struggles. Dealing with the unique circumstances of working at home, why it’s not the dream 9-to-5 types picture. - -Plus your feedback, a few follow ups and much more! - - no - 1:01:37 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/41227/office-hours-cr-61/ - - Call In 2.0 | CR 60 - http://feedproxy.google.com/~r/coderradiomp3/~3/YI5qVs5YctE/ - Celebrating 60 episodes we take live calls from our audience and chat about the topics are their minds. Then we follow up on the indie developer Xbox One situation, read your feedback, and more!<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/YI5qVs5YctE" height="1" width="1" alt=""/> - Mon, 29 Jul 2013 12:53:50 -0700 - - C6C78FC3-57D2-497A-A4D4-172A3FFDE30F - Celebrating 60 episodes we take live calls from our audience and chat about the topics are their minds. Then we follow up on the indie developer Xbox One situation, read your feedback, and more! - - no - 1:10:17 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/40912/call-in-2-0-cr-60/ - - Sour Apple | CR 59 - http://feedproxy.google.com/~r/coderradiomp3/~3/lUHGDEXxfVc/ - <p>A compromise at Apple turns Mike’s week upside down. Reeling from the setback we dig into Mike’s concerns with Canonical’s crowd sourced Ubuntu Edge phone.</p> - -<p>Why we're a bit dismayed at Firefox OS’ attempts to kill the app store...</p> - -<p>And we answer your hard questions.</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/lUHGDEXxfVc" height="1" width="1" alt=""/> - Mon, 22 Jul 2013 13:20:10 -0700 - - 7725D8B6-C6FF-4035-969A-D7605BC85798 - A compromise at Apple turns Mike’s week upside down. Reeling from the setback we dig into Mike’s concerns with Canonical’s crowd sourced Ubuntu Edge phone. - - no - 1:05:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/40672/sour-apple-cr-59/ - - The 56k Solution | CR 58 - http://feedproxy.google.com/~r/coderradiomp3/~3/cG-qZ9ZTc0Q/ - Data protection in the cloud can mean a lot of different things. But what about in the context of software development? The guys tackle that question, and cover a great batch of your feedback.<img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/cG-qZ9ZTc0Q" height="1" width="1" alt=""/> - Mon, 15 Jul 2013 12:29:24 -0700 - - 26CF0582-E7A6-4C55-8D5F-27C03489222E - Data protection in the cloud can mean a lot of different things. But what about in the context of software development? The guys tackle that question, and cover a great batch of your feedback. - - no - 1:06:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/40377/the-56k-solution-cr-58/ - - The Dev Jungle | CR 57 - http://feedproxy.google.com/~r/coderradiomp3/~3/WLSymICaSXk/ - <p>The guys bust some myths around outsourcing, and insourcing development work. Striking a balance when trying to codify better practices in the workplace, sticking with good old tech for bad reasons…</p> - -<p>Plus a big batch of your feedback!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/WLSymICaSXk" height="1" width="1" alt=""/> - Mon, 08 Jul 2013 12:30:37 -0700 - - E1EBF7F9-60A6-43CD-97F5-89FEC6F6CB1D - The guys bust some myths around outsourcing, and insourcing development work. Striking a balance when trying to codify better practices in the workplace, sticking with good old tech for bad reasons… - -Plus a big batch of your feedback! - - no - 59:44 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/40042/the-dev-jungle-cr-57/ - - Microsoft’s in a Funk | CR 56 - http://feedproxy.google.com/~r/coderradiomp3/~3/y6E6BOJ3VFE/ - <p>Stinging from a Build conference hangover, the guys focus on their current disappoints with Microsoft.</p> - -<p>Then Mike gets a new OYUA box and has a few surprises, plus your emails, and more!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/y6E6BOJ3VFE" height="1" width="1" alt=""/> - Mon, 01 Jul 2013 12:22:30 -0700 - - 78B71DF4-19E3-4BCC-B8BC-B7363DBF2243 - Stinging from a Build conference hangover, the guys focus on their current disappoints with Microsoft. - -Then Mike gets a new OYUA box and has a few surprises, plus your emails, and more! - - no - 1:04:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/39752/microsofts-in-a-funk-cr-56/ - - Software Exorcism | CR 55 - http://feedproxy.google.com/~r/coderradiomp3/~3/5om9GicWx8Q/ - <p>Even when you know better, you sometimes find yourself contributing to the problem, just to get the job done. This week the guys bare it all and discuss how they’ve ended up making things worse when they were hired to make it all better.</p> - -<p>Plus keeping up on new trends without wasting time, how open environments provide better predictability, and a batch of your feedback!</p><img src="http://feeds.feedburner.com/~r/coderradiomp3/~4/5om9GicWx8Q" height="1" width="1" alt=""/> - Mon, 24 Jun 2013 11:36:33 -0700 - - CD63A138-6324-4A73-920C-7E36105C5E37 - Even when you know better, you sometimes find yourself contributing to the problem, just to get the job done. This week the guys bare it all and discuss how they’ve ended up making things worse when they were hired to make it all better. - - - no - 1:01:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comprogramming,coding,software,development,xcode,gnu,app,toolkit,performance,business,python,xml,dart,js,java,script,gatekeeper,apple,osx,linux,windows,metro,ios,android,wwwdc,google,io,iPhone,ipad,ics,cloud,Retina,Platformhttp://www.jupiterbroadcasting.com/39357/software-exorcism-cr-55/ - Jupiter Broadcastingchris@jupiterbroadcasting.comnonadult - diff --git a/hammond-data/benches/feeds/pcpermp3.xml b/hammond-data/benches/feeds/pcpermp3.xml deleted file mode 100644 index 789164b..0000000 --- a/hammond-data/benches/feeds/pcpermp3.xml +++ /dev/null @@ -1,37363 +0,0 @@ - - - - -PC Perspective Podcast -http://www.pcper.com/ - -http://www.pcper.com/images/podcast-logo-600x600.png -PC Perspective Podcast -600 -600 -http://www.pcper.com/podcast - -en-us -Shrout Publishing, Inc. 2011 -PC Perspective editors discuss the latest reviews and technology news -Ryan Shrout -The editors of PC Perspective discuss the latest in-house product reviews and news from around the world that pertains to technology and PC hardware. -The editors of PC Perspective discuss the latest in-house product reviews and news from around the world that pertains to technology and PC hardware. - -Ryan Shrout -rshrout@pcper.com - - - - - - - - -PC Perspective Podcast 475 - 11/09/17 -Thu, 09 Nov 2017 06:00:00 -0400 -99:42 - -pc-perspective-podcast-475-20171109 -Ryan Shrout -Join us for talk about Intel with AMD graphics, Raja's move to Intel, and more! - -Join us for talk about Intel with AMD graphics, Raja's move to Intel, and more! - -no -PC Perspective Podcast #475 - 11/09/17

- -

Join us for discussion on Intel with AMD graphics, Raja's move to Intel, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Josh Walrath, Jeremy Hellstrom, Allyn Malventano, Ken Addison

- -

Peanut Gallery: Alex Lustenberg, Jim Tanous

- -

Program length: 1:29:42

- -

- -
-
- -
-

- -
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. -
    0:35:30 CASPER
    -
  12. -
  13. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  14. -
  15. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:13:40 Allyn: Relatively cheap Samsung 82” (!!!) 4K TV
      -
    2. -
    3. - -
    4. -
    5. -
      1:23:45 Josh: 1800X for $399!!!!!
      -
    6. -
    7. -
      1:24:50 Ken: The Void Wallet
      -
    8. -
    -
  16. -
  17. - -
  18. -
  19. - -
  20. -
  21. -
    Closing/outro
    -
  22. -
-
-
-
- -

- -
-
- -
-
-

- -
-
-
-
-
-
-
-
- -

- -]]>
-
- - - -PC Perspective Podcast 474 - 11/02/17 -Thu, 02 Nov 2017 06:00:00 -0400 -92:19 - -pc-perspective-podcast-474-20171101 -Ryan Shrout -Join us for talk about Optane 900P, Cord Cutting, 1070 Ti, and more! - -Join us for talk about Optane 900P, Cord Cutting, 1070 Ti, and more! - -no -PC Perspective Podcast #474 - 11/02/17

- -

Join us for discussion on Optane 900P, Cord Cutting, 1070 Ti, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, Allyn Malventano,

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:32:19

- -

- -
-
- -
-

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:17:00 Ryan: Intel 900P Optane SSD
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      1:26:45 Allyn: Sony RX10 Mk IV. Pricey, but damn good.
      -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
-
- -

- -
-
- -
-
-

- -
-
-
-
-
-
-
-
- -

-]]>
-
- - - -PC Perspective Podcast 473 - 10/26/17 -Thu, 26 Oct 2017 06:00:00 -0400 -63:33 - -pc-perspective-podcast-473-20171026 -Ryan Shrout -Join us for talk about AMD Q3 Earnings, Forza 7 Performance, Allyn's storage rant, and more! - -Join us for talk about AMD Q3 Earnings, Forza 7 Performance, Allyn's storage rant, and more! - -no -PC Perspective Podcast #473 - 10/26/17

- -

Join us for discussion on AMD Q3 Earnings, Forza 7 Performance, Allyn's storage rant, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Allyn Malventano, Jeremy Hellstrom, Ken Addison

- -

Peanut Gallery: Alex Lustenberg

- -

Program length: 1:03:33

- -

- -
-
- -
-

Podcast topics of discussion:

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      0:27:25 Allyn’s RAID rant
      -
    8. -
    9. - -
    10. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      0:45:55 Allyn: Cinemaps
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
-
- -

 

- -

- -
-
- -
-
-

- -
-
-
-
-
-
-
-
- -

-]]>
-
- - - -PC Perspective Podcast 472 - 10/19/17 -Thu, 19 Oct 2017 06:00:00 -0400 -80:07 - -pc-perspective-podcast-472-20171019 -Ryan Shrout -Join us for talk about MAMR Tech, Office network upgrade, and more! - -Join us for talk about MAMR Tech, Office network upgrade, and more! - -no -PC Perspective Podcast #472 - 10/19/17

- -

Join us for discussion on Western Digital MAMR Tech, Office Network upgrade, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Allyn Malventano, Josh Walrath, Jermey Hellstrom

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -

Program length: 1:20:07

- -

- -
-
- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:10:15 Ryan: Tiki torch kits
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- -

 

- -

- -
-
- -
-
-

- -
-
-
-
-
-
-
-
- -

- -]]>
-
- - -PC Perspective Podcast 471 - 10/12/17 -Thu, 12 Oct 2017 06:00:00 -0400 -100:25 - -pc-perspective-podcast-471-20171011 -Ryan Shrout -Join us for talk about Intel Coffee Lake, Lenovo ThinkPad, and more! - -Join us for talk about Intel Coffee Lake, Lenovo ThinkPad, and more! - -no -PC Perspective Podcast #471 - 10/12/17

- -

Join us for discussion on Intel Coffee Lake, Lenovo ThinkPad, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Josh Walrath, Jermey Hellstrom, Ken Addison, Sebastian Peak

- -

Peanut Gallery: Alex Lustenberg

- -

Program length: 1:40:25

- -

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      3. - - -
          -
        1. -
          6.8Ghz under load
          -
        2. -
        -
      4. -
      5. - -
      6. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. -
        Consumer: H310, H370, and B360
        -
      2. -
      3. -
        Server / Workstation Q370 and Q360
        -
      4. -
      5. -
        Maybe a Z390 to replace Z370?
        -
      6. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - - -
        -
      1. -
        ICQ is still around though! With stickers!
        -
      2. -
      -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

 

- -

- -
-
- -
-
-

- -
-
-
-
-
-
-
-
- -

- -]]>
-
- - - - -PC Perspective Podcast 470 - 10/05/17 -Thu, 05 Oct 2017 06:00:00 -0400 -101:19 - -pc-perspective-podcast-470-20171005 -Ryan Shrout -Join us for talk about Intel VROC, AMD TR RAID, Google Pixel 2, and more! - -Join us for talk about Intel VROC, AMD TR RAID, Google Pixel 2, and more! - -no -PC Perspective Podcast #470 - 10/05/17

- -

Join us for discussion on Intel VROC, AMD TR RAID, Google Pixel 2, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jermey Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg

- -

Program length: 1:41:19

- -

- -
-
- -
-
-

- -
-
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    23. - -
    24. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: 1:38:20 Want a big SATA SSD?
      -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-
-
-
- -

- -
- -

- -

- -]]>
-
- - - -PC Perspective Podcast 469 - 9/28/17 -Thu, 28 Sep 2017 06:00:00 -0400 -97:57 - -pc-perspective-podcast-469-20170928 -Ryan Shrout -Join us for talk about Marseille mCable, Core i9, Coffee Lake, Vega mGPU, and more! - -Join us for talk about Marseille mCable, Core i9, Coffee Lake, Vega mGPU, and more! - -no -PC Perspective Podcast #469 - 09/28/17

- -

Join us for discussion on AMD Raven Ridge rumors,  Intel and Global Foundries new fabrication technology!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jermey Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:27:57

- -

- -
-
- -
-
-

- -
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:16:00 Ryan: Silicon Zeroes game
      -
    2. -
    3. - -
    4. -
    5. -
      1:22:10 Jeremy: Going out of style discount - GIGABYTE GA-Z270-GAMING K3
      -
    6. -
    7. -
      1:24:10  Allyn: DIY Oleophobic Coating
      -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-
-
-
- -

- -
- -

- -

- -]]>
-
- - - -PC Perspective Podcast 468 - 9/21/17 -Thu, 21 Sep 2017 06:00:00 -0400 -99:59 - -pc-perspective-podcast-468-20170921 -Ryan Shrout -Join us for talk about AMD Raven Ridge rumors, Intel and Global Foundries new fabrication technology! - -Join us for talk about AMD Raven Ridge rumors, Intel and Global Foundries new fabrication technology! - -no -PC Perspective Podcast #468 - 09/21/17

- -

Join us for discussion on AMD Raven Ridge rumors,  Intel and Global Foundries new fabrication technology!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Josh Walrath, Sebastion Peak, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:39:59

- -

- -
-
- -
-
-

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-
-
-
- -

- -
- -

- -

-]]>
-
- - - -PC Perspective Podcast 467 - 9/14/17 -Thu, 14 Sep 2017 06:00:00 -0400 -87:20 - -pc-perspective-podcast-467-20170914 -Ryan Shrout -Join us for talk about NVIDIA WhisperMode, HyperX Keyboard, iPhone 8/X, and more! - -Join us for talk about NVIDIA WhisperMode, HyperX Keyboard, iPhone 8/X, and more! - -no -PC Perspective Podcast #467 - 09/13/17

- -

Join us for discussion on  NVIDIA WhisperMode, HyperX Mechanical Keyboards, iPhone 8/X and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:27:20

- -

- -
-
- -
Podcast topics of discussion: 
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:12:20 Ryan: Logitech MX Ergo
      -
    2. -
    3. -
      1:17:15 Jeremy: Macchina is shipping
      -
    4. -
    5. - -
    6. -
    7. -
      1:22:45 Allyn: Alternative black air cooler? (be quiet Shadow Rock 2)
      -
    8. -
    9. -
      1:23:45 Alex: Cities: Skylines
      -
    10. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -
 
- - - -

- -
- -

- -

- -]]>
-
- - - -PC Perspective Podcast 466 - 9/7/17 -Thu, 07 Sep 2017 06:00:00 -0400 -75:50 - -pc-perspective-podcast-466-20170907 -Ryan Shrout -Join us for talk about ECS Z270 motherboards, Clutch Chairz, AMD market share, Lenovo Yoga, and more! - -Join us for talk about CS Z270 motherboards, Clutch Chairz, AMD market share, Lenovo Yoga, and more! - -no -PC Perspective Podcast #466 - 09/07/17

- -

Join us for discussion on ECS Z270 motherboards, Clutch Chairz, AMD market share, Lenovo Yoga, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:15:50

- -

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. -
      0:25:05 Casper
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      1:09:10 Allyn: FolderTimeUpdate
      -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
- - - -

- -
- -

- -

- -]]>
-
- - -PC Perspective Podcast 465 - 8/31/17 -Thu, 31 Aug 2017 06:00:00 -0400 -88:57 - -pc-perspective-podcast-465-20170831 -Ryan Shrout -Join us for talk about Seasonic, BeQuiet! PSUs, Koolance, FSP coolers, IFA laptops and more! - -Join us for talk about Seasonic, BeQuiet! PSUs, Koolance, FSP coolers, IFA laptops and more! - -no -PC Perspective Podcast #465 - 08/31/17

- -

Join us for continued discussion on Seasonic, BeQuiet! PSUs, Koolance, FSP coolers, IFA laptops and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:28:57

- -

- -
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. - -
  10. -
  11. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  14. -
  15. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:12:25 Ryan: Logitech G613
      -
    2. -
    3. -
      1:16:05 Jeremy: Steam library growing in girth? 850 EVO 500GB
      -
    4. -
    5. -
      1:18:45 Josh: Damn nice keyboard
      -
    6. -
    7. -
      1:21:05 Allyn: My first game mod: Manifolds for Factorio (and 0.15 is stable)
      -
    8. -
    -
  16. -
  17. - -
  18. -
  19. - -
  20. -
  21. -
    Closing/outro
    -
  22. -
-
- -
-
- -
 
-
- - - -

- -

- -]]>
-
- - - -PC Perspective Podcast 464 - 8/24/17 -Thu, 24 Aug 2017 06:00:00 -0400 -94:56 - -pc-perspective-podcast-464-20170824 -Ryan Shrout -Join us for talk about RX Vega, Intel 8th Gen Core, and more! - -Join us for talk about RX Vega, Intel 8th Gen Core, and more! - -no -PC Perspective Podcast #464 - 08/17/17

- -

Join us for continued discussion on RX Vega, Intel 8th Gen Core, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:34:56

- -

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. - -
  10. -
  11. -
    Week in Review:
    - -
      -
    1. -
      0:07:54 Let’s talk about RX Vega!
      - -
        -
      1. -
        My Review
        -
      2. -
      3. -
        Pricing concerns
        -
      4. -
      5. -
        Availability
        -
      6. -
      7. -
        Different die packages
        -
      8. -
      9. -
        Locked BIOS
        -
      10. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  12. -
  13. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  14. -
  15. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      1:26:45 Allyn: Razer Blade
      -
    8. -
    -
  16. -
  17. - -
  18. -
  19. - -
  20. -
  21. -
    Closing/outro
    -
  22. -
- -
-
- -
 
-
- - - -

- -

- -]]>
-
- - -PC Perspective Podcast 463 - 08/17/17 -Thu, 17 Aug 2017 06:00:00 -0400 -97:18 - -pc-perspective-podcast-463-20170817 -Ryan Shrout -Join us for talk about AMD Threadripper, Intel Rumors, and more! - -Join us for talk about AMD Threadripper, Intel Rumors, and more! - -no -PC Perspective Podcast #463 - 08/17/17

- -

Join us for AMD Threadripper, Intel Rumors, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Allyn Malventano, Josh Walrath, Ken Addison, Sebastian Peak

- -

Peanut Gallery: Alex Lustenberg

- -

Program length: 1:37:18

- -
-
- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  14. -
  15. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  16. -
  17. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:26:30 Jeremy: caveat emptor
      -
    2. -
    3. - -
    4. -
    5. -
      1:32:30 Ken: Prusa i3 MK2S 3D Printer (NOW IN STOCK!)
      -
    6. -
    -
  18. -
  19. - -
  20. -
  21. - -
  22. -
  23. -
    Closing/outro
    -
  24. -
-
- -
 
- - - -

- -

-]]>
-
- - - -PC Perspective Podcast 462 - 08/10/17 -Thu, 10 Aug 2017 06:00:00 -0400 -89:52 - -pc-perspective-podcast-462-20170811 -Ryan Shrout -Join us for talk about AMD Threadripper, Intel Rumors, and more! - -Join us for talk about AMD Threadripper, Intel Rumors, and more! - -no -PC Perspective Podcast #462 - 08/10/17

- -

Join us for AMD Threadripper, Intel Rumors, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Josh Walrath, Ken Addison, Sebastian Peak

- -

Peanut Gallery: Alex Lustenberg

- -

Program length: 1:29:38

- -
Podcast topics of discussion:
- -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  14. -
  15. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  16. -
  17. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:16:00 Ryan: Lenovo X1 Carbon
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. -
      1:28:00 Allyn: Fire Extinguisher
      -
    10. -
    -
  18. -
  19. - -
  20. -
  21. - -
  22. -
  23. -
    Closing/outro
    -
  24. -
-
- -
 
- - - -

- -

-]]>
-
- - - -PC Perspective Podcast 461 - 08/03/17 -Thu, 03 August 2017 06:00:00 -0400 - - -pc-perspective-podcast-461-20170803 -Ryan Shrout -Join us for talk about AMD Ryzen 3, Threadripper, Logitech Powerplay, and more! - -Join us for talk about AMD Ryzen 3, Threadripper, Logitech Powerplay, and more! - -no -PC Perspective Podcast #461 - 08/03/17

- -

Join us for AMD Ryzen 3, Threadripper, Logitech Powerplay, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:38:20

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      1:25:45 Ryan: Logitech G903
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      1:34:05 Allyn: Things I would have loved to grow up learning / playing (pixel kit): 1 2
      -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
- - - -

- -

-]]>
-
- - - - -PC Perspective Podcast 460 - 07/27/17 -Thu, 27 July 2017 06:00:00 -0400 -97:41 - -pc-perspective-podcast-460-20170727 -Ryan Shrout -Join us for talk about ASUS Max-Q, Surface vs. iPad, AMD Q2 Results, and more! - -Join us for talk about ASUS Max-Q, Surface vs. iPad, AMD Q2 Results, and more! - -no -PC Perspective Podcast #460 - 07/27/17

- -

Join us for ASUS Max-Q, Surface vs. iPad, AMD Q2 Results, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg, Jim Tanous

- -
Program length: 1:37:41
- -
-
- - -
-
 
- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. - -
  10. -
  11. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  12. -
  13. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  14. -
  15. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      1:27:00 Allyn: Damn cheap 8TB drives (8TB Helium filled Reds!) ($160)
      -
    8. -
    9. -
      1:32:46 Alex: Bullet Bouquets - now with engraving!
      -
    10. -
    -
  16. -
  17. - -
  18. -
  19. - -
  20. -
  21. -
    Closing/outro
    -
  22. -
-
- -
 
-Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!
- -

- -

- -]]>
-
- - -PC Perspective Podcast 459 - 07/20/17 -Thu, 20 July 2017 06:00:00 -0400 - - -pc-perspective-podcast-459-20170720 -Ryan Shrout -Join us for talk about Threadripper Pricing, Liquid Cooled VEGA, Intel Rumors, and more! - -Join us for talk about Threadripper Pricing, Liquid Cooled VEGA, Intel Rumors, and more! - -no -PC Perspective Podcast #459 - 07/20/17

- -

Join us for Threadripper Pricing, Liquid Cooled VEGA, Intel Rumors, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg, Jim Tanous

- -
Program length: 1:46:03
- -
-
- - -
 
- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. -
      1:36:30 Jeremy: Deal on a Ryzen 7 1700
      -
    4. -
    5. - -
    6. -
    7. -
      1:41:04 Allyn: Still using WMC? You need EPG123!
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-
- - -PC Perspective Podcast 458 - 7/13/17 -Thu, 13 July 2017 06:00:00 -0400 -98:08 - -pc-perspective-podcast-458-20170713 -Ryan Shrout -Join us for talk about the Intel Xeon launch, external ThunderBolt3 GPUs, 10Gb Ethernet, and more! - -Join us for talk about the Intel Xeon launch, external ThunderBolt3 GPUs, 10Gb Ethernet, and more! - -no -PC Perspective Podcast #458 - 07/13/17

- -

Join us for Intel Xeon launch, external ThunderBolt3 GPUs, 10Gb Ethernet, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -
Program length: 1:38:08
- -
-
- -
 
- -
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: ASUS XG-C100C lol
      -
    2. -
    3. -
      Jeremy: Um, well I keep meaning to play Deserts of Kharak
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-
- - -PC Perspective Podcast 457 - 07/06/28 -Thu, 06 July 2017 06:00:00 -0400 -68:08 - -pc-perspective-podcast-457-20170706 -Ryan Shrout -Join us for talk about Radeon Vega FE, NVIDIA Multi-Die, Ryzen Pro, and more! - -Join us for talk about Radeon Vega FE, NVIDIA Multi-Die, Ryzen Pro, and more! - -no -PC Perspective Podcast #457 - 07/6/17

- -

Join us for Radeon Vega FE, NVIDIA Multi-Die, Ryzen Pro, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -
Program length: 1:08:04
- -
-
- -
 
- -
-
- -
Podcast topics of discussion:
- -
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. -
        RX Vega perf leak
        -
      6. -
      -
    2. -
    3. -
      0:33:10 Casper!
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-
- - - -PC Perspective Podcast 456 - 06/28/28 -Thu, 28 June 2017 06:00:00 -0400 -88:14 - -pc-perspective-podcast-456-20170628 -Ryan Shrout -Join us for talk about Radeon Vega FE, Intel SSD 545S, GTX USB, Mining Specifc Cards, and more! - -Join us for talk about Radeon Vega FE, Intel SSD 545S, GTX USB, Mining Specifc Cards, and more! - -no -PC Perspective Podcast #456 - 06/28/17

- -

Join us for talk about Radeon Vega FE, Intel SSD 545S, GTX USB, Mining Specifc Cards, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store (audio only) - - -
  • - -
  • Google Play - Subscribe to our audio podcast directly through Google - Play!
  • - -
  • - RSS - Subscribe through your regular RSS reader (audio only) - - -
  • - -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -
- Program length: 1:28:14 -
- -
-
- -
- -
- -
-
- Podcast topics of discussion: -
- -
    -
  1. - -
  2. - -
  3. -
    - Patreon -
    -
  4. - -
  5. - -
  6. - -
  7. - -
  8. - -
  9. -
    - Week in Review: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  10. - -
  11. -
    - News items of interest: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. - -
    11. - -
    12. -
    -
  12. - -
  13. -
    - Hardware/Software Picks of the Week -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  14. - -
  15. - -
  16. - -
  17. - -
  18. - -
  19. -
    - Closing/outro -
    -
  20. -
-
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-
- - - -PC Perspective Podcast 455 - 06/15/17 -Thu, 22 June 2017 06:00:00 -0400 - -pc-perspective-podcast-455-20170622 -Ryan Shrout -Join us for talk about Intel Skylake-X, AMD EPYC 7000 series, IBM 5nm, 802.11ad, and more! - -Join us for talk about Intel Skylake-X, AMD EPYC 7000 series, IBM 5nm, 802.11ad, and more! - -no -96:36 -PC Perspective Podcast #455 - 06/22/17

- -

Join us for talk about Intel Skylake-X, AMD EPYC 7000 series, IBM 5nm, 802.11ad, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store (audio only) - - -
  • - -
  • Google Play - Subscribe to our audio podcast directly through Google - Play!
  • - -
  • - RSS - Subscribe through your regular RSS reader (audio only) - - -
  • - -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -
- Program length: 1:36:49 -
- -
-
- -
- -
- -
-
- Podcast topics of discussion: -
- -
- -
- -
    -
  1. - -
  2. - -
  3. -
    - Patreon -
    -
  4. - -
  5. - -
  6. - -
  7. -
    - Week in Review: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  8. - -
  9. -
    - News items of interest: -
    - -
      -
    1. - -
    2. -
    -
  10. - -
  11. - -
  12. - -
  13. -
    - Hardware/Software Picks of the Week -
    - -
      -
    1. -
      - Ryan: MS Word on iPad -
      -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  14. - -
  15. - -
  16. - -
  17. - -
  18. - -
  19. -
    - Closing/outro -
    -
  20. -
-
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-
- - - -PC Perspective Podcast 454 - 06/15/17 -Thu, 15 June 2017 06:00:00 -0400 - -pc-perspective-podcast-454-20170615 -Ryan Shrout -Join us for talk about Cryptocurreny mining resurgence, XBox One X, and more! - -Join us for talk about Cryptocurreny mining resurgence, XBox One X, and more! - -no -86:26 -PC Perspective Podcast #454 - 06/15/17

- -

Join us for talk about Cryptocurreny mining resurgence, XBox One X, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -
Program length: 1:26:18
- -
-
- -
 
- -
-
- -
Podcast topics of discussion:
- -
 
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-
- - - -PC Perspective Podcast 453 - 06/07/17 -Thu, 7 June 2017 06:00:00 -0400 - -pc-perspective-podcast-453-20170607 -Ryan Shrout -Join us for talk about continued Computex 2017 coverage, WWDC '17, and more! - -Join us for talk about continued Computex 2017 coverage, WWDC '17, and more! - -no -93:54 -PC Perspective Podcast #453 - 06/07/17

- -

Join us for talk about continued Computex 2017 coverage, WWDC '17, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store (audio only) - - -
  • - -
  • Google Play - Subscribe to our audio podcast directly through Google Play!
  • - -
  • - RSS - Subscribe through your regular RSS reader (audio only) - - -
  • - -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -
- Program length: 1:33:54 -
- -
-
- -
- -
- -
- Podcast topics of discussion: -
- -
-
    -
  1. - -
  2. - -
  3. -
    - Patreon -
    -
  4. - -
  5. -
    - Week in Review: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  6. - -
  7. -
    - Computex Continued -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. -
    -
  8. - -
  9. -
    - WWDC 2017: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. -
    -
  10. - -
  11. -
    - News items of interest: -
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. - -
    11. - -
    12. -
    -
  12. - -
  13. -
    - Hardware/Software Picks of the Week -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. -
    -
  14. - -
  15. - -
  16. - -
  17. - -
  18. - -
  19. -
    - Closing/outro -
    -
  20. -
- -
- -
-
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-
- - - - -PC Perspective Podcast 452 - 06/01/17 -Thu, 1 June 2017 06:00:00 -0400 - -pc-perspective-podcast-452-20170601 -Ryan Shrout -Join us for talk about Computex 2017 and more! - -Join us for talk about Computex 2017 and more! - -no -127:12 -PC Perspective Podcast #452 - 01/01/17

- -

Join us for talk about Computex 2017 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store (audio only) - - -
  • - -
  • Google Play - Subscribe to our audio podcast directly through Google - Play!
  • - -
  • - RSS - Subscribe through your regular RSS reader (audio only) - - -
  • - -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -
- Program length: 2:07:12 -
- -
-
- -
- -
- -
- Podcast topics of discussion: -
- -
    -
  1. - -
  2. - -
  3. -
    - Patreon -
    -
  4. - -
  5. -
    - Week in Review: -
    - -
      -
    1. - -
    2. -
    -
  6. - -
  7. -
    - News items of interest: -
    - -
      -
    1. -
      - Intel news -
      - -
        -
      1. - -
      2. - -
      3. - -
      4. - -
      5. - -
      6. - -
      7. - -
      8. - -
      9. - -
      10. - -
      11. - -
      12. - -
      13. - -
      14. - -
      15. - -
      16. -
      -
    2. - -
    3. -
      - AMD news -
      - -
        -
      1. - -
      2. - -
      3. - -
      4. - -
      5. -
        - 0:55:00 RX Vega pushed to end of July (SIGGRAPH), FE on June 27th -
        -
      6. - -
      7. - -
      8. - -
      9. - -
      10. - -
      11. - -
      12. -
      -
    4. - -
    5. -
      - NVIDIA news -
      - -
        -
      1. - -
      2. - -
      3. - -
      4. - -
      5. - -
      6. - -
      7. - -
      8. - -
      9. - -
      10. - -
      11. - -
      12. - -
      13. - -
      14. -
      -
    6. - -
    7. -
      - ARM news -
      - -
        -
      1. - -
      2. - -
      3. - -
      4. -
      -
    8. - -
    9. -
      - Storage news -
      - -
        -
      1. - -
      2. - -
      3. - -
      4. - -
      5. - -
      6. -
      -
    10. - -
    11. -
      - New notebooks -
      - -
        -
      1. - -
      2. - -
      3. - -
      4. - -
      5. - -
      6. -
      -
    12. - -
    13. - -
    14. -
    -
  8. - -
  9. - -
  10. - -
  11. - -
  12. - -
  13. -
    - Closing/outro -
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-
- - - -PC Perspective Podcast 451 - 05/25/17 -Thu, 25 May 2017 06:00:00 -0400 - -pc-perspective-podcast-451-20170525 -Ryan Shrout -Join us for talk about the wew Surface Pro, analog keyboards, water cooled PSUs and more!enCL updates, and more! - -Join us for talk about the wew Surface Pro, analog keyboards, water cooled PSUs and more! - -no -99:25 -PC Perspective Podcast #451 - 05/25/17

- -

Join us for talk about the wew Surface Pro, analog keyboards, water cooled PSUs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg, Jim Tanous, Ken Addison

- -
Program length: 1:39:25
- -
-

Podcast topics of discussion:

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. -
    Casper!
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-
- - -PC Perspective Podcast 450 - 05/18/17 -Thu, 18 May 2017 06:00:00 -0400 - -pc-perspective-podcast-450-20170518 -Ryan Shrout -Join us for AMD Announcments, Core i9 leaks, OpenCL updates, and more! - -Join us for AMD Announcments, Core i9 leaks, OpenCL updates, and more! - -no -80:36 -PC Perspective Podcast #450 - 05/18/17

- -

Join us for AMD Announcments, Core i9 leaks, OpenCL updates, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg

- -
Program length: 1:20:36
- -
-

Podcast topics of discussion:

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: Gigabit LTE please hurry
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: TriboTEX (nanotech engine oil additive)
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -

- -

 

- -

- -]]>
-
- - - -PC Perspective Podcast 449 - 05/10/17 -Thu, 10 May 2017 06:00:00 -0400 - -pc-perspective-podcast-449-20170510 -Ryan Shrout -Join us for NVIDIA Announcements, Dell Predictions, Reviews on watercooling components and more! - -Join us for NVIDIA Announcements, Dell Predictions, Reviews on watercooling components and more! - -no -86:08 -PC Perspective Podcast #449 - 05/11/17

- -

Join us for NVIDIA Announcements, Dell Predictions, Reviews on watercooling components and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store (audio only) - - -
  • - -
  • Google Play - Subscribe to our audio podcast directly through Google - Play!
  • - -
  • - RSS - Subscribe through your regular RSS reader (audio only) - - -
  • - -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Morry Teitelman, Allyn Malventano

- -

Peanut Gallery: Alex Lustenberg, Ken Addison

- -
- Program length: 1:26:08 -
- -
- -
- -
- Podcast topics of discussion: -
- -
    -
  1. - -
  2. - -
  3. -
    - Patreon -
    -
  4. - -
  5. -
    - Week in Review: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. - -
    11. - -
    12. -
    -
  6. - -
  7. -
    - News items of interest: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. -
    -
  8. - -
  9. -
    - Hardware/Software Picks of the Week -
    - -
      -
    1. - -
    2. - -
    3. -
      - Allyn: Statuscore CPU load / test (also works on Ryzen) -
      -
    4. - -
    5. - -
    6. -
    -
  10. -
- -
    -
  1. - -
  2. - -
  3. - -
  4. - -
  5. -
    - Closing/outro -
    -
  6. -
- - - -

- -

-]]>
-
- - - -PC Perspective Podcast 448 - 05/04/17 -Thu, 04 May 2017 06:00:00 -0400 - -pc-perspective-podcast-448-20170504 -Ryan Shrout -Join us for mesh networking performance, Corsair ONE PRO, Microsoft / AMD / NVIDIA updates, 'leaked' Vega specs and more! - -Join us for mesh networking performance, Corsair ONE PRO, Microsoft / AMD / NVIDIA updates, 'leaked' Vega specs and more! - -no -54:15 -PC Perspective Podcast #448 - 05/04/17

- -

Join us for mesh networking performance, Corsair ONE PRO, Microsoft / AMD / NVIDIA updates, 'leaked' Vega specs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Jeremy Hellstrom, Josh Walrath

- -

Peanut Gallery: Alex Lustenberg

- -

Program length: 54:15

- -

Podcast topics of discussion:

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -
 
- - - -

- -

- -]]>
-
- - -PC Perspective Podcast 447 - 04/27/17 -Thu, 27 Apr 2017 06:00:00 -0400 - -pc-perspective-podcast-447-20170427 -Ryan Shrout -Join us this week as we discuss Intel Optane, multiple water cooling parts, a Mini-ITX AM4 board, and more! - -Join us this week as we discuss Intel Optane, multiple water cooling parts, a Mini-ITX AM4 board, and more! - -no -110:22 -PC Perspective Podcast #447 - 04/27/17

- -

Join us for loads of Intel Optane, multiple water cooling parts, a Mini-ITX AM4 board, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Jeremy Hellstrom, Allyn Malventano, Ken Addison, Morry Teitelman

- -

Peanut Gallery: Alex Lustenberg

- -

Program length: 1:50:22

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. -
      Allyn: Factorio fans - 0.15 experimental is out! (new graphics)(dev test img)
      -
    4. -
    5. - -
    6. -
    7. -
      Morry: Bayonetta
      -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

 

- -
 
- - - -

- -

- - -]]>
-
- - -PC Perspective Podcast 446 - 04/20/17 -Thu, 20 Apr 2017 06:00:00 -0400 - -pc-perspective-podcast-446-20170420 -Ryan Shrout -Join us this week as we discuss Radeon RX 580 review, Open Benchtable and DAN cases, Intel Rumors and more! - -Join us this week as we discuss Radeon RX 580 review, Open Benchtable and DAN cases, Intel Rumors and more! - -no -98:24 -PC Perspective Podcast #446 - 04/20/17

- -

Join us for Radeon RX 580 review, Open Benchtable and DAN cases, Intel Rumors and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -

Program length: 1:38:24

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
- -
    -
  1. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. 1:11:00 ASUS Launches the Tinker Board in North America
    6. -
    7. - -
    8. -
    -
  2. -
- -
    -
  1. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: Great deal on a modular Rosewill Glacier Series 500W
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Closing/outro
    -
  8. -
- -
 
- - - -

- -

- -]]>
-
- - - -PC Perspective Podcast 445 - 04/13/17 -Thu, 13 Apr 2017 06:00:00 -0400 - -pc-perspective-podcast-445-20170413 -Ryan Shrout -Join us this week as we discuss Ryzen 5, Spring 2017 Buyers Guide, Alphacool, VIVO, Lian Li, and more! - -Join us this week as we discuss Ryzen 5, Spring 2017 Buyers Guide, Alphacool, VIVO, Lian Li, and more! - -no -86:29 -PC Perspective Podcast #445 - 04/13/17

- -

Join us for Ryzen 5, Spring 2017 Buyers Guide, Alphacool, VIVO, Lian Li, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Peanut Gallery: Ken Addison, Alex Lustenberg

- -
Program length: 1:26:29
- -
 
- -
- - -
 
-
- - - -

- -

-]]>
-
- - - -PC Perspective Podcast 444 - 04/06/17 -Thu, 06 Apr 2017 06:00:00 -0400 - -pc-perspective-podcast-444-20170406 -Ryan Shrout -Join us this week as we discuss an ASUS Z270 Motherboard, NVIDIA Quadro, AMD ReLive, DDR5 and more! - -Join us this week as we discuss an ASUS Z270 Motherboard, NVIDIA Quadro, AMD ReLive, DDR5 and more! - -no -65:54 -PC Perspective Podcast #444 - 04/6/17

- -

Join us for an ASUS Z270 Motherboard, NVIDIA Quadro, AMD ReLive, DDR5 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Jeremy Hellstrom, Josh Walrath, Allyn Malventano, Ken Addison

- -
Program length: 1:05:50
- -
 
- -
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Jeremy: ASUS GTX 1080 8GB ROG STRIX, CAN or US
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- - - -

- -

- -]]>
-
- - - -PC Perspective Podcast 443 - 03/30/17 -Thu, 30 Mar 2017 06:00:00 -0400 - -pc-perspective-podcast-443-20170330 -Ryan Shrout -Join us this weke as we discuss Thermoelectric Coolers, Tiny PSUs, Lots o' Storage, some trips down nostaglia lane, and more! - -Join us this week as we discuss Thermoelectric Coolers, Tiny PSUs, Lots o' Storage, some trips down nostaglia lane, and more! - -no -94:48 -PC Perspective Podcast #443 - 03/30/17

- -

Join us for Thermoelectric Coolers, Tiny PSUs, Lots o' Storage, some trips down nostaglia lane, and more!

- -

You can subscribe to us through iTunes and you can still access it directly - through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store (audio - only) - - -
  • - -
  • Google Play - Subscribe to our audio podcast directly through Google Play!
  • - -
  • - RSS - Subscribe through your regular RSS reader (audio only) - - -
  • - -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano

- -

Program length: 1:34:48

- -
-
-
-
- Podcast topics of discussion: -
- -
    -
  1. - -
  2. - -
  3. -
    - Patreon -
    -
  4. - -
  5. - -
  6. - -
  7. -
    - Week in Review: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. - -
    11. - -
    12. -
    -
  8. - -
  9. -
    - News items of interest: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. -
    -
  10. - -
  11. -
    - Hardware/Software Picks of the Week -
    - -
      -
    1. -
      - Ryan: -
      -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. - -
    9. - -
    10. -
    -
  12. - -
  13. - -
  14. - -
  15. - -
  16. - -
  17. -
    - Closing/outro -
    -
  18. -
-
- -
- -
-
- -
- -
-
- - - -

- -

-]]>
-
- - - - - -PC Perspective Podcast 442 - 03/23/17 -Thu, 23 Mar 2017 06:00:00 -0400 - -pc-perspective-podcast-442-20170323 -Ryan Shrout -Join us this weke as we discuss ARM DynamIQ, Optane Launch, Gigabit LTE, Vulkan, and more! - -Join us this week as we discuss ARM DynamIQ, Optane Launch, Gigabit LTE, Vulkan, and more! - -no -95:35 -PC Perspective Podcast #442 - 03/23/17

- -

Join us for Topre and CORSAIR Keyboards, ARM DynamIQ, Optane Launch, EVGA 4K gaming laptop, and more!

- -

You can subscribe to us through iTunes and you can still access it directly - through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store (audio only) - - -
  • - -
  • Google Play - Subscribe to our audio podcast directly through Google Play!
  • - -
  • - RSS - Subscribe through your regular RSS reader (audio only) - - -
  • - -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Allyn Malventano, Ken Addison

- -

Program length: 1:35:25

- -
- - -
-   -
-
- - - -

- -

-]]>
-
- - - -PC Perspective Podcast 441 - 03/16/17 -Thu, 16 Mar 2017 06:00:00 -0400 - -pc-perspective-podcast-441-20170316 -Ryan Shrout -Join us this week as we discuss NVIDIA GTX 1080 Ti, AMD Ryzen Scheduler Discussion, AMD Ryzen 5 Announcement, Intel Kaby Lake de-lidding, and more! - -Join us this week as we discuss NVIDIA GTX 1080 Ti, AMD Ryzen Scheduler Discussion, AMD Ryzen 5 Announcement, Intel Kaby Lake de-lidding, and more! - -no -84:48 -PC Perspective Podcast #441 - 03/16/17

- -

Join us for NVIDIA GTX 1080 Ti, AMD Ryzen Scheduler Discussion, AMD Ryzen 5 Announcement, Intel Kaby Lake de-lidding, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, Morry Teitelman, Ken Addison

- -

Program length: 1:24:48

- -
-
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: Air travel
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: Air travel
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -
 
-
- - - -

- -

- -]]>
-
- - - -PC Perspective Podcast 440 - 03/09/17 -Thu, 09 Mar 2017 06:00:00 -0400 - -pc-perspective-podcast-440-20170309 -Ryan Shrout -Join us this week as we discuss Ryzen 1 week later, Naples, Logitech G533, G Pro, and more! - -Join us this week as we discuss Ryzen 1 week later, Naples, Logitech G533, G Pro, and more! - -no -95:41 -PC Perspective Podcast #440 - 03/09/17

- -

Join us for Ryzen 1 week later, Naples, Logitech G533, G Pro, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Allyn Malventano, Josh Walrath, Jermey Hellstrom

- -

Program length: 1:35:41

- -
-
-
Podcast topics of discussion:
- -
 
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -
 
-
- - - -

- -

- -]]>
-
- - - - -PC Perspective Podcast 439 - 03/02/17 -Thu, 02 Mar 2017 06:00:00 -0400 - -pc-perspective-podcast-439-20170302 -Ryan Shrout -Join us this week as we discuss GTX 1080Ti, Radeon RX Vega, Ryzen, and more! - -Join us this week as we discuss GTX 1080Ti, Radeon RX Vega, Ryzen, and more! - -no -101:49 -PC Perspective Podcast #439 - 03/02/17

- -

Join us for GTX 1080Ti, Radeon RX Vega, Ryzen and more!

- -

You can subscribe to us through iTunes - and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Allyn Malventano, Josh Walrath, Jermey - Hellstrom

- -

Program length: 1:41:49

- -
-
- Podcast topics - of discussion: -
- -
-
    -
  1. - -
  2. - -
  3. -
    - Patreon -
    -
  4. - -
  5. -
    - Week in - Review: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. -
    -
  6. - -
  7. -
    - Casper - Ad -
    -
  8. - -
  9. -
    - News items - of interest: -
    - -
      -
    1. - -
    2. - -
    3. -
      - 0:36:35 Ryzen - News -
      - -
        -
      1. - -
      2. - -
      3. - -
      4. - -
      5. - -
      6. - -
      7. - -
      8. -
      -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  10. - -
  11. - -
  12. - -
  13. - -
  14. - -
  15. - -
  16. - -
  17. -
    - Closing/outro -
    -
  18. -
-
-
- - - -

- -

- -]]>
-
- - - - -PC Perspective Podcast 438 - 02/22/17 -Thu, 22 Feb 2017 06:00:00 -0400 - -pc-perspective-podcast-438-20170222 -Ryan Shrout -Join us this week as we discuss Vulkan one year later, Logitech G213 Keyboard, eero home mesh networking, Ryzen Pre Orders, and more! - -Join us this week as we discuss EVulkan one year later, Logitech G213 Keyboard, eero home mesh networking, Ryzen Pre Orders, and more! - -no -58:01 -PC Perspective Podcast #438 - 02/23/17

- -

Join us for Vulkan one year later, Logitech G213 Keyboard, eero home mesh networking, Ryzen Pre Orders, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Allyn Malventano, Ken Addison, Josh Walrath, Jermey Hellstrom

- -

Program length: 0:58:01

- -
-
-
Podcast topics of discussion:
- -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: SS64.com - Nifty programmer's reference for scripting, web, db
      -
    6. -
    7. -
      Ken: Dell refurbished XPS 13
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -
 
-
-
- - - -

- -

-]]>
-
- - - -PC Perspective Podcast 437 - 02/15/17 -Thu, 15 Feb 2017 06:00:00 -0400 - -pc-perspective-podcast-437-20170215 -Ryan Shrout -Join us this week as we discuss EVGA iCX, Zen Architechure, Intel Optane, new NVIDIA and AMD driver releases, and more! - -Join us this week as we discuss EVGA iCX, Zen Architechure, Intel Optane, new NVIDIA and AMD driver releases, and more! - -no -81:17 -PC Perspective Podcast #437 - 02/16/17

- -

Join us for EVGA iCX, Zen Architechure, Intel Optane, new NVIDIA and AMD driver releases, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Allyn Malventano, Ken Addison, Josh Walrath, Jermey Hellstrom

- -

Program length: 1:32:21

- -
-
-

Podcast topics of discussion:

- -
 
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -
 
-
- -
 
-
- - - -

- -

- -]]>
-
- - - -PC Perspective Podcast 436 - 02/09/17 -Thu, 09 Feb 2017 06:00:00 -0400 - -pc-perspective-podcast-436-20170209 -Ryan Shrout -Join us this week as we discuss ECS Mini-STX, NVIDIA Quadro, AMD Zen Arch, Optane, GDDR6 and more! - -Join us this week as we discuss ECS Mini-STX, NVIDIA Quadro, AMD Zen Arch, Optane, GDDR6 and more! - -no -92:21 -PC Perspective Podcast #436 - 02/09/17

- -

Join us for ECS Mini-STX, NVIDIA Quadro, AMD Zen Arch, Optane, GDDR6 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Allyn Malventano, Ken Addison, Josh Walrath, Jermey Hellstrom

- -

Program length: 1:32:21

- -
-
-

Podcast topics of discussion:

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. -
      1:14:00 Zen Price Points Leaked
      -
    22. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- - - -
 
-
- -
 
-
- - - -

- -

-]]>
-
- - - -PC Perspective Podcast 435 - 02/02/17 -Thu, 02 Feb 2017 06:00:00 -0400 - -pc-perspective-podcast-435-20170202 -Ryan Shrout -Join us this week as we discuss Nintendo Switch, EVGA SuperNOVA 850w G3, Xbox Project Scorpio, Das Keyboard Gaming, and more! - -Join us this week as we discuss Nintendo Switch, EVGA SuperNOVA 850w G3, Xbox Project Scorpio, Das Keyboard Gaming, and more! - -no -106:22 -PC Perspective Podcast #435 - 02/02/17

- -

Join us this week as we discuss Qualcomm aptX, FSP Reundant PSUs, Micron Enterprise SSDs, 5G LTE, AMD Fiscal Year, ZeniMax lawsuit, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Allyn Malventano, Ken Addison, Josh Walrath, Jermey Hellstrom, Sebastian Peak

- -

Program length: 1:46:22

- -
-
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -
 
- - - -

- -

- -]]>
-
- - - - -PC Perspective Podcast 434 - 01/26/17 -Thu, 26 Jan 2017 06:00:00 -0400 - -pc-perspective-podcast-434-20170126 -Ryan Shrout -Join us this week as we discuss Nintendo Switch, EVGA SuperNOVA 850w G3, Xbox Project Scorpio, Das Keyboard Gaming, and more! - -Join us this week as we discuss Nintendo Switch, EVGA SuperNOVA 850w G3, Xbox Project Scorpio, Das Keyboard Gaming, and more! - -no -67:50 -PC Perspective Podcast #434 - 01/26/17

- -

Join us this week as we discuss Nintendo Switch, EVGA SuperNOVA 850w G3, Xbox Project Scorpio, Das Keyboard Gaming, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jermey Hellstrom

- -

Program length: 1:07:50

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: Moleskin
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- - - -

- -

- - -]]>
-
- - - -PC Perspective Podcast 433 - 01/12/17 -Thu, 19 Jan 2017 06:00:00 -0400 - -pc-perspective-podcast-433-20170119 -Ryan Shrout -Join us this week for budget RX 460 build, Season Titanium, Windows Game Mode, and more! - -Join us this week for budget RX 460 build, Season Titanium, Windows Game Mode, and more! - -no -79:34 -PC Perspective Podcast #433 - 01/19/17

- -

Join us this week as we discuss a budget RX 460 build, Seasonic Titanium, Windows Game Mode, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Sebastian Peak

- -

Program length: 1:19:34

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    Audible
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-
- - - -PC Perspective Podcast 432 - 01/12/16 -Thu, 12 Jan 2017 06:00:00 -0400 - -pc-perspective-podcast-432-20170112 -Ryan Shrout -Join us this week for Intel i7-7700k, Qualcomm Snapdragon 835, AMD Vega, CES coverage, and more! - -Join us this week for Intel i7-7700k, Qualcomm Snapdragon 835, AMD Vega, CES coverage, and more! - -no -105:28 -PC Perspective Podcast #432 - 01/12/17

- -

Join us this week as we DasKeyboard, Samsung 750 EVO, CES predictions and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jermery Hellstrom

- -

Program length: 1:45:28

- -
Podcast topics of discussion:
- -
 
- -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    23. - -
    24. -
    25. - -
    26. -
    27. - -
    28. -
    29. - -
    30. -
    31. - -
    32. -
    33. - -
    34. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Jeremy: 1:42:11 They did it, they beat the hairbrush
      -
    2. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-
- - - -PC Perspective Podcast 431 - 12/20/16 -Thu, 29 Dec 2016 06:00:00 -0400 - -pc-perspective-podcast-431-20161229 -Ryan Shrout -Join us this week as we discuss DasKeyboard, Samsung 750 EVO, CES predictions and more! - -Join us this week as we discuss DasKeyboard, Samsung 750 EVO, CES predictions and more! - -no -95:27 -PC Perspective Podcast #431 - 12/29/16

- -

Join us this week as we DasKeyboard, Samsung 750 EVO, CES predictions and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom, David Hewlett

- -

Program length: 1:35:27

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      0:59:20 CES Predictions
      -
    8. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: Luggage!
      -
    4. -
    5. -
      Josh: $6.99!!!!
      -
    6. -
    7. - - -
       
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- - -]]>
-
- - - -PC Perspective Podcast Holiday Message - 12/23/16 -Fri, 23 Dec 2016 06:00:00 -0400 - -pc-perspective-podcast-holidaymessage2016-20161223 -Ryan Shrout -Thank you to our readers and listeners! - -Thank you to our readers and listeners! - -no -96:05 - - - - -PC Perspective Podcast 430 - 12/20/16 -Thu, 20 Dec 2016 06:00:00 -0400 - -pc-perspective-podcast-430-20161220 -Ryan Shrout -Join us this week as we discuss holiday gift selections and more! - -Join us this week as we discuss holiday gift selections and more! - -no -96:05 -PC Perspective Podcast #430 - 12/20/16

- -

Join us this week as we discuss holiday gift selections and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom, David Hewlett

- -

Program length: 1:36:05

- -
Podcast topics of discussion:
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Gift Selections
    - -
      -
    1. -
      0:02:19 David - Robot Kitchen
      -
    2. -
    3. -
      0:09:13 Ryan - Random Hardware
      -
    4. -
    5. 0:10:28 Group Discussion - Storage, Backups, Joysticks
    6. -
    7. 0:12:48 Ryan - SimpliSafe Security System
    8. -
    9. 0:19:50 Jeremy - LittleBits
    10. -
    11. 0:26:30 Allyn - SSDs!!!!
    12. -
    13. 0:33:37 Josh - Racing Chair
    14. -
    15. 0:39:43 David - Personal Aerial Drone
    16. -
    17. 0:45:02 Ryan - IR Thermometer
    18. -
    19. 0:49:09 Allyn - Dromida Ominus
    20. -
    21. 0:53:00 Jeremy - Victorinox CyberTool M
    22. -
    23. 0:58:10 Josh - Logitech RGB G810
    24. -
    25. 1:00:00 Ken - Monoprice Maker Select Mini 3D Printer
    26. -
    27. 1:05:26 Ryan - HTC Vive
    28. -
    29. 1:14:08 David - Microsoft Hololens
    30. -
    31. 1:19:03 Ryan - Sony A7x
    32. -
    33. 1:19:45 Josh - Monoprice Ear Buds
    34. -
    35. 1:23:10 David / Allyn - Drobo B810n
    36. -
    -
  6. -
  7. Postscript -
      -
    1. 1:29:12 David - UpgradeRequired.org
    2. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-
- - - -PC Perspective Podcast 429 - 12/15/16 -PC Perspective Podcast #428 - 12/8/16

- -

Join us this week as we discuss AMD ReLive, Ryzen, Zalman Keyboards, LG HDR monitors  and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Allyn Malventano, Josh Walrath, Jeremy Hellstrom, Sebastian Peak

- -

Program length: 1:17:34

- -

Podcast topics of discussion:

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Jeremy: Aged, not obsolete - SAMSUNG 850 EVO 2.5" 2TB
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-Thu, 15 Dec 2016 06:00:00 -0400 - -pc-perspective-podcast-429-20161215 -Ryan Shrout -Join us this week as we discuss Khronos Group, Enterprise SSDs, Water cooled cases and more! - -Join us this week as we discuss Khronos Group, Enterprise SSDs, Water cooled cases and more! - -no -78:35 -
- - - -PC Perspective Podcast 428 - 12/08/16 -PC Perspective Podcast #428 - 12/8/16

- -

Join us this week as we discuss Khronos Group, Enterprise SSDs, Water cooled cases  and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Allyn Malventano, Josh Walrath, Jeremy Hellstrom

- -

Program length: 1:13:35

- -
    -
  1. Join our spam list to get notified when we go live!
  2. -
  3. Patreon
  4. -
  5. Win a White Special Edition Corsair RM1000i Power Supply!
  6. -
  7. Week in Review: -
      -
    1. 0:04:16 AUKEY KM-G3 RGB Mechanical Gaming Keyboard Review
    2. -
    3. 0:08:06 Thrustmaster TMX Review: Budget FFB for Xbox One and PC
    4. -
    5. 0:15:16 Deepcool GamerStorm GENOME Liquid-Cooled Case Review
    6. -
    7. 0:23:06 EVGA SuperNOVA 550W G3 Power Supply Review
    8. -
    9. 0:28:01 Qualcomm and Microsoft Bring Full Windows 10 to Snapdragon Devices
    10. -
    -
  8. -
  9. News items of interest: -
      -
    1. 0:32:07 Razer Joins The Khronos Group
    2. -
    3. 0:36:54 Thermaltake Launches Water Cooling Friendly E-ATX Tower 900 Series Case
    4. -
    5. 0:39:32 Intel Z270 Express and H270 Express Chipsets Support Kaby Lake, More PCI-E 3.0 Lanes
    6. -
    7. 0:42:12 MechWarrior 5: Mercenaries Announced on Unreal Engine 4
    8. -
    9. 0:46:10 HP Launches Ruggedized Apollo Lake Powered Convertible Tablet For Students
    10. -
    11. 0:47:33 Micron Launches 5100 Series Enterprise SSDs - 3D TLC up to 8TB!
    12. -
    13. 0:52:12 WD and HGST Refresh Enterprise SSDs to Include 8TB, Push HDDs to 12TB and Beyond
    14. -
    15. 1:02:37 NVIDIA Releases GeForce 376.19 Drivers (and Two Contests)
    16. -
    17. 1:04:14 The Khronos Group Announces VR Standard Initiative
    18. -
    -
  10. -
  11. Hardware/Software Picks of the Week -
      -
    1. Ryan: Uber, but boats  … CanUber
    2. -
    3. Jeremy: PRUSA i3 MK2 printer Store link
    4. -
    5. Josh: Hitting low cost per GB!
    6. -
    7. Allyn: iRoller
    8. -
    -
  12. -
  13. http://pcper.com/podcast
  14. -
  15. http://twitter.com/ryanshrout and http://twitter.com/pcper
  16. -
  17. Closing/outro
  18. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-Thu, 08 Dec 2016 06:00:00 -0400 - -pc-perspective-podcast-428-20161208 -Ryan Shrout -Join us this week as we discuss AMD ReLive, Ryzen, Zalman Keyboards, LG HDR monitors and more! - -Join us this week as we discuss AMD ReLive, Ryzen, Zalman Keyboards, LG HDR monitors and more! - -no -77:35 -
- - -PC Perspective Podcast 427 - 12/01/16 -PC Perspective Podcast #427 - 12/01/16

- -

Join us this week as we discuss leaked Zen prices, Kaby Lake performance leaks, GTX 1050 Ti upgrades and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom

- -

Program length: 1:20:41

- -

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

- -

- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

Video Soon!

- -

-]]>
-Thu, 01 Dec 2016 06:00:00 -0400 - -pc-perspective-podcast-427-20161201 -Ryan Shrout -Join us this week as we discuss leaked Zen prices, Kaby Lake performance leaks, GTX 1050 Ti upgrades and more! - -Join us this week as we discuss leaked Zen prices, Kaby Lake performance leaks, GTX 1050 Ti upgrades and more! - -no -80:41 -
- - -PC Perspective Podcast 426 - 11/23/16 -PC Perspective Podcast #426 - 11/23/16

- -

Join us this week as we discuss Intel Kaby Lake performance, a new Corsair Crystal 570X case, Qualcomm Snapdragon 835 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom

- -

Program length: 1:23:24

- -

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      0:41:38 Random thoughts and Q&A!
      -
    6. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: Lenovo Phab 2 Pro SD 652, Android 6, 6.4” QHD, 4GB, 64GB, 4050 mAh
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

Video soon!

- -

-]]>
-Thu, 23 Nov 2016 06:00:00 -0400 - -pc-perspective-podcast-426-20161123 -Ryan Shrout -Join us this week as we discuss Intel Kaby Lake performance, a new Corsair Crystal 570X case, Qualcomm Snapdragon 835 and more! - -Join us this week as we discuss Intel Kaby Lake performance, a new Corsair Crystal 570X case, Qualcomm Snapdragon 835 and more! - -no -83:00 -
- - -PC Perspective Podcast 425 - 11/17/16 -PC Perspective Podcast #425 - 11/17/16

- -

Join us this week as we discuss new Samsung 960 EVO, NZXT S340, NVIDIA revenue, wireless Vive, Serious Sam VR, Steam VR on Linux and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Allyn Malventano, Josh Walrath, Jeremy Hellstrom, and Sebastian Peak

- -

Program length: 1:13:46

- -

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan:
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 17 Nov 2016 06:00:00 -0400 - -pc-perspective-podcast-425-20161117 -Ryan Shrout -Join us this week as we discuss new Samsung 960 EVO, NZXT S340, NVIDIA revenue, wireless Vive, Serious Sam VR, Steam VR on Linux and more! -Join us this week as we discuss new Samsung 960 EVO, NZXT S340, NVIDIA revenue, wireless Vive, Serious Sam VR, Steam VR on Linux and more! -no -73:46 -
- - -PC Perspective Podcast 424 - 11/10/16 -PC Perspective Podcast #424 - 11/10/16

- -

Join us this week as we discuss new AMD Radeon Pro GPUs, Corsair Carbide Air 740 Review, MSI Gaming Notebook Overview, VRMark, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Allyn Malventano, Josh Walrath, and Jeremy Hellstrom

- -

Program length: 1:09:34

- -

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    Casper!
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: I am applying for a position in this administration! going to change the direction of technology policy
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-Thu, 10 Nov 2016 06:00:00 -0400 - -pc-perspective-podcast-424-20161110 -Ryan Shrout -Join us this week as we discuss new AMD Radeon Pro GPUs, Corsair Carbide Air 740 Review, MSI Gaming Notebook Overview, VRMark, and more! -Join us this week as we discuss new AMD Radeon Pro GPUs, Corsair Carbide Air 740 Review, MSI Gaming Notebook Overview, VRMark, and more! -no -69:34 -
- - -PC Perspective Podcast 423 - 11/03/16 -PC Perspective Podcast #423 - 11/03/16

- -

Join us this week as we discuss the Logitech Prodigy G231, multi-GPU scaling with DX12, Qualcomm buying NXP, issues with GTX 1070 and 1080 cards and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom

- -

Program length: 1:10:25

- -

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    Today’s episode is brought to you by Harry’s! Use code PCPER at checkout!
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

Video Soon!

- -

-]]>
-Thu, 03 Nov 2016 06:00:00 -0400 - -pc-perspective-podcast-423-20161103 -Ryan Shrout -Join us this week as we discuss the Logitech Prodigy G231, multi-GPU scaling with DX12, Qualcomm buying NXP, issues with GTX 1070 and 1080 cards and more! -Join us this week as we discuss the Logitech Prodigy G231, multi-GPU scaling with DX12, Qualcomm buying NXP, issues with GTX 1070 and 1080 cards and more! -no -70:25 -
- - -PC Perspective Podcast 422 - 10/27/16 -PC Perspective Podcast #422 - 10/27/16

- -

Join us this week as we discuss the Samsung 960 Pro, Fanatec racing gear, an Acer UltraWide projector, Optane leaks, MS Surface Studio and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom

- -

Program length: 1:47:11

- -
    -
  1. Join our spam list to get notified when we go live!
  2. -
  3. Patreon
  4. -
  5. Fragging Frogs VLAN 14
  6. -
  7. Week in Review: -
      -
    1. 0:06:00 Fanatec ClubSport V2 Ecosystem Review: What is Realism Worth?
    2. -
    3. 0:25:20 Samsung 960 PRO 2TB M.2 NVMe SSD Full Review - Even Faster!
    4. -
    5. 0:45:35 Acer Predator Z850 UltraWide 24:9 Gaming Projector Review
    6. -
    7. 0:54:28 EVGA SuperNOVA 750W G2L Power Supply Review
    8. -
    -
  8. -
  9. Today’s episode is brought to you by Harry’s! Use code PCPER at checkout!
  10. -
  11. News items of interest: -
      -
    1. 1:00:50 GTX 1050 and 1050Ti
    2. -
    3. 1:05:30 Intel Optane (XPoint) First Gen Product Specifications Leaked
    4. -
    5. 1:11:20 Microsoft Introduces Surface Studio AiO Desktop PC
    6. -
    7. 1:21:45 Microsoft Windows 10 Creators Update Formally Announced
    8. -
    9. 1:25:25 Qualcomm Announces Snapdragon X50 5G Modem
    10. -
    11. 1:31:55 NVIDIA Tegra SoC powers new Nintendo Switch gaming system
    12. -
    -
  12. -
  13. Hardware/Software Picks of the Week -
      -
    1. Ryan: Chewbacca Hoodie
    2. -
    3. Jeremy: The Aimpad R5 is actually much cooler than I thought
    4. -
    5. Josh: Solid for the price. Get on special!
    6. -
    7. Allyn: Factorio
    8. -
    -
  14. -
  15. http://pcper.com/podcast
  16. -
  17. http://twitter.com/pcper
  18. -
  19. Closing/Outro
  20. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

VIDEO SOON

- -

-]]>
-Thu, 13 Oct 2016 06:00:00 -0400 - -pc-perspective-podcast-422-20161027 -Ryan Shrout -Join us this week as we discuss the Samsung 960 Pro, Fanatec racing gear, an Acer UltraWide projector, Optane leaks, MS Surface Studio and more! -Join us this week as we discuss the Samsung 960 Pro, Fanatec racing gear, an Acer UltraWide projector, Optane leaks, MS Surface Studio and more! -no -106:41 -
- - -PC Perspective Podcast 421 - 10/13/16 -PC Perspective Podcast #421 - 10/13/16

- -

Join us this week as we discuss our review of the iPhone 7, the Drobo 5C, Intel FPGAs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom, and Sebastian Peak

- -

Program length: 1:22:35

- -

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. -
    Today’s episode is brought to you by Casper!
    -
  12. -
  13. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  14. -
  15. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: UE Boom 2
      -
    2. -
    3. -
      Jeremy: Hee hee, you really want Win7?
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  16. -
  17. - -
  18. -
  19. - -
  20. -
  21. -
    Closing/outro
    -
  22. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-Thu, 13 Oct 2016 06:00:00 -0400 - -pc-perspective-podcast-421-20161013 -Ryan Shrout -Join us this week as we discuss our review of the iPhone 7, the Drobo 5C, Intel FPGAs and more! -Join us this week as we discuss our review of the iPhone 7, the Drobo 5C, Intel FPGAs and more! -no -82:35 -
- - -PC Perspective Podcast 420 - 10/06/16 -PC Perspective Podcast #420 - 10/06/16

- -

Join us this week as we discuss the REVEEN JUSTICE Air Cooler, Silverstone Strider 550W PSU, NVIDIA Xavier SoC, Google Pixel, Logitech C922, 1050Ti, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath, Jeremy Hellstrom, and Sebastian Peak

- -

Program length: 1:21:45

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 06 Oct 2016 06:00:00 -0400 - -pc-perspective-podcast-420-20161006 -Ryan Shrout -Join us this week as we discuss the REVEEN JUSTICE Air Cooler, Silverstone Strider 550W PSU, NVIDIA Xavier SoC, Google Pixel, Logitech C922, 1050Ti, and more! -Join us this week as we discuss the REVEEN JUSTICE Air Cooler, Silverstone Strider 550W PSU, NVIDIA Xavier SoC, Google Pixel, Logitech C922, 1050Ti, and more! -no -81:22 -
- - -PC Perspective Podcast 419 - 09/29/16 -PC Perspective Podcast #419 - 09/29/16

- -

Join us this week as we discuss the Edition 10 of the Rampage V motherboard, a VerticalMouse, a shiny SilverStone case, the AMD A12-9800 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath and Jeremy Hellstrom

- -
-

Program length: 1:05:25

- -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - - -
 
- -
-
- -

-]]>
-Thu, 29 Sep 2016 06:00:00 -0400 - -pc-perspective-podcast-419-20160929 -Ryan Shrout -Join us this week as we discuss the Edition 10 of the Rampage V motherboard, a VerticalMouse, a shiny SilverStone case, the AMD A12-9800 and more! -Join us this week as we discuss the Edition 10 of the Rampage V motherboard, a VerticalMouse, a shiny SilverStone case, the AMD A12-9800 and more! -no -65:25 -
- - -PC Perspective Podcast 418 - 09/22/16 -PC Perspective Podcast #418 - 09/22/16

- -

Join us this week as we discuss an air cooler roundup, Samsung 960 EVO and Pro announced and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Josh Walrath, Jeremy Hellstrom, Sebastian Peak and Ken Addison

- - - -

- -

-]]>
-Thu, 22 Sep 2016 06:00:00 -0400 - -pc-perspective-podcast-418-20160922 -Ryan Shrout -Join us this week as we discuss an air cooler roundup, Samsung 960 EVO and Pro announced and more! -Join us this week as we discuss an air cooler roundup, Samsung 960 EVO and Pro announced and more! -no -70:13 -
- - -PC Perspective Podcast 417 - 09/15/16 -PC Perspective Podcast #417 - 09/15/16

- -

Join us this week as we discuss the Maximus VIII Forumla, MoCA adapters, GFE logins and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath and Jeremy Hellstrom

- -
Program length: 1:36:39 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. -
    This episode is brought to you by Casper! (Use code “pcper”)
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- - -
- -

VIDEO SOON

- -

-]]>
-Thu, 15 Sep 2016 06:00:00 -0400 - -pc-perspective-podcast-417-20160915 -Ryan Shrout -Join us this week as we discuss the Maximus VIII Forumla, MoCA adapters, GFE logins and more! -Join us this week as we discuss the Maximus VIII Forumla, MoCA adapters, GFE logins and more! -no -96:39 -
- - -PC Perspective Podcast 416 - 09/08/16 -PC Perspective Podcast #416 - 09/08/16

- -

Join us this week as we discuss the Intel SSD 600p, Leaked Zen Performance, new iPhone and PS4 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath and Jeremy Hellstrom

- -
Program length: 1:48:53 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Razer PAX 2016
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - -
- -

VIDEO SOON

- -

-]]>
-Thu, 08 Sep 2016 06:00:00 -0400 - -pc-perspective-podcast-416-20160908 -Ryan Shrout -Join us this week as we discuss the Intel SSD 600p, Leaked Zen Performance, new iPhone and PS4 and more! -Join us this week as we discuss the Intel SSD 600p, Leaked Zen Performance, new iPhone and PS4 and more! -no -108:53 -
- - -PC Perspective Podcast 415 - 09/01/16 -PC Perspective Podcast #415 - 09/01/2016

- -

Join us this week as we discuss the ASUS GeForce GTX 1060 Turbo, Intel SSD P3520, HUAWEI Mate 8, ASUS Strix X99, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath and Jeremy Hellstrom

- -
Program length: 1:49:46 -
-
 
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      1:07:04 IFA 2016
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn:
      - -
        -
      1. -
        Update your iOS devices (really bad root exploits finally fixed)!
        -
      2. -
      3. -
        HTC Vive users - enable bluetooth and standby your beacons
        -
      4. -
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - - -
-
- -

- -]]>
-Thu, 01 Sep 2016 06:00:00 -0400 - -pc-perspective-podcast-415-20160901 -Ryan Shrout -Join us this week as we discuss the ASUS GeForce GTX 1060 Turbo, Intel SSD P3520, HUAWEI Mate 8, ASUS Strix X99, and more! -Join us this week as we discuss the ASUS GeForce GTX 1060 Turbo, Intel SSD P3520, HUAWEI Mate 8, ASUS Strix X99, and more! -no -109:46 -
- - -PC Perspective Podcast 414 - 08/25/16 -PC Perspective Podcast #414 - 08/25/2016

- -

Join us this week as we discuss the newly released architecture details of AMD Zen, Audeze headphones, AMD market share gains and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Josh Walrath and Jeremy Hellstrom

- -
Program length: 1:37:15 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - -
- -

-]]>
-Thu, 25 Aug 2016 06:00:00 -0400 - -pc-perspective-podcast-414-20160825 -Ryan Shrout -Join us this week as we discuss the newly released architecture details of AMD Zen, Audeze headphones, AMD market share gains and more! -Join us this week as we discuss the newly released architecture details of AMD Zen, Audeze headphones, AMD market share gains and more! -no -97:15 -
- - -PC Perspective Podcast 413 - 08/18/16 -PC Perspective Podcast #413 - 08/18/2016

- -

Join us this week as we discuss the new mobile GeForce GTX 10-series gaming notebooks, ARM and Intel partnering on 10nm, Flash Memory Summit and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Allyn Malventano, Sebastian Peak, Josh Walrath and Jeremy Hellstrom

- -
Program length: 1:29:39 -
-
    -
  1. -

    Join our spam list to get notified when we go live!

    -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    This episode of PC Perspective is brought to you by Casper!! Use code “PCPER”
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. -
      0:42:05 Final news from FMS 2016
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: VR Demi Moore
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- - - -
Video Soon!!
-
- -

-]]>
-Thu, 18 Aug 2016 06:00:00 -0400 - -pc-perspective-podcast-413-20160818 -Ryan Shrout -Join us this week as we discuss the new mobile GeForce GTX 10-series gaming notebooks, ARM and Intel partnering on 10nm, Flash Memory Summit and more! -Join us this week as we discuss the new mobile GeForce GTX 10-series gaming notebooks, ARM and Intel partnering on 10nm, Flash Memory Summit and more! -no -89:39 -
- - -PC Perspective Podcast 412 - 08/11/16 -PC Perspective Podcast #412 - 08/11/2016

- -

Join us this week as we discuss the new 10TB Seagate hard drive, Le Grand Macho cooler and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ken Addison, Jeremy Hellstrom, Josh Walrath, Sebastian Peak

- -
Program length: 54:54 -
    -
  • No show notes today, editing remotely!
  • -
- - - -
-
- -

-]]>
-Thu, 11 Aug 2016 06:00:00 -0400 - -pc-perspective-podcast-412-20160811 -Ryan Shrout -Join us this week as we discuss the new 10TB Seagate hard drive, Le Grand Macho cooler and more! -Join us this week as we discuss the new 10TB Seagate hard drive, Le Grand Macho cooler and more! -no -54:54 -
- - -PC Perspective Podcast 411 - 08/05/16 -PC Perspective Podcast #411 - 08/05/2016

- -

Join us this week as we discuss our new Titan X review and talk with the fans at Quakecon 2016!!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Ken Addison and Morry Teitelman

- -
Program length: 1:23:59 -
    -
  • No show notes today, enjoy the free flow discussion!
  • -
- - - -
VIDEO SOON-ISH
-
- -

-]]>
-Thu, 05 Aug 2016 06:00:00 -0400 - -pc-perspective-podcast-411-20160805 -Ryan Shrout - - -no -83:59 -
- - -PC Perspective Podcast 410 - 07/28/16 -PC Perspective Podcast #410 - 07/28/2016

- -

Join us this week as we discuss the new Pascal based Titan X, an AMD graphics card with 1TB of SSD storage on-board, data recovery with RapidSpar and more!!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Ryan Shrout, Allyn Malventano, Sebastian Peak, and Josh Walrath

- -
Program length: 1:46:33 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  12. -
  13. -
    1:29:15 Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: Wii emulation is absolutely usable now (Dolphin 5)
      -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- - -
- -

-]]>
-Thu, 28 Jul 2016 06:00:00 -0400 - -pc-perspective-podcast-410-20160728 -Ryan Shrout -Join us this week as we discuss the new Pascal based Titan X, an AMD graphics card with 1TB of SSD storage on-board, data recovery with RapidSpar and more!! -Join us this week as we discuss the new Pascal based Titan X, an AMD graphics card with 1TB of SSD storage on-board, data recovery with RapidSpar and more!! -no -106:33 -
- - -PC Perspective Podcast 409 - 07/21/16 -PC Perspective Podcast #409 - 07/21/2016

- -

Join us this week as we discuss the GTX 1060 review, controversy surrounding the async compute of 3DMark Time Spy and more!!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Casper!

- -

Hosts:  Ryan Shrout, Allyn Malventano, Jeremy Hellstrom, and Josh Walrath

- -
Program length: 1:34:57 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    -
  8. -
  9. -
    0:51:17 This episode of the PC Perspective Podcast is sponsored by Casper!
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  12. -
  13. -
    1:26:26 Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: Sapphire Nitro Bot
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: klocki - chill puzzle game (also on iOS / Android)
      -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- - - -
VIDEO SOON
-
- -

-]]>
-Thu, 21 Jul 2016 06:00:00 -0400 - -pc-perspective-podcast-409-20160721 -Ryan Shrout -Join us this week as we discuss the GTX 1060 review, controversy surrounding the async compute of 3DMark Time Spy and more!! -Join us this week as we discuss the GTX 1060 review, controversy surrounding the async compute of 3DMark Time Spy and more!! -no -97:34 -
- - -PC Perspective Podcast 408 - 07/14/16 -PC Perspective Podcast #408 - 07/14/2016

- -

Join us this week as we discuss a conclusion to the RX 480 power issue, the GTX 1060, a 4TB Samsung 850 EVO and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts:  Ryan Shrout, Allyn Malventano, Jeremy Hellstrom, and Josh Walrath

- -
Program length: 1:36:40 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: Rigol DS1054Z Digital Oscilloscope (hackable and overclockable!)
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - - -
-
- -

-]]>
-Thu, 14 Jul 2016 06:00:00 -0400 - -pc-perspective-podcast-408-20160714 -Ryan Shrout -Join us this week as we discuss a conclusion to the RX 480 power issue, the GTX 1060, a 4TB Samsung 850 EVO and more! -Join us this week as we discuss a conclusion to the RX 480 power issue, the GTX 1060, a 4TB Samsung 850 EVO and more! -no -96:40 -
- - -PC Perspective Podcast 407 - 07/07/16 -PC Perspective Podcast #407 - 07/07/2016

- -

Join us this week as we discuss RX 480 Power Concerns, X1 Yoga, Thrustmaster, Micron 9100 MAX, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Kaspersky! (promo code pcper)

- -

Hosts:  Ryan Shrout, Allyn Malventano, Jeremy Hellstrom, and Josh Walrath

- -
Program length: 1:47:16 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    AD BREAK
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Jeremy: Canuck with no patience? Gigabyte GeForce GTX 1070 G1 Gaming
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- - - -]]> -Thu, 07 Jul 2016 06:00:00 -0400 - -pc-perspective-podcast-407-20160707 -Ryan Shrout -Join us this week as we discuss RX 480 Power Concerns, X1 Yoga, Thrustmaster, Micron 9100 MAX, and more! -Join us this week as we discuss RX 480 Power Concerns, X1 Yoga, Thrustmaster, Micron 9100 MAX, and more! -no -107:16 - - - -PC Perspective Podcast 406 - 06/30/16 -PC Perspective Podcast #406 - 06/30/2016

- -

Join us this week as we discuss our AMD RX 480 review, the new Huawei MateBook, GTX 1060 and RX 490 leaks and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts:  Ryan Shrout, Allyn Malventano, Jeremy Hellstrom, and Josh Walrath

- -
Program length: 1:28:40 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. -
        Power Concerns?
        -
      2. -
      -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - - -
VIDEO SOON!
-
- -

-]]>
-Thu, 30 Jun 2016 06:00:00 -0400 - -pc-perspective-podcast-406-20160630 -Ryan Shrout -Join us this week as we discuss our AMD RX 480 review, the new Huawei MateBook, GTX 1060 and RX 490 leaks and more! -Join us this week as we discuss our AMD RX 480 review, the new Huawei MateBook, GTX 1060 and RX 490 leaks and more! -no -88:15 -
- - -PC Perspective Podcast 405 - 06/23/16 -PC Perspective Podcast #405 - 06/23/2016

- -

Join us this week as we discuss a AMD RX 480 hands-on, 32-core Zen rumors, the ASUS/MSI VBIOS scandal and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Kaspersky Labs!

- -

Hosts:  Ryan Shrout, Allyn Malventano, Jeremy Hellstrom, and Josh Walrath

- -
Program length: 1:33:07 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    This episode is sponsored by Kaspersky Labs!
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: devCalc Pro - Engineering Mode calculator for iOS
      -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- - - -
 
-
- -

-]]>
-Thu, 23 Jun 2016 06:00:00 -0400 - -pc-perspective-podcast-405-20160623 -Ryan Shrout -Join us this week as we discuss an AMD RX 480 hands-on, 32-core Zen rumors, the ASUS/MSI VBIOS scandal and more! -Join us this week as we discuss an AMD RX 480 hands-on, 32-core Zen rumors, the ASUS/MSI VBIOS scandal and more! -no -93:06 -
- - -PC Perspective Podcast 404 - 06/16/16 -PC Perspective Podcast #404 - 06/16/2016

- -

Join us this week as we discuss the new Crucial MX300 SSD, news on upcoming Xbox hardware changes, GTX 1080 shortages and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts:  Ryan Shrout, Allyn Malventano, Jeremy Hellstrom, and Josh Walrath

- -
-
Program length: 1:48:30 -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. -
      0:39:00 Xbox E3 Hardware Discussion
      -
    2. -
    3. -
      0:49:50 GeForce GTX 1080 Shortages?
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: Trackr
      -
    2. -
    3. - -
    4. -
    5. -
      Allyn: Safely Remove USB devices (or figure out what’s stopping them)
      -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - - -
 
-
-
- -

-]]>
-Thu, 16 Jun 2016 06:00:00 -0400 - -pc-perspective-podcast-404-20160616 -Ryan Shrout -Join us this week as we discuss the new Crucial MX300 SSD, news on upcoming Xbox hardware changes, GTX 1080 shortages and more! -Join us this week as we discuss the new Crucial MX300 SSD, news on upcoming Xbox hardware changes, GTX 1080 shortages and more! -no -108:15 -
- - -PC Perspective Podcast 403 - 06/09/16 -PC Perspective Podcast #403 - 06/09/2016

- -

Join us this week as we discuss the GTX 1070 Review, i7-6950X Review, AMD Radeon RX480, Aftermarket GTX 1080’s, Tiny SSDs, Computex 2016, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts:  Allyn Malventano, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- -
-
Program length: 1:19:54 -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. -
        This is actually in the Mirror’s Edge Driver!
        -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Sebastian: Clean install Windows 8.1 or Windows 10
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- - -
-
-

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Fri, 09 Jun 2016 12:00:00 -0400 - -pc-perspective-podcast-403-20160609 -Ryan Shrout -Join us this week as we discuss the Fractal Define S, Corsair Lapdog, Pascal dropping 3+4 way SLI game support, EVGA SLI HB's, and more! -Join us this week as we discuss the Fractal Define S, Corsair Lapdog, Pascal dropping 3+4 way SLI game support, EVGA SLI HB's, and more! -no -79:54 -
- - -PC Perspective Podcast 402 - 06/03/16 -PC Perspective Podcast #402 - 06/02/2016

- -

Join us this week as we discuss the GTX 1070 Review, i7-6950X Review, AMD Radeon RX480, Aftermarket GTX 1080’s, Tiny SSDs, Computex 2016, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Casper!

- -

Hosts:  Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Sebastian Peak

- -
-
Program length: 2:02:07
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    Casper!
    - -
      -
    1. - -
    2. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      1:12:09 Aftermarket GTX 1080s are here!
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    6. -
    7. - -
    8. -
    9. -
      1:27:25 ASUS Computex 2016
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: Break down and organize / lookup all of those Amazon boxes.
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-]]>
-Fri, 03 Jun 2016 06:33:07 -0400 - -pc-perspective-podcast-402-20160603 -Ryan Shrout -Join us this week as we discuss the GTX 1070 Review, i7-6950X Review, AMD Radeon RX480, Aftermarket GTX 1080's, Tiny SSDs, Computex 2016, and more! -Join us this week as we discuss the GTX 1070 Review, i7-6950X Review, AMD Radeon RX480, Aftermarket GTX 1080's, Tiny SSDs, Computex 2016, and more! -no -122:07 -
- - -PC Perspective Podcast 401 - 05/26/16 -PC Perspective Podcast #401 - 05/26/2016

- -

Join us this week as we discuss the Gigabyte X99P-SLI, RevoDrive is back, GPU Drivers, Computex, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts:  Allyn Malventano, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- -
-
Program length: 1:07:00
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. Jeremy: #MakeSpaceGreatAgain
    4. -
    5. Allyn: [the Sequence]
    6. -
    7. Josh: Last Year’s Model, but still nifty!
    8. -
    9. Sebastian: A great game, remastered
    10. -
    -
  10. -
  11. http://pcper.com/podcast
  12. -
  13. http://twitter.com/ryanshrout and http://twitter.com/pcper
  14. -
  15. Closing/outro
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-]]>
-Thu, 26 May 2016 06:33:07 -0400 - -pc-perspective-podcast-401-20160526 -Ryan Shrout -Join us this week as we discuss the Gigabyte X99P-SLI, RevoDrive is back, GPU Drivers, Computex, and more! -Join us this week as we discuss the Gigabyte X99P-SLI, RevoDrive is back, GPU Drivers, Computex, and more! -no -66:41 -
- - - -PC Perspective Podcast 400 - 05/19/16 -PC Perspective Podcast #400 - 05/19/2016

- -

Join us this week as we discuss the GTX 1080 performance and features, official specifications of the GTX 1070, new Polaris specification rumors, ARM's 10nm chip test and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-
Program length: 1:03:21
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    1:04:30 Hardware/Software Picks of the Week
    - -
      -
    1. -
      Ryan: DOOM
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 19 May 2016 06:33:07 -0400 - -pc-perspective-podcast-400-20160519 -Ryan Shrout -Join us this week as we discuss the GTX 1080 performance and features, official specifications of the GTX 1070, new Polaris specification rumors, ARM's 10nm chip test and more! -Join us this week as we discuss the GTX 1080 performance and features, official specifications of the GTX 1070, new Polaris specification rumors, ARM's 10nm chip test and more! -no -78:29 -
- - -PC Perspective Podcast 399 - 05/12/16 -PC Perspective Podcast #399 - 05/11/2016

- -

Join us this week as we discuss the GTX 1080 Launch, UWP Updates, DOOM Vulkan Patch, Kaby Lake Leaks, ASUS ROG STRIX X99, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Casper!

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:03:21

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    2. -
    -
  6. -
  7. -
    AD BREAK
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: Old retro gaming history from PlayValue
      -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 12 May 2016 17:33:07 -0400 - -pc-perspective-podcast-399-20160512 -Ryan Shrout -Join us this week as we discuss the GTX 1080 Launch, UWP Updates, DOOM Vulkan Patch, Kaby Lake Leaks, ASUS ROG STRIX X99, and more! -Join us this week as we discuss the GTX 1080 Launch, UWP Updates, DOOM Vulkan Patch, Kaby Lake Leaks, ASUS ROG STRIX X99, and more! -no -63:22 -
- - -PC Perspective Podcast 398 - 05/05/16 -PC Perspective Podcast #398 - 05/05/2016

- -

Join us this week as we discuss the AMD Radeon Pro Duo Review, Godavari Refresh, ECS - Z170-Claymore, ICY DOCK hot-swappable SSDs, and more!

- -

You can subscribe to us through iTunes - and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts: Allyn Malventano, Jeremy Hellstrom, and Josh - Walrath

- -
-

Program length: 1:29:10

- -
    -
  1. - -
  2. - -
  3. - -
  4. - -
  5. -
    - Week in Review: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  6. - -
  7. -
    - News items of interest: -
    - -
      -
    1. - -
    2. - -
    3. - -
    4. - -
    5. - -
    6. - -
    7. - -
    8. -
    -
  8. - -
  9. -
    - Hardware/Software Picks of the Week -
    - -
      -
    1. -
      - Jeremy: Microsoft - “Pray - I don't alter it any further” -
      -
    2. - -
    3. - -
    4. - -
    5. - -
    6. -
    -
  10. - -
  11. - -
  12. - -
  13. - -
  14. - -
  15. -
    - Closing/outro -
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, - reviews and podcasts!!

- -

-]]>
-Thu, 05 May 2016 17:33:07 -0400 - -pc-perspective-podcast-398-20160505 -Ryan Shrout -Join us this week as we discuss the AMD Radeon Pro Duo Review, Godavari Refresh, ECS Z170-Claymore, ICY DOCK hot-swappable SSDs, and more! -Join us this week as we discuss the AMD Radeon Pro Duo Review, Godavari Refresh, ECS Z170-Claymore, ICY DOCK hot-swappable SSDs, and more! -no -89:10 -
- - -PC Perspective Podcast 397 - 04/28/16 -PC Perspective Podcast #397 - 04/28/2016

- -

Join us this week as we discuss the AMD Radeon Pro Duo, NZXT Manta, AMD's new deal with China, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 28 Apr 2016 06:00:03 -0400 - -pc-perspective-podcast-397-20160428 -Ryan Shrout -Join us this week as we discuss the AMD Radeon Pro Duo, NZXT Manta, AMD's new deal with China, and more! -Join us this week as we discuss the AMD Radeon Pro Duo, NZXT Manta, AMD's new deal with China, and more! -no -76:15 -
- - - -PC Perspective Podcast 396 - 04/21/16 -PC Perspective Podcast #396 - 04/21/2016

- -

Join us this week as we discuss MSI Gaming Notebooks, Intel Layoffs, the PlayStation Neo and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 21 Apr 2016 06:00:03 -0400 - -pc-perspective-podcast-396-20160421 -Ryan Shrout -Join us this week as we discuss MSI Gaming Notebooks, Intel Layoffs, the PlayStation Neo and more! -Join us this week as we discuss MSI Gaming Notebooks, Intel Layoffs, the PlayStation Neo and more! -no -101:44 -
- - -PC Perspective Podcast 395 - 04/14/16 -PC Perspective Podcast #395 - 04/14/2016

- -

Join us this week as we discuss AMD Driver Quality, New Intel and Micron SSDs, Corsair's SPEC-ALPHA and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-
- - - - -
- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

This episode of the PC Perspective Podcast is sponsored by Lenovo!

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 14 Apr 2016 06:00:03 -0400 - -pc-perspective-podcast-395-20160414 -Ryan Shrout -Join us this week as we discuss AMD Driver Quality, New Intel and Micron SSDs, Corsair's SPEC-ALPHA and more! -Join us this week as we discuss AMD Driver Quality, New Intel and Micron SSDs, Corsair's SPEC-ALPHA and more! -no -68:28 -
- - -PC Perspective Podcast 394 - 04/07/16 -PC Perspective Podcast #394 - 04/07/2016

- -

Join us this week as we discuss measuring VR Performance, NVIDIA's Pascal GP100, Bristol Ridge APUs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, and Josh Walrath

- -
-

Program length: 1:32:19

- -
    -
  1. -

    Join our spam list to get notified when we go live!

    -
  2. -
  3. -

    We’re on Patreon!

    -
  4. -
  5. -

    Week in Review:

    - -
      -
    1. -

      0:07:35 Thermaltake Core X9 E-ATX Cube Chassis - Advanced Topics

      -
    2. -
    3. -

      0:14:30 Measuring VR Performance and Experiences - A Prologue

      -
    4. -
    5. -

      0:33:35 SteamVR HTC Vive In-depth - Lighthouse Tracking System Dissected and Explored

      -
    6. -
    -
  6. -
  7. -

    0:46:25 This week’s podcast is brought to you by Casper. Use code PCPER at checkout for $50 towards your order!

    - -
      -
    1. -

      0:50:10 NVIDIA Pascal Architecture Details, Tesla P100, GP100 GPU

      -
    2. -
    -
  8. -
  9. -

    News items of interest:

    - -
      -
    1. -

      1:06:05 AMD Pre-Announces 7th Gen A-Series SOC

      -
    2. -
    3. -

      1:09:00 AMD Brings Dual Fiji and HBM Memory To Server Room With FirePro S9300 x2

      -
    4. -
    5. -

      1:13:40 EVGA Releases NVIDIA GeForce GTX 950 Low Power Cards

      -
    6. -
    7. -

      1:15:30 HP Announces World's Thinnest Laptop - The Spectre 13.3

      -
    8. -
    -
  10. -
  11. -

    Hardware/Software Picks of the Week

    - -
      -
    1. -

      Ryan: Slack

      -
    2. -
    3. -

      Jeremy: Now you can have even less time

      -
    4. -
    5. -

      Josh: Just ordered this one.. Was $99. Will be again!

      -
    6. -
    7. -

      Allyn: Play old arcade games in your browser (archive.org)

      -
    8. -
    -
  12. -
  13. -

    http://pcper.com/podcast

    -
  14. -
  15. -

    http://twitter.com/ryanshrout and http://twitter.com/pcper

    -
  16. -
  17. -

    Closing/outro

    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- - -]]>
-Thu, 07 Apr 2016 06:00:03 -0400 - -pc-perspective-podcast-394-20160407 -Ryan Shrout -Join us this week as we discuss measuring VR Performance, NVIDIA's Pascal GP100, Bristol Ridge APUs and more! -Join us this week as we discuss measuring VR Performance, NVIDIA's Pascal GP100, Bristol Ridge APUs and more! -no -92:19 -
- - -PC Perspective Podcast 393 - 03/31/16 -PC Perspective Podcast #393 - 03/31/2016

- -

Join us this week as we discuss the HTC Vive and Oculus Rift, EVGA SC17 Notebook, UWP games and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - - -

Hosts: Ryan Shrout, Jeremy Hellstrom, and Josh Walrath

- -
-

Program length: 1:37:33

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    0:45:10 This episode of PC Perspective Podcast is brought to you by Braintree. Even the best mobile app won’t work without the right payments API. That’s where the Braintree v.0 SDK comes in. One amazingly simple integration gives you every way to pay. Try out the sandbox and see for yourself at braintree­payments.com/pcper
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -]]>
-Thu, 31 Mar 2016 06:00:03 -0400 - -pc-perspective-podcast-393-20160331 -Ryan Shrout -Join us this week as we discuss the HTC Vive and Oculus Rift, EVGA SC17 Notebook, UWP games and more! -Join us this week as we discuss the HTC Vive and Oculus Rift, EVGA SC17 Notebook, UWP games and more! -no -97:33 -
- - -PC Perspective Podcast 392 - 03/24/16 -PC Perspective Podcast #392 - 03/24/2016

- -

Join us this week as we discuss the Samsung 850 EVO V2, VR Build Guides, the End of Tick-Tock, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-]]>
-Thu, 24 Mar 2016 06:00:03 -0400 - -pc-perspective-podcast-392-20160324 -Ryan Shrout -Join us this week as we discuss the Samsung 850 EVO V2, VR Build Guides, the End of Tick-Tock, and more! -Join us this week as we discuss the Samsung 850 EVO V2, VR Build Guides, the End of Tick-Tock, and more! -no -93:37 -
- - -PC Perspective Podcast 391 - 03/17/16 -PC Perspective Podcast #391 - 03/17/2016

- -

Join us this week as we discuss the AMD's news from GDC, the MSI Vortex, and Q&A!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 17 Mar 2016 06:00:03 -0400 - -pc-perspective-podcast-391-20160317 -Ryan Shrout -Join us this week as we discuss the AMD's news from GDC, the MSI Vortex, and QA! -Join us this week as we discuss the AMD's news from GDC, the MSI Vortex, and QA! -no -88:26 -
- - -PC Perspective Podcast 390 - 03/10/16 -PC Perspective Podcast #390 - 03/10/2016

- -

Join us this week as we discuss the ASUS Z170 Sabertooth Mk1, Corsair Carbide 400C, more about Windows Store Games, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 10 Mar 2016 06:00:03 -0400 - -pc-perspective-podcast-390-20160310 -Ryan Shrout -Join us this week as we discuss the ASUS Z170 Sabertooth Mk1, Corsair Carbide 400C, more about Windows Store Games, and more! -Join us this week as we discuss the ASUS Z170 Sabertooth Mk1, Corsair Carbide 400C, more about Windows Store Games, and more! -no -72:32 -
- - -PC Perspective Podcast 389 - 03/03/16 -PC Perspective Podcast #389 - 03/03/2016

- -

Join us this week as we discuss the Thermaltake Core X9, the Controvery around DirectX 12, FreeSync HDMI Displays, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, and Morry Tietelman

- -
-

Program length: 1:32:49

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - - -
      -
    1. -
      And the VLAN on Saturday!
      -
    2. -
    -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    0:51:40 This episode of PC Perspective Podcast is brought to you by Braintree. Even the best mobile app won’t work without the right payments API. That’s where the Braintree v.0 SDK comes in. One amazingly simple integration gives you every way to pay. Try out the sandbox and see for yourself at braintree­payments.com/pcper
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

-]]>
-Thu, 03 Mar 2016 06:00:03 -0400 - -pc-perspective-podcast-389-20160303 -Ryan Shrout -Join us this week as we discuss the Thermaltake Core X9, the Controvery around DirectX 12, FreeSync HDMI Displays, and more! -Join us this week as we discuss the Thermaltake Core X9, the Controvery around DirectX 12, FreeSync HDMI Displays, and more! -no -92:49 -
- - -PC Perspective Podcast 388 - 02/25/16 -PC Perspective Podcast #388 - 02/25/2016

- -

Join us this week as we discuss the Samsung SSD T3, Logitech G933 and G633, Vulkan on Android, HTC Vive Pricing and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Allyn Malventano, Josh Walrath, and Sebastian Peak

- -
-

Program length: 1:42:11

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    0:41:35 This episode of PC Perspective Podcast is brought to you by Braintree. Even the best mobile app won’t work without the right payments API. That’s where the Braintree v.0 SDK comes in. One amazingly simple integration gives you every way to pay. Try out the sandbox and see for yourself at braintree­payments.com/pcper
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. -
      MWC News!
      - -
        -
      1. - - -
          -
        1. - -
        2. -
        -
      2. -
      3. -
        0:48:30 Lenovo
        - -
          -
        1. - -
        2. -
        3. - -
        4. -
        5. - -
        6. -
        -
      4. -
      5. - - -
          -
        1. - -
        2. -
        -
      6. -
      7. - - -
          -
        1. - -
        2. -
        -
      8. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. -
      Allyn: Use PAR files? Get MultiPar. (PAR3 support!)
      -
    4. -
    5. -
      Sebastian: Running PS2 games at high res with PCSX2 Version 1.4
      -
    6. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 25 Feb 2016 06:00:03 -0400 - -pc-perspective-podcast-388-20160225 -Ryan Shrout -Join us this week as we discuss the Samsung SSD T3, Logitech G933 and G633, Vulkan on Android, HTC Vive Pricing and more! -Join us this week as we discuss the Samsung SSD T3, Logitech G933 and G633, Vulkan on Android, HTC Vive Pricing and more! -no -102:11 -
- - -PC Perspective Podcast 387 - 02/18/16 -PC Perspective Podcast #387 - 02/18/2016

- -

Join us this week as we discuss the ASUS PB328Q, Samsung 750 EVO SSD, the release of Vulkan and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:34:18

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    0:35:00 This episode of the PC Perspective Podcast is brought to you by Audible, the world's leading provider of audiobooks with more than 180,000 downloadable titles across all types of literature including fiction, nonfiction, and periodicals. For your free audiobook, go to audible.com/pcper
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. -
    1:07:00 This episode of PC Perspective Podcast is brought to you by Braintree. Even the best mobile app won’t work without the right payments API. That’s where the Braintree v.0 SDK comes in. One amazingly simple integration gives you every way to pay. Try out the sandbox and see for yourself at braintree­payments.com/pcper
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  14. -
  15. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  16. -
  17. - -
  18. -
  19. - -
  20. -
  21. -
    Closing/outro
    -
  22. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 18 Feb 2016 06:00:03 -0400 - -pc-perspective-podcast-387-20160218 -Ryan Shrout -Join us this week as we discuss the ASUS PB328Q, Samsung 750 EVO SSD, the release of Vulkan and more! -Join us this week as we discuss the ASUS PB328Q, Samsung 750 EVO SSD, the release of Vulkan and more! -no -94:18 -
- - -PC Perspective Podcast 386 - 02/11/16 -PC Perspective Podcast #386 - 02/10/2016

- -

Join us this week as we discuss the Logitech G810, Phanteks Enthoo EVOLV ITX, GTX 980 Ti VR Edition and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:11:48

-
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    0:36:45 This week’s podcast is brought to you by Casper. Use code PCPER at checkout for $50 towards your order!
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

-]]>
-Thu, 11 Feb 2016 06:00:03 -0400 - -pc-perspective-podcast-386-20160211 -Ryan Shrout -Join us this week as we discuss the Logitech G810, Phanteks Enthoo EVOLV ITX, GTX 980 Ti VR Edition and more! -Join us this week as we discuss the Logitech G810, Phanteks Enthoo EVOLV ITX, GTX 980 Ti VR Edition and more! -no -90:34 -
- - -PC Perspective Podcast 385 - 02/04/16 -PC Perspective Podcast #385 - 02/04/2016

- -

Join us this week as we discuss Rise of the Tomb Raider performance, a triple RAID-0 NVMe array and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 04 Feb 2016 06:00:03 -0400 - -pc-perspective-podcast-385-20160204 -Ryan Shrout -Join us this week as we discuss Rise of the Tomb Raider performance, a triple RAID-0 NVMe array and more! -Join us this week as we discuss Rise of the Tomb Raider performance, a triple RAID-0 NVMe array and more! -no -76:38 -
- - -PC Perspective Podcast 384 - 01/28/16 -PC Perspective Podcast #384 - 01/28/2016

- -

Join us this week as we discuss the Corsair Carbide 600Q, GDDR5X, a Dual Fiji Graphics card and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- - - -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 28 Jan 2016 06:00:03 -0400 - -pc-perspective-podcast-384-20160128 -Ryan Shrout -Join us this week as we discuss the Corsair Carbide 600Q, GDDR5X, a Dual Fiji Graphics card and more! -Join us this week as we discuss the Corsair Carbide 600Q, GDDR5X, a Dual Fiji Graphics card and more! -no -71:48 -
- - -PC Perspective Podcast 383 - 01/21/16 -PC Perspective Podcast #383 - 01/21/2016

- -

Join us this week as we discuss the Acer Predator X34, ASUS X99-M, AMD Q4 Earnings and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 21 Jan 2016 06:00:03 -0400 - -pc-perspective-podcast-383-20160121 -Ryan Shrout -Join us this week as we discuss the Acer Predator X34, ASUS X99-M, AMD Q4 Earnings and more! -Join us this week as we discuss the Acer Predator X34, ASUS X99-M, AMD Q4 Earnings and more! -no -85:23 -
- - -PC Perspective Podcast 382 - 01/14/16 -PC Perspective Podcast #382 - 01/14/2016

- -

Join us this week as we wrap up news from CES 2016, discuss the R9 Nano price cut, ponder a 13TB SSD and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- - -]]>
-Wed, 14 Jan 2016 06:00:03 -0400 - -pc-perspective-podcast-382-20160114 -Ryan Shrout -Join us this week as we wrap up news from CES 2016, discuss the R9 Nano price cut, ponder a 13TB SSD and more! -Join us this week as we wrap up news from CES 2016, discuss the R9 Nano price cut, ponder a 13TB SSD and more! -no -92:11 -
- - -PC Perspective Podcast CES 2016 - Day 3 -CES 2016 Podcast Day 3 - 01/07/16

- -

We wrap up CES 2016 by talking about new ROG monitors from ASUS, Plenty of M.2 PCIe Drives, a giant case from EVGA and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, Ken Addison and Sebastian Peak

- -

Program length: 1:47:01

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

Video Coming Soon!

- -]]>
-Wed, 06 Jan 2016 06:00:03 -0400 - -pc-perspective-podcast-ces2016-day3b -Ryan Shrout -We wrap up CES 2016 by talking about new ROG monitors from ASUS, Plenty of M.2 PCIe Drives, a giant case from EVGA and more! -We wrap up CES 2016 by talking about new ROG monitors from ASUS, Plenty of M.2 PCIe Drives, a giant case from EVGA and more! -no -107:01 -
- - - -PC Perspective Podcast CES 2016 - Day 2 -CES 2016 Podcast Day 2 - 01/06/16

- -

Join us for announcements from MSI, Gigabyte, Corsair, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Ken Addison and Sebastian Peak

- -

Program length: 1:02:45

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

Video Coming Soon!

-]]>
-Wed, 06 Jan 2016 01:00:03 -0400 - -pc-perspective-podcast-ces2016-day2 -Ryan Shrout -Join us for announcements from MSI, Gigabyte, Corsair, and more! -Join us for announcements from MSI, Gigabyte, Corsair, and more! -no -62:45 -
- - - -PC Perspective Podcast CES 2016 - Day 1 -CES 2016 Podcast Day 1 - 01/05/16

- -

CES is just beginning. Join us for announcements from Lenovo, NVIDIA Press Conference, and new AMD GPUs.

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, Ken Addison and Sebastian Peak

- -

Program length: 1:11:05

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

Video Coming Soon!

-]]>
-Tue, 05 Jan 2016 01:00:03 -0400 - -pc-perspective-podcast-ces2016-day1 -Ryan Shrout -CES is just beginning. Join us for announcements from Lenovo, NVIDIA Press Conference, new AMD GPUs and more! -CES is just beginning. Join us for announcements from Lenovo, NVIDIA Press Conference, new AMD GPUs and more! -no -71:05 -
- - -PC Perspective Podcast 381 - 12/31/15 -PC Perspective Podcast #381 - 12/31/2015

- -

Join us this week as we discuss our Picks of the Year, the EK Predator 240, ASUS MG278Q  FreeSync and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano, Morry Tietelman, and Sebastian Peak

- -
-

Program length: 2:13:30

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. -
    PC Perspective Hardware Picks of the Year
    - -
      -
    1. -
      0:48:30 Graphics Card of 2015
      -
    2. -
    3. -
      1:00:40 CPU of 2015
      -
    4. -
    5. -
      1:06:55 Storage of 2015
      -
    6. -
    7. -
      1:11:15 Case of 2015
      -
    8. -
    9. -
      1:20:50 Motherboard of 2015
      -
    10. -
    11. -
      1:29:20 Price Drop of 2015
      -
    12. -
    13. -
      1:38:30 Mobile Device of 2015
      -
    14. -
    15. -
      1:45:50 Best Trend of 2015
      -
    16. -
    17. -
      1:57:40 Worst Trend of 2015
      -
    18. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 31 Dec 2015 06:00:03 -0400 - -pc-perspective-podcast-381-123115 -Ryan Shrout -Join us this week as we discuss our Picks of the Year, the EK Predator 240, ASUS MG278Q FreeSync and more! -Join us this week as we discuss our Picks of the Year, the EK Predator 240, ASUS MG278Q FreeSync and more! -no -83:31 -
- - -PC Perspective Podcast 380 - 12/24/15 -PC Perspective Podcast #380 - 12/24/2015

- -

Join us this week as we discuss Microsoft's Surface Devices, the ASUS X99-E WS. HTC Vive and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

SOUNDCLOUD

- -

Hosts: Ryan Shrout, Allyn Malventano, Morry Tietelman, and Sebastian Peak

- -
-

Program length: 1:23:31

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  4. -
  5. -
    0:39:25 This week’s podcast is brought to you by Casper. Use code PCPER at checkout for $50 towards your order!
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. -
      Allyn: Send stuff anywhere (cross platform - android/iOS)
      -
    4. -
    5. - -
    6. -
    -
  10. -
  11. - -
  12. -
- -
    -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 23 Dec 2015 06:00:03 -0400 - -pc-perspective-podcast-380-122415 -Ryan Shrout -Join us this week as we discuss Microsoft's Surface Devices, the ASUS X99-E WS. HTC Vive and more! -Join us this week as we discuss Microsoft's Surface Devices, the ASUS X99-E WS. HTC Vive and more! -no -83:31 -
- - -PC Perspective Podcast 379 - 12/17/15 -PC Perspective Podcast #379 - 12/17/2015

- -

Join us this week as we discuss the Snapdragon 820, AMD's GPUOpen, Thrustmaster T300 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Josh Walrath, Jeremy Hellstrom, Allyn Malventano, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 17 Dec 2015 06:00:03 -0400 - -pc-perspective-podcast-379-121715 -Ryan Shrout -Join us this week as we discuss the Snapdragon 820, AMD's GPUOpen, Thrustmaster T300 and more! -Join us this week as we discuss the Snapdragon 820, AMD's GPUOpen, Thrustmaster T300 and more! -no -73:34 -
- - -PC Perspective Podcast 378 - 12/10/15 -PC Perspective Podcast #378 - 12/10/2015

- -

Join us this week as we discuss updates from the Radeon Technology Group, a new case from Antec, ASUS Maximus VIII Gene and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Josh Walrath, Jeremy Hellstrom, Allyn Malventano, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 10 Dec 2015 06:00:03 -0400 - -pc-perspective-podcast-378-121015 -Ryan Shrout -Join us this week as we discuss updates from the Radeon Technology Group, a new case from Antec, ASUS Maximus VIII Gene and more! -Join us this week as we discuss updates from the Radeon Technology Group, a new case from Antec, ASUS Maximus VIII Gene and more! -no -95:43 -
- - -PC Perspective Podcast 377 - 12/03/15 -PC Perspective Podcast #377 - 12/03/2015

- -

Join us this week as we discuss AMD Radeon Software Crimson, our Holiday Gift Guide, Scott Wasson moving to AMD and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 03 Dec 2015 06:00:03 -0400 - -pc-perspective-podcast-37-120315 -Ryan Shrout -Join us this week as we discuss AMD Radeon Software Crimson, our Holiday Gift Guide, Scott Wasson moving to AMD and more! -Join us this week as we discuss AMD Radeon Software Crimson, our Holiday Gift Guide, Scott Wasson moving to AMD and more! -no -54:20 -
- - -PC Perspective Podcast 376 - 11/19/15 -PC Perspective Podcast #376 - 11/19/2015

- -

Join us this week as we discuss Intel Speed Shift, CPU Coolers from Noctua and DEEPCOOL, Broadwell-E Rumors, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- -
-

Program length: 1:19:22

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  4. -
  5. -
    0:32:10 This episode of PC Perspective Podcast is brought to you by Braintree. Even the best mobile app won’t work without the right payments API. That’s where the Braintree v.0 SDK comes in. One amazingly simple integration gives you every way to pay. Try out the sandbox and see for yourself at braintree­payments.com/pcper
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -
    -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- - -]]>
-Thu, 19 Nov 2015 06:00:03 -0400 - -pc-perspective-podcast-376-111915 -Ryan Shrout -Join us this week as we discuss Intel Speed Shift, CPU Coolers from Noctua and DEEPCOOL, Broadwell-E Rumors, and more! -Join us this week as we discuss Intel Speed Shift, CPU Coolers from Noctua and DEEPCOOL, Broadwell-E Rumors, and more! -no -79:22 -
- - -PC Perspective Podcast 375 - 11/12/15 -PC Perspective Podcast #375 - 11/12/2015

- -

Join us this week as we discuss the Snapdragon 820, Lenovo Yoga 900, R9 380X and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- -
-

Program length: 1:21:59

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  4. -
  5. -
    0:29:30 This week’s podcast is brought to you by Casper. Use code PCPER at checkout for $50 towards your order!
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -
    -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 12 Nov 2015 06:00:03 -0400 - -pc-perspective-podcast-375-111215 -Ryan Shrout -Join us this week as we discuss the Snapdragon 820, Lenovo Yoga 900, R9 380X and more! -Join us this week as we discuss the Snapdragon 820, Lenovo Yoga 900, R9 380X and more! -no -82:11 -
- - -PC Perspective Podcast 374 - 11/05/15 -PC Perspective Podcast #374 - 11/05/2015

- -

Join us this week as we discuss cases for the R9 Nano, Thrustmaster T150, The End of AMD Catalyst and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

soundcloud

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 05 Nov 2015 06:00:03 -0400 - -pc-perspective-podcast-374-110515 -Ryan Shrout -Join us this week as we discuss cases for the R9 Nano, Thrustmaster T150, The End of AMD Catalyst and more! -Join us this week as we discuss cases for the R9 Nano, Thrustmaster T150, The End of AMD Catalyst and more! -no -81:59 -
- - -PC Perspective Podcast 373 - 10/29/15 -PC Perspective Podcast #373 - 10/29/2015

- -

Join us this week as we discuss the Samsung 950 Pro, ASUS ROG Swift PG279Q, Steam Link and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 29 Oct 2015 06:00:03 -0400 - -pc-perspective-podcast-373-102915 -Ryan Shrout -Join us this week as we discuss the Samsung 950 Pro, ASUS ROG Swift PG279Q, Steam Link and more! -Join us this week as we discuss the Samsung 950 Pro, ASUS ROG Swift PG279Q, Steam Link and more! -no -85:18 -
- - - -PC Perspective Podcast 372 - 10/22/15 -PC Perspective Podcast #372 - 10/22/2015

- -

Join us this week as we discuss the Steam Controller and Steam Link, Acer XR321CK Ultrawide Freesync Display, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Allyn Malventano, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- - - -]]>
-Thu, 22 Oct 2015 06:00:03 -0400 - -pc-perspective-podcast-372-102215 -Ryan Shrout -Join us this week as we discuss the Steam Controller and Steam Link, Acer XR321CK Ultrawide Freesync Display, and more! -Join us this week as we discuss the Steam Controller and Steam Link, Acer XR321CK Ultrawide Freesync Display, and more! -no -89:18 -
- - -PC Perspective Podcast 371 - 10/15/15 -PC Perspective Podcast #371 - 10/15/2015

- -

Join us this week as we discuss the MSI GT72S Dominator Pro G, ROG Product Announcements, Ultrawide G-Sync and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malventano

- -
-

Program length: 1:39:38

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  4. -
  5. -
    0:42:55 This week’s podcast is brought to you by Casper. Use code PCPER at checkout for $50 towards your order!
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - - -
        -
      1. - -
      2. -
      -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    23. - -
    24. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -
    -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

- -]]>
-Thu, 15 Oct 2015 06:00:03 -0400 - -pc-perspective-podcast-371-101515 -Ryan Shrout -Join us this week as we discuss the MSI GT72S Dominator Pro G, ROG Product Announcements, Ultrawide G-Sync and more! -Join us this week as we discuss the MSI GT72S Dominator Pro G, ROG Product Announcements, Ultrawide G-Sync and more! -no -99:38 -
- - - -PC Perspective Podcast 370 - 10/08/15 -PC Perspective Podcast #370 - 10/08/2015

- -

Join us this week as we discuss the Gigabyte Z170X-Gaming G1, New Microsoft Surface products, NVIDIA Pascal Rumors and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malventano

- -
-

Program length: 1:31:05

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  4. -
  5. -
    0:30:00 This episode of the PC Perspective Podcast is brought to you by Audible, the world's leading provider of audiobooks with more than 180,000 downloadable titles across all types of literature including fiction, nonfiction, and periodicals. For your free audiobook, go to audible.com/pcper
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. -
      Ryan: iPhone 6s Stallion
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 08 Oct 2015 06:00:03 -0400 - -pc-perspective-podcast-370-100815 -Ryan Shrout -Join us this week as we discuss the Gigabyte Z170X-Gaming G1, New Microsoft Surface products, NVIDIA Pascal Rumors and more! -Join us this week as we discuss the Gigabyte Z170X-Gaming G1, New Microsoft Surface products, NVIDIA Pascal Rumors and more! -no -91:05 -
- - -PC Perspective Podcast 369 - 10/01/15 -PC Perspective Podcast #369 - 10/01/2015

- -

Join us this week as we discuss the Fable Legends DX12 Benchmark, Apple A9 SoC, Intel P3608 SSD, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Morry Teitelman

- -
-

Program length: 1:24:13

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - - -
        -
      1. - -
      2. -
      -
    10. -
    -
  4. -
  5. -
    0:54:10 This episode of PC Perspective is brought to you by…Zumper, the quick and easy way to find your next apartment or home rental. To get started and to find your new home go to http://zumper.com/PCP
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - - -
        -
      1. - -
      2. -
      -
    12. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 01 Oct 2015 06:00:03 -0400 - -pc-perspective-podcast-369-100115 -Ryan Shrout -Join us this week as we discuss the Fable Legends DX12 Benchmark, Apple A9 SoC, Intel P3608 SSD, and more! -Join us this week as we discuss the Fable Legends DX12 Benchmark, Apple A9 SoC, Intel P3608 SSD, and more! -no -102:35 -
- - -PC Perspective Podcast 368 - 09/24/15 -PC Perspective Podcast #368 - 09/24/2015

- -

Join us this week as we discuss full GTX 980s in notebooks, Samsung's NVMe 950 Pro, Jim Keller leaving AMD and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Morry Teitelman

- -
-

Program length: 1:29:03

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    -
  4. -
  5. -
    0:46:10 This episode of PC Perspective is brought to you by…Zumper, the quick and easy way to find your next apartment or home rental. To get started and to find your new home go to http://zumper.com/PCP
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 24 Sep 2015 06:00:03 -0400 - -pc-perspective-podcast-368-092415 -Ryan Shrout -Join us this week as we discuss full GTX 980s in notebooks, Samsung's NVMe 950 Pro, Jim Keller leaving AMD and more! -Join us this week as we discuss full GTX 980s in notebooks, Samsung's NVMe 950 Pro, Jim Keller leaving AMD and more! -no -84:13 -
- - -PC Perspective Podcast 367 - 09/17/15 -PC Perspective Podcast #367 - 09/17/2015

- -

Join us this week as we discuss the AMD R9 Nano, a Corsair GTX 980Ti, NVIDIA Pascal Rumors and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

 

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malventano

- -
-

Program length: 1:29:03

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  4. -
  5. -
    0:41:15 This week’s podcast is brought to you by Casper. Use code PCPER at checkout for $50 towards your order!
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - - -
        -
      1. - -
      2. -
      -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: Samsung 840 mSATA users (and possibly 840 users): get ready
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- - -]]>
-Thu, 17 Sep 2015 06:00:03 -0400 - -pc-perspective-podcast-367-091715 -Ryan Shrout -Join us this week as we discuss the AMD R9 Nano, a Corsair GTX 980Ti, NVIDIA Pascal Rumors and more! -Join us this week as we discuss the AMD R9 Nano, a Corsair GTX 980Ti, NVIDIA Pascal Rumors and more! -no -89:03 -
- - -PC Perspective Podcast 366 - 09/10/15 -PC Perspective Podcast #366 - 09/10/2015

- -

Join us this week as we discuss the MSI 990FXA-Gaming, Corsair Vengeance LPX DDR4-3400, R9 Nano Controversy and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

 

- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 10 Sep 2015 06:00:03 -0400 - -pc-perspective-podcast-366-091015 -Ryan Shrout -Join us this week as we discuss the MSI 990FXA-Gaming, Corsair Vengeance LPX DDR4-3400, R9 Nano Controversy and more! -Join us this week as we discuss the MSI 990FXA-Gaming, Corsair Vengeance LPX DDR4-3400, R9 Nano Controversy and more! -no -85:28 -
- - -PC Perspective Podcast 365 - 09/03/15 -PC Perspective Podcast #365 - 09/03/2015

- -

Join us this week as we discuss the R9 Nano Preview, Tons of Skylake SKUs, Asynchronous Shaders and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

 

- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Sebastian Peak

- -
-

Program length: 1:49:27

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  4. -
  5. -
    0:48:45 This week’s episode of the PC Perspective Podcast is brought to you by VideoBlocks
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      IFA 2015:
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - - -
          -
        1. - -
        2. -
        -
      6. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: Tabbed Windows Explorer with QTTabBar
      -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 03 Sep 2015 06:00:03 -0400 - -pc-perspective-podcast-365-090315 -Ryan Shrout -Join us this week as we discuss the R9 Nano Preview, Tons of Skylake SKUs, Asynchronous Shaders and more! -Join us this week as we discuss the R9 Nano Preview, Tons of Skylake SKUs, Asynchronous Shaders and more! -no -109:27 -
- - -PC Perspective Podcast 364 - 08/27/15 -PC Perspective Podcast #364 - 08/27/2015

- -

Join us this week as we discuss the Nixeus Vue 24 FreeSync Monitor, AMD R9 Nano leaks, GPU Marketshare and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Allyn Malventano, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 27 Aug 2015 06:00:03 -0400 - -pc-perspective-podcast-364-082715 -Ryan Shrout -Join us this week as we discuss the Nixeus Vue 24 FreeSync Monitor, AMD R9 Nano leaks, GPU Marketshare and more! -Join us this week as we discuss the Nixeus Vue 24 FreeSync Monitor, AMD R9 Nano leaks, GPU Marketshare and more! -no -82:36 -
- - -PC Perspective Podcast 363 - 08/20/15 -PC Perspective Podcast #363 - 08/20/2015

- -

Join us this week as we discuss DX12 Benchmarking, Skylake News from IDF, Intel Optane Storage and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 20 Aug 2015 06:00:03 -0400 - -pc-perspective-podcast-363-082015 -Ryan Shrout -Join us this week as we discuss DX12 Benchmarking, Skylake News from IDF, Intel Optane Storage and more! -Join us this week as we discuss DX12 Benchmarking, Skylake News from IDF, Intel Optane Storage and more! -no -73:03 -
- - -PC Perspective Podcast 362 - 08/13/15 -PC Perspective Podcast #362 - 08/13/2015

- -

Join us this week as we discuss Benchmarking a Voodoo 3, Flash Media Summit 2015, Skylake Delidding and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- -
-

Program length: 1:15:23

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. -
      0:35:30 FMS 2015:
      - -
        -
      1. - - -
          -
        1. - -
        2. -
        -
      2. -
      3. - -
      4. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 13 Aug 2015 06:00:03 -0400 - -pc-perspective-podcast-362-081215 -Ryan Shrout -Join us this week as we discuss Benchmarking a Voodoo 3, Flash Media Summit 2015, Skylake Delidding and more! -Join us this week as we discuss Benchmarking a Voodoo 3, Flash Media Summit 2015, Skylake Delidding and more! -no -75:23 -
- - -PC Perspective Podcast 361 - 08/06/15 -PC Perspective Podcast #361 - 08/06/2015

- -

Join us this week as we discuss the Intel Skylake Core i7-6700K, Logitech G29 Racing Wheel, Lenovo LaVie-Z and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 06 Aug 2015 06:00:03 -0400 - -pc-perspective-podcast-361-080615 -Ryan Shrout -Join us this week as we discuss the Intel Skylake Core i7-6700K, Logitech G29 Racing Wheel, Lenovo LaVie-Z and more -Join us this week as we discuss the Intel Skylake Core i7-6700K, Logitech G29 Racing Wheel, Lenovo LaVie-Z and more -no -105:17 -
- - -PC Perspective Podcast 360 - 07/30/15 -PC Perspective Podcast #360 - 07/30/2015

- -

Join us this week as we discuss Intel XPoint Memory, Windows 10 and DX12, FreeSync displays and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 30 Jul 2015 06:00:03 -0400 - -pc-perspective-podcast-360-073015 -Ryan Shrout -Join us this week as we discuss Intel XPoint Memory, Windows 10 and DX12, FreeSync displays and more! -Join us this week as we discuss Intel XPoint Memory, Windows 10 and DX12, FreeSync displays and more! -no -78:34 -
- - -PC Perspective Podcast 359 - 07/23/15 -PC Perspective Podcast #359 - 07/23/2015

- -

Join us this week as we discuss the AMD R9 Nano, 4TB Samsung SSDs, Windows 10 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

 

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:10:31

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  4. -
  5. -
    This episode is brought to you by Casper. Use offer code pcper at checkout for $50 towards your order
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: More reasons to BOINC a frog with the Killer Frogs
      -
    4. -
    5. - -
    6. -
    7. -
      Allyn: UBCD and UBCD Live
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 23 Jul 2015 06:00:03 -0400 - -pc-perspective-podcast-359-072315 -Ryan Shrout -Join us this week as we discuss the AMD R9 Nano, 4TB Samsung SSDs, Windows 10 and more! -Join us this week as we discuss the AMD R9 Nano, 4TB Samsung SSDs, Windows 10 and more! -no -70:31 -
- - -PC Perspective Podcast 358 - 07/16/15 -PC Perspective Podcast #358 - 07/16/2015

- -

Join us this week as we discuss the AMD R9 Fury, Fury X Multi-GPU, Windows 10 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 16 Jul 2015 06:00:03 -0400 - -pc-perspective-podcast-358-071615 -Ryan Shrout -Join us this week as we discuss the AMD R9 Fury, Fury X Multi-GPU, Windows 10 and more! -Join us this week as we discuss the AMD R9 Fury, Fury X Multi-GPU, Windows 10 and more! -no -54:27 -
- - -PC Perspective Podcast 357 - 07/09/15 -PC Perspective Podcast #357 - 07/09/2015

- -

Join us this week as we discuss the Samsung 850 Series 2TB, AMD Fury, and Catalyst 15.7

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:21:50

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  4. -
  5. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. -
      Ryan:
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 09 Jul 2015 06:00:03 -0400 - -pc-perspective-podcast-357-070915 -Ryan Shrout -Join us this week as we discuss the Samsung 850 Series 2TB, AMD Fury, Catalyst 15.7 and more! -Join us this week as we discuss the Samsung 850 Series 2TB, AMD Fury, Catalyst 15.7 and more! -no -93:09 -
- - -PC Perspective Podcast 356 - 07/02/15 -PC Perspective Podcast #356 - 07/02/2015

- -

Join us this week as we discuss the Fury X Pump Whine, ASUS MG279Q FreeSync Monitor, GTX 980 Ti STRIX and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

 

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 02 Jul 2015 06:00:03 -0400 - -pc-perspective-podcast-356-070215 -Ryan Shrout -Join us this week as we discuss the Fury X Pump Whine, ASUS MG279Q FreeSync Monitor, GTX 980 Ti STRIX and more! -Join us this week as we discuss the Fury X Pump Whine, ASUS MG279Q FreeSync Monitor, GTX 980 Ti STRIX and more! -no -81:50 -
- - - -PC Perspective Podcast 355 - 06/25/15 -PC Perspective Podcast #355 - 06/25/2015

- -

Join us this week as we discuss the AMD R9 Fury X, Sapphire Nitro R9 390, Batman: Arkham Knight and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Josh Walrath, Sebastian Peak, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-]]>
-Thu, 25 Jun 2015 06:00:03 -0400 - -pc-perspective-podcast-355-062515 -Ryan Shrout -Join us this week as we discuss the AMD R9 Fury X, Sapphire Nitro R9 390, Batman: Arkham Knight and more! -Join us this week as we discuss the AMD R9 Fury X, Sapphire Nitro R9 390, Batman: Arkham Knight and more! -no -85:13 -
- - -PC Perspective Podcast 354 - 06/18/15 -PC Perspective Podcast #354 - 06/18/2015

- -

Join us this week as we discuss the AMD R9 Fury X, R9 Nano, ASUS Zenfone2 and much more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-]]>
-Thu, 18 Jun 2015 06:00:03 -0400 - -pc-perspective-podcast-354-061815 -Ryan Shrout -Join us this week as we discuss the AMD R9 Fury X, R9 Nano, ASUS Zenfone2 and much more! -Join us this week as we discuss the AMD R9 Fury X, R9 Nano, ASUS Zenfone2 and much more! -no -83:20 -
- - -PC Perspective Podcast 353 - 06/11/15 -PC Perspective Podcast #353 - 06/11/2015

- -

Join us this week as we discuss the Seiki Pro 4k Display, More News from Computex, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

 

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:16:25

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 11 Jun 2015 06:00:03 -0400 - -pc-perspective-podcast-353-061115 -Ryan Shrout -Join us this week as we discuss the Seiki Pro 4k Display, More News from Computex, and more! -JJoin us this week as we discuss the Seiki Pro 4k Display, More News from Computex, and more! -no -76:25 -
- - -PC Perspective Podcast 352 - 06/04/15 -PC Perspective Podcast #352 - 06/04/2015

- -

Join us this week as we discuss the GTX 980 Ti, News from Computex, AMD Fiji Leaks and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 2:02:45

- -
    -
  1. - -
  2. -
  3. - - -
      -
    1. - -
    2. -
    -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  6. -
  7. -
    Computex, Dawg
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    23. - -
    24. -
    25. - -
    26. -
    -
  8. -
  9. -
    News item of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

-]]>
-Thu, 04 Jun 2015 06:00:03 -0400 - -pc-perspective-podcast-352-060415 -Ryan Shrout -Join us this week as we discuss the GTX 980 Ti, News from Computex, AMD Fiji Leaks and more! -Join us this week as we discuss the GTX 980 Ti, News from Computex, AMD Fiji Leaks and more! -no -122:45 -
- - -PC Perspective Podcast 351 - 05/28/15 -PC Perspective Podcast #351 - 05/28/2015

- -

Join us this week as we discuss AMD Fiji Leaks, rumors on GTX 980 Ti, a great $99 portable DAC, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

Video coming soon!

- -]]>
-Thu, 28 May 2015 06:00:03 -0400 - -pc-perspective-podcast-351-052815 -Ryan Shrout -Join us this week as we discuss AMD Fiji Leaks, rumors on GTX 980 Ti, a great $99 portable DAC, and more! -Join us this week as we discuss AMD Fiji Leaks, rumors on GTX 980 Ti, a great $99 portable DAC, and more! -no -78:06 -
- - -PC Perspective Podcast 350 - 05/21/15 -PC Perspective Podcast #350 - 05/21/2015

- -

Join us this week as we discuss AMD's plan for HBM, IPS G-SYNC, GameWorks and The Witcher 3, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- - -]]>
-Thu, 21 May 2015 06:00:03 -0400 - -pc-perspective-podcast-350-052115 -Ryan Shrout -Join us this week as we discuss AMD's plan for HBM, IPS G-SYNC, GameWorks and The Witcher 3, and more! -Join us this week as we discuss AMD's plan for HBM, IPS G-SYNC, GameWorks and The Witcher 3, and more! -no -84:12 -
- - -PC Perspective Podcast 349 - 05/14/15 -PC Perspective Podcast #349 - 05/14/2015

- -

Join us this week as we discuss the Death of Media Center, i7 NUC, Fractal Define S and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 14 May 2015 06:00:03 -0400 - -pc-perspective-podcast-349-051415 -Ryan Shrout -Join us this week as we discuss the Death of Media Center, i7 NUC, Fractal Define S and more! -Join us this week as we discuss the Death of Media Center, i7 NUC, Fractal Define S and more! -no -79:23 -
- - -PC Perspective Podcast 348 - 05/07/15 -PC Perspective Podcast #348 - 05/07/2015

- -

Join us this week as we discuss DirectX 12, New AMD GPU News, Giveaways and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 07 May 2015 06:00:03 -0400 - -pc-perspective-podcast-348-050715 -Ryan Shrout -Join us this week as we discuss DirectX 12, New AMD GPU News, Giveaways and more! -Join us this week as we discuss DirectX 12, New AMD GPU News, Giveaways and more! -no -87:38 -
- - -PC Perspective Podcast 347 - 04/30/15 -PC Perspective Podcast #347 - 04/30/2015

- -

Join us this week as we discuss AMD Zen Architecture and Roadmap leaks, ARM Cortex-A72, a budget Z97 board and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 30 Apr 2015 06:00:03 -0400 - -pc-perspective-podcast-347-043015 -Ryan Shrout -Join us this week as we discuss AMD Zen Architecture and Roadmap leaks, ARM Cortex-A72, a budget Z97 board and more! -Join us this week as we discuss AMD Zen Architecture and Roadmap leaks, ARM Cortex-A72, a budget Z97 board and more! -no -84:31 -
- - -PC Perspective Podcast 346 - 04/23/15 -PC Perspective Podcast #346 - 04/23/2015

- -

Join us this week as we discuss the Intel Compute Stick, ASUS X205TA, Samsung PCIe SSDs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

-]]>
-Thu, 23 Apr 2015 06:00:03 -0400 - -pc-perspective-podcast-346-042315 -Ryan Shrout -Join us this week as we discuss the Intel Compute Stick, ASUS X205TA, Samsung PCIe SSDs and more! -Join us this week as we discuss the Intel Compute Stick, ASUS X205TA, Samsung PCIe SSDs and more! -no -78:28 -
- - -PC Perspective Podcast 345 - 04/16/15 -PC Perspective Podcast #345 - 04/16/2015

- -

Join us this week as we discuss the MSI GS30 Shadow, Gigabyte X99-SOC, Skylake Leaks and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 16 Apr 2015 06:00:03 -0400 - -pc-perspective-podcast-345-041615 -Ryan Shrout -Join us this week as we discuss the MSI GS30 Shadow, Gigabyte X99-SOC, Skylake Leaks and more! -Join us this week as we discuss the MSI GS30 Shadow, Gigabyte X99-SOC, Skylake Leaks and more! -no -80:07 -
- - -PC Perspective Podcast 344 - 04/09/15 -PC Perspective Podcast #344 - 04/09/2015

- -

Join us this week as we discuss the Intel SSD 750 Series, NZXT S340, an ASUS FreeSync Monitor and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts:Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -]]>
-Thu, 09 Apr 2015 06:00:03 -0400 - -pc-perspective-podcast-3440-040915 -Ryan Shrout -Join us this week as we discuss the Intel SSD 750 Series, NZXT S340, an ASUS FreeSync Monitor and more! -Join us this week as we discuss the Intel SSD 750 Series, NZXT S340, an ASUS FreeSync Monitor and more! -no -86:01 -
- - -PC Perspective Podcast 343 - 04/02/15 -PC Perspective Podcast #343 - 04/02/2015
- -

Join us this week as we discuss DX12 Performance, Dissecting G-SYNC and FreeSync, Intel 3D NAND and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts:Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- - -]]>
-Thu, 02 Apr 2015 06:00:03 -0400 - -pc-perspective-podcast-343-040215 -Ryan Shrout -Join us this week as we discuss DX12 Performance, Dissecting G-SYNC and FreeSync, Intel 3D NAND and more! -Join us this week as we discuss DX12 Performance, Dissecting G-SYNC and FreeSync, Intel 3D NAND and more! -no -87:10 -
- - -PC Perspective Podcast 342 - 03/26/15 -PC Perspective Podcast #342 - 03/25/2015 - -

Join us this week as we discuss the launch of FreeSync, Dell XPS 13, Super Fast DDR4 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

 

- -

Hosts:Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -]]>
-Thu, 26 Mar 2015 06:00:03 -0400 - -pc-perspective-podcast-342-032615 -Ryan Shrout -Join us this week as we discuss the launch of FreeSync, Dell XPS 13, Super Fast DDR4 and more! -Join us this week as we discuss the launch of FreeSync, Dell XPS 13, Super Fast DDR4 and more! -no -89:50 -
- - -PC Perspective Podcast 341 - 03/19/15 -PC Perspective Podcast #341 - 03/19/2015 - -

Join us this week as we the NVIDIA GTX TITAN X, News from GTC2015, Mini-ITX X99 motherboard and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Josh Walrath, Jeremy Hellstrom, Allyn Malventano, and Morry Teitelman

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

VIDEO COMING SOON!!! 

- -

 

- -]]>
-Thu, 19 Mar 2015 06:00:03 -0400 - -pc-perspective-podcast-341-031915 -Ryan Shrout -Join us this week as we the NVIDIA GTX TITAN X, News from GTC2015, a Mini-ITX X99 motherboard and more! -Join us this week as we the NVIDIA GTX TITAN X, News from GTC2015, a Mini-ITX X99 motherboard and more! -no -76:27 -
- - -PC Perspective Podcast 340 - 03/12/15 -PC Perspective Podcast #340 - 03/12/2015 - -

Join us this week as we wrap up news from GDC 2015, FreeSync Release Date, Vulkan and Mantle, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts:Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Paul Heimlich

- -
-

Program length: 1:42:16

- -
    -
  1. - -
  2. -
  3. -
    Who the hell is this guy? Paul from Paul’s Hardware
    -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    News item of interest:
    - -
      -
    1. -
      GDC 2015 Wrapup
      - -
        -
      1. - - -
          -
        1. - -
        2. -
        -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. -
      1:09:40 More 4GB GTX 960s
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: PrintScreen
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- - - -]]>
-Thu, 12 Mar 2015 06:00:03 -0400 - -pc-perspective-podcast-340-031215-01 -Ryan Shrout -Join us this week as we wrap up news from GDC 2015, FreeSync Release Date, Vulkan and Mantle, and more! -Join us this week as we wrap up news from GDC 2015, FreeSync Release Date, Vulkan and Mantle, and more! -no -102:16 -
- - -PC Perspective Podcast 339 - 03/05/15 -PC Perspective Podcast #339 - 03/05/2015 - -

Join us this week as we discuss the NVIDIA SHIELD and Titan X, AMD Mantle, OpenGL Vulkan, and much more from GDC!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Jeremy Hellstrom, Josh Walrath, Allyn Malventano, Scott Michaud and Ken Addison

- -
-

Program length: 1:22:13

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  4. -
  5. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - - -
        -
      1. - -
      2. -
      -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    23. - -
    24. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. -
      Jeremy: Um, I don’t know, SteamOS sales I guess?
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -]]>
-Thu, 05 Mar 2015 06:00:03 -0400 - -pc-perspective-podcast-339-030515-01 -Ryan Shrout -Join us this week as we discuss the NVIDIA SHIELD and Titan X, AMD Mantle, OpenGL Vulkan, and much more from GDC! -Join us this week as we discuss the NVIDIA SHIELD and Titan X, AMD Mantle, OpenGL Vulkan, and much more from GDC! -no -82:13 -
- - -PC Perspective Podcast 338 - 02/26/15 -PC Perspective Podcast #338 - 02/26/2015

- -

Join us this week as we discuss more USB 3.1 Devices, Broadwell NUC, another 840 Evo fix and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Allyn Malventano, and Sebastian Peak

- -
-

Program length: 1:46:04

- -
    -
  1. - -
  2. -
  3. -
    EVGA Contest Winner!
    -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    News item of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  10. -
  11. -
    Question: Alex from Sydney
    - -
      -
    1. -
      Just a quick question regarding DirectX 12. I’m planning to buy a new graphics card soon but I want a DirectX 12 card for all the fancy new features so I’m considering either the GTX 970 or 980, the question I have is are these real DirectX 12 cards? Since DirectX 12 development is still ongoing how can these cards be fully DirectX 12 complaint?
      -
    2. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. -
      Ryan: Prime95
      -
    2. -
    3. -
      Jeremy: Not SSL anyways; old become new is much more pleasant
      -
    4. -
    5. -
      Allyn: Lenovo Superfish removal tool (once their site is back online, that is)
      -
    6. -
    7. - -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- - -]]>
-Thu, 26 Feb 2015 06:00:03 -0400 - -pc-perspective-podcast-338-022615 -Ryan Shrout -Join us this week as we discuss more USB 3.1 Devices, Broadwell NUC, another 840 Evo fix and more! -Join us this week as we discuss more USB 3.1 Devices, Broadwell NUC, another 840 Evo fix and more! -no -106:04 -
- - -PC Perspective Podcast 337 - 02/19/15 -PC Perspective Podcast #337 - 02/19/2015

- -

Join us this week as we discuss our Snapdragon 810 Preview, USB 3.1, Dell Venue 8 Tablet and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 19 Feb 2015 06:00:03 -0400 - -pc-perspective-podcast-337-021915 -Ryan Shrout -Join us this week as we discuss our Snapdragon 810 Preview, USB 3.1, Dell Venue 8 Tablet and more! -Join us this week as we discuss our Snapdragon 810 Preview, USB 3.1, Dell Venue 8 Tablet and more! -no -96:05 -
- - -PC Perspective Podcast 336 - 02/12/15 -PC Perspective Podcast #336 - 02/12/2015

- -

Join us this week as we discuss GTX 960 Overlocking, Plextor M6e Black Edition, AMD R9 3xx Rumors and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- - -]]>
-Thu, 12 Feb 2015 06:00:03 -0400 - -pc-perspective-podcast-336-021215 -Ryan Shrout -Join us this week as we discuss GTX 960 Overlocking, Plextor M6e Black Edition, AMD R9 3xx Rumors and more! -Join us this week as we discuss GTX 960 Overlocking, Plextor M6e Black Edition, AMD R9 3xx Rumors and more! -no -71:53 -
- - -PC Perspective Podcast 335 - 02/05/15 -PC Perspective Podcast #335 - 02/05/2015

- -

Join us this week as we discuss Mobile G-Sync, GTX 970 SLI, a Broadwell Brix and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- - -]]>
-Thu, 05 Feb 2015 06:00:03 -0400 - -pc-perspective-podcast-335-020515 -Ryan Shrout -Join us this week as we discuss Mobile G-Sync, GTX 970 SLI, a Broadwell Brix and more! -Join us this week as we discuss Mobile G-Sync, GTX 970 SLI, a Broadwell Brix and more! -no -88:13 -
- - -PC Perspective Podcast 334 - 01/29/15 -PC Perspective Podcast #333 - 01/22/2015

- -

Join us this week as we discuss the ASUS Rampage V Extreme, Samsung T1 Portable SSD, Windows 10 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- - -]]>
-Thu, 29 Jan 2015 06:00:03 -0400 - -pc-perspective-podcast-334-012815 -Ryan Shrout -Join us this week as we discuss GTX 970 Memory Issues, Samsung 840 Evo Slowdown, GTX 960 and more! -Join us this week as we discuss GTX 970 Memory Issues, Samsung 840 Evo Slowdown, GTX 960 and more! -no -87:38 -
- - -PC Perspective Podcast 333 - 01/22/15 -PC Perspective Podcast #333 - 01/22/2015

- -

Join us this week as we discuss the ASUS Rampage V Extreme, Samsung T1 Portable SSD, Windows 10 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- - -]]>
-Thu, 22 Jan 2015 06:00:03 -0400 - -pc-perspective-podcast-333-012215 -Ryan Shrout -Join us this week as we discuss the ASUS Rampage V Extreme, Samsung T1 Portable SSD, Windows 10 and more! -Join us this week as we discuss the ASUS Rampage V Extreme, Samsung T1 Portable SSD, Windows 10 and more! -no -82:32 -
- - -PC Perspective Podcast 332 - 01/15/15 -PC Perspective Podcast #332 - 01/15/2015

- -

Join us this week as we discuss GTX 960 and R9 380X Rumors, Corsair Carbide 300R Titanum, and our CES 2015 wrap up

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- - -]]>
-Thu, 15 Jan 2015 06:00:03 -0400 - -pc-perspective-podcast-332-011515 -Ryan Shrout -Join us this week as we discuss GTX 960 and R9 380X Rumors, Corsair Carbide 300R Titanium, and our CES 2015 wrap up -Join us this week as we discuss GTX 960 and R9 380X Rumors, Corsair Carbide 300R Titanium, and our CES 2015 wrap up -no -71:25 -
- - -PC Perspective Podcast CES 2015 - Day 3 -CES 2015 Podcast Day 3 - 01/06/15

- -

CES is almost over for us, but we have plenty to talk about. Join us for our FreeSync Impressions, Broadwell NUCs, Intel Compute Stick, Storage News and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

- -

Program length: 57:31

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Tue, 06 Jan 2015 06:00:03 -0400 - -pc-perspective-podcast-ces2015-day3 -Ryan Shrout -Join us for our FreeSync Impressions, Broadwell NUCs, Intel Compute Stick, Storage News and more! -Join us for our FreeSync Impressions, Broadwell NUCs, Intel Compute Stick, Storage News and more! -no -57:31 -
- - -PC Perspective Podcast CES 2015 - Day 2 -CES 2015 Podcast Day 2 - 01/05/15

- -

It's time for podcast fun at CES!  Join us as we talk about the second day of the show including a lot of announcements from ASUS, Gigabyte, Freesync Monitors, Storage News and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

- -

Program length: 47:57

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

 

- -

 

- -

Coverage of CES 2015 is brought to you by Logitech!

- -

PC Perspective's CES 2015 coverage is sponsored by Logitech.

- -

Follow all of our coverage of the show at http://pcper.com/ces!

- -]]>
-Mon, 05 Jan 2015 06:00:03 -0400 - -pc-perspective-podcast-ces2015-day2 -Ryan Shrout -Join us as we talk about the second day of the show including a lot of announcements from ASUS, Gigabyte, Freesync Monitors, Storage News and more! -Join us as we talk about the second day of the show including a lot of announcements from ASUS, Gigabyte, Freesync Monitors, Storage News and more!! -no -47:57 -
- - -PC Perspective Podcast CES 2015 - Day 1 -CES 2015 Podcast Day 1 - 01/04/15

- -

It's time for podcast fun at CES!  Join us as we talk about the first day of the show including a lot of announcements from Lenovo, MSI, the NVIDIA Tegra X1, USB 3.1 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

- -

Program length: 47:58

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -

Coverage of CES 2015 is brought to you by Logitech!

- -

PC Perspective's CES 2015 coverage is sponsored by Logitech.

- -

Follow all of our coverage of the show at http://pcper.com/ces!

- -]]>
-Sun, 04 Jan 2015 06:00:03 -0400 - -pc-perspective-podcast-ces2015-day1 -Ryan Shrout -Join us as we talk about the first day of the show including a lot of announcements from Lenovo, MSI, the NVIDIA Tegra X1, USB 3.1 and more! -Join us as we talk about the first day of the show including a lot of announcements from Lenovo, MSI, the NVIDIA Tegra X1, USB 3.1 and more! -no -47:58 -
- - -PC Perspective Podcast 331 - 12/31/14 -PC Perspective Podcast #331 - 12/31/2014

- -

Join us this week as we discuss our Hardware Picks of the Year, Acer's 1080p G-SYNC Display, a new Drobo and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Sebastian Peak

- -
-

Program length: 1:54:53

- -
    -
- -

Podcast topics of discussion:

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - - -
        -
      1. -
        Ken is an idiot, don't try to use the Hyper 212 Evo in the Air 240.
        -
      2. -
      -
    10. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    PC Perspective Hardware Picks of the Year
    - -
      -
    1. -
      Graphics Card of 2014
      - -
        -
      1. -
        GTX 980
        -
      2. -
      3. -
        Winner: GTX 970
        -
      4. -
      5. -
        R9 285
        -
      6. -
      7. -
        GTX TITAN Z (lulz)
        -
      8. -
      9. -
        R9 295 X2
        -
      10. -
      11. -
        Runner-up: GTX 750 Ti
        -
      12. -
      -
    2. -
    3. -
      CPU of 2014
      - -
        -
      1. -
        Winner: Core i7-4790K
        -
      2. -
      3. -
        Pentium G3258
        -
      4. -
      5. -
        Core i7-5960X
        -
      6. -
      7. -
        Core M 5Y70 (Broadwell-Y)
        -
      8. -
      9. -
        AMD AM1 Athlon 5350
        -
      10. -
      11. -
        AMD A8-7600 Kaveri APU
        -
      12. -
      13. -
        Tegra K1
        -
      14. -
      15. -
        Runner-up: Athlon X4 860K
        -
      16. -
      -
    4. -
    5. -
      Storage of 2014
      - -
        -
      1. -
        Samsung 850 Pro
        -
      2. -
      3. -
        Winner: Samsung 850 EVO
        -
      4. -
      5. -
        Crucial MX100
        -
      6. -
      7. -
        Runner-up: Intel P3700
        -
      8. -
      9. -
        6TB HDDs
        -
      10. -
      11. -
        Intel SSD 730 Series
        -
      12. -
      13. -
        Silicon Motion SM2246EN (Force LX, Angelbird ssd wrk, Adata 610)
        -
      14. -
      -
    6. -
    7. -
      Case of 2014
      - -
        -
      1. -
        Winner: NCASE M1
        -
      2. -
      3. -
        Runner-up: Corsair Carbide Air 240
        -
      4. -
      5. -
        Fractal Design Define R5
        -
      6. -
      7. -
        SilverStone Raven RVZ01
        -
      8. -
      9. -
        PHT Ultra Low-Profile HTPC Case
        -
      10. -
      -
    8. -
    9. -
      Motherboard of 2014
      - -
        -
      1. -
        Runner-up: ASUS Crossblade Ranger FM2+
        -
      2. -
      3. -
        ASUS Z97 Deluxe
        -
      4. -
      5. -
        Gigabyte Z97X Gaming G1 Black Edition
        -
      6. -
      7. -
        X99 Deluxe
        -
      8. -
      9. -
        Winner: Z97 Maximus VII Formula
        -
      10. -
      -
    10. -
    11. -
      Price Drop of 2014
      - -
        -
      1. -
        Winner: AMD R9 290X/290
        -
      2. -
      3. -
        R9 295 X2
        -
      4. -
      5. -
        Good Displays
        -
      6. -
      7. -
        GTX Titan Z (lulz)
        -
      8. -
      9. -
        Runner-up: SSDs (again)
        -
      10. -
      11. -
        Gasoline
        -
      12. -
      -
    12. -
    13. -
      Best Trend of 2014
      - -
        -
      1. -
        Variable Refresh Rate Monitors / Tear-free Gaming
        -
      2. -
      3. -
        Smart Watches
        -
      4. -
      5. -
        Runner-up: PCIe/NVMe storage
        -
      6. -
      7. -
        Gigabit Internet
        -
      8. -
      9. -
        Custom Watercooling
        -
      10. -
      11. -
        Winner: 21:9 Monitors
        -
      12. -
      -
    14. -
    15. -
      Worst Trend of 2014
      - -
        -
      1. -
        Smart Watches
        -
      2. -
      3. -
        Locked GPU Voltages
        -
      4. -
      5. -
        DDR4
        -
      6. -
      7. -
        Winner: 840 Evo Performance Issues
        -
      8. -
      9. -
        Runner-up: G-SYNC Monitor prices
        -
      10. -
      11. -
        Curved Displays
        -
      12. -
      13. -
        GPU Mining BitCoins
        -
      14. -
      -
    16. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

Video Coming Soon!

- -]]>
-Wed, 31 Dec 2014 06:00:03 -0400 - -pc-perspective-podcast-331-123114 -Ryan Shrout -Join us this week as we discuss our Hardware Picks of the Year, Acer's 1080p G-SYNC Display, a new Drobo and more! -Join us this week as we discuss our Hardware Picks of the Year, Acer's 1080p G-SYNC Display, a new Drobo and more! -no -114:53 -
- - -PC Perspective Podcast 330 - 12/18/14 -PC Perspective Podcast #330 - 12/17/2014

- -

Join us this week as we discuss the MSI GT72 Dominator Pro, 10 Days of Christmas, and Mechanical Keyboards

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 18 Dec 2014 06:00:03 -0400 - -pc-perspective-podcast-330-121714 -Ryan Shrout -Join us this week as we discuss the MSI GT72 Dominator Pro, 10 Days of Christmas, Mechanical Keyboards and more! -Join us this week as we discuss the MSI GT72 Dominator Pro, 10 Days of Christmas, Mechanical Keyboards and more! -no -72:04 -
- - -PC Perspective Podcast 329 - 12/11/14 -PC Perspective Podcast #329 - 12/11/2014

- -

Join us this week as we discuss the Samsung 850 EVO, AMD Catalyst Omega, NZXT H440 Razer and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 11 Dec 2014 06:00:03 -0400 - -pc-perspective-podcast-329-121114 -Ryan Shrout -Join us this week as we discuss the Samsung 850 EVO, AMD Catalyst Omega, NZXT H440 Razer and more! -Join us this week as we discuss the Samsung 850 EVO, AMD Catalyst Omega, NZXT H440 Razer and more! -no -79:20 -
- - -PC Perspective Podcast 328 - 12/04/14 -PC Perspective Podcast #328 - 12/04/2014

- -

Join us this week as we discuss G-Sync Flickering, In Win D-Frame Mini, Fractal R5 Silent and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Allyn Malventano, Jeremy Hellstrom, Josh Walrath, and Sebastian Peak

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 04 Dec 2014 06:00:03 -0400 - -pc-perspective-podcast-328-120414 -Ryan Shrout -Join us this week as we discuss G-Sync Flickering, In Win D-Frame Mini, Fractal R5 Silent and more! -Join us this week as we discuss G-Sync Flickering, In Win D-Frame Mini, Fractal R5 Silent and more!s -no -89:27 -
- - - -PC Perspective Podcast 327 - 11/20/14 -PC Perspective Podcast #327 - 11/20/2014

- -

Join us this week as we discuss NVIDIA MFAA, Corsair's Neutron XT SSD, New Dell 4K Monitors

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:33:45

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- - - -]]>
-Thu, 20 Nov 2014 06:00:03 -0400 - -pc-perspective-podcast-327-112014 -Ryan Shrout -Join us this week as we discuss NVIDIA MFAA, Corsair's Neutron XT SSD, New Dell 4K Monitors -Join us this week as we discuss NVIDIA MFAA, Corsair's Neutron XT SSD, New Dell 4K Monitors -no -93:45 -
- - - -PC Perspective Podcast 326 - 11/13/14 -PC Perspective Podcast #326 - 11/13/2014

- -

Join us this week as we discuss Intel's Core M 5Y70, Assasin's Creed Unity, Intel P3500 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 13 Nov 2014 06:00:03 -0400 - -pc-perspective-podcast-326-111314 -Ryan Shrout -Join us this week as we discuss Intel's Core M 5Y70, Assassin's Creed Unity, Intel P3500 and more! -Join us this week as we discuss Intel's Core M 5Y70, Assassin's Creed Unity, Intel P3500 and more! -no -69:49 -
- - -PC Perspective Podcast 325 - 11/06/14 -PC Perspective Podcast #325 - 11/06/2014

- -

Join us this week as we discuss our Samsung 850 Pro Roundup, MSI's GTX 760 ITX, 8GB R9 290X and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:35:30

- -
    -
  1. - -
  2. -
  3. -
    Upcoming Assassin's Creed Unity live stream!
    -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. -
      Jeremy: Ya, I'll get to that TPS Report … in a few minutes
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 06 Nov 2014 06:00:03 -0400 - -pc-perspective-podcast-325-1105141 -Ryan Shrout -Join us this week as we discuss our Samsung 850 Pro Roundup, MSI's GTX 760 ITX, 8GB R9 290X and more! -Join us this week as we discuss our Samsung 850 Pro Roundup, MSI's GTX 760 ITX, 8GB R9 290X and more! -no -95:30 -
- - -PC Perspective Podcast 324 - 10/30/14 - -

PC Perspective Podcast #324 - 10/30/2014

-

Join us this week as we discuss Civilization: Beyond Earth Performance, Consoles Performance Issues, Samsung SSD updates and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-
-

Program length: 1:38:13

-
    -
  1. - -
  2. -
  3. -

    Week in Review:

    -
      -
    1. -

      0:02:25 Civilization: Beyond Earth Performance: Maxwell vs. Hawaii, DX11 vs. Mantle

      -
    2. -
    3. -

      0:15:50 ECS LIVA Windows Based Mini PC Review: A Palm-Sized Desktop Computer

      -
    4. -
    5. -

      0:24:50 Steiger Dynamics Maven Core HTPC Review: GTX 980 and CableCARD

      -
    6. -
    7. -

      0:34:00 Sony PS4 and Microsoft Xbox One Already Hitting a Performance Wall

      -
    8. -
    -
  4. -
  5. -

    News items of interest:

    -
      -
    1. -

      0:44:00 Intel Broadwell-E Expected for Q1 2016

      -
    2. -
    3. -

      0:47:00 AMD Radeon R9 290X Now Selling at $299

      -
    4. -
    5. -

      0:52:00 Samsung updates 840 EVO Performance Restoration Tool

      -
        -
      1. -

        Samsung Germany acknowledges '840 Basic' performance slow down, promises fix

        -
      2. -
      3. -

        Samsung 850 EVO SKUs leaked, leads to initial pricing, specs

        -
      4. -
      -
    6. -
    7. -

      1:01:15 GeForce GTX 970 Coil Whine Concerns

      -
    8. -
    9. -

      1:09:10 The Alienware 13 comes with an optional Graphics Amplifier

      -
    10. -
    11. -

      1:17:00 LiteOn announces EP1 Series Enterprise M.2 PCIe SSDs

      -
    12. -
    13. -

      1:19:30 ARM Announces Mali-T800 Series of Mobile GPUs

      -
    14. -
    15. -

      1:21:25 Connected Data announces Transporter Genesis Private Cloud Appliance

      -
    16. -
    17. -

      1:25:30 Eighteen-core Xeon E7 v3 Based on Haswell-EX in Q2'15

      -
    18. -
    -
  6. -
  7. -

    Hardware/Software Picks of the Week:

    -
      -
    1. -

      Ryan: RavPower Wireless Charger

      -
    2. -
    3. -

      Jeremy: Low cost, low effort RasPi universal translator

      -
    4. -
    5. -

      Josh: Make my old Grados much, much nicer

      -
    6. -
    7. -

      Allyn: Tweak your WMC channel guide

      -
    8. -
    -
  8. -
  9. -

    http://pcper.com/podcast

    -
  10. -
  11. -

    http://twitter.com/ryanshrout and http://twitter.com/pcper

    -
  12. -
  13. -

    Closing/outro

    -
  14. -
-
-

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 30 Oct 2014 06:00:03 -0400 - -pc-perspective-podcast-324-103014 -Ryan Shrout -Join us this week as we discuss Civilization: Beyond Earth Performance, Consoles Performance Issues, Samsung SSD updates and more! -Join us this week as we discuss Civilization: Beyond Earth Performance, Consoles Performance Issues, Samsung SSD updates and more! -no -98:13 -
- - -PC Perspective Podcast 323 - 10/22/14 -PC Perspective Podcast #323 - 10/23/2014

- -

Join us this week as we discuss GTX 980M Performance, MSI X99S Gaming 9 AC and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 23 Oct 2014 06:00:03 -0400 - -pc-perspective-podcast-323-102214 -Ryan Shrout -Join us this week as we discuss GTX 980M Performance, MSI X99S Gaming 9 AC and more! -Join us this week as we discuss GTX 980M Performance, MSI X99S Gaming 9 AC and more! -no -78:59 -
- - -PC Perspective Podcast 322 - 10/16/14 -PC Perspective Podcast #322 - 10/16/2014

- -

Join us this week as we discuss GTX 980 4-Way SLI, Samsung's EVO Performance Fix, Intel Earnings and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Morry Tietelman

- -
-

Program length: 1:26:16

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. -
      0:48:20 Trio of Lenovo News
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - - -
        -
      1. - -
      2. -
      -
    12. -
    13. - -
    14. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 16 Oct 2014 06:00:03 -0400 - -pc-perspective-podcast-322-101614 -Ryan Shrout -Join us this week as we discuss GTX 980 4-Way SLI, Samsung's EVO Performance Fix, Intel Earnings and more! -Join us this week as we discuss GTX 980 4-Way SLI, Samsung's EVO Performance Fix, Intel Earnings and more! -no -86:16 -
- - -PC Perspective Podcast 321 - 10/09/14 -PC Perspective Podcast #321 - 10/09/2014

- -

Join us this week as we discuss the EVGA GTX 980 Water Block, AMD's New CEO, R9 290 Price Drops and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:33:12

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 09 Oct 2014 06:00:03 -0400 - -pc-perspective-podcast-321-100914 -Ryan Shrout -Join us this week as we discuss the EVGA GTX 980 Water Block, AMD's New CEO, R9 290 Price Drops and more! -Join us this week as we discuss the EVGA GTX 980 Water Block, AMD's New CEO, R9 290 Price Drops and more! -no -93:12 -
- - -PC Perspective Podcast 320 - 10/02/14 -PC Perspective Podcast #320 - 10/02/2014

- -

Join us this week as we discuss the Micron M600 SSD, NVIDIA and Adaptive Sync, Windows 10 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -]]>
-Thu, 02 Oct 2014 06:00:03 -0400 - -pc-perspective-podcast-320-100214 -Ryan Shrout -Join us this week as we discuss the Micron M600 SSD, NVIDIA and Adaptive Sync, Windows 10 and more! -Join us this week as we discuss the Micron M600 SSD, NVIDIA and Adaptive Sync, Windows 10 and more! -no -87:21 -
- - -PC Perspective Podcast 319 - 09/25/14 - -

PC Perspective Podcast #319 - 09/25/2014

-

Join us this week as we discuss our GTX 980 and 970 Review, Noctua NH-D15, Acer's 4K G-Sync Display and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- - -]]>
-Thu, 25 Sep 2014 06:00:03 -0400 - -pc-perspective-podcast-319-092514 -Ryan Shrout -Join us this week as we discuss our GTX 980 and 970 Review, Noctua NH-D15, Acer's 4K G-Sync Display and more! -Join us this week as we discuss our GTX 980 and 970 Review, Noctua NH-D15, Acer's 4K G-Sync Display and more! -no -94:52 -
- - -PC Perspective Podcast 318 - 09/18/14 -PC Perspective Podcast #318 - 09/18/2014

- -

Join us this week as we discuss GTX 980 and R9 390X Rumors, Storage News from IDF, ADATA SP610 SSDs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-

Program length: 1:33:48

- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - - -
        -
      1. - -
      2. -
      -
    22. -
    23. - -
    24. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: Volumental and their customer PLAE
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 18 Sep 2014 06:00:03 -0400 - -pc-perspective-podcast-318-091814 -Ryan Shrout -Join us this week as we discuss GTX 980 and R9 390X Rumors, Storage News from IDF, ADATA SP610 SSDs and more! -Join us this week as we discuss GTX 980 and R9 390X Rumors, Storage News from IDF, ADATA SP610 SSDs and more! -no -84:10 -
- - -PC Perspective Podcast 317 - 09/11/14 -PC Perspective Podcast #316 - 09/04/2014

- -

Join us this week as we discuss our Haswell-E Review, New AMD FX Processors, Radeon R9 285 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
Program length: 1:32:43
- -
 
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 11 Sep 2014 06:00:03 -0400 - -pc-perspective-podcast-317-0911142 -Ryan Shrout -Join us this week as we discuss our ASUS X99 Deluxe Review, Core M Performance, 18 Core Xeons and news from IDF -Join us this week as we discuss our ASUS X99 Deluxe Review, Core M Performance, 18 Core Xeons and news from IDF! -no -93:48 -
- - -PC Perspective Podcast 316 - 09/04/14 -PC Perspective Podcast #316 - 09/04/2014

- -

Join us this week as we discuss our Haswell-E Review, New AMD FX Processors, Radeon R9 285 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
Program length: 1:32:43
- -
 
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -

 

- -]]>
-Thu, 04 Sep 2014 06:00:03 -0400 - -pc-perspective-podcast-316-090414 -Ryan Shrout -Join us this week as we discuss our Haswell-E Review, New AMD FX Processors, Radeon R9 285 and more! -Join us this week as we discuss our Haswell-E Review, New AMD FX Processors, Radeon R9 285 and more! -no -92:43 -
- - -PC Perspective Podcast 315 - 08/28/14 -PC Perspective Podcast #315 - 08/28/2014

- -

Join us this week as we discuss the AMD Radeon R7 SSD, Haswell-E Rumors, Radeon R9 285, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
Program length: 1:22:59
- -
 
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 28 Aug 2014 06:00:03 -0400 - -pc-perspective-podcast-315-0828142 -Ryan Shrout -Join us this week as we discuss the AMD Radeon R7 SSD, Haswell-E Rumors, Radeon R9 285, and more! -Join us this week as we discuss the AMD Radeon R7 SSD, Haswell-E Rumors, Radeon R9 285, and more! -no -82:59 -
- - -PC Perspective Podcast 314 - 08/21/14 -PC Perspective Podcast #314 - 08/21/2014

- -

Join us this week as we discuss the Corsair Air 240 Case, Angelbird SSD wrk, DDR4 Pricing, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
Program length: 1:24:13
- -
 
- -
-
    -
  1. - -
  2. -
  3. -
    NVIDIA Live Stream Friday at noon
    -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. - - -
      -
    1. -
      Last Weeks Winner: Brian H.
      -
    2. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -

- -

 

-

PC Perspective Podcast #314 - 08/21/2014

- -

Join us this week as we discuss the Corsair Air 240 Case, Angelbird SSD wrk, DDR4 Pricing, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
Program length: 1:24:13
- -
 
- -
-
    -
  1. - -
  2. -
  3. -
    NVIDIA Live Stream Friday at noon
    -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. - - -
      -
    1. -
      Last Weeks Winner: Brian H.
      -
    2. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -

- -

 

- -]]>
-Thu, 21 Aug 2014 06:00:03 -0400 - -pc-perspective-podcast-314-082114 -Ryan Shrout -Join us this week as we discuss the Corsair Air 240 Case, Angelbird SSD wrk, DDR4 Pricing, and more! -Join us this week as we discuss the Corsair Air 240 Case, Angelbird SSD wrk, DDR4 Pricing, and more! -no -84:13 -
- - -PC Perspective Podcast 313 - 08/14/14 - -

PC Perspective Podcast #313 - 08/14/2014

-

Join us this week as we discuss new Kaevri APUs, ASUS ROG Swift G-Sync Monitor, Intel Core M Processors and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-
Program length: 1:41:24
-
-
-
    -
  1. -

    Join our spam list to get notified when we go live!

    -
  2. -
  3. -

    EVGA Contest Coming Up!

    -
  4. -
  5. -

    Week in Review:

    -
      -
    1. -

      0:02:30 AMD A10-7800 and A6-7400K Review: AMD Rounds Out the Kaveri Line

      -
    2. -
    3. -

      0:09:05 ASUS ROG Swift PG278Q 27-in Monitor Review - NVIDIA G-Sync at 2560x1440

      -
    4. -
    5. -

      0:30:00 Intel Core M Processor: Broadwell Architecture and 14nm Process Reveal

      -
    6. -
    7. -

      0:45:35 OCZ ARC 100 240GB SATA SSD Full Review - Barefoot 3 M10 on the cheap

      -
    8. -
    -
  6. -
  7. -

    0:54:00 EVGA Contest: Win a SuperNOVA 1000 watt Power Supply

    -
  8. -
  9. -

    News items of interest:

    -
      -
    1. -

      0:56:30 ASUS Republic of Gamers Announces the Crossblade Ranger

      -
    2. -
    3. -

      0:58:45 FMS 2014: Phison announces new quad-core PS3110 SATA 6Gb/s SSD controller

      -
    4. -
    5. -

      1:01:40 FMS 2014: Silicon Motion announces new SM2256 controller driving 1xnm TLC NAND

      -
    6. -
    7. -

      1:04:30 Acer Unveils Chromebook 13 Powered By NVIDIA Tegra K1 SoC

      -
    8. -
    9. -

      1:08:30 It's not just Broadwell today, we also have Seattle news

      -
    10. -
    11. -

      1:12:15 NVIDIA Reveals 64-bit Denver CPU Core Details, Headed to New Tegra K1 Powered Devices Later This Year

      -
    12. -
    13. -

      1:16:00 Intel is disabling TSX in Haswell due to software failures

      -
    14. -
    15. -

      1:19:30 Select GeForce GTX GPUs Now Include Borderlands: The Pre-Sequel

      -
    16. -
    17. -

      1:21:00 Meet Tonga, soon to be your new Radeon

      -
    18. -
    19. -

      1:25:00 Intel and Microsoft Show DirectX 12 Demo and Benchmark

      -
    20. -
    -
  10. -
  11. -

    Hardware/Software Picks of the Week:

    -
      -
    1. -

      Ryan: Google Keep

      -
    2. -
    3. -

      Jeremy: Pre-Pre-Alpha of UT4!

      -
    4. -
    5. -

      Josh: Not as bad as I expected!

      -
    6. -
    7. -

      Allyn: Get rid of your dupes! (Duplicate File Detective)

      -
    8. -
    -
  12. -
  13. -

    http:// pcper.com/podcast

    -
  14. -
  15. -

    http://twitter.com/ryanshrout and http://twitter.com/pcper

    -
  16. -
  17. Closing/outro
  18. -
-
-

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

-

-

- - - -]]>
-Thu, 14 Aug 2014 06:00:03 -0400 - -pc-perspective-podcast-313-081414 -Ryan Shrout -Join us this week as we discuss new Kaevri APUs, ASUS ROG Swift G-Sync Monitor, Intel Core M Processors and more! -Join us this week as we discuss new Kaevri APUs, ASUS ROG Swift G-Sync Monitor, Intel Core M Processors and more! -no -101:24 -
- - -PC Perspective Podcast 312 - 08/07/14 -PC Perspective Podcast #312 - 08/07/2014

- -

Join us this week as we discuss the Thecus N2560 NAS, ASUS STRIX GTX 780, Flash Media Summit News and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Jeremy Hellstrom, Josh Walrath, Scott Michaud, and Morry Tietelman

- -
Program length: 1:00:33
- -
 
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- - -]]>
-Thu, 07 Aug 2014 06:00:03 -0400 - -pc-perspective-podcast-312-080714 -Ryan Shrout -Join us this week as we discuss the Thecus N2560 NAS, ASUS STRIX GTX 780, Flash Media Summit News and more! -Join us this week as we discuss the Thecus N2560 NAS, ASUS STRIX GTX 780, Flash Media Summit News and more!! -no -60:03 -
- - -PC Perspective Podcast 311 - 07/31/14 -PC Perspective Podcast #311 - 07/31/2014

- -

Join us this week as we discuss AMD FreeSync, NVIDIA SHIELD Tablet, Crucial M550 SSD and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
Program length: 1:32:53
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 31 Jul 2014 06:00:03 -0400 - -pc-perspective-podcast-311-0731142 -Ryan Shrout -Join us this week as we discuss AMD FreeSync, NVIDIA SHIELD Tablet, Crucial M550 SSD and more! -Join us this week as we discuss AMD FreeSync, NVIDIA SHIELD Tablet, Crucial M550 SSD and more! -no -92:53 -
- - -PC Perspective Podcast 310 - 07/24/14 -PC Perspective Podcast #310 - 07/24/2014

- -

Join us this week as we discuss the NVIDIA SHIELD Tablet, WD 6TB Red and 4TB Red Pro HDDs, MSI A88X-G45 Gaming and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
Program length: 1:25:40
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 24 Jul 2014 06:00:03 -0400 - -pc-perspective-podcast-310-072414 -Ryan Shrout -Join us this week as we discuss the NVIDIA SHIELD Tablet, WD 6TB Red and 4TB Red Pro HDDs and more! -Join us this week as we discuss the NVIDIA SHIELD Tablet, WD 6TB Red and 4TB Red Pro HDDs and more! -no -85:40 -
- - -PC Perspective Podcast 309 - 07/17/14 -PC Perspective Podcast #309 - 07/17/2014

- -

Join us live from Quakecon 2014 as we talk about the ASUS Z97-WS, Corsair Flasy Voyager GTX and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, and Morry Tietelman

- -
Program length: 0:50:48
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

Video Coming soon!

- - -]]>
-Thu, 17 Jul 2014 06:00:03 -0400 - -pc-perspective-podcast-309-071714 -Ryan Shrout -Join us live from Quakecon 2014 as we talk about the ASUS Z97-WS, Corsair Flasy Voyager GTX and more! -Join us live from Quakecon 2014 as we talk about the ASUS Z97-WS, Corsair Flasy Voyager GTX and more! -no -50:48 -
- - - -PC Perspective Podcast 308 - 07/10/14 -PC Perspective Podcast #308 - 07/10/2014

- -

Join us this week as we discuss Intel using Mantle, XSPC Watercooling Kits, Quantum Dots, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, Allyn Malventano, and Morry Tietelman

- -
Program length: 1:25:47
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- - -]]>
-Thu, 10 Jul 2014 06:00:03 -0400 - -pc-perspective-podcast-308-071014 -Ryan Shrout -Join us this week as we discuss Intel using Mantle, XSPC Watercooling Kits, Quantum Dots, and more! -Join us this week as we discuss Intel using Mantle, XSPC Watercooling Kits, Quantum Dots, and more! -no -85:47 -
- - -PC Perspective Podcast 307 - 07/03/14 -PC Perspective Podcast #307 - 07/03/2014

- -

Join us this week as we discuss the EVGA Torq X10 Mouse, Samsung 850 Pro, OCZ RevoDrive 350 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Morry Tietelman

- -
Program length: 1:19:27
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

- -]]>
-Thu, 03 Jul 2014 06:00:03 -0400 - -pc-perspective-podcast-307-070314 -Ryan Shrout -Join us this week as we discuss the EVGA Torq X10 Mouse, Samsung 850 Pro, OCZ RevoDrive 350 and more! -Join us this week as we discuss the EVGA Torq X10 Mouse, Samsung 850 Pro, OCZ RevoDrive 350 and more! -no -79:27 -
- - -PC Perspective Podcast 306 - 06/26/14 -PC Perspective Podcast #306 - 06/26/2014

- -

Join us this week as we discuss our Budget PC Shootout, the Coolermaster Elite 110, an AMD GameWorks competitor and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Maleventano

- -
Program length: 1:19:12
- -
-
    -
  1. -
    Welcome to our beta podcast!
    -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Quakecon is coming up, as is our Hardware Workshop!
    -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  12. -
  13. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: Hack a GPS Pet collar to create WarKitteh!
      -
    4. -
    5. - -
    6. -
    7. -
      Allyn: Rufus makes bootable USB easy.
      -
    8. -
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    Closing/outro
    -
  20. -
-
- -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

 

- -

- -

 

-]]>
-Thu, 26 Jun 2014 06:00:03 -0400 - -pc-perspective-podcast-306-062614 -Ryan Shrout -Join us this week as we discuss our Budget PC Shootout, the Coolermaster Elite 110, an AMD GameWorks competitor and more! -Join us this week as we discuss our Budget PC Shootout, the Coolermaster Elite 110, an AMD GameWorks competitor and more! -no -79:12 -
- - -PC Perspective Podcast 305 - 06/19/14 -PC Perspective Podcast #305 - 06/19/2014

- -

Special guest David Hewlett joins us this week to discuss our interview with AMD's Richard Huddy, the Seagate 4TB SSHD, SSD Endurance and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, Allyn Maleventano and David Hewlett

- -
Program length: 1:31:16
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -]]>
-Thu, 19 Jun 2014 06:00:03 -0400 - -pc-perspective-podcast-305-061914 -Ryan Shrout -Special guest David Hewlett joins us this week to discuss our interview with AMD's Richard Huddy, the Seagate 4TB SSHD, SSD Endurance and more! -Special guest David Hewlett joins us this week to discuss our interview with AMD's Richard Huddy, the Seagate 4TB SSHD, SSD Endurance and more! -no -91:16 -
- - -PC Perspective Podcast 304 - 06/12/14 -PC Perspective Podcast #304 - 06/12/2014

- -

We have lots of reviews to talk about this week including the GeForce GTX TITAN Z, Core i7-4790K, Gigabyte Z97X-SOC Force, E3 News and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom and Allyn Maleventano

- -
Program length: 1:11:36
- - - -

Subscribe to the PC Perspective YouTube Channel for more videos, reviews and podcasts!!

- -

Video Coming Soon!

-]]>
-Thu, 12 Jun 2014 06:00:03 -0400 - -pc-perspective-podcast-304-061214 -Ryan Shrout -We have lots of reviews to talk about this week including the GeForce GTX TITAN Z, Core i7-4790K, Gigabyte Z97X-SOC Force, E3 News and more! -We have lots of reviews to talk about this week including the GeForce GTX TITAN Z, Core i7-4790K, Gigabyte Z97X-SOC Force, E3 News and more! -no -71:36 -
- - -PC Perspective Podcast 303 - 06/05/14 -PC Perspective Podcast #303 - 06/05/2014

- -

Special guest Austin Evans joins us this week to discuss news from Computex 2014, Crucial MX100 SSD, Intel SSD DC P3700, and much more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, Allyn Maleventano, and Austin Evans

- -
Program length: 1:29:12
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. -
      0:46:00 Monitors
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      -
    2. -
    3. -
      Corsair
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      -
    4. -
    5. -
      ASUS
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
- -

 

- -

- -]]>
-Thu, 05 Jun 2014 06:00:03 -0400 - -pc-perspective-podcast-303-060514 -Ryan Shrout -Special guest Austin Evans joins us this week to discuss news from Computex 2014, Crucial MX100 SSD, Intel SSD DC P3700, and much more! -Special guest Austin Evans joins us this week to discuss news from Computex 2014, Crucial MX100 SSD, Intel SSD DC P3700, and much more! -no -89:12 -
- - -PC Perspective Podcast 302 - 05/29/14 -PC Perspective Podcast #302 - 05/29/2014

- -

Join us this week as we discuss the ASUS PB287Q 4K Monitor, NVIDIA and AMD's fight over GameWorks, Haswell-E Leaks and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Maleventano

- -
Program length: 1:29:01
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - - -
        -
      1. - -
      2. -
      -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: For Josh - the Wenger Giant Knife
      -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
- -]]>
-Thu, 29 May 2014 06:00:03 -0400 - -pc-perspective-podcast-302-052914 -Ryan Shrout -Join us this week as we discuss the ASUS PB287Q 4K Monitor, NVIDIA and AMD's fight over GameWorks, Haswell-E Leaks and more! -Join us this week as we discuss the ASUS PB287Q 4K Monitor, NVIDIA and AMD's fight over GameWorks, Haswell-E Leaks and more! -no -89:01 -
- - - -PC Perspective Podcast 301 - 05/22/14 -PC Perspective Podcast #301 - 05/22/2014

- -

Join us this week as we discuss the IN WIN 901 Chassis, MSI Z97 Gaming 7 Motherboard, R9 Price Drops and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Maleventano

- -
Program length: 1:16:22
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

 

- -

- - - -]]>
-Thu, 22 May 2014 06:00:03 -0400 - -pc-perspective-podcast-301-052214 -Ryan Shrout -Join us this week as we discuss the IN WIN 901 Chassis, MSI Z97 Gaming 7 Motherboard, R9 Price Drops and more!! -Join us this week as we discuss the IN WIN 901 Chassis, MSI Z97 Gaming 7 Motherboard, R9 Price Drops and more! -no -76:22 -
- - -PC Perspective Podcast 300 - 05/15/14 -PC Perspective Podcast #300!!! - 05/15/2014

- -

Join us this week for our 300th podcast as we discuss the Gigabyte Z97X-Gaming Black Edition, a $599 Samsung 4K Monitor and much more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Morry Tietelman

- -
Program length: 1:25:47
- -
    -
  1. -
    What happened 100 Episodes ago…
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- - -]]>
-Thu, 15 May 2014 06:00:03 -0400 - -pc-perspective-podcast-300-051514 -Ryan Shrout -Join us this week for our 300th podcast as we discuss the Gigabyte Z97X-Gaming Black Edition, a $599 Samsung 4K Monitor and much more! -Join us this week for our 300th podcast as we discuss the Gigabyte Z97X-Gaming Black Edition, a $599 Samsung 4K Monitor and much more! -no -85:47 -
- - -PC Perspective Podcast 299 - 05/08/14 -PC Perspective Podcast #299 - 05/08/2014

- -

Join us this week as we discuss ASUS Z97-Deluxe, NCASE M1 Case, AMD's custom ARM Designs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, Allyn Malventano, and Morry Tietelman

- -
Program length: 1:27:11
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -]]>
-Thu, 08 May 2014 06:00:03 -0400 - -pc-perspective-podcast-299-050814 -Ryan Shrout -Join us this week as we discuss ASUS Z97-Deluxe, NCASE M1 Case, AMD's custom ARM Designs and more! -Join us this week as we discuss ASUS Z97-Deluxe, NCASE M1 Case, AMD's custom ARM Designs and more! -no -87:11 -
- - -PC Perspective Podcast 298 - 05/01/14 -PC Perspective Podcast #298 - 05/01/2014

- -

Join us this week as we discuss Next Generation Intel Motherboards, Crossfire R9 295x2s, Corsair AX1500i Power Supply, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Josh Walrath, Jeremy Hellstrom, Allyn Malventano, and Morry Tietelman

- -
Program length: 1:22:18
- -
    -
  1. - -
  2. -
  3. - - -
      -
    1. -
      there is a video, and it will be streamed
      -
    2. -
    -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -

 

- - -]]>
-Thu, 01 May 2014 06:00:03 -0400 - -pc-perspective-podcast-298-050114 -Ryan Shrout -Join us this week as we discuss Next Generation Intel Motherboards, Crossfire R9 295x2s, Corsair AX1500i Power Supply, and more! -Join us this week as we discuss Next Generation Intel Motherboards, Crossfire R9 295x2s, Corsair AX1500i Power Supply, and more! -no -82:18 -
- - -PC Perspective Podcast 297 - 04/24/14 -PC Perspective Podcast #296 - 04/17/2014

- -

Join us this week as we discuss gaming on the AMD AM1 Platform, AMD Never Settle Forever, 15nm Flash Memory and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- -
Program length: 1:08:24
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: Battlezone II - still being patched!
      -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- - -]]>
-Thu, 24 Apr 2014 06:00:03 -0400 - -pc-perspective-podcast-297-042414 -Ryan Shrout -Join us this week as we discuss gaming on the AMD AM1 Platform, AMD Never Settle Forever, 15nm Flash Memory and more! -Join us this week as we discuss gaming on the AMD AM1 Platform, AMD Never Settle Forever, 15nm Flash Memory and more! -no -68:24 -
- - -PC Perspective Podcast 296 - 04/17/14 -PC Perspective Podcast #296 - 04/17/2014

- -

Join us this week as we discuss NVIDIA's 337.50 Driver Improvements, Corsair H105, Intel Haswell Refresh details and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- -
Program length: 1:22:06
- -
 
- - - -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

 

- -

- -]]>
-Thu, 17 Apr 2014 06:00:03 -0400 - -pc-perspective-podcast-296-041714 -Ryan Shrout -Join us this week as we discuss NVIDIA's 337.50 Driver Improvements, Corsair H105, Intel Haswell Refresh details and more! -Join us this week as we discuss NVIDIA's 337.50 Driver Improvements, Corsair H105, Intel Haswell Refresh details and more! -no -85:06 -
- - -PC Perspective Podcast 295 - 04/10/14 -PC Perspective Podcast #295 - 04/10/2014

- -

Join us this week as we discuss the AMD Radeon R9 295X2, AMD AM1 Socket SoCs, Building a 1080P Gaming PC for under $550 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
- -
 
- -
Program length: 1:22:06
- -
 
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  4. -
  5. -
    0:51:18 This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. -
      1:03:10 NAB News
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: Move over mineral oil, 3M's Novec
      -
    4. -
    5. - -
    6. -
    7. -
      Allyn: For those with too many tabs in Chrome - OneTab
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

 

- -

- -

 

- -]]>
-Thu, 10 Apr 2014 06:00:03 -0400 - -pc-perspective-podcast-295-041014 -Ryan Shrout -Join us this week as we discuss the AMD Radeon R9 295X2, AMD AM1 Socket SoCs, Building a 1080P Gaming PC for under $550 and more! -Join us this week as we discuss the AMD Radeon R9 295X2, AMD AM1 Socket SoCs, Building a 1080P Gaming PC for under $550 and more! -no -82:06 -
- - -PC Perspective Podcast 294 - 04/03/14 -PC Perspective Podcast #294 - 04/03/2014

- -

Join us this week as we discuss Frame Rating Mantle in BF4, DirectX 12, Sub-$700 4K Monitors and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
- -
 
- -
Program length: 1:12:29
- -
 
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  4. -
  5. -
    0:43:40 This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: Like MAME? Try MESS, and further - UME (systems list)
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Thu, 02 Apr 2014 06:00:03 -0400 - -pc-perspective-podcast-294-040214 -Ryan Shrout -Join us this week as we discuss Frame Rating Mantle in BF4, DirectX 12, Sub-$700 4K Monitors and more! -Join us this week as we discuss Frame Rating Mantle in BF4, DirectX 12, Sub-$700 4K Monitors and more! -no -72:29 -
- - -PC Perspective Podcast 293 - 03/27/14 -PC Perspective Podcast #293 - 03/27/2014

- -

Join us this week as we discuss the NVIDIA Titan-Z, ASUS ROG Poseidon 780, News from OculusVR and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
- -
 
- -
Program length: 1:19:03
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. -
      0:10:45 Microsoft's DirectX 12 (Live Blog)
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  4. -
  5. -
    0:37:07 This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - - -
        -
      1. - -
      2. -
      -
    12. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Josh: Certainly not a Skype Connection to the Studio
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -

 

- -]]>
-Thu, 27 Mar 2014 06:00:03 -0400 - -pc-perspective-podcast-293-032714 -Ryan Shrout -Join us this week as we discuss the NVIDIA Titan-Z, ASUS ROG Poseidon 780, News from OculusVR and more! -Join us this week as we discuss the NVIDIA Titan-Z, ASUS ROG Poseidon 780, News from OculusVR and more! -no -89:03 -
- - -PC Perspective Podcast 292 - 03/20/14 -PC Perspective Podcast #292 - 03/20/2014

- -

Join us this week as we discuss Haswell-E, Iris Pro in Broadwell, our 750 Ti Roundup and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
- -
 
- -
Program length: 1:32:09
- -
 
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    0:34:44 This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset
    -
  12. -
  13. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - - -
        -
      1. - -
      2. -
      -
    10. -
    11. -
      0:57:00 Busy week to be a GPU-accelerated software developer
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - - -
        -
      1. - -
      2. -
      -
    18. -
    19. - - -
        -
      1. - -
      2. -
      -
    20. -
    21. - -
    22. -
    -
  14. -
  15. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  16. -
  17. - -
  18. -
  19. - -
  20. -
  21. - -
  22. -
  23. -
    Closing/outro
    -
  24. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -

 

- -]]>
-Thu, 20 Mar 2014 06:00:03 -0400 - -pc-perspective-podcast-292-032014 -Ryan Shrout -Join us this week as we discuss Haswell-E, Iris Pro in Broadwell, our 750 Ti Roundup and more! -Join us this week as we discuss Haswell-E, Iris Pro in Broadwell, our 750 Ti Roundup and more! -no -92:09 -
- - -PC Perspective Podcast 291 - 03/13/14 -PC Perspective Podcast #291 - 03/13/2014

- -

Join us this week as we discuss the EVGA GTX 780 ACX, Building a PC for Titanfall, NVIDIA's 800m GPU Lineup and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath,  Allyn Malventano and Morry Teitelman

- - - -
 
- -
This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
- -
 
- -
Program length: 1:16:42
- -

Be sure to subscribe to the PC Perspective YouTube channel!

- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    0:41:35 This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: Leaving in the middle of podcasts
      -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

- -

 

- - -]]>
-Thu, 13 Mar 2014 06:00:03 -0400 - -pc-perspective-podcast-291-031314 -Ryan Shrout -Join us this week as we discuss the EVGA GTX 780 ACX, Building a PC for Titanfall, NVIDIA's 800m GPU Lineup and more! -Join us this week as we discuss the EVGA GTX 780 ACX, Building a PC for Titanfall, NVIDIA's 800m GPU Lineup and more! -no -76:42 -
- - -PC Perspective Podcast 290 - 03/06/14 -PC Perspective Podcast #290 - 03/06/2014

- -

Join us this week as we discuss the Intel SSD 730, ASUS Maximus VI Formula, DirectX 12 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
- -
 
- -
Program length: 1:27:52
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    0:41:43 This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -]]>
-Thu, 06 Mar 2014 06:00:03 -0400 - -pc-perspective-podcast-290-030614 -Ryan Shrout -Join us this week as we discuss the Intel SSD 730, ASUS Maximus VI Formula, DirectX 12 and more! -Join us this week as we discuss the Intel SSD 730, ASUS Maximus VI Formula, DirectX 12 and more! -no -87:52 -
- - - -PC Perspective Podcast 289 - 02/27/14 -PC Perspective Podcast #289 - 02/27/2014

- -

Join us this week as we discuss the release of the Origin PC EOS-17 SLX Gaming Laptop, Mining on a 750Ti, News from MWC and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset!
- -
 
- -
Program length: 1:17:30
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  4. -
  5. -
    0:21:48 This podcast is brought to you by Coolermaster, and the CM Storm Pulse-R Gaming Headset
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    23. - -
    24. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- - -]]>
-Thu, 27 Feb 2014 06:00:03 -0400 - -pc-perspective-podcast-289-022714 -Ryan Shrout -Join us this week as we discuss the Origin PC EOS-17 SLX Gaming Laptop, Mining on a 750Ti, News from MWC and more! -Join us this week as we discuss the Origin PC EOS-17 SLX Gaming Laptop, Mining on a 750Ti, News from MWC and more! -no -77:30 -
- - - -PC Perspective Podcast 288 - 02/20/14 -PC Perspective Podcast #288 - 02/20/2014

- -

Join us this week as we discuss the release of the NVIDIA GTX 750 Ti, Upgrading Crappy Desktops, 5TB Hard Drives and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
Program length: 1:13:15
- -
 
- -
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      Allyn: Got Descent? Great! Now run it in high res (D1X Rebirth).
      -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -]]>
-Thu, 20 Feb 2014 06:00:03 -0400 - -pc-perspective-podcast-288-022014 -Ryan Shrout -Join us this week as we discuss the release of the NVIDIA GTX 750 Ti, Upgrading Crappy Desktops, 5TB Hard Drives and more! -Join us this week as we discuss the release of the NVIDIA GTX 750 Ti, Upgrading Crappy Desktops, 5TB Hard Drives and more! -no -73:15 -
- - -PC Perspective Podcast 287 - 02/14/14 - -

PC Perspective Podcast #287 - 02/14/2014

-

Join us this week as we discuss the release of the AMD R7 265, Coin Mining's effect on GPU Prices, NVIDIA Earnings and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- -
-
Program length: 1:09:27
-
    -
  1. -
    -
  2. -
  3. -

    Join our spam list to get notified when we go live!

    -
  4. -
  5. -

    How about a Feb 22nd Virtual LAN Party?

    -
  6. -
  7. -

    Week in Review:

    -
      -
    1. -

      0:03:50 NZXT H440 White Mid-Tower Case Review

      -
    2. -
    3. -

      0:08:30 Koolance EXT-440CU Liquid Cooling System with CPU-380I Water Block Review

      -
    4. -
    5. -

      0:13:30 ARM Unveils Cortex-A17: New (Refreshed) IP for 2015

      -
    6. -
    7. -

      0:24:20 Video Perspective: Corsair Obsidian 250D Mini ITX Case

      -
    8. -
    9. -

      0:28:45 NVIDIA Posts Solid Quarter

      -
    10. -
    11. -

      0:35:45 AMD Radeon R7 265 2GB Review - Pitcairn takes another pass

      -
        -
      1. -

        AMD Launches Radeon R7 250X at $99 - HD 7770 Redux

        -
      2. -
      -
    12. -
    -
  8. -
  9. -

    News items of interest:

    -
      -
    1. -

      0:56:15 In a Galaxy far far away?

      -
    2. -
    3. -

      1:00:10 IBM Also Considers Leaving Chip Manufacturing

      -
    4. -
    5. -

      1:02:30 Fusion-Io looks to Accelerate your databases

      -
    6. -
    -
  10. -
  11. -

    Hardware/Software Picks of the Week:

    -
      -
    1. -

      Ryan: Gigabyte Brix Pro SFF Machine

      -
    2. -
    3. -

      Jeremy: vTardis

      -
    4. -
    5. -

      Josh: $379 for next few days!

      -
    6. -
    7. -

      Allyn: Go retro with Descent on Steam for $3.49

      -
    8. -
    -
  12. -
  13. -

    http://pcper.com/podcast

    -
  14. -
  15. -

    http://twitter.com/ryanshrout and http://twitter.com/pcper

    -
  16. -
  17. -

    Closing/outro

    -
  18. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- - -]]>
-Thu, 14 Feb 2014 06:00:03 -0400 - -pc-perspective-podcast-287-021414 -Ryan Shrout -Join us this week as we discuss the release of the AMD R7 265, Coin Mining's effect on GPU Prices, NVIDIA Earnings and more! -Join us this week as we discuss the release of the AMD R7 265, Coin Mining's effect on GPU Prices, NVIDIA Earnings and more! -no -67:27 -
- - -PC Perspective Podcast 286 - 02/06/14 -PC Perspective Podcast #286 - 02/06/2014

- -

Join us this week as we discuss the release of AMD Mantle, Battlefield 4 Performance, Chromeboxes and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
Program length: 1:03:08
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    2. -
    3. - -
    4. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. -
      Jeremy: The Cyberith Virtualizer would be nice to go with that Oculus Rift you should buy me
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -]]>
-Thu, 06 Feb 2014 06:00:03 -0400 - -pc-perspective-podcast-286-020614 -Ryan Shrout -Join us this week as we discuss the release of AMD Mantle, Battlefield 4 Performance, Chromeboxes and more! -Join us this week as we discuss the release of AMD Mantle, Battlefield 4 Performance, Chromeboxes and more! -no -63:08 -
- - -PC Perspective Podcast 285 - 01/30/14 -PC Perspective Podcast #285 - 01/30/2014

- -

Join us this week as we discuss Frame Rating AMD Dual Graphics with Kaveri, Linux GPU Performance, and Dogecoin Mining

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
Program length: 1:02:01
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - - -
  4. -
  5. - - -
      -
    1. - -
    2. -
    -
  6. -
  7. - -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. -
      0:37:45 Quick Linux mention
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    6. -
    7. - - -
        -
      1. -
        And Motorola Mobility
        -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  10. -
  11. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

-]]>
-Thu, 30 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-285-013014 -Ryan Shrout -Join us this week as we discuss Frame Rating AMD Dual Graphics with Kaveri, Linux GPU Performance, and Dogecoin Mining! -Join us this week as we discuss Frame Rating AMD Dual Graphics with Kaveri, Linux GPU Performance, and Dogecoin Mining! -no -62:01 -
- - -PC Perspective Podcast 284 - 01/23/14 -PC Perspective Podcast #284 - 01/23/2014

- -

Join us this week as we discuss the OCZ Vertex 460, ASUS DirectCUII R9 270X and 280X, TITAN Black and GTX 790 and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
Program length: 1:16:11
- -
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. 0:09:50 PC Perspective's Best Hardware of 2013
    4. -
    5. 0:11:00 Lenovo Yoga Tablet 8 and Tablet 10
    6. -
    7. 0:15:50 ECS GANK DRONE Z87H3-A3X Motherboard Review
    8. -
    9. 0:18:50 OCZ Vertex 460 240GB SSD Review -
        -
      1. - -
      2. -
      -
    10. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - - -
        -
      1. - -
      2. -
      -
    8. -
    9. - - -
        -
      1. - -
      2. -
      -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- - -]]>
-Thu, 23 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-284-012314 -Ryan Shrout -Join us this week as we discuss the OCZ Vertex 460, ASUS DirectCUII R9 270X and 280X, TITAN Black and GTX 790 and more! -Join us this week as we discuss the OCZ Vertex 460, ASUS DirectCUII R9 270X and 280X, TITAN Black and GTX 790 and more! -no -76:11 -
- - -PC Perspective Podcast 283 - 01/16/14 -PC Perspective Podcast #283 - 01/16/2014

- -

Join us this week as we discuss the AMD Kaveri APU Launch, Gigabyte's New Slim Gaming Notebook, and CES 2014 Wrapup!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

- - - -
 
- -
Program length: 1:13:50
- - - - -]]>
-Thu, 16 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-283-011614 -Ryan Shrout -Join us this week as we discuss the AMD Kaveri APU Launch, Gigabyte's New Slim Gaming Notebook, and CES 2014 Wrapup! -Join us this week as we discuss the AMD Kaveri APU Launch, Gigabyte's New Slim Gaming Notebook, and CES 2014 Wrapup! -no -73:50 -
- - -PC Perspective Podcast CES Day 4 - 01/08/14 -CES 2014 Podcast Day 4 - 01/08/14

- -

It's time for podcast fun at CES!  Join us as we talk about the third day of the show including exciting announcements from EVGA, Origin, PCI-E SSDs from Kingston, Plextor, and ADATA and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

- -

Program length: 48:41

- -

- -

 

- -]]>
-Wed, 08 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-ces2014-4 -Ryan Shrout -It's time for podcast fun at CES! Join us as we talk about the third day of the show including exciting announcements from EVGA, Origin, PCI-E SSDs from Kingston, Plextor, and ADATA and more! -It's time for podcast fun at CES! Join us as we talk about the third day of the show including exciting announcements from EVGA, Origin, PCI-E SSDs from Kingston, Plextor, and ADATA and more! -no -48:41 -
- - -PC Perspective Podcast CES Day 3 - 01/07/14 -CES 2014 Podcast Day 3 - 01/07/14

- -

It's time for podcast fun at CES!  Join us as we talk about the third day of the show including exciting announcements from Corsair, Coolermaster, NVIDIA, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

- -

Program length: 49:24

- -

- -

 

- -]]>
-Tue, 07 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-ces2014-3 -Ryan Shrout -It's time for podcast fun at CES! Join us as we talk about the third day of the show including exciting announcements from Corsair, Coolermaster, NVIDIA, and more! -It's time for podcast fun at CES! Join us as we talk about the third day of the show including exciting announcements from Corsair, Coolermaster, NVIDIA, and more! -no -49:24 -
- - -PC Perspective Podcast CES Day 2 - 01/06/14 -CES 2014 Podcast Day 2 - 01/06/14

- -

It's time for podcast fun at CES!  Join us as we talk about the second day of the show including new products from ASUS, Lucid, Valve, Seagate and more!!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

- -

Program length: 57:03

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

-]]>
-Mon, 06 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-ces2014-2 -Ryan Shrout -It's time for podcast fun at CES! Join us as we talk about the second day of the show including new products from ASUS, Lucid, Valve, Seagate and more!! -It's time for podcast fun at CES! Join us as we talk about the second day of the show including new products from ASUS, Lucid, Valve, Seagate and more!! -no -57:03 -
- - -PC Perspective Podcast CES Day 1 - 01/05/14 -CES 2014 Podcast Day 1 - 01/05/14

- -

It's time for podcast fun at CES!  Join us as we talk about the first day of the show including a lot of announcements from Lenovo, the NVIDIA Tegra K1, G-Sync and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

- -

Program length: 44:31

- -

Be sure to subscribe to the PC Perspective YouTube channel!!

- -

- -

 

- - -]]>
-Sun, 05 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-cse2014-1 -Ryan Shrout -It's time for podcast fun at CES! Join us as we talk about the first day of the show including a lot of announcements from Lenovo, the NVIDIA Tegra K1, G-Sync and more! -It's time for podcast fun at CES! Join us as we talk about the first day of the show including a lot of announcements from Lenovo, the NVIDIA Tegra K1, G-Sync and more! -no -44:31 -
- - -PC Perspective Podcast 282 - 01/02/14 -PC Perspective Podcast #282 - 01/02/2014

- -

Join us this week as we discuss our Hardware Picks of the Year, the Sapphire 290X Tri-X, and the EVGA Hadron Air

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Scott Michaud

- - - -
 
- -
Program length: 1:58:53
- -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Thanks to Don Komarechka for the Sky Crystals book
    -
  6. -
  7. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  8. -
  9. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. -
    PC Perspective Hardware Picks of the Year
    - -
      -
    1. -
      Best Graphics Card of 2013
      -
    2. -
    3. -
      Best CPU of 2013
      -
    4. -
    5. -
      Best Storage of 2013
      -
    6. -
    7. -
      Best Case of 2013
      -
    8. -
    9. -
      Best Motherboard of 2013
      -
    10. -
    11. -
      Best Price Drop of 2013
      -
    12. -
    13. -
      Best Mobile Device of 2013
      -
    14. -
    15. -
      Best Trend of 2013
      -
    16. -
    17. -
      Worst Trend of 2013
      -
    18. -
    19. -
      Best Website
      - -
        -
      1. - -
      2. -
      -
    20. -
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    Closing/outro
    -
  18. -
-
- - - -

- -]]>
-Thu, 02 Jan 2014 06:00:03 -0400 - -pc-perspective-podcast-282-010214 -Ryan Shrout -Join us this week as we discuss our Hardware Picks of the Year, the Sapphire 290X Tri-X, and the EVGA Hadron Air! -Join us this week as we discuss our Hardware Picks of the Year, the Sapphire 290X Tri-X, and the EVGA Hadron Air! -no -118:53 -
- - -PC Perspective Podcast 281 - 12/19/13 -PC Perspective Podcast #281 - 12/19/2013

- -

Join us this week as we discuss our NVIDIA GSYNC Preview, ASUS ROG MARS 760, Custom Cooled R9 290Xs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Scott Michaud

- - - -
 
- -
Program length: 1:38:13
- -
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  6. -
  7. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      1:04:00 Intel Roadmap Leaks
      - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - - -

- - -]]>
-Thu, 19 Dec 2013 06:00:03 -0400 - -pc-perspective-podcast-281-121913 -Ryan Shrout -Join us this week as we discuss our NVIDIA GSYNC Preview, ASUS ROG MARS 760, Custom Cooled R9 290Xs and more! -Join us this week as we discuss our NVIDIA GSYNC Preview, ASUS ROG MARS 760, Custom Cooled R9 290Xs and more! -no -98:13 -
- - -PC Perspective Podcast 280 - 12/12/13 -PC Perspective Podcast #280 - 12/12/2013

- -

Join us this week as we discuss the NVIDIA GRID Beta, R9 290X Custom Coolers, 2TB SSDs and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Scott Michaud

- - - -
 
- -
Program length: 1:09:46
- -
-
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  4. -
  5. -
    News items of interest:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      Allyn: Windows 8.1 tweaks at WinAero.com
      -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- - - - -]]>
-Thu, 12 Dec 2013 06:00:03 -0400 - -pc-perspective-podcast-280-121213 -Ryan Shrout -Join us this week as we discuss the NVIDIA GRID Beta, R9 290X Custom Coolers, 2TB SSDs and more! -Join us this week as we discuss the NVIDIA GRID Beta, R9 290X Custom Coolers, 2TB SSDs and more! -no -69:46 -
- - -PC Perspective Podcast 279 - 12/04/13 -PC Perspective Podcast #279 - 12/04/2013

- -

Join us this week as we discuss R9 290 Variance Issues, OCZ's Bankruptcy, Kaveri Leaks and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Scott Michaud

- - - -
 
- -
Program length: 1:18:11
- -
-
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  4. -
  5. -
    0:31:05 This episode is brought to you by Carbonite.com! Use offer code PC for two free months!
    -
  6. -
  7. - - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - - -
        -
      1. - -
      2. -
      -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  8. -
  9. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    Closing/outro
    -
  16. -
-
- - - - -]]>
-Thu, 04 Dec 2013 06:00:03 -0400 - -pc-perspective-podcast-279-120413 -Ryan Shrout -Join us this week as we discuss R9 290 Variance Issues, OCZ's Bankruptcy, Kaveri Leaks and more! -Join us this week as we discuss R9 290 Variance Issues, OCZ's Bankruptcy, Kaveri Leaks and more! -no -78:11 -
- - -PC Perspective Podcast 278 - 11/21/13 -PC Perspective Podcast #278 - 11/21/2013

- -

Join us this week as we discuss our PS4 Teardown and Storage Benchmarks, ASUS MARS 760, and more!

- -

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

- -

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

- -
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
- -

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- - - -
 
- -
Program length: 1:16:24
- -
-
    -
  1. - -
  2. -
  3. -
    Week in Review:
    - -
      -
    1. - -
    2. -
    3. - - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  4. -
  5. - - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  6. -
  7. -
    Hardware/Software Picks of the Week:
    - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    Closing/outro
    -
  14. -
-
- - - -

- - - - -]]>
-Thu, 21 Nov 2013 06:00:03 -0400 - -pc-perspective-podcast-278-112113 -Ryan Shrout -Join us this week as we discuss our PS4 Teardown and Storage Benchmarks, ASUS MARS 760, and more! -Join us this week as we discuss our PS4 Teardown and Storage Benchmarks, ASUS MARS 760, and more! -no -76:24 -
- - -PC Perspective Podcast 277 - 11/14/13 -PC Perspective Podcast #277 - 11/14/2013

-

Join us this week as we discuss the GTX 780Ti, OCZ Vector 150 SSD, Details about Kaveri, and much more from APU13!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-  
-
- Program length: 1:09:03
-
-
    -
  1. - -
  2. -
  3. -
    - Reminder about Halloween contest - update when I get home
    -
  4. -
  5. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    - 0:30:50 This episode is brought to you by Carbonite.com! Use offer code PC for two free months!
    -
      -
    1. - -
    2. -
    3. - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  8. -
  9. - -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
-
- -
-  
-
-  
- - - - -]]>
-Thu, 14 Nov 2013 06:00:03 -0400 - -pc-perspective-podcast-277-111413 -Ryan Shrout -Join us this week as we discuss the GTX 780Ti, OCZ Vector 150 SSD, Details about Kaveri, and much more from APU13! -Join us this week as we discuss the GTX 780Ti, OCZ Vector 150 SSD, Details about Kaveri, and much more from APU13! -no -69:03 -
- - -PC Perspective Podcast 276 - 11/07/13 -PC Perspective Podcast #276 - 11/07/2013

-

Join us this week as we discuss the AMD Radeon R9 290, Gigabyte Z87X-UD5H, SSD Torture tests and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-  
-
- Due to a recording error, portions of the audio track are missing. Because of this, the audio will skip around in various places. This is actually happening, and you aren't crazy (well maybe, but not because of the audio). Considering these files were almost not recovered, it's a miracle we have this much of the recording.
-
-  
-
- Program length: 0:47:56
-
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  6. -
  7. - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. -
    - podcast@pcper.com
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    - Closing/outro
    -
  18. -
-
- - - - - - -]]>
-Thu, 07 Nov 2013 06:00:03 -0400 - -pc-perspective-podcast-276-110713 -Ryan Shrout -Join us this week as we discuss the AMD Radeon R9 290, Gigabyte Z87X-UD5H, SSD Torture tests and more! -Join us this week as we discuss the AMD Radeon R9 290, Gigabyte Z87X-UD5H, SSD Torture tests and more! -no -47:56 -
- - -PC Perspective Podcast 275 - 10/31/13 -PC Perspective Podcast #275 - 10/31/2013

-

Join us this week as we discuss the AMD Radeon R9 290X, ARMTechCon 2013, NVIDIA Pricedrops and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-  
-
- Program length: 1:22:37
-
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    - Week in Review:
    -
      -
    1. - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. -
      - 0:55:40
      -
    10. -
    11. - -
    12. -
    -
  6. -
  7. -
    - 0:59:20 This episode is brought to you by Carbonite.com! Use offer code PC for two free months!
    -
  8. -
  9. - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
        -
      1. -
        - Intel Series 9 Chipset
        -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  12. -
  13. -
    - podcast@pcper.com
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    - Closing/outro
    -
  20. -
-
- -

- - - -]]>
-Thu, 31 Oct 2013 06:00:03 -0400 - -pc-perspective-podcast-275-103113 -Ryan Shrout -Join us this week as we discuss the AMD Radeon R9 290X, ARMTechCon 2013, NVIDIA Pricedrops and more! -Join us this week as we discuss the AMD Radeon R9 290X, ARMTechCon 2013, NVIDIA Pricedrops and more! -no -82:37 -
- - -PC Perspective Podcast 274 - 10/24/13 - -

PC Perspective Podcast #274 - 10/24/2013

-

Join us this week as we discuss NVIDIA G-SYNC, R9 290X Benchmarks, and Process Technology for Next Gen Graphics!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-  
-
- Program length: 1:16:43
-
-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    - Week in Review:
    -
      -
    1. -
      - 0:07:10 NVIDIA "The Way It's Meant to be Played" 2013 Press Event
      -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    2. -
    3. - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
        -
      1. - -
      2. -
      -
    8. -
    -
  8. -
  9. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      - Allyn: Did you know (Windows 8.1 safe mode)
      -
    6. -
    -
  10. -
  11. -
    - podcast@pcper.com
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    - Closing/outro
    -
  18. -
-
- - - - -]]>
-Thu, 24 Oct 2013 06:00:03 -0400 - -pc-perspective-podcast-274-102413 -Ryan Shrout -Join us this week as we discuss NVIDIA G-SYNC, R9 290X Benchmarks, and Process Technology for Next Gen Graphics! -Join us this week as we discuss NVIDIA G-SYNC, R9 290X Benchmarks, and Process Technology for Next Gen Graphics! -no -76:43 -
- - -PC Perspective Podcast 273 - 10/17/13 - -

PC Perspective Podcast #273 - 10/17/2013

-

Join us this week as we discuss the Corsair 750D, a XSPC Watercooling Kit, the Steam Controller and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-
Program length: 1:10:56
-
    -
  1. -

    PC Perspective Halloween Hardware Giveaway - Brought to you by Corsair and Gigabyte

    -
  2. -
  3. -

    Join our mailing list to get notified when we go live!

    -
  4. -
  5. -

    Week in Review:

    -
      -
    1. -

      ORIGIN PC Millennium Custom Gaming Rig - Ivy Bridge-E, GTX 780 SLI

      -
    2. -
    3. -

      Corsair Obsidian 750D Full-Tower ATX Case Review

      -
    4. -
    5. -

      XSPC Raystorm 750 EX240 Watercooling Kit Review

      -
    6. -
    -
  6. -
  7. -

    This episode is brought to you by Carbonite.com! Use offer code PC for two free months!

    -
  8. -
  9. -

    News items of interest:

    -
      -
    1. -

      Valve confirms Steam Machines not NVIDIA exclusive

      -
    2. -
    3. -

      Rumor: Web Developer Tools Leaked the R9 290X Price?

      -
        -
      1. -

        Amazon price

        -
      2. -
      -
    4. -
    5. -

      Valve's Steam Controller Demonstration... 001... .avi?

      -
    6. -
    7. -

      Fujitsu's 'All New In Touch' Mobile Laptop/Tablet Lineup

      -
    8. -
    9. -

      MS confirms AMD Mantle not compatible with Xbox One

      -
    10. -
    11. -

      PC Shipments Fell Less Than Expected. Tablets Grew Less

      -
    12. -
    13. -

      AMD cards get an unexpected boost from the Linux 3.12 kernel

      -
    14. -
    15. -

      Corsair Graphite 230T

      -
    16. -
    17. -

      Poor yeilds will delay 14nm Broadwell chips

      -
        -
      1. -

        Skylake (2015) reportedly not affected

        -
      2. -
      -
    18. -
    19. -

      Lenovo Miix2 Tablet (Bay Trail-T, Win 8.1, etc)

      -
    20. -
    21. -

      Altera FPGAs at Intel (14nm) programmed in OpenCL

      -
    22. -
    -
  10. -
  11. -

    Hardware/Software Picks of the Week:

    -
      -
    1. -

      Jeremy: CastAR Goes Live on Kickstarter

      -
        -
      1. -

        with unlimited screen size

        -
      2. -
      -
    2. -
    3. -

      Josh: Get while the goin's good

      -
    4. -
    5. -

      Allyn: http://www.fullscreenmario.com/

      -
    6. -
    7. -

      Morry: Windows 8.1 - the way its meant to be played

      -
    8. -
    -
  12. -
  13. -

    podcast@pcper.com

    -
  14. -
  15. -

    http://pcper.com/podcast

    -
  16. -
  17. -

    http://twitter.com/ryanshrout and http://twitter.com/pcper

    -
  18. -
  19. -

    Closing/outro

    -
  20. -
- - -]]>
-Thu, 17 Oct 2013 06:00:03 -0400 - -pc-perspective-podcast-273-101713 -Ryan Shrout -Join us this week as we discuss the Corsair 750D, a XSPC Watercooling Kit, the Steam Controller and more! -Join us this week as we discuss the Corsair 750D, a XSPC Watercooling Kit, the Steam Controller and more! -no -70:56 -
- - -PC Perspective Podcast 272 - 10/10/13 -PC Perspective Podcast #272 - 10/10/2013

-

Join us this week as we discuss the Radeon R9 280X, R9 270X, R7 260X, Steam Machine Specs, and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -
-  
-
- Program length: 1:16:43
-
    -
  1. -
    - 0:01:35 Batman: Arkham Winner and new contest!
    -
  2. -
  3. - -
  4. -
  5. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    - 0:36:00 This episode is brought to you by Carbonite.com! Use offer code PC for two free months!
    -
  8. -
  9. - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
        -
      1. -
        - iBuyPower and CyberPower too
        -
      2. -
      -
    10. -
    -
  10. -
  11. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. -
      - Jeremy: O'Reilly Media
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Nest Protect
      -
    8. -
    -
  12. -
  13. -
    - podcast@pcper.com
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    - Closing/outro
    -
  20. -
- -

-

 

-]]>
-Thu, 10 Oct 2013 06:00:03 -0400 - -pc-perspective-podcast-272-101013 -Ryan Shrout -Join us this week as we discuss the Radeon R9 280X, R9 270X, R7 260X, Steam Machine Specs, and more! -Join us this week as we discuss the Radeon R9 280X, R9 270X, R7 260X, Steam Machine Specs, and more! -no -76:43 -
- - -PC Perspective Podcast 271 - 10/03/13 -PC Perspective Podcast #271 - 10/03/2013

-

Join us this week as we discuss the Hawell NUC, MSI X87 XPOWER Motherboard, the Steam Controller and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Scott Michaud

- -
-  
-
- Program length: 1:24:00
-
    -
  1. -
    - Batman: Arkham Origins keys anyone??
    -
  2. -
  3. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  4. -
  5. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  6. -
  7. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Dual Power eSATA USB 2.0 Power combo to 22Pin SATA cable (on eBay)
      -
    8. -
    9. -
      - Scott: Teksavvy Internet (Not USB Hubs)
      -
    10. -
    -
  8. -
  9. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
- -

-]]>
-Thu, 03 Oct 2013 06:00:03 -0400 - -pc-perspective-podcast-271-100313 -Ryan Shrout -Join us this week as we discuss the Hawell NUC, MSI X87 XPOWER Motherboard, the Steam Controller and more! -Join us this week as we discuss the Hawell NUC, MSI X87 XPOWER Motherboard, the Steam Controller and more! -no -84:00 -
- - -PC Perspective Podcast 270 - 09/26/13 -PC Perspective Podcast #270 - 09/26/2013

-

Join us this week as we discuss AMDs new GPU lineup, SteamOS, the Steam Box ,and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Morry Teitelman

- -
-  
-
- Program length: 57:42
-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  2. -
  3. - -
      -
    1. - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Ryan: A pair of coconuts supporting a beautiful
      -
    2. -
    3. -
      - Jeremy: Portable OS
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Remote Mouse
      -
    8. -
    9. -
      - Morry: AT&T U-Verse
      -
    10. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- -]]>
-Thu, 26 Sep 2013 06:00:03 -0400 - -pc-perspective-podcast-270-092613 -Ryan Shrout -Join us this week as we discuss AMDs new GPU lineup, SteamOS, the Steam Box, and more! -Join us this week as we discuss AMDs new GPU lineup, SteamOS, the Steam Box, and more! -no -57:42 -
- - -PC Perspective Podcast 269 - 09/19/13 -PC Perspective Podcast #269 - 09/19/2013

-

Join us this week as we discuss Frame Rating on Eyefinity, News from IDF, and rumors about new AMD GPUs.

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Morry Teitelman

- -
-  
-
- Program length: 1:35:35
-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. -
      - Jeremy: Um, sure why not - ADATA DashDrive Durable
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Connected Data Transporter 2.0 (yes it exists)
      -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

 

- - -]]>
-Thu, 19 Sep 2013 06:00:03 -0400 - -pc-perspective-podcast-269-091913 -Ryan Shrout -Join us this week as we discuss Frame Rating on Eyefinity, News from IDF, and rumors about new AMD GPUs -Join us this week as we discuss Frame Rating on Eyefinity, News from IDF, and rumors about new AMD GPUs -no -95:35 -
- - -PC Perspective Podcast 268 - 09/12/13 -PC Perspective Podcast #268 - 09/12/2013

-

Join us this week as we discuss Intel Bay Trail Tablets, Intel's Quark SoC, and news from IFA and IDF

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -

Program length: 1:20:06

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      9. - -
      10. -
      -
    2. -
    3. - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      - 0:49:00 Quick IFA roundup
      -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      9. - -
      10. -
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. -
      - 1:04:10 A Steamy family
      -
    16. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      - Morry: Test bench evolution - Primochill Wet Bench
      -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- -]]>
-Thu, 12 Sep 2013 06:00:03 -0400 - -pc-perspective-podcast-268-091213 -Ryan Shrout -Join us this week as we discuss Intel Bay Trail Tablets, Intel's Quark SoC, and news from IFA and IDF -Join us this week as we discuss Intel Bay Trail Tablets, Intel's Quark SoC, and news from IFA and IDF -no -80:06 -
- - -PC Perspective Podcast 267 - 09/05/13 -PC Perspective Podcast #267 - 09/05/2013

-

Join us this week as we discuss the Ivy Bridge-E i7-4960x, 4TB and Laptop WD Red drives, AMD's Processor Shift and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -

Program length: 1:19:40

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    12. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- -]]>
-Thu, 05 Sep 2013 06:00:03 -0400 - -pc-perspective-podcast-267-090513 -Ryan Shrout -Join us this week as we discuss the Ivy Bridge-E i7-4960x, 4TB and Laptop WD Red drives, AMD's Processor Shift and more! -Join us this week as we discuss the Ivy Bridge-E i7-4960x, 4TB and Laptop WD Red drives, AMD's Processor Shift and more! -no -79:40 -
- - -PC Perspective Podcast 266 - 08/29/13 -PC Perspective Podcast #266 - 08/29/2013

-

Join us this week as we discuss the Corsair Air 540 Case, MSI GTX 780 Lightning, hUMA in the PS4, and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, and Morry Teitelman

- -

Program length: 1:12:24

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
        -
      1. - -
      2. -
      -
    8. -
    9. - -
    10. -
    11. - -
        -
      1. - -
      2. -
      -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      - Allyn: Samsung 840 EVO pricing was definitely not kidding!
      -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- -]]>
-Thu, 29 Aug 2013 06:00:03 -0400 - -pc-perspective-podcast-266-082913 -Ryan Shrout -Join us this week as we discuss the Corsair Air 540 Case, MSI GTX 780 Lightning, hUMA in the PS4, and more! -Join us this week as we discuss the Corsair Air 540 Case, MSI GTX 780 Lightning, hUMA in the PS4, and more! -no -72:24 -
- - -PC Perspective Podcast 265 - 08/22/13 - -

PC Perspective Podcast #265 - 08/22/2013

-

Join us this week as we discuss the XSPC GTX 680 Waterblock, ASUS's DirectCU II Refresh, V-NAND SSDs and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -

Program length: 1:17:41

-
    -
  1. -

    Week in Review:

    -
      -
    1. -

      0:04:30 XSPC Razor GTX680 Water block review

      -
    2. -
    3. -

      0:08:45 ASUS DirectCU II Updated Lineup: NVIDIA GTX 700 Series Edition

      -
    4. -
    5. -

      0:29:00 Antec High Current Pro Platinum PSU Review

      -
    6. -
    7. -

      0:33:30 Lenovo IdeaPad Yoga 11S Convertible Notebook Review: A Game of Compromises

      -
    8. -
    -
  2. -
  3. -

    News items of interest:

    -
      -
    1. -

      0:36:00 We gave away some EVGA Pro SLI Bridges!!

      -
    2. -
    3. -

      0:37:45 Samsung Launches V-NAND SSD for enterprise

      -
    4. -
    5. -

      0:45:00 Intel to release a new optical interconnect?

      -
        -
      1. -

        Intel still planning stuff for Thunderbolt though

        -
      2. -
      -
    6. -
    7. -

      0:49:10 AMD Gains GPU Marketshare from last quarter

      -
        -
      1. -

        Even in add-in only market

        -
      2. -
      -
    8. -
    9. -

      0:55:00 EA Origin has a return policy...after SimCity is over

      -
    10. -
    11. -

      1:00:00 What is an AMD R-series processor?

      -
    12. -
    -
  4. -
  5. -

    Hardware/Software Picks of the Week:

    -
      -
    1. -

      Ryan: EVGA X79 Dark

      -
    2. -
    3. -

      Jeremy: Logitech Z506 5.1 Surround Speaker System 75W on sale for Canucks or not quite as good for 'muricans

      -
    4. -
    5. -

      Josh: Why not? Shiny and New!

      -
    6. -
    7. -

      Allyn: C64 Direct-to-TV

      -
    8. -
    -
  6. -
  7. -

    1-888-38-PCPER or podcast@pcper.com

    -
  8. -
  9. -

    http://pcper.com/podcast

    -
  10. -
  11. -

    http://twitter.com/ryanshrout and http://twitter.com/pcper

    -
  12. -
  13. -

    Closing/outro

    -
  14. -
- -
- - - -]]>
-Thu, 22 Aug 2013 06:00:03 -0400 - -pc-perspective-podcast-265-082213 -Ryan Shrout -Join us this week as we discuss the XSPC GTX 680 Waterblock, ASUS's DirectCU II Refresh, V-NAND SSDs and more! -Join us this week as we discuss the XSPC GTX 680 Waterblock, ASUS's DirectCU II Refresh, V-NAND SSDs and more! -no -77:41 -
- - -PC Perspective Podcast 264 - 08/15/13 -PC Perspective Podcast #264 - 08/15/2013

-

Join us this week as we discuss the Corsair Voyager Air, AMD Never Settle Reloaded, Ivy Bridge-E Rumors and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Morry Teitelman

- -

Program length: 1:20:45

-
    -
  1. - -
  2. -
- - - -]]>
-Thu, 15 Aug 2013 06:00:03 -0400 - -pc-perspective-podcast-264-081513 -Ryan Shrout -Join us this week as we discuss the Corsair Voyager Air, AMD Never Settle Forever, Ivy Bridge-E Rumors and more! -Join us this week as we discuss the Corsair Voyager Air, AMD Never Settle Forever, Ivy Bridge-E Rumors and more! -no -80:45 -
- - -PC Perspective Podcast 263 - 08/08/13 - -

PC Perspective Podcast #263 - 08/08/2013

-

Join us this week as we discuss AMDs Crossfire Fix, Carmack Leaving id, Left 4 Dead 3 rumors and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

- -

Program length: 1:13:47

-
    -
  1. - -
  2. -
- - -]]>
-Thu, 08 Aug 2013 06:00:03 -0400 - -pc-perspective-podcast-263-080813 -Ryan Shrout -Join us this week as we discuss AMDs Crossfire Fix, Carmack Leaving id, Left 4 Dead 3 rumors and more! -Join us this week as we discuss AMDs Crossfire Fix, Carmack Leaving id, Left 4 Dead 3 rumors and more! -no -73:47 -
- - -PC Perspective Podcast 262 - 08/01/13 -PC Perspective Podcast #262 - 08/01/2013

-

Join us this week as we discuss NVIDIA SHIELD, the Samsung 840 EVO, Viewer Q&A, and much more LIVE from QuakeCon 2013!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, and Allyn Malventano

- -

Program length: 1:19:01

-
    -
  1. -
    -
    - Happy Birthday to Josh!!
    -
      -
    1. - -
    2. -
    3. -
      - Week in Review:
      -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      -
    4. -
    5. -
      - News items of interest:
      -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
          -
        1. - -
        2. -
        -
      8. -
      9. - -
      10. -
      -
    6. -
    7. -
      - ​Viewer Q&A!
      -
    8. -
    9. -
      - 1-888-38-PCPER or podcast@pcper.com
      -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. -
      - Closing/outro
      -
    16. -
    -
    -
  2. -
- -

-

 

- -]]>
-Thu, 01 Aug 2013 06:00:03 -0400 - -pc-perspective-podcast-262-080113 -Ryan Shrout -Join us this week as we discuss NVIDIA SHIELD, the Samsung 840 EVO, Viewer QA, and much more LIVE from QuakeCon 2013! -Join us this week as we discuss NVIDIA SHIELD, the Samsung 840 EVO, Viewer QA, and much more LIVE from QuakeCon 2013! -no -79:10 -
- - - -PC Perspective Podcast 261 - 07/25/13 -PC Perspective Podcast #261 - 07/25/2013

-

Join us this week as we discuss our ASUS PQ321Q 4K Monitor Review, Samsung 840 Evo details, Kepler meets Tegra, and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom and Allyn Malventano

- -

Program length: 1:12:20

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
        -
      1. - -
      2. -
      -
    4. -
    5. - -
    6. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    20. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Jeremy: Got nothing so random mod
      -
    2. -
    3. - -
    4. -
    5. -
      - Allyn: A sinusesectomy
      -
    6. -
    7. -
      - Morry: When Artic Silver just isn't good enough - IC Diamond Thermal Paste
      -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- -]]>
-Thu, 25 Jul 2013 06:00:03 -0400 - -pc-perspective-podcast-261-072513 -Ryan Shrout -Join us this week as we discuss our ASUS PQ321Q 4K Monitor Review, Samsung 840 Evo details, Kepler meets Tegra, and more! -Join us this week as we discuss our ASUS PQ321Q 4K Monitor Review, Samsung 840 Evo details, Kepler meets Tegra, and more! -no -72:20 -
- - -PC Perspective Podcast 260 - 07/18/13 -PC Perspective Podcast #260 - 07/17/2013

-

Join us this week as we discuss the Gigabyte Z87-OC Force, ASUS PQ321Q 4K Monitor, FX-9000 Processors and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom and Allyn Malventano

- -

Program length: 1:17:39

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Ryan: T-shirts
      -
    2. -
    3. -
      - Jeremy: Electro-Permanent Magnets on quadcopters; how do they work?
      -
    4. -
    5. - -
    6. -
    7. -
      - Morry: Water cooler barbs, what else - Monsoon barbs
      -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- - - -]]>
-Thu, 17 Jul 2013 06:00:03 -0400 - -pc-perspective-podcast-260-071713 -Ryan Shrout -Join us this week as we discuss the Gigabyte Z87-OC Force, ASUS PQ321Q 4K Monitor, FX-9000 Processors and more! -Join us this week as we discuss the Gigabyte Z87-OC Force, ASUS PQ321Q 4K Monitor, FX-9000 Processors and more! -no -77:39 -
- - -PC Perspective Podcast 259 - 07/11/13 -PC Perspective Podcast #259 - 07/11/2013

-

Join us this week as we discuss the MSI Z87 MPower Motherboard, Mobile Frame Rating, Intel Bay Trail and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom and Allyn Malventano

- -

Program length: 1:14:34

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- -]]>
-Thu, 11 Jul 2013 06:00:03 -0400 - -pc-perspective-podcast-259-071113 -Ryan Shrout -Join us this week as we discuss the MSI Z87 MPower Motherboard, Mobile Frame Rating, Intel Bay Trail and more! -Join us this week as we discuss the MSI Z87 MPower Motherboard, Mobile Frame Rating, Intel Bay Trail and more! -no -74:34 -
- - -PC Perspective Podcast 258 - 07/04/13 -PC Perspective Podcast #258 - 07/04/2013

-

Join us this week as we discuss the Corsair 900D, HD 7790 vs GTX 650Ti BOOST, Leaked AMD APUs and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom and Allyn Malventano

- -

Program length: 1:14:23

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  4. -
  5. -
    - 0:58:25 Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Ryan: AR Drone 2.0
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: USB Practical Meter (kickstarter)
      -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- - -]]>
-Thu, 04 Jul 2013 06:00:03 -0400 - -pc-perspective-podcast-258-070413 -Ryan Shrout -Join us this week as we discuss the Corsair 900D, HD 7790 vs GTX 650Ti BOOST, Leaked AMD APUs and more! -Join us this week as we discuss the Corsair 900D, HD 7790 vs GTX 650Ti BOOST, Leaked AMD APUs and more! -no -74:23 -
- - -PC Perspective Podcast 257 - 06/27/13 -PC Perspective Podcast #257 - 06/27/2013

-

Join us this week as we discuss the GTX 760, Ultrabook Reviews, Intel Enterprise SSDs and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Josh Walrath, Jeremy Hellstrom, Allyn Malventano and Morry Teitelman

- -

Program length: 1:43:31

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
        -
      1. - -
      2. -
      -
    14. -
    15. - -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. - -
      6. -
      7. - -
      8. -
      9. - -
      10. -
      -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    -
  4. -
  5. -
    - Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Ryan: Not Delta
      -
    2. -
    3. -
      - Jeremy: join.me
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: iFixit Macro Bit Set (also Micro) (also iPhone Liberation Week)
      -
    8. -
    9. -
      - Morry: http://lutro0-customs.com/ - your source for sleeving
      -
    10. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- -]]>
-Thu, 27 Jun 2013 06:00:03 -0400 - -pc-perspective-podcast-257-062713 -Ryan Shrout -Join us this week as we discuss the GTX 760, Ultrabook Reviews, Intel Enterprise SSDs and more! -Join us this week as we discuss the GTX 760, Ultrabook Reviews, Intel Enterprise SSDs and more! -no -103:31 -
- - -PC Perspective Podcast 256 - 06/20/13 -PC Perspective Podcast #256 - 06/20/2013

-

Join us this week as we discuss Mobile Frame Rating, NVIDIA licensing Kepler, Xbox One DRM and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Morry Teitelman

- -

Program length: 1:33:43

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. -
      - 0:43:30 Ryan's summary of E3
      -
        -
      1. -
        - Oculus 1080p, Razer Blade, Monoprice, SHIELD
        -
      2. -
      -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    -
  4. -
  5. -
    - 1:22:00 Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      - Allyn: Swiss-Tech Keychain Tools
      -
    6. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- - -]]>
-Thu, 20 Jun 2013 06:00:03 -0400 - -pc-perspective-podcast-256-062013 -Ryan Shrout -Join us this week as we discuss Mobile Frame Rating, NVIDIA licensing Kepler, Xbox One DRM and more! -Join us this week as we discuss Mobile Frame Rating, NVIDIA licensing Kepler, Xbox One DRM and more! -no -93:43 -
- - -PC Perspective Podcast 255 - 06/13/13 -PC Perspective Podcast #255 - 06/13/2013

-

Join us this week as we discuss AMD's 5 GHz Processor, 1080p Oculus Rift, and more news from Computex!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Jeremy Hellstrom, Josh Walrath and Morry Teitelman

- -

Program length: 57:27

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
        -
      1. - -
      2. -
      -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. -
      - 0:40:40
      -
    22. -
    23. - -
        -
      1. - -
      2. -
      -
    24. -
    -
  4. -
  5. -
    - 0:49:00 Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Ryan: LA Traffic
      -
    2. -
    3. -
      - Jeremy: The mighty can of air
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Cold Medication
      -
    8. -
    9. -
      - Morry: more pump for your pump - Swiftech MCP35X
      -
    10. -
    11. -
      - Scott: Now with 100% more compelling. Alienware X51
      -
    12. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
- - - - - -]]>
-Thu, 13 Jun 2013 06:00:03 -0400 - -pc-perspective-podcast-255-061313 -Ryan Shrout -Join us this week as we discuss AMD's 5 GHz Processor, 1080p Oculus Rift, and more news from Computex! -Join us this week as we discuss AMD's 5 GHz Processor, 1080p Oculus Rift, and more news from Computex! -no -57:27 -
- - -PC Perspective Podcast 254 - 06/06/13 -PC Perspective Podcast #254 - 06/06/2013

-

Join us this week as we discuss the NVIDIA GTX 770, Haswell and Z87 Reviews, AMD Richland APUs and ton of Computex news!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano and Morry Teitelman

- -

Program length: 1:41:16

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    21. - -
    22. -
    23. - -
    24. -
    25. - -
    26. -
    27. - -
    28. -
    -
  4. -
  5. - -
      -
    1. -
      - Jeremy: Something I have to test for work
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
  13. -
    - Closing/outro
    -
  14. -
- -

- - -]]>
-Thu, 06 Jun 2013 06:00:03 -0400 - -pc-perspective-podcast-254-060613 -Ryan Shrout -Join us this week as we discuss the NVIDIA GTX 770, Haswell and Z87 Reviews, AMD Richland APUs and ton of Computex news! -Join us this week as we discuss the NVIDIA GTX 770, Haswell and Z87 Reviews, AMD Richland APUs and ton of Computex news! -no -101:16 -
- - - -PC Perspective Podcast 253 - 05/30/13 -PC Perspective Podcast #253 - 05/30/2013

-

Join us this week as we discuss the NVIDIA GTX 780, OCZ Vertex 450, Western Digital Se Hard Drives and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, and Morry Teitelman

- -

Program length: 1:04:43

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. - -
  4. -
  5. -
    - News items of interest:
    -
      -
    1. - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  6. -
  7. - -
      -
    1. -
      - Ryan: Ball Bearing fans / EVGA ACX Cooler
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Sony HX300 (20MP, 50x optical zoom (24mm-1200mm))
      -
    8. -
    -
  8. -
  9. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
- -

- -]]>
-Thu, 30 May 2013 06:00:03 -0400 - -pc-perspective-podcast-253-053013 -Ryan Shrout -Join us this week as we discuss the NVIDIA GTX 780, OCZ Vertex 450, Western Digital Se Hard Drives and more! -Join us this week as we discuss the NVIDIA GTX 780, OCZ Vertex 450, Western Digital Se Hard Drives and more! -no -64:43 -
- - -PC Perspective Podcast 252 - 05/23/13 -PC Perspective Podcast #252 - 05/23/2013

-

Join us this week as we discuss Z87 Motherboards, Xbox One, Lenovo Y500 Gaming notebook and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, and Morry Teitelman

- -

Program length: 1:17:01

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  2. -
  3. - -
  4. -
  5. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    10. -
    -
  6. -
  7. -
    - 1:04:30 Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
- -

-

 

- -]]>
-Thu, 23 May 2013 06:00:03 -0400 - -pc-perspective-podcast-252-052313 -Ryan Shrout -Join us this week as we discuss Z87 Motherboards, Xbox One, Lenovo Y500 Gaming notebook and more! -Join us this week as we discuss Z87 Motherboards, Xbox One, Lenovo Y500 Gaming notebook and more! -no -77:01 -
- - - -PC Perspective Podcast 251 - 05/16/13 -PC Perspective Podcast #251 - 05/16/2013

-

Join us this week as we discuss the iBuyPower Revolt, Seagate SSHD, NVIDIA Shield Pricing, and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano, and Morry Teitelman

- -

Program length: 1:12:25

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  2. -
  3. - -
  4. -
  5. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      - 0:35:00 Power supplies and Haswell
      -
        -
      1. - -
      2. -
      3. - -
      4. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. -
      - 0:47:00 Curved Lian-Li case - Love it or hate it?
      -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  6. -
  7. -
    - 1:01:00 Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Ryan: Are you still there...?
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
- -

- -]]>
-Thu, 16 May 2013 06:00:03 -0400 - -pc-perspective-podcast-251-051613 -Ryan Shrout -Join us this week as we discuss the iBuyPower Revolt, Seagate SSHD, NVIDIA Shield Pricing, and more! -Join us this week as we discuss the iBuyPower Revolt, Seagate SSHD, NVIDIA Shield Pricing, and more! -no -72:25 -
- - -PC Perspective Podcast 250 - 05/09/13 -PC Perspective Podcast #250 - 05/09/2013

-

Join us this week as we discuss Haswell Iris Graphics, Intel Silvermont, AMD HD 9000 Series Rumors and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Morry Teitelman

-

Program length: 1:19:46

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. - -
  4. -
  5. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  6. -
  7. - -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  8. -
  9. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
- -

- - -]]>
-Thu, 09 May 2013 06:00:03 -0400 - -pc-perspective-podcast-250-050913 -Ryan Shrout -Join us this week as we discuss Haswell Iris Graphics, Intel Silvermont, AMD HD 9000 Series Rumors and more! -Join us this week as we discuss Haswell Iris Graphics, Intel Silvermont, AMD HD 9000 Series Rumors and more! -no -89:46 -
- - -PC Perspective Podcast 249 - 05/02/13 -PC Perspective Podcast #249 - 05/02/2013

-

Join us this week as we discuss the Corsair 350D, Frame Rating in 4K, the Oculus Rift and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Josh Walrath, Allyn Malventano, Scott Michaud and Morry Teitelman

-

Program length: 1:04:02

-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. - -
  4. -
  5. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  6. -
  7. - -
      -
    1. -
      - Ryan: Windows Movie Maker lets you record webcam videos!
      -
    2. -
    3. -
      - Jeremy: anti-pick - hotels that don't offer a RJ45 jack in the rooms!
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Ventev USB charging stuff (home / auto)
      -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    -
  8. -
  9. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
- -

- -]]>
-Thu, 02 May 2013 06:00:03 -0400 - -pc-perspective-podcast-249-050213 -Ryan Shrout -Join us this week as we discuss the Corsair 350D, Frame Rating in 4K, the Oculus Rift and more! -Join us this week as we discuss the Corsair 350D, Frame Rating in 4K, the Oculus Rift and more! -no -64:02 -
- - -PC Perspective Podcast 248 - 04/25/13 -PC Perspective Podcast #248 - 04/25/2013

-

Join us this week as we discuss AMD HD 7990, CrossFire Frame Rating improvements, 4K TVs and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-

Program length: 1:16:34

-
    -
  1. -
    - 0:01:20 Update on Indiegogo: You guys rock!
    -
  2. -
  3. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  4. -
  5. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
        -
      1. - -
      2. -
      -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    -
  6. -
  7. - -
      -
    1. -
      - Ryan: Seiki 4K TV - more support from enthusiasts! and wet puppies
      -
    2. -
    3. -
      - Jeremy: This is not news people, NFC is a feature but if you are paranoid you can check with this app
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Put your bits on an ioSafe. Put your 'papers' here.
      -
    8. -
    9. -
      - Tim: BT Sync, it's in public alpha now so go grab it!
      -
    10. -
    -
  8. -
  9. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  10. -
  11. - -
  12. -
  13. - -
  14. -
  15. -
    - Closing/outro
    -
  16. -
- - -]]>
-Thu, 25 Apr 2013 06:00:03 -0400 - -pc-perspective-podcast-248-042513 -Ryan Shrout -Join us this week as we discuss AMD HD 7990, CrossFire Frame Rating improvements, 4K TVs and more! -Join us this week as we discuss AMD HD 7990, CrossFire Frame Rating improvements, 4K TVs and more! -no -76:34 -
- - -PC Perspective Podcast 247 - 04/18/13 -PC Perspective Podcast #247 - 04/18/2013

-

Join us this week as we discuss Frame Rating and Vsync, the future of GLOBALFOUNDRIES, the OCZ Vertex 3.20 and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:07:41

-
    -
  1. - -
  2. -
  3. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  4. -
  5. - -
  6. -
  7. - -
  8. -
  9. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. -
      - 0:58:00 Gigabyte BRIX small form factor PC--NUC and Zotac Nano competitor
      -
    6. -
    -
  10. -
  11. - -
      -
    1. - -
    2. -
    3. -
      - Jeremy: support Full Control not just because they're nordic
      -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: (portable headsets that don't suck)
      -
    8. -
    -
  12. -
  13. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    - Closing/outro
    -
  20. -
- -

- - -]]>
-Thu, 18 Apr 2013 06:00:03 -0400 - -pc-perspective-podcast-247-041813 -Ryan Shrout -Join us this week as we discuss Frame Rating and Vsync, the future of GLOBALFOUNDRIES, the OCZ Vertex 3.20 and more! -Join us this week as we discuss Frame Rating and Vsync, the future of GLOBALFOUNDRIES, the OCZ Vertex 3.20 and more! -no -67:41 -
- - -PC Perspective Podcast 246 - 04/11/13 -PC Perspective Podcast #246- 04/11/2013

-

Join us this week as we discuss the ASUS P8Z77-I Deluxe Mini-ITX motherboard, more Frame Rating, DirectX 12 and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:01:46

-
    -
  1. -
    - Winner last week? Mike McLaughlin!! Congrats!
    -
  2. -
  3. - -
  4. -
  5. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    - 0:24:00 NerdyTec COUCHMASTER
    -
  8. -
  9. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    -
  10. -
  11. -
    - 0:47:00 Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: Ultra Brush dust remover
      -
    8. -
    -
  12. -
  13. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  14. -
  15. - -
  16. -
  17. - -
  18. -
  19. -
    - Closing/outro
    -
  20. -
- -

- -]]>
-Thu, 11 Apr 2013 06:00:03 -0400 - -pc-perspective-podcast-246-041113 -Ryan Shrout -Join us this week as we discuss the ASUS P8Z77-I Deluxe Mini-ITX motherboard, more Frame Rating, DirectX 12 and more! -Join us this week as we discuss the ASUS P8Z77-I Deluxe Mini-ITX motherboard, more Frame Rating, DirectX 12 and more! -no -61:46 -
- - -PC Perspective Podcast 245 - 04/04/13 -PC Perspective Podcast #245 - 04/04/2013

-

Join us this week as we discuss more Frame Rating, Ivy Bridge-E, Oculus Rift and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:18:58

-
    -
  1. - -
  2. -
  3. - -
  4. -
  5. -
    - Week in Review:
    -
      -
    1. - -
        -
      1. - -
      2. -
      -
    2. -
    3. - -
    4. -
    -
  6. -
  7. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    -
  8. -
  9. -
    - 1:05:45 Hardware/Software Picks of the Week:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. -
      - Allyn: iBackupBot
      -
    8. -
    -
  10. -
  11. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    - Closing/outro
    -
  18. -
- -
-  
- - - -]]>
-Thu, 04 Apr 2013 06:00:03 -0400 - -pc-perspective-podcast-245-040413 -Ryan Shrout -Join us this week as we discuss more Frame Rating, Ivy Bridge-E, Oculus Rift and more! -Join us this week as we discuss more Frame Rating, Ivy Bridge-E, Oculus Rift and more! -no -88:58 -
- - -PC Perspective Podcast 244 - 03/28/13 -PC Perspective Podcast #244 - 03/28/2013

-

Join us this week as we discuss the launch of Frame Rating, HD 7790 vs. GTX 560Ti BOOST, and news from GDC

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:19:22

-
- Podcast topics of discussion:
-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  2. -
  3. - -
  4. -
  5. - -
  6. -
  7. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    -
  8. -
  9. -
    - 1:12:00 Hardware/Software Picks of the Week:
    -
      -
    1. -
      - Ryan: MGSV? VisionDVI-DL
      -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    -
  10. -
  11. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  12. -
  13. - -
  14. -
  15. - -
  16. -
  17. -
    - Closing/outro
    -
  18. -
- - - -]]>
-Thu, 28 Mar 2013 06:00:03 -0400 - -pc-perspective-podcast-244-032813 -Ryan Shrout -Join us this week as we discuss the launch of Frame Rating, HD 7790 vs. GTX 560Ti BOOST, and news from GDC -Join us this week as we discuss the launch of Frame Rating, HD 7790 vs. GTX 560Ti BOOST, and news from GDC -no -89:22 -
- - -PC Perspective Podcast 243 - 03/21/13 -PC Perspective Podcast #243 - 03/21/2013

-

Join us this week as we discuss the ASUS Crosshair V Formula-Z, MSI Z77A-G45 Thunderbolt, 2TB SSDs and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:18:24

-
- Podcast topics of discussion:
-
    -
  1. -
    - Week in Review:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    -
  2. -
-
    -
  1. - -
  2. -
  3. -
    - News items of interest:
    -
      -
    1. - -
    2. -
    3. - -
    4. -
    5. - -
    6. -
    7. - -
    8. -
    9. - -
    10. -
    11. - -
    12. -
    13. - -
    14. -
    15. - -
    16. -
    17. - -
    18. -
    19. - -
    20. -
    -
  4. -
  5. -
    - Closing:
    -
      -
    1. -
      - 1:09:50 Hardware / Software Pick of the Week
      -
        -
      1. - -
      2. -
      3. - -
      4. -
      5. -
        - Allyn: 3TB HDD's are getting cheap (~$140)
        -
      6. -
      7. -
        - Morry: Memory, always more memory - G.Skill Sniper 1866 16GB DDR3
        -
      8. -
      -
    2. -
    -
  6. -
  7. -
    - 1-888-38-PCPER or podcast@pcper.com
    -
  8. -
  9. - -
  10. -
  11. - -
  12. -
- -

- - -]]>
-Thu, 21 Mar 2013 06:00:03 -0400 - -pc-perspective-podcast-243-032113 -Ryan Shrout -Join us this week as we discuss the ASUS Crosshair V Formula-Z, MSI Z77A-G45 Thunderbolt, 2TB SSDs and more! -Join us this week as we discuss the ASUS Crosshair V Formula-Z, MSI Z77A-G45 Thunderbolt, 2TB SSDs and more! -no -88:24 -
- - -PC Perspective Podcast 242 - 03/14/13 -PC Perspective Podcast #242 - 03/14/2013

-

Join us this week as we discuss AMD's new Richland APUs, Steam Box Prototypes, Seagate Hybrid Drives and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 0:59:45

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:30 Silverstone Strider Power supply
    2. -
    3. - 0:03:00 Richland Unveiled: AMD releases new A10-5750M
    4. -
    -
  2. -
  3. - 0:14:33 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:15:35 Steam Box Prototypes in the next few months
    2. -
    3. - 0:24:00 NVIDIA allegedly part Quadro 6000 GK110 card
    4. -
    5. - 0:25:30 Seagate SSHD Lineup
    6. -
    7. - 0:30:00 WebM now official with Google and support from MPEG LA
    8. -
    9. - 0:33:40 GF Actually Shipping 28 nm Product!
    10. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:42:40 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Tranquil PC Intel NUC case
      2. -
      3. - Josh: Cheap and Pretty!
      4. -
      5. - Allyn: Automatic
      6. -
      7. - Morry: Edimax 150mbps wireless nano USB adapter
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Thu, 14 Mar 2013 06:00:03 -0400 - -pc-perspective-podcast-242-031413 -Ryan Shrout -Join us this week as we discuss AMD's new Richland APUs, Steam Box Prototypes, Seagate Hybrid Drives and more! -Join us this week as we discuss AMD's new Richland APUs, Steam Box Prototypes, Seagate Hybrid Drives and more! -no -59:45 -
- - -PC Perspective Podcast 241 - 03/07/13 -PC Perspective Podcast #241 - 03/07/2013

-

Join us this week as we discuss the Sony VAIO TAP 20, ioSafe N2 NAS, new Z77 motherboards and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:04:57

-

Podcast topics of discussion:

-
    -
  1. - 0:01:25 We did a Tomb Raider stream
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:04:00 Seasonic Platinum Series 460 watt fanless PSU
    2. -
    3. - 0:07:10 Sony VAIO Tap 20 Touchscreen AIO
    4. -
    5. - 0:13:20 ioSafe N2 Performance, Disaster-proof NAS
    6. -
    -
  4. -
  5. - 0:22:2 00 This Podcast is brought to you by MSI!
  6. -
  7. - News items of interest: -
      -
    1. - 0:24:25 ASUS PadFone Infinity from MWC
    2. -
    3. - 0:27:10 Apacer Launches New PATA SSDs
    4. -
    5. - 0:32:00 Seagate will cease 7200 RPM mobile HDDs this year
    6. -
    7. - 0:34:50 Thermaltake launches Urban S21 case
    8. -
    9. - 0:38:55 Double your HDD density with HGST
    10. -
    11. - 0:43:00 MSI has new gaming series of MB coming out, based on Z77
    12. -
    13. - 0:49:30 NVIDIA refreshes Quadro with Kepler GPUs
    14. -
    -
  8. -
  9. - Closing: -
      -
    1. - 0:53:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: AMD Mini-PC with A8-4555M
      2. -
      3. - Jeremy: When EyeFinity won't work this might save you
      4. -
      5. - Josh: Good board for cheeeap
      6. -
      7. - Allyn: Chrome beta shows which tabs are playing audio
      8. -
      9. - Morry: XPXS RX360 & old but still kicking
      10. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

-]]>
-Thu, 07 Mar 2013 06:00:03 -0400 - -pc-perspective-podcast-241-030713 -Ryan Shrout -Join us this week as we discuss GTX TITAN Benchmarks, Frame Rating, Tegra 4 Details and more! -Join us this week as we discuss GTX TITAN Benchmarks, Frame Rating, Tegra 4 Details and more! -no -64:57 -
- - -PC Perspective Podcast 240 - 02/28/13 -PC Perspective Podcast #240 - 02/28/2013

-

Join us this week as we discuss GTX TITAN Benchmarks, Frame Rating, Tegra 4 Details and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:24:28

-

Podcast topics of discussion:

-
    -
  1. - 0:01:18 PCPer Podcast BINGO!
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:03:00 GeForce GTX TITAN Performance Review
    2. -
    3. - 0:21:55 Frame Rating Part 3: First Results from the New GPU Performance Tools
    4. -
    5. - 0:38:00 Corsair Hydro Series H90 and H110 140mm Liquid Cooler Review
    6. -
    -
  4. -
  5. - 0:40:30 This Podcast is brought to you by MSI!
  6. -
  7. - News items of interest: -
      -
    1. - 0:41:45 New Offices coming for NVIDIA
    2. -
    3. - 0:45:00 Chromebook Pixel brings high-res to high-price
    4. -
    5. - 0:48:00 GPU graphics market updates from JPR
    6. -
    7. - 0:55:45 Tegra 4 graphics details from Mobile World Congress
    8. -
    9. - 1:01:00 Unreal Engine 4 on PS4 has reduced quality
    10. -
    11. - 1:04:10 Micron SAS SSDs
    12. -
    13. - 1:08:25 AMD FirePro R5000 PCoIP Card
    14. -
    -
  8. -
  9. - Closing: -
      -
    1. - 1:13:35 Hardware / Software Pick of the Week -
        -
      1. - Ryan: NOT this 3 port HDMI switch
      2. -
      3. - Jeremy: Taxidermy + PICAXE, why didn't we think of this before?
      4. -
      5. - Josh: Still among my favorite headphones
      6. -
      7. - Allyn: Cyto
      8. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

-]]>
-Thu, 28 Feb 2013 06:00:03 -0400 - -pc-perspective-podcast-240-022813 -Ryan Shrout -Join us this week as we discuss GTX TITAN Benchmarks, Frame Rating, Tegra 4 Details and more! -Join us this week as we discuss GTX TITAN Benchmarks, Frame Rating, Tegra 4 Details and more! -no -84:28 -
- - -PC Perspective Podcast 239 - 02/21/13 -PC Perspective Podcast #239 - 02/21/2013

-

Join us this week as we discuss NVIDIA GTX TITAN, PlayStation 4 Hardware, SSD Endurance and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 0:59:53

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:20 Crysis 3 Live Game Stream - Win Free Stuff!!
    2. -
    3. - 0:03:20 Gigabyte GA-F2A85X-UP4 FM2 Motherboard Review: Overkill for Trinity?
    4. -
    5. - 0:09:25 NVIDIA GeForce GTX TITAN Preview - GK110, GPU Boost 2.0, Overclocking and GPGPU
    6. -
    7. - 0:24:15 Taking an Accurate Look at SSD Write Endurance
    8. -
    -
  2. -
  3. - 0:27:20 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:28:50 AMD wants to set the record straight on its future GPU strategy
    2. -
    3. - 0:36:05 A Crowd Funded Mini-ITX Case, the NCASE M1
    4. -
    5. - 0:38:30 Sony's Fourth Playstation (PS4) Specs Revealed -
        -
      1. - Next Generation Consoles Likely Not Compatible
      2. -
      -
    6. -
    7. - 0:45:15 NVIDIA Releases Tegra 4i: Mini-Me!
    8. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:49:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Excel 2013.. or not.
      2. -
      3. - Jeremy: WobbleWorks $75 Pen-Sized 3D Printer on Kickstarter
      4. -
      5. - Josh: Sweet lookin Monitor... not without quirks
      6. -
      7. - Allyn: Gunnar
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

- -]]>
-Thu, 21 Feb 2013 06:00:03 -0400 - -pc-perspective-podcast-239-022113 -Ryan Shrout -Join us this week as we discuss NVIDIA GTX TITAN, PlayStation 4 Hardware, SSD Endurance and more! -Join us this week as we discuss NVIDIA GTX TITAN, PlayStation 4 Hardware, SSD Endurance and more! -no -59:53 -
- - -PC Perspective Podcast 238 - 02/14/13 -PC Perspective Podcast #238 - 02/14/2013

-

Join us this week as we discuss the Thinkpad Tablet 2, Raspberry Pi, Nonvolatile DIMMS and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:13:52

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:00 Crysis 3 Live Game Stream - Win Free Stuff!!
    2. -
    3. - 0:04:10 Lenovo ThinkPad Tablet 2 Preview
    4. -
    5. - 0:09:15 Rosewill Tachyon Series 1000 watt power supply
    6. -
    7. - 0:12:00 Gigabyte GA-F2A85X-UP4 Preview
    8. -
    -
  2. -
  3. - 0:16:18 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:17:50 Reports of no new AMD cards for 2013
    2. -
    3. - 0:26:40 Windows is feeling "blue"
    4. -
    5. - 0:32:15 Nonvolatile DIMMs
    6. -
    7. - 0:38:08 Raspberry Pie 5MP camera module
    8. -
    9. - 0:43:55 NVIDIA bundles credits for free to play games
    10. -
    11. - 0:49:30 Corsair Acquires Simple Audio
    12. -
    13. - 0:53:00 Intel confirms upcoming set top box
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:56:45 Hardware / Software Pick of the Week -
        -
      1. - Ryan: A Raspberry Pi device
      2. -
      3. - Jeremy: ping -p 32 -s 1110 x.x.x.x
      4. -
      5. - Josh: System Shock 2 on GOG.com
      6. -
      7. - Allyn: ioSafe N2
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- - - -]]>
-Thu, 14 Feb 2013 06:00:03 -0400 - -pc-perspective-podcast-238-021413 -Ryan Shrout -Join us this week as we discuss the Thinkpad Tablet 2, Raspberry Pi, Nonvolatile DIMMS and more! -Join us this week as we discuss the Thinkpad Tablet 2, Raspberry Pi, Nonvolatile DIMMS and more! -no -73:52 -
- - -PC Perspective Podcast 237 - 02/07/13 -PC Perspective Podcast #237 - 02/07/2013

-

Join us this week as we discuss two 750W Power Supply Reviews, the new 3DMark, AMD's Newest Game Bundles and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:10:21

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:10 EVGA SuperNOVA NEX750G Gold Power Supply
    2. -
    3. - 0:03:30 Seasonic Gold Series X-750 Power Supply
    4. -
    5. - 0:07:00 ADATA XPG SX900 128GB SSD Review
    6. -
    7. - 0:16:00 New 3DMark Benchmark and Futuremark Interview -
        -
      1. - MSI 3DMark Challenge with Prizes!
      2. -
      -
    8. -
    -
  2. -
  3. - 0:28:20 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:29:45 Win Free Stuff from Seasonic!
    2. -
    3. - 0:31:30 Newegg saves the shopping cart
    4. -
    5. - 0:35:10 Never Settle Reloaded Bundle from AMD is pretty awesome
    6. -
    7. - 0:39:55 Lenovo has record breaking results
    8. -
    9. - 0:42:25 Fanless Mintbox PC
    10. -
    11. - 0:43:45 Dell is going private with help from Microsoft
    12. -
    13. - 0:48:00 Hard Drive Industry may see declines
    14. -
    15. - 0:56:00 Far Cry 3 with your SSD?
    16. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:01:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Cisco Small Business 5-port Gigabit Router
      2. -
      3. - Jeremy: This thing has been frustratingly fun
      4. -
      5. - Josh: Improved drivers and Bundle!
      6. -
      7. - Allyn: Plasti-Dip (spray)
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

 

-

-

 

- -]]>
-Thu, 07 Feb 2013 06:00:03 -0400 - -pc-perspective-podcast-237-020713 -Ryan Shrout -Join us this week as we discuss two 750W Power Supply Reviews, the new 3DMark, AMD's Newest Game Bundles and more! -Join us this week as we discuss two 750W Power Supply Reviews, the new 3DMark, AMD's Newest Game Bundles and more! -no -70:21 -
- - -PC Perspective Podcast 236 - 01/31/13 -PC Perspective Podcast #236 - 01/31/2013

-

Join us this week as we discuss new Intel mSATA SSDs, NVIDIA Project Shield, Crysis 3, and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:15:43

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:03:00 Seasonic 660 watt Platinum PSU
    2. -
    3. - 0:06:00 Thermaltake Armor Revo Gene Case Review
    4. -
    5. - 0:08:15 Gigabyte Z77X-UP7 Motherboard
    6. -
    7. - 0:16:45 Intel SSD 525 Series Full Capacity Roundup - Intel Sweeps mSATA
    8. -
    -
  2. -
  3. - 0:26:55 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:28:30 I can Haswell Overclock?
    2. -
    3. - 0:31:10 NVIDIA to start making white-label tablets and phones
    4. -
    5. - 0:39:30 Crysis 3 MP Beta On-going - Live Stream
    6. -
    7. - 0:42:45 RIM is going through changes...
    8. -
    9. - 0:48:20 NVIDIA Project SHIELD Development Detail
    10. -
    11. - 0:55:15 Details of AMD and Apple Finances
    12. -
    13. - 1:00:00 Question from Antonio in Wisconsin -
        -
      1. - I have a different kind of question for you. I have an HIS HD6850 that has been damaged. Six surface mounted capacitors and three resistors have been knocked off the back side of the board and were lost forever. With little to lose I removed one cap, measured the voltage, took a dead geforce 7600 and salvaged caps of approximately the same value to put Humpty back together again. To my astonishment the card works... kinda. It cooperates until I install the driver then becomes very unstable and struggles to go any further than the windows loading screen.
      2. -
      3. - I don't know the capacitance of the original components and cannot find any schematics online for any card ever created. I do not need the card but this has become a bit of a challenge. Any ideas or thoughts on how I might be victorious and declare dominance over this wreckage?
      4. -
      -
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:04:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Zotac Nano XS AD13
      2. -
      3. - Jeremy: Why wouldn't you want stereo Tesla coil speakers?
      4. -
      5. - Josh: Finally for Android! Sorta...
      6. -
      7. - Allyn: Weller BP860MP Battery-Powered Soldering Iron
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

- - -]]>
-Thu, 31 Jan 2013 06:00:03 -0400 - -pc-perspective-podcast-236-013113 -Ryan Shrout -Join us this week as we discuss new Intel mSATA SSDs, NVIDIA Project Shield, Crysis 3, and more! -Join us this week as we discuss new Intel mSATA SSDs, NVIDIA Project Shield, Crysis 3, and more! -no -75:43 -
- - -PC Perspective Podcast 235 - 01/24/13 -PC Perspective Podcast #235 - 01/24/2013

-

Join us this week as we discuss potential AMD Hardware in the PS4, a GK110 NVIDIA product, Corsair 200R case and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:16:39

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:25 Corsair Hydro Series H80i Taken Apart
    2. -
    3. - 0:03:45 Video: Corsair Carbide 200R Overview
    4. -
    5. - 0:10:30 Silverstone Zeus 1350 watt power supply
    6. -
    -
  2. -
  3. - 0:13:35 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:15:15 Corsair Launches 140mm and 280mm coolers
    2. -
    3. - 0:17:50 Catalyst 13.1 drivers released
    4. -
    5. - 0:19:30 SimCity Beta Weekend
    6. -
    7. - 0:25:00 NVIDIA GK110 Titan Rumored for February
    8. -
    9. - 0:30:50 Intel to exit motherboard business after Haswell
    10. -
    11. - 0:38:00 But ASUS says its okay...
    12. -
    13. - 0:41:30 PS4 Hardware discussion
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - Hardware / Software Pick of the Week -
        -
      1. - Ryan: Pegasus R4 with Thunderbolt
      2. -
      3. - Jeremy: Not since the Sumosac has there been something more sure to get you the ladies!
      4. -
      5. - Josh: Just built a machine with one of these
      6. -
      7. - Allyn: Zip Snip ($20 at Lowes)
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Thu, 24 Jan 2013 06:00:03 -0400 - -pc-perspective-podcast-235-012413 -Ryan Shrout -Join us this week as we discuss potential AMD Hardware in the PS4, a GK110 NVIDIA product, Corsair 200R case and more! -Join us this week as we discuss potential AMD Hardware in the PS4, a GK110 NVIDIA product, Corsair 200R case and more! -no -76:39 -
- - -PC Perspective Podcast 234 - 01/17/13 -PC Perspective Podcast #234 - 01/17/2013

-

Join us this week as we wrap up CES 2013 talk, discuss new Corsair liquid coolers, Frame Rating and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 0:59:05

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:10 CES Wrap up and Summary
    2. -
    3. - 0:08:45 Corsair Hydro Series Coolers - H60, H80i, H100i
    4. -
    5. - 0:11:00 Frame Rating Part 2 - Finding and Defining Stutter
    6. -
    -
  2. -
  3. - 0:15:20 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:18:10 AMD accuses NVIDIA employees of stealing 100k documents
    2. -
    3. - 0:24:10 ST Ericsson shows off FD-SOI Product (and Josh explains)
    4. -
    5. - 0:32:00 CES: Prototype Intel TV system seen at Imagination suite
    6. -
    7. - 0:33:20 Caustic shows ray tracing cards at CES
    8. -
    9. - 0:35:45 Intel Haswell graphics compared to GeForce GT 650M
    10. -
    11. - 0:37:50 ASUS tablet with VIA SoC for $149
    12. -
    13. - 0:41:30 The Windows RT Jailbreak
    14. -
    15. - 0:43:00 Bioshock Infinite to be a PC gaming beast
    16. -
    -
  6. -
  7. - Closing: -
      -
    1. - Hardware / Software Pick of the Week -
        -
      1. - Ryan: Logitech T650 Touchpad
      2. -
      3. - Jeremy: Eyefinity, good price on active Mini DisplayPort though dual link will still cost you
      4. -
      5. - Josh: Finally at their promised MSRP
      6. -
      7. - Allyn: Waze (road tested 2200 miles)
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Thu, 17 Jan 2013 06:00:03 -0400 - -pc-perspective-podcast-234-011713 -Ryan Shrout -Join us this week as we wrap up CES 2013 talk, discuss new Corsair liquid coolers, Frame Rating and more! -Join us this week as we wrap up CES 2013 talk, discuss new Corsair liquid coolers, Frame Rating and more! -no -59:05 -
- - -PC Perspective Podcast CES Day 4 - 01/09/13 -CES 2013 Podcast Day 4 - 01/09/2013

-

Ready for even more podcast fun at CES?  Join us as we talk about our final of the show including more details on AMD's upcoming APUs, 4K displays, WD Hybrid Drives and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

-

Program length: 53:31

-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

 

- -]]>
-Wed, 09 Jan 2013 06:00:03 -0400 - -pc-perspective-podcast-ces-2013-day4 -Ryan Shrout -Ready for even more podcast fun at CES? Join us as we talk about the second day of the show including more details on the NVIDIA Shield thing, AMD's press conference, Intel's plans for a new Ivy Bridge, ASUS systems and components and more! -Ready for even more podcast fun at CES? Join us as we talk about the second day of the show including more details on the NVIDIA Shield thing, AMD's press conference, Intel's plans for a new Ivy Bridge, ASUS systems and components and more! -no -53:31 -
- - -PC Perspective Podcast CES Day 2 - 01/07/13 -CES 2013 Podcast Day 2 - 01/07/2013

-

Ready for even more podcast fun at CES?  Join us as we talk about the second day of the show including more details on the NVIDIA Shield thing, AMD's press conference, Intel's plans for a new Ivy Bridge, ASUS systems and components and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

-

Program length: 59:32

-

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Mon, 07 Jan 2013 06:00:03 -0400 - -pc-perspective-podcast-ces-2013-day2 -Ryan Shrout -Ready for even more podcast fun at CES? Join us as we talk about the second day of the show including more details on the NVIDIA Shield thing, AMD's press conference, Intel's plans for a new Ivy Bridge, ASUS systems and components and more! -Ready for even more podcast fun at CES? Join us as we talk about the second day of the show including more details on the NVIDIA Shield thing, AMD's press conference, Intel's plans for a new Ivy Bridge, ASUS systems and components and more! -no -59:32 -
- - -PC Perspective Podcast CES Day 1 - 01/06/13 -CES 2013 Podcast Day 1 - 01/06/2013

-

It's time for podcast fun at CES!  Join us as we talk about the first day of the show including a lot of announcements from Lenovo, the NVIDIA Tegra 4 and Shield products and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Ken Addison

-

Program length: 45:50

-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

 

- -]]>
-Sun, 06 Jan 2013 06:00:03 -0400 - -pc-perspective-podcast-ces-2013-day1 -Ryan Shrout -It's time for podcast fun at CES! Join us as we talk about the first day of the show including a lot of announcements from Lenovo, the NVIDIA Tegra 4 and Shield products and more! -It's time for podcast fun at CES! Join us as we talk about the first day of the show including a lot of announcements from Lenovo, the NVIDIA Tegra 4 and Shield products and more! -no -45:50 -
- - -PC Perspective Podcast 233 - 01/03/13 -PC Perspective Podcast #233 - 01/03/2013

-

Join us this week as we talk about the ThinkPad Twist, Intel's rumored TV service, Frame Latency testing and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:12:43

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:03:35 Thermaltake Soprano VO9000 Case
    2. -
    3. - 0:05:40 Lenovo Thinkpad Twist Convertible Ultrabook
    4. -
    5. - 0:10:15 MSI Z77 MPower Motherboard
    6. -
    7. - 0:14:00 AMD FX-8350 Overclock with AMD LCS
    8. -
    -
  2. -
  3. - 0:22:12 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:23:45 Video: MSI Z77A-G45 Thunderbolt (and new player)
    2. -
    3. - 0:25:45 Fiber optic Thunderbolt cables ready
    4. -
    5. - 0:30:00 Intel planning at TV service in 2013
    6. -
    7. - 0:42:00 Frame Latency (link coming soon)
    8. -
    9. - 0:53:00 CES Predictions!
    10. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:03:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: MSI Z77A-G45 Thunderbolt
      2. -
      3. - Jeremy: Logitech 963290-0403 Extreme 3D Pro USB Joystick
      4. -
      5. - Josh: Who needs 16GB? Who cares!
      6. -
      7. - Allyn: Scosche GoBat II (5AH USB 2.1A battery)
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- - -]]>
-Thu, 03 Jan 2013 06:00:03 -0400 - -pc-perspective-podcast-233-010313 -Ryan Shrout -Join us this week as we talk about the ThinkPad Twist, Intel's rumored TV service, Frame Latency testing and more! -Join us this week as we talk about the ThinkPad Twist, Intel's rumored TV service, Frame Latency testing and more! -no -72:43 -
- - -PC Perspective Podcast 232 - 12/27/12 -PC Perspective Podcast #232 - 12/27/2012

-

Join us this week as we discuss our picks for Best Products of 2012!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Chris Barbere

-

This Podcast is brought to you by MSI!

-

Program length: 1:40:13

-

Podcast topics of discussion:

-
    -
  1. - Welcome to our Best Of 2012 Episode!
  2. -
  3. - Rules explanation: there are no rules!!
  4. -
  5. - 0:07:30 Best CPU -
      -
    1. - AMD Trinity A10 APU
    2. -
    3. - Intel Core i7-3770K
    4. -
    5. - Intel Ultrabook mobile CPU
    6. -
    7. - Qualcomm Krait Mobile CPU
    8. -
    -
  6. -
  7. - 0:20:00 Best Motherboard -
      -
    1. - MSI Z77 MPower
    2. -
    3. - ASUS Rampage IV Extreme
    4. -
    5. - ASUS Z77 Mini ITX
    6. -
    7. - EVGA dual Xeon board
    8. -
    9. - Asus Crosshair Formula Z
    10. -
    -
  8. -
  9. - 0:31:20 Best GPU -
      -
    1. - GeForce GTX 680 2GB
    2. -
    3. - GeForce GTX 660 Ti 2GB
    4. -
    5. - Radeon HD 7970 3GB
    6. -
    7. - Radeon HD 7870 2GB
    8. -
    -
  10. -
  11. - 0:44:00 This Podcast is brought to you by MSI!
  12. -
  13. -  0:45:00 Best Storage -
      -
    1. - Samsung 840 Pro SSD
    2. -
    3. - OCZ Vector SSD
    4. -
    5. - WD Red HDD
    6. -
    7. - WD 4TB Enterprise
    8. -
    -
  14. -
  15. - 1:05:00 Best Case -
      -
    1. - Corsair Carbide 300R
    2. -
    3. - Corsair Obsidian 550D
    4. -
    5. - Cooler Master Cosmos II
    6. -
    7. - Mineral Oil Case
    8. -
    -
  16. -
  17. - 1:12:00 Best Price Drop -
      -
    1. - SSDs
    2. -
    3. - AMD Radeon 7000 GPUs
    4. -
    5. - Good IPS displays ($199 - $400)
    6. -
    7. - 2560x1440 27-in panels
    8. -
    9. - System Memory
    10. -
    -
  18. -
  19. - 1:22:00 Best Newly Popular Technology -
      -
    1. - Thunderbolt
    2. -
    3. - High-res monitors (Korean or otherwise)
    4. -
    5. - Cherry style keyboards
    6. -
    7. - Mini ITX Motherboards
    8. -
    9. - Touch screen?
    10. -
    -
  20. -
  21. - 1:35:00 Best Lenovo Laptop on my Desk -
      -
    1. - Thinkpad Twist
    2. -
    3. - Thinkpad X1 Carbon
    4. -
    5. - Thinkpad X230
    6. -
    7. - Yoga 13
    8. -
    -
  22. -
  23. - 1-888-38-PCPER or podcast@pcper.com
  24. -
  25. - http://pcper.com/podcast
  26. -
  27. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  28. -
  29. - Closing/outro
  30. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- - -]]>
-Thu, 27 Dec 2012 06:00:03 -0400 - -pc-perspective-podcast-232-122712 -Ryan Shrout -Join us this week as we discuss our picks for Best Products of 2012! -Join us this week as we discuss our picks for Best Products of 2012! -no -100:13 -
- - -PC Perspective Podcast 231 - 12/20/12 -PC Perspective Podcast #231 - 12/20/2012

-

Join us this week as we talk about the Intel NUC, AMD 8000M GPUs, Building a Hackintosh and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Allyn Malventano and Chris Barbere

-

This Podcast is brought to you by MSI!

-

Program length: 1:13:41

-

Podcast topics of discussion:

-
    -
  1. - 0:01:50 We are going to try Planetside 2 after the podcast!
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:02:50 Intel Next Unit of Computing NUC
    2. -
    3. - 0:17:55 Corsair AX860i Digital ATX Power Supply
    4. -
    5. - 0:19:00 HP Z1 Workstation All in One
    6. -
    7. - 0:25:00 Building a Hackintosh Computer - A Guide
    8. -
    -
  4. -
  5. - 0:32:35 This Podcast is brought to you by MSI!
  6. -
  7. - News items of interest: -
      -
    1. - 0:33:30 Cutting the Cord Complete!
    2. -
    3. - 0:36:10 VIA ARM-based SoCs in upcoming ASUS tablet
    4. -
    5. - 0:42:00 Lucid MVP 2.0 will be sold direct
    6. -
    7. - 0:44:50 Samsung acquires NVELO SSD Caching Software
    8. -
    9. - 0:49:00 AMD announces mobility 8000M series of GPUs
    10. -
    11. - 0:54:15 Some NVIDIA Tegra 4 Details
    12. -
    13. - 0:58:55 NEC Unveils Super Thin Ultrabook
    14. -
    15. - 1:00:30 Win a Sapphire HD 7870 GHz Edition FleX!!
    16. -
    -
  8. -
  9. - Closing: -
      -
    1. - 1:02:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Panasonic GH2 Micro 4/3 Camera
      2. -
      3. - Josh: Preparation is key!
      4. -
      5. - Allyn: Cheap RAM
      6. -
      7. - Chris: Had solar panels installed this week
      8. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- - -]]>
-Thu, 20 Dec 2012 06:00:03 -0400 - -pc-perspective-podcast-231-122012 -Ryan Shrout -Join us this week as we talk about the Intel NUC, AMD 8000M GPUs, Building a Hackintosh and more! -Join us this week as we talk about the Intel NUC, AMD 8000M GPUs, Building a Hackintosh and more! -no -73:41 -
- - -PC Perspective Podcast 230 - 12/13/12 -PC Perspective Podcast #230 - 12/13/2012

-

Join us this week as we talk about the EVGA Stinger Z77 Mini ITX board, Our Holiday Gift Guide, Steam Box and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano and Chris Barbere

-

This Podcast is brought to you by MSI!

-

Program length: 1:29:11

-

Podcast topics of discussion:

-
    -
  1. - We are going to try Planetside 2 after the podcast!
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:03:30 EVGA Stinger Z77 Mini-ITX Motherboard
    2. -
    3. - 0:06:45 Cutting the Cord Series -
        -
      1. - Part 3 - Windows 7 Install and Setup
      2. -
      3. - Part 4 - Media Center Configuration
      4. -
      -
    4. -
    5. - 0:09:00 Seasonic G Series 360 watt PSU
    6. -
    7. - 0:11:30 PC Perspective Holiday Gift Guide!
    8. -
    -
  4. -
  5. - 0:40:15 This Podcast is brought to you by MSI!
  6. -
  7. - News items of interest: -
      -
    1. - 0:41:30 Transporter Private Storage
    2. -
    3. - 0:47:00 Intel will support sockets into foreseeable future as well
    4. -
    5. - 0:51:00 Crysis 3 will have advanced PC options
    6. -
    7. - 0:53:30 Valve Confirms the Steam Box is coming
    8. -
    9. - 1:06:15 Low power Atom chips for servers
    10. -
    11. - 1:10:20 ASRock Board with pass through for Thunderbolt
    12. -
    13. - 1:13:00 Haswell 4000 series CPUs will be 84 watt
    14. -
    -
  8. -
  9. - Closing: -
      -
    1. - 1:16:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Lenovo X230 + Slice Battery
      2. -
      3. - Jeremy: ASUS VS229H-P Same in the US and Canada, though we get free shipping
      4. -
      5. - Josh: Intel 335 SSD for Cheap
      6. -
      7. - Allyn: iStarUSA BPU-126-SA
      8. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

 

- -]]>
-Thu, 13 Dec 2012 06:00:03 -0400 - -pc-perspective-podcast-230-121312 -Ryan Shrout -Join us this week as we talk about the ASUS RT-N56U Router, Radeon HD 8000 series rumors, Crysis 3 and more! -Join us this week as we talk about the ASUS RT-N56U Router, Radeon HD 8000 series rumors, Crysis 3 and more! -no -89:10 -
- - -PC Perspective Podcast 229 - 12/06/12 -PC Perspective Podcast #229 - 12/06/2012

-

Join us this week as we talk about the ASUS RT-N56U Router, Radeon HD 8000 series rumors, Crysis 3 and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano and Chris Barbere

-

This Podcast is brought to you by MSI!

-

Program length: 1:34:42

-

Podcast topics of discussion:

-
    -
  1. - 0:01:15 Never Settle Contest Part 3 is running!
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:03:10 ASUS RT-N56U Router Review
    2. -
    3. - 0:08:45 Tt eSPORTS Level 10 M Mouse Video
    4. -
    5. - 0:11:45 Cutting the Cord Series -
        -
      1. - Part 1 - The Assessment
      2. -
      3. - Part 2 - The Hardware
      4. -
      -
    6. -
    7. - 0:27:15 ASUS Matrix Radeon HD 7970 Platinum
    8. -
    -
  4. -
  5. - 0:38:06 This podcast is brought to you by MSI
  6. -
  7. - News items of interest: -
      -
    1. - 0:39:22 Microsoft Surface Pro Priced/Dated/Batteried
    2. -
    3. - 0:42:50 Rosewill announces a 1600 watt power supply
    4. -
    5. - 0:45:23 Crysis 3 System Requirements
    6. -
    7. - 0:47:30 Steam releases Big Picture mode
    8. -
    9. - 0:53:30 Radeon HD 8990 Rumored for 2013
    10. -
    11. - 0:58:15 Intel might make chips for...ARM?
    12. -
    13. - 1:03:30 AMD will continued to support socketed processors
    14. -
    15. - 1:07:30 Enterprise might need to buy SSDs 10000x less often?
    16. -
    17. - 1:17:30 Far Cry 3 Game Stream Summary
    18. -
    -
  8. -
  9. - Closing: -
      -
    1. - 1:18:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: 7 year old PC steering wheels
      2. -
      3. - Jeremy:(Not) Fancy ass new networked printers
      4. -
      5. - Josh: Asetek Rules!
      6. -
      7. - Allyn: Google 2-factor authentication
      8. -
      9. - Chris: HTC 8X
      10. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

- - -]]>
-Thu, 06 Dec 2012 06:00:03 -0400 - -pc-perspective-podcast-229-120612 -Ryan Shrout -Join us this week as we talk about the ASUS RT-N56U Router, Radeon HD 8000 series rumors, Crysis 3 and more! -Join us this week as we talk about the ASUS RT-N56U Router, Radeon HD 8000 series rumors, Crysis 3 and more! -no -94:42 -
- - -PC Perspective Podcast 228 - 11/29/12 -PC Perspective Podcast #228 - 11/29/2012

-

Join us this week as we talk about Intel Socket Controversy, a new OCZ SSD, GPU-less Ivy Bridge and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:07:04

-

Podcast topics of discussion:

-
    -
  1. - 0:01:20 Never Settle Contest Part 2 is running!
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:03:00 Nintendo Wii U Teardown
    2. -
    3. - 0:06:00 Digital Storm Bolt Mini-ITX System
    4. -
    5. - 0:12:00 Dell XPS One 27 System All-in-One
    6. -
    7. - 0:18:10 Intel Core i5-3550P Ivy Bridge CPU
    8. -
    9. - 0:27:15 LEPA Gold Series 750 watt PSU
    10. -
    11. - 0:29:00 OCZ Vector 256GB Indilinx Barefoot 3 SSD
    12. -
    -
  4. -
  5. - 0:40:30 This Podcast is brought to you by MSI!
  6. -
  7. - News items of interest: -
      -
    1. - 0:41:30 Intel Broadwell goes BGA Only; Desktop is dead?
    2. -
    3. - 0:56:00 More AMD Layoffs coming?
    4. -
    5. - 0:58:45 Intel CEO is leaving too
    6. -
    7. - 1:00:00 Western Digital 4TB Black HDD
    8. -
    9. - 1:02:00 Fujifilm working on 1TB optical discs
    10. -
    11. - 1:06:00 Jon Peddie Q3 GPU Results
    12. -
    13. - 1:08:00 Microsoft sells 40 million Windows 8 licenses
    14. -
    15. - 1:09:45 Rumored 'Blue' Subscription based Windows OS
    16. -
    17. - 1:12:00 Intel Updates SSD Toolbox, 335 Firmware
    18. -
    -
  8. -
  9. - Closing: -
      -
    1. - 1:15:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: iFixit Pro Tech Tool Kit
      2. -
      3. - Jeremy: Leatherman Raptor
      4. -
      5. - Josh: Nice monitor!
      6. -
      7. - Allyn: OCZ Vector
      8. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

 

- -]]>
-Thu, 29 Nov 2012 06:00:03 -0400 - -pc-perspective-podcast-228-112912 -Ryan Shrout -Join us this week as we talk about Intel Socket Controversy, a new OCZ SSD, GPU-less Ivy Bridge and more! -Join us this week as we talk about Intel Socket Controversy, a new OCZ SSD, GPU-less Ivy Bridge and more! -no -82:57 -
- - -PC Perspective Podcast 227 - 11/15/12 -PC Perspective Podcast #226 - 11/08/2012

-

Join us this week as we talk about a Golden Z77 Motherboard from ECS, High Powered WiFi from Amped Wireless, Supercomputing GPUs and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:07:04

-

Podcast topics of discussion:

-
    -
  1. - Join us for the Hitman: Absolution Game Stream
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:02:00 ECS Z77H2-AX Golden Board Motherboard
    2. -
    3. - 0:07:00 Amped Wireless R20000G Router and Adapter
    4. -
    5. - 0:12:20 Intel says USB 3.0 and 2.4 GHz don't get along
    6. -
    -
  4. -
  5. - 0:18:00 This Podcast is brought to you by MSI!
  6. -
  7. - News items of interest: -
      -
    1. - 0:19:00 A renaissance of game types that have been sadly missing
    2. -
    3. - 0:24:00 You missed our live Medal of Honor Game Stream - loser!
    4. -
    5. - 0:26:12 NVIDIA launches Tesla K20X Card, Powers Titan Supercomputer
    6. -
    7. - 0:30:15 AMD Launches Dual Tahiti FirePro S10000
    8. -
    9. - 0:38:00 Some guy leaves Microsoft - is the Start Menu on its way back??
    10. -
    11. - 0:41:40 AMD is apparently not for sale
    12. -
    13. - 0:46:05 ECS joins the Thunderbolt family with a new Z77 motherboard
    14. -
    -
  8. -
  9. - Closing: -
      -
    1. - 0:54:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Corsair Hydro Series H60 for $75
      2. -
      3. - Jeremy: Form over function or vice versa?
      4. -
      5. - Josh: A foundation worth donating to
      6. -
      7. - Allyn: ArmorSuit Military Shields
      8. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

-

 

-

 

- -]]>
-Thu, 15 Nov 2012 06:00:03 -0400 - -pc-perspective-podcast-227-111512 -Ryan Shrout -Join us this week as we talk about a Golden Z77 Motherboard from ECS, High Powered WiFi from Amped Wireless, Supercomputing GPUs and more! -Join us this week as we talk about a Golden Z77 Motherboard from ECS, High Powered WiFi from Amped Wireless, Supercomputing GPUs and more! -no -67:05 -
- - -PC Perspective Podcast 226 - 11/08/12 -PC Perspective Podcast #226 - 11/08/2012

-

Join us this week as we talk about a Dual GTX 690 System from Origin, Intel's new SATA6 controller, Piledriver-based Opeterons and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and  Allyn Malventano

-

This Podcast is brought to you by MSI!

-

Program length: 1:21:17

-

Podcast topics of discussion:

-
    -
  1. - Join us for the MoH Game Stream!
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:04:30 Corsair Vengeance C70 Case
    2. -
    3. - 0:07:30 ASUS P8Z77 WS Motherboard
    4. -
    5. - 0:12:20 ORIGIN Genesis Dual GTX 690 System
    6. -
    7. - 0:16:40 Silverstone 450 watt SFX Power Supply
    8. -
    -
  4. -
  5. - 0:19:30 This podcast is brought to you by MSI
  6. -
  7. - News items of interest: -
      -
    1. - 0:20:25 Intel Crystal Forest Communications Platform
    2. -
    3. - 0:23:30 Google Nexus 10 tablet
    4. -
    5. - 0:27:00 Corsair Hydro H100i and H80i coolers
    6. -
    7. - 0:34:00 New Corsair AXi series power supplies
    8. -
    9. - 0:36:30 Intel DC S3700 Enterprise SSD
    10. -
    11. - 0:46:30 AMD Launches Piledriver based Opteron 6300 chips
    12. -
    13. - 0:51:10 Get Assassin's Creed III for Samsung SSD
    14. -
    15. - 0:52:45 Limited Linux Steam Beta starts
    16. -
    17. - 0:56:15 Zotac AD06 with new AMD APU
    18. -
    19. - 0:58:30 Mouse.. DRM!?
    20. -
    -
  8. -
  9. - Closing: -
      -
    1. - Hardware / Software Pick of the Week -
        -
      1. - Ryan: Corsair Vengence MM200 and MM400 Mouse Mats
      2. -
      3. - Jeremy: Movember and Is this thing on or did it crash? or NewEgg
      4. -
      5. - Josh: Everyone needs a mouse
      6. -
      7. - Allyn: Shure SE315-CL and CBL-M+-K
      8. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Thu, 08 Nov 2012 06:00:03 -0400 - -pc-perspective-podcast-226-110812 -Ryan Shrout -Join us this week as we talk about a Dual GTX 690 System from Origin, Intel's new SATA6 controller, Piledriver-based Opeterons and more! -Join us this week as we talk about a Dual GTX 690 System from Origin, Intel's new SATA6 controller, Piledriver-based Opeterons and more! -no -81:17 -
- - -PC Perspective Podcast 225 - 11/01/12 -PC Perspective Podcast #225 - 11/01/2012

-

Join us this week as we talk about Intel's New Low Priced 240GB SSD, Lenovo IdeaPad Yoga 13 Convertible Ultrabook, AMD ARM processors, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts:Ryan Shrout, Jeremy Hellstrom, Allyn Malventano, and Chris Barbere

-

This Podcast is brought to you by MSI!

-

Program length: 1:10:09

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:40 The Windows You Love is Gone
    2. -
    3. - 0:07:30 Intel SSD 335 Series 240GB Full Review - Intel's first 20nm SSD
    4. -
    5. - 0:15:30 MSI Z77A-GD80 with Thunderbolt Motherboard Review
    6. -
    7. - 0:20:20 Video Perspective: Lenovo IdeaPad Yoga 13 Windows 8 Ultrabook Preview
    8. -
    -
  2. -
  3. - 0:29:22 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:30:35 Corsair Announces new products -
        -
      1. - Corsair Announces Vengeance MM200 and MM400 gaming mouse mats
      2. -
      3. - Corsair Announces Updated Hydro Series H60 and New Hydro Series H55
      4. -
      -
    2. -
    3. - 0:36:10 ASUS Launches Line of VivoBook Laptops Running Windows 8 -
        -
      1. - Asus Zenbook Refresh Introduces Several New Ultrabooks
      2. -
      -
    4. -
    5. - 0:42:05 How to Build a PC with Windows 8 - PC Perspective Live!
    6. -
    7. - 0:43:50 Microsoft Giving Away Free Media Center Keys For Windows 8
    8. -
    9. - 0:46:30 ASRock Launches Extreme6/TB4 Motherboard With Two Thunderbolt Ports
    10. -
    11. - 0:47:30 AMD Announces It Will Build 64-bit ARM Processors for Server Markets
    12. -
    13. - 0:53:15 Intel Wants To See 48-Core Processors In Future Smartphones
    14. -
    15. - 0:56:30 NZXT Unleashes the Kraken -- World's first all-in-one 140mm & 280mm liquid-cooler
    16. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:00:20 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Symphony on Steam - Free Keys to Give Away!!
      2. -
      3. - Jeremy: Grab media centre, even if you don't plan on getting Win 8 yet
      4. -
      5. - Allyn: Start8 - for you Windows 8 users
      6. -
      7. - Chris: MechWarrior Online
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

Be sure to subscribe to the PC Perspective YouTube channel!!

- -]]>
-Thu, 01 Nov 2012 06:00:03 -0400 - -pc-perspective-podcast-225-110112 -Ryan Shrout -Join us this week as we talk about Intel's New Low Priced 240GB SSD, Lenovo IdeaPad Yoga 13 Convertible Ultrabook, AMD ARM processors, and more! -Join us this week as we talk about Intel's New Low Priced 240GB SSD, Lenovo IdeaPad Yoga 13 Convertible Ultrabook, AMD ARM processors, and more! -no -70:10 -
- - -PC Perspective Podcast 224 - 10/25/12 -PC Perspective Podcast #224 - 10/25/2012

-

Join us this week as we talk about the ASUS N66U Router, AMD FX 8350 and 6300 CPU, our Windows RT hands on, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, Allyn Malventano, and Linus Sebastian

-

This Podcast is brought to you by MSI!

-

Program length: 1:30:18

-

Podcast topics of discussion:

-
    -
  1. - 0:00:50 Welcome our Guest: Linus Sebastian of Linus Tech Tips!
  2. -
  3. - Week in Reviews: -
      -
    1. - 0:07:50 ASUS RT-N66U Router and Adapters Roundup
    2. -
    3. - 0:13:15 AMD Never Settle 12.11 Driver Update -
        -
      1. - The Never Settle Bundle is awesome too
      2. -
      -
    4. -
    5. - 0:25:50 AMD FX-8350 and FX-6300 Vishera CPU Review
    6. -
    -
  4. -
  5. - 0:36:20 This podcast is brought to you by MSI
  6. -
  7. - News items of interest: -
      -
    1. - 0:37:15 A quick look at the data on Apple's Fusion Drive
    2. -
    3. - 0:46:30 AMD work force cut coming?
    4. -
    5. - 0:52:10 ASUS VivoTab RT Released -
        -
      1. - Hands on time!
      2. -
      -
    6. -
    7. - 1:07:45 ASUS TAICHI as well - can this really become popular
    8. -
    9. - 1:08:45 Corsair Carbide 200R Launches -
        -
      1. - LinusTech Video on it
      2. -
      -
    10. -
    -
  8. -
  9. - Closing: -
      -
    1. - 1:06:15 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Lantronix xPrintServer
      2. -
      3. - Jeremy: Counter-electronics High-powered Microwave Advanced Missile Project
      4. -
      5. - Josh: Nice motherboard, now with new CPUS!
      6. -
      7. - Allyn: Media Player Classic - Home Cinema
      8. -
      9. - Linus: Fractal Design Define R4
      10. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- -]]>
-Thu, 25 Oct 2012 06:00:03 -0400 - -pc-perspective-podcast-224-102512 -Ryan Shrout -Join us this week as we talk about the ASUS N66U Router, AMD FX 8350 and 6300 CPU, our Windows RT hands on, and more! -Join us this week as we talk about the ASUS N66U Router, AMD FX 8350 and 6300 CPU, our Windows RT hands on, and more! -no -90:18 -
- - -PC Perspective Podcast 223 - 10/18/12 -PC Perspective Podcast #223 - 10/18/2012

-

Join us this week as we talk about the AVADirect Mini ITX Gaming Machine, Patriot Gauntlet 320GB Wireless Drive, Windows 8 Pricing and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, and Scott Michaud

-

This Podcast is brought to you by MSI!

-

Program length: 56:12

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:45 Why stereoscopic 3D is Awesome
    2. -
    3. - 0:09:15 Patriot Gauntlet 320 Wireless HDD
    4. -
    5. - 0:14:56 AVADirect Mini Gaming PC
    6. -
    -
  2. -
  3. - 0:24:30 This podcast is brought to you by MSI
  4. -
  5. - News items of interest: -
      -
    1. - 0:25:30 AMD finances are bad, mkay? -
        -
      1. - Slashing 30% of work force?
      2. -
      -
    2. -
    3. - 0:31:10 Windows 8 Retail pricing -
        -
      1. - $69 with $30 Amazon Credit
      2. -
      -
    4. -
    5. - 0:35:55 ASUS announces PadFone 2
    6. -
    -
  6. -
  7. - 0:39:30 Alxtech.net/pcper Ad spot!! http://alxtech.net/pcper/ -
      -
    1. -
        -
      1. - Now at $0.50/slot for pcper viewers and listeners!!
      2. -
      -
    2. -
    3. - 0:42:00 Intel may have 10-core Ivy Bridge-E ready
    4. -
    5. - 0:43:45 Corsair raising money for charity with gaming marathon!
    6. -
    7. - 0:45:50 Win a FREE AMD APU on our YouTube channel!
    8. -
    -
  8. -
  9. - Closing: -
      -
    1. - 0:48:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Gauntlet Node - just the enclosure
      2. -
      3. - Jeremy: Ridiculous and added infections too
      4. -
      5. - Josh: NOPE
      6. -
      7. - Allyn: NOPE
      8. -
      9. - Scott: 12 GB of RAM :D
      10. -
      -
    2. -
    -
  10. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

 

-

- - -]]>
-Thu, 18 Oct 2012 06:00:03 -0400 - -pc-perspective-podcast-223-101812 -Ryan Shrout -Join us this week as we talk about the AVADirect Mini ITX Gaming Machine, Patriot Gauntlet 320GB Wireless Drive, Windows 8 Pricing and more! -Join us this week as we talk about the AVADirect Mini ITX Gaming Machine, Patriot Gauntlet 320GB Wireless Drive, Windows 8 Pricing and more! -no -56:12 -
- - -PC Perspective Podcast 222 - 10/11/12 -PC Perspective Podcast #222 - 10/11/2012

-

Join us this week as we talk about the NVIDIA GTX 650 Ti, Western Digital RE 4TB, Windows 8 Tablets, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:15:10

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:15 Corsair Dominator Platinum Contest!
    2. -
    3. - 0:03:30 ASUS P8Z77-V Deluxe Motherboard Review
    4. -
    5. - 0:04:45 Interface Design: Think like an Engineer
    6. -
    7. - 0:06:50 NVIDIA GeForce GTX 650 Ti 1GB Review
    8. -
    9. - 0:21:30 Seasonic X-Series 1250W Gold PSU Review
    10. -
    11. - 0:23:55 Western Digital RE RAID 4TB Review
    12. -
    -
  2. -
  3. - 0:29:45 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:30:33 AMURICA! JERBS! Lenovo Opening Line in US
    2. -
    3. - 0:31:15 Qualcomm Joins HSA Foundation
    4. -
    5. - 0:36:00 Acer Talks about Their Windows 8 Tablets -
        -
      1. - Acer Iconia W700
      2. -
      3. - Acer Iconia W510
      4. -
      -
    6. -
    7. - 0:41:40 7990 is a Thing? Well Now There's a Cheaper Thing of the Thing
    8. -
    9. - 0:44:20 AMD Z-Series APU for Tablets
    10. -
    11. - 0:48:15 Logitech Makes Their First Mechanical Keyboard
    12. -
    13. - 0:49:40 Thermaltake Level 10 GT Battle Edition Case
    14. -
    15. - 0:52:20 AMD Radeon Memory RAMDisk
    16. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:01:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Galaxy Nexus Extended Battery
      2. -
      3. - Jeremy: Play with some MRAM
      4. -
      5. - Josh: Video cards are cheap
      6. -
      7. - Allyn: 45 3.5" HDD's in a 4U rack - DIY (3TB = 135TB / 4TB = 180TB)
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- -]]>
-Thu, 11 Oct 2012 06:00:03 -0400 - -pc-perspective-podcast-222-101112 -Ryan Shrout -Join us this week as we talk about the NVIDIA GTX 650 Ti, Western Digital RE 4TB, Windows 8 Tablets, and more! -Join us this week as we talk about the NVIDIA GTX 650 Ti, Western Digital RE 4TB, Windows 8 Tablets, and more! -no -75:10 -
- - -PC Perspective Podcast 221 - 10/04/12 -PC Perspective Podcast #221 - 10/04/2012

-

Join us this week as we talk about Intel Clover Trail, AMD's Trinity Desktop APUs, the Samsung 840 SSD with TLC, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:07:28

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:23 Intel Clover Trail Details
    2. -
    3. - 0:16:05 Why Scott still uses Windows -
        -
      1. - Mike Capps on Games for Windows Live
      2. -
      -
    4. -
    5. - 0:25:30 Borderlands 2 PhysX Testing
    6. -
    7. - 0:32:30 AMD Trinity A10-5800K APU Review
    8. -
    9. - 0:39:50 Samsung 840 Series 250GB SSD Full Review
    10. -
    -
  2. -
  3. - 0:49:00 This podcast is brought to you by alxTech
  4. -
  5. - News items of interest: -
      -
    1. - 0:52:00 4TB Western Digital Hard Drives
    2. -
    3. - 0:53:45 Apple A6 uses hand drawn ARM cores
    4. -
    5. - 0:57:00 Steam for Linux beta in October
    6. -
    7. - 0:58:45 AMD Vishera Info Leaks
    8. -
    9. - 1:00:20 ASUS Shows silent Trinity APU builds
    10. -
    11. - 1:01:30 Why you care that AMD can't keep up
    12. -
    13. - 1:04:45 Kickstart TINY PCs
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:06:20 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Corsair Dominator Platinum Memory
      2. -
      3. - Jeremy: More gaming
      4. -
      5. - Josh: A fun, new combo!
      6. -
      7. - Allyn: Samsung SSD 840 - TLC, baby!
      8. -
      9. - Scott: Corsair HX 850W Power Supply
      10. -
      11. - Tim: Black Mesa: Source!
      12. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- - -]]>
-Thu, 04 Oct 2012 06:00:03 -0400 - -pc-perspective-podcast-221-100412 -Ryan Shrout -Join us this week as we talk about Intel Clover Trail, AMD's Trinity Desktop APUs, the Samsung 840 SSD with TLC, and more! -Join us this week as we talk about Intel Clover Trail, AMD's Trinity Desktop APUs, the Samsung 840 SSD with TLC, and more! -no -81:21 -
- - -PC Perspective Podcast 220 - 09/27/12 -PC Perspective Podcast #220 - 09/27/2012

-

Join us this week as we talk about the Samsung 840 Pro SSD, a 1500W PSU from EVGA,  AMD GPU leaks, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:07:28

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:55 Samsung 840 Pro 512GB SSD
    2. -
    3. - 0:17:50 EVGA SuperNOVA 1500 watt PSU
    4. -
    -
  2. -
  3. - 0:23:20 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:24:05 Raspberry Pi to get a Turbo button?
    2. -
    3. - 0:26:30 Looking for a $1200 Muderbox?
    4. -
    5. - 0:29:05 GLOBALFOUNDRIES goes 3D with FinFET
    6. -
    7. - 0:41:10 AMD Sea Islands GPU leaks
    8. -
    9. - 0:46:00 Maingear launches an All-in-One with a GTX 680
    10. -
    11. - 0:50:50 Catalyst 12.9 Released
    12. -
    13. - 0:55:20 Long term storage?
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:57:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: AVADirect Mini-ITX
      2. -
      3. - Jeremy: and now I can't find the smegging disks
      4. -
      5. - Josh: A fun barebones- not perfect, but cheap!
      6. -
      7. - Allyn: Samsung 830 deals! (anywhere you can get 'em)
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- -]]>
-Thu, 27 Sep 2012 06:00:03 -0400 - -pc-perspective-podcast-220-092712 -Ryan Shrout -Join us this week as we talk about the Samsung 840 Pro SSD, a 1500W PSU from EVGA, AMD GPU leaks, and more! -Join us this week as we talk about the Samsung 840 Pro SSD, a 1500W PSU from EVGA, AMD GPU leaks, and more! -no -67:28 -
- - -PC Perspective Podcast 219 - 09/20/12 -PC Perspective Podcast #219 - 09/20/2012

-

Join us this week as we talk about the NVIDIA GTX 660 and 650, Luicid Dynamix technology, A85 Motherboards and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:13:13

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:03:00 NVIDIA GeForce GTX 660 2GB
    2. -
    3. - 0:16:30 Corsair HX850 Power Supply
    4. -
    5. - 0:17:23 Lenovo IdeaPad U410
    6. -
    -
  2. -
  3. - 0:18:18 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:19:10 NVIDIA GeForce GTX 650
    2. -
    3. - 0:22:20 Trinity APUs to be binned as CPU only?
    4. -
    5. - 0:24:50 Lucid Dynamix adjusts quality in real-time
    6. -
    7. - 0:32:30 ASUS Skills Challenge contest
    8. -
    9. - 0:34:40 Intel NUC PCs coming soon
    10. -
    11. - 0:37:15 You missed our Borderlands 2 event Tuesday!
    12. -
    13. - 0:38:10 OCZ CEO heads out the door
    14. -
    15. - 0:44:10 Gigabyte A85 motherboard spotted
    16. -
    17. - 0:47:30 AMD Sea Island 8800 series leaks
    18. -
    19. - 0:51:35 ASUS Tablet pricing leaks
    20. -
    21. - 0:54:15 Helium in upcoming hard drives
    22. -
    23. - 0:58:05 Intel WiDi 3.5 with Miracast Launched
    24. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:02:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Apple Ear Pods
      2. -
      3. - Jeremy: Scotch tape, what can't it do?
      4. -
      5. - Josh: Still so cheap. Watch for Specials!
      6. -
      7. - Allyn: RushMyPassport.com
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
-

 

-

-]]>
-Thu, 20 Sep 2012 06:00:03 -0400 - -pc-perspective-podcast-219-092012 -Ryan Shrout -Join us this week as we talk about the NVIDIA GTX 660 and 650, Luicid Dynamix technology, A85 Motherboards and more! -Join us this week as we talk about the NVIDIA GTX 660 and 650, Luicid Dynamix technology, A85 Motherboards and more! -no -73:13 -
- - -PC Perspective Podcast 218 - 09/13/12 -PC Perspective Podcast #218 - 09/13/2012

-

Join us this week as we talk about the Gigabyte Z77X-UD7, Apple A6 SoC, Thunderbolt GPU Tech from Lucid, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Josh Walrath, Jeremy Hellstrom, Allyn Malvantano and Scott Michaud

-

This Podcast is brought to you by MSI!

-

Program length: 1:01:33

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:50 Live Recap: Gigabyte Z77X-UP7 & Z77N-Wifi Preview
    2. -
    3. - 0:11:11 Lenovo ThinkPad X1 Carbon Review
    4. -
    5. - 0:16:20 Apple A6 SOC: Cortex A15 Hits the Market
    6. -
    7. - 0:21:30 IDF 2012: Intel Haswell Architecture Revealed -
        -
      1. - Intel Haswell CPUs as low as 10W TDP
      2. -
      -
    8. -
    -
  2. -
  3. - 0:28:05 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:28:45 IDF 2012: Lucid External GPUs?
    2. -
    3. - 0:32:05 IDF 2012: Intel Dives in to Oil!
    4. -
    5. - 0:35:45 IDF 2012: Western Digital Hybrid Hard Drives - 5mm 500GB
    6. -
    7. - 0:38:00 AMD Steamroller -- Shrunk Die Without a Die Shrink?
    8. -
    9. - 0:39:50 Firefox OS Interface: Sept 6, 2012.
    10. -
    11. - 0:42:30 CiiNow Sounds Like Wii... also AMD Investment.
    12. -
    13. - 0:47:15 Valve Big Picture Mode for Steam
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:50:36 Hardware / Software Pick of the Week -
        -
      1. - Jeremy: SLI\CrossFire PSU for dirt cheap, NewEgg not quite so good
      2. -
      3. - Josh: Not terrible. Hopefully it actually works for the S3
      4. -
      5. - Allyn: WD MyBook VelociRaptor Duo
      6. -
      7. - Scott: Back to school? For the love of God, laser printers.
      8. -
      -
    2. -
    -
  8. -
-
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- -]]>
-Thu, 13 Sep 2012 06:00:03 -0400 - -pc-perspective-podcast-218-091312 -Ryan Shrout -Join us this week as we talk about the Gigabyte Z77X-UD7, Apple A6 SoC, Thunderbolt GPU Tech from Lucid, and more! -Join us this week as we talk about the Gigabyte Z77X-UD7, Apple A6 SoC, Thunderbolt GPU Tech from Lucid, and more! -no -61:33 -
- - -PC Perspective Podcast 217 - 09/06/12 -PC Perspective Podcast #217 - 09/06/2012

-

Join us this week as we talk about the Corsair AX1200i Power Supply, Video Games as Art, Wireless Charging and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom, Allyn Malvantano and Scott Michaud

-

This Podcast is brought to you by MSI!

-

Program length: 1:24:36

-

Program Schedule:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:55 Corsair AX1200i Power Supply review
    2. -
    3. - 0:09:00 Lucid Virtu MVP for mobile
    4. -
    5. - 0:19:25 Corsair K60 and K90 Keyboard review
    6. -
    7. - 0:28:50 Video Games Do Not Want to be Art?
    8. -
    -
  2. -
  3. - 0:38:20 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:39:20 Wireless charging is close!
    2. -
    3. - 0:44:13 Western Digital 2TB Thunderbolt MyBook
    4. -
    5. - 0:47:20 Arctic MC101 Trinity based HTPC
    6. -
    7. - 0:48:50 ASUS shows Vivo tablets at IFA
    8. -
    9. - 0:53:30 Ultrabook with 2560x1440 display from Samsung
    10. -
    11. - 0:56:10 Lower Power IVB coming soon
    12. -
    13. - 0:57:30 The ASUS Eee PC line is gone...
    14. -
    15. - 1:02:30 ASUS launches "Powered by ASUS" systems
    16. -
    -
  6. -
  7. - Closing: -
      -
    1. - 1:08:00 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Apple iPad HDMI adapter
      2. -
      3. - Jeremy: Almost as long to develop as Duke Nukem but way cheaper and so much better
      4. -
      5. - Josh: $155 for people with patience...
      6. -
      7. - Allyn: Storage Testbed! Z77, baby.
      8. -
      9. - Scott: Wacom Cintiq 22HD (video)
      10. -
      11. - Also -- Arctic Silver 5 -- does it expire?
      12. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- -]]>
-Thu, 06 Sep 2012 06:00:03 -0400 - -pc-perspective-podcast-217-090612 -Ryan Shrout -Join us this week as we talk about the Corsair AX1200i Power Supply, Video Games as Art, Wireless Charging and more! -Join us this week as we talk about the Corsair AX1200i Power Supply, Video Games as Art, Wireless Charging and more! -no -84:36 -
- - -PC Perspective Podcast 216 - 8/30/12 -PC Perspective Podcast #216 - 08/30/2012

-

Join us this week as we talk about our GTX 660Ti Roundup, AMD Steamroller Details, Multi GPU Graphics Card Rumors and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Josh Walrath, Jeremy Hellstrom and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:01:56

-

Program Schedule:

-
    -
  1. - Introduction
  2. -
  3. - PCPer moving to pcper.com/live
  4. -
  5. - 1-888-38-PCPER or podcast@pcper.com
  6. -
  7. - http://pcper.com/podcast
  8. -
  9. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  10. -
-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:15 GeForce GTX 660 Ti Roundup
    2. -
    3. - 0:16:00 AMD Steamroller details from HotChips
    4. -
    5. - 0:27:30 ASUS Zenbook Prime UX31A Review
    6. -
    -
  2. -
  3. - 0:29:45 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:30:25 EVGA 1500 watt power supply
    2. -
    3. - 0:34:30 Powercolor HD 7990 Devil 13 graphics card
    4. -
    5. - 0:37:26 AMD releases FX-4130 and lowers prices
    6. -
    7. - 0:39:24 Synology refreshes DiskStation
    8. -
    9. - 0:40:50 ASUS MARS III GTX 680 - dreamers only
    10. -
    11. - 0:43:17 EVGA Mini ITX Z77 motherboard
    12. -
    13. - 0:45:15 NVIDIA shows Unreal Engine 3 on Tegra 3
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:51:11 Hardware / Software Pick of the Week -
        -
      1. - Ryan: OCZ RevoDrive 3 x2
      2. -
      3. - Jeremy: Something to vie for your upgrade budget
      4. -
      5. - Josh: Can never have enough space
      6. -
      7. - Allyn: Kingston HyperX Genesis 32GB DDR3 1600
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- - -]]>
-Thu, 30 Aug 2012 06:00:03 -0400 - -pc-perspective-podcast-216-083012 -Ryan Shrout -Join us this week as we talk about our GTX 660Ti Roundup, AMD Steamroller Details, Multi GPU Graphics Card Rumors and more! -Join us this week as we talk about our GTX 660Ti Roundup, AMD Steamroller Details, Multi GPU Graphics Card Rumors and more! -no -61:56 -
- - -PC Perspective Podcast 215 - 8/23/12 -PC Perspective Podcast #215 - 08/23/2012

-

Join us this week as we talk about NVIDIA's GTX 660 Ti, MSI ZPower Z77 Motherboard, AMD GPU Price cuts and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout Josh Walrath, Allyn Malvantano and Steve Grever

-

This Podcast is brought to you by MSI!

-

Program length: 0:55:31

-

Program Schedule:

-
    -
  1. - Introduction
  2. -
  3. - PCPer moving to pcper.com/live
  4. -
  5. - 1-888-38-PCPER or podcast@pcper.com
  6. -
  7. - http://pcper.com/podcast
  8. -
  9. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  10. -
-
-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 00:01:45 NVIDIA GeForce GTX 660 Ti Review -
        -
      1. - Live Review Recap with Tom Petersen
      2. -
      -
    2. -
    3. - 0:15:00 Cooler Master HAF XM Case
    4. -
    5. - 0:16:00 Building a PC with Legacy Hardware
    6. -
    -
  2. -
  3. - 0:19:35 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:20:40 Hey, about OnLive...
    2. -
    3. - 0:22:10 Synaptics Touchpads and keyboards
    4. -
    5. - 0:25:30 Live Review Recap: MSI Z77 MPower
    6. -
    7. - 0:30:07 AMD Price cuts on GPUs yet again
    8. -
    9. - 0:34:00 Windows 8 upgrade pricing for OEM machines, $14.99
    10. -
    11. - 0:36:27 Catalyst 12.8
    12. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:41:40 Hardware / Software Pick of the Week -
        -
      1. - Ryan: New Video Card!!
      2. -
      3. - Jeremy: What about $45, would you upgrade then?
      4. -
      5. - Josh: A Mumford and Sons box set
      6. -
      7. - Allyn: Give Windows 8 a shot
      8. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Closing/outro
  8. -
- - - -]]>
-Thu, 23 Aug 2012 06:00:03 -0400 - -pc-perspective-podcast-215-082312 -Ryan Shrout -Join us this week as we talk about NVIDIA's GTX 660 Ti, MSI ZPower Z77 Motherboard, AMD GPU Price cuts and more! -Join us this week as we talk about NVIDIA's GTX 660 Ti, MSI ZPower Z77 Motherboard, AMD GPU Price cuts and more! -no -53:31 -
- - -PC Perspective Podcast 214 - 8/16/12 -PC Perspective Podcast #214 - 08/16/2012

-

Join us this week as we talk about 2 GTX 670 Cards, AMD's HD 7950 with Boost, Microsoft Surface rumors and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout Josh Walrath, Allyn Malvantano and Steve Grever

-

This Podcast is brought to you by MSI!

-

Program length: 1:06:12

-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:01:45 AMD Radeon HD 7950 3GB Boost Review
    2. -
    3. - 0:15:30 MSI GeForce GTX 670 Power Edition
    4. -
    5. - 0:24:55 Galaxy GeForce GTX 670 GC 4GB
    6. -
    7. - 0:28:10 Samsung Series 5-550 Chromebook Review
    8. -
    -
  2. -
  3. - 0:29:34 This Podcast is brought to you by MSI!
  4. -
  5. - News items of interest: -
      -
    1. - 0:32:30 MS Surface to be $200?? -
        -
      1. - Lenovo Thinkpad/Ideapad Windows 8 Pro and RT tablets
      2. -
      -
    2. -
    3. - 0:37:30 Corsair Acquires Raptor Gaming
    4. -
    5. - 0:39:30 NVIDIA Fiscal reports
    6. -
    7. - 0:44:00 Random videos: -
        -
      1. - UT2004 LAN Party
      2. -
      3. - Crytek 3 Tech Demo
      4. -
      -
    8. -
    9. - 0:47:50 GTX 660 Ti shows up for sale at CompUSA
    10. -
    11. - 0:49:00 Samsung Exynos 5 Dual Core SoC. ARM Cortex A15 CPU and ARM Mali T604 GPU
    12. -
    13. - 0:51:20 Intel RST Windows 8 compatibility
    14. -
    -
  6. -
  7. - Closing: -
      -
    1. - 0:53:20 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Diamond VStream Wirless USB to HDMI
      2. -
      3. - Jeremy: Wireless power for the price of a penny
      4. -
      5. - Josh: 512 GB SSD for cheeeeeap. Or sorta cheap.
      6. -
      7. - Allyn: iPazzPort 2.4GHz Mini Wireless Fly Air Mouse Keyboard with IR Remote
      8. -
      9. - Tim: Skydrive UI rehaul
      10. -
      11. - Scott: FEDEX tracking info sucks...
      12. -
      -
    2. -
    -
  8. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper and http://twitter.com/joshdwalrath
  6. -
  7. - Quakecon coverage at pcper.com/workshop. Hope to see you there!
  8. -
  9. - Closing/outro
  10. -
-

Video Coming Soon!

- - -]]>
-Thu, 16 Aug 2012 06:00:03 -0400 - -pc-perspective-podcast-214-081612 -Ryan Shrout -Join us this week as we talk about 2 GTX 670 Cards, AMD's HD 7950 with Boost, Microsoft Surface rumors and more! -Join us this week as we talk about 2 GTX 670 Cards, AMD's HD 7950 with Boost, Microsoft Surface rumors and more! -no -66:12 -
- - -PC Perspective Podcast 213 - 8/09/12 -PC Perspective Podcast #213 - 08/09/2012

-

Join us this week as we talk about Windows 8 RTM, A75 Motherboards, GTX 660Ti rumors and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout Josh Walrath, Allyn Malvantano and Steve Grever

-

This Podcast is brought to you by MSI!

-

Program length: 1:00:35

-

Program Schedule:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:02:19 PCPer Hardware Workshop Overview
    2. -
    3. - 0:07:00 Quakecon Coverage: -
        -
      1. - http://pcper.com/reviews/Shows-and-Expos/Quakecon-2012-Day-3-Coverage (has links to all 3 days) - Steve Grever
      2. -
      -
    4. -
    5. -

      0:08:30 What MB is good for all those free APUs we gave out?

      -
        -
      1. -

        MSI A75A-G55 FM1 AMD A75

        -
      2. -
      3. -

        Asus F1A75-V

        -
      4. -
      -
    6. -
    7. -

      0:12:30 Windows 8 goes RTM

      -
        -
      1. -

        Also, Windows 8 has new box art and changed name of Metro to Windows 8-style UI

        -
      2. -
      -
    8. -
    -
  2. -
-
    -
  1. - 0:18:08 This Podcast is brought to you by MSI!
  2. -
-
    -
  1. - News items of interest: -
      -
    1. - 0:19:13 AMD FirePro APU is Launched
    2. -
    3. - 0:23:25 Seagate acquires LaCie
    4. -
    5. - 0:25:20 GTX 660 Ti Prices?
    6. -
    7. - 0:27:24 Steam Selling non-game Software starting Sep. 5th - Windows Store competition
    8. -
    9. - 0:31:00 Ivy Bridge-E will come after Haswell
    10. -
    11. - 0:34:00 Plextor M5 Pro SSD - Marvell finally has some speed
    12. -
    13. - 0:35:30 EVGA GTX 460 2Win WAS $169
    14. -
    15. - 0:39:05 ARMAII with DayZ as retail title
    16. -
    17. - 0:41:00 Curiosity landed successfully on Mars (landed with a friggin' rocket powered skycrane!) -
        -
      1. - Sent back photos of Mars over 5mbps link, once it deploys main antenna should have 60mbps iirc so we should start getting HD footage
      2. -
      3. - Even though NASA's images/videos are public domain, a news site got their video taken off of Youtube lol. Youtube Content ID sucks (as we are always finding out) :P
      4. -
      5. - rover weights 1,982 lb and has a full chemical analysis lab and tons of other sensor to do some real science. Running a 200mhz processorPPC though 0.0
      6. -
      -
    18. -
    -
  2. -
-
    -
  1. - Closing: -
      -
    1. - 0:44:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: UT2004
      2. -
      3. - Jeremy: Oh the decisions … SAMSUNG 830 @ $230 or Corsair Force Series GT @ $175
      4. -
      5. - Josh: My first cellphone in 8 years.
      6. -
      7. - Allyn: Google 2-factor authentication / Authenticator app for mobile
      8. -
      -
    2. -
    -
  2. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper and http://twitter.com/joshdwalrath
  6. -
  7. - Closing/Outro
  8. -
- -]]>
-Thu, 09 Aug 2012 06:00:03 -0400 - -pc-perspective-podcast-213-080912 -Ryan Shrout -Join us this week as we talk about Windows 8 RTM, A75 Motherboards, GTX 660Ti rumors and more! -Join us this week as we talk about Windows 8 RTM, A75 Motherboards, GTX 660Ti rumors and more! -no -60:35 -
- - -PC Perspective Podcast 212 - 8/04/12 -PC Perspective Podcast #212 - 08/04/2012

-

In this special live edition of the PC Perspective Podcast, we discuss QuakeCon 2012 and other news of the week!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout Josh Walrath, Allyn Malvantano and Steve Grever

-

This Podcast is brought to you by MSI!

-

Program length: 49:04

-

Program Schedule:

-

In this special live edition of the PC Perspective Podcast, we discuss QuakeCon 2012 and other news of the week!

-

 

- -]]>
-Sat, 04 Aug 2012 06:00:03 -0400 - -pc-perspective-podcast-212-080412 -Ryan Shrout -In this special live edition of the PC Perspective Podcast, we discuss QuakeCon 2012 and other news of the week! -JIn this special live edition of the PC Perspective Podcast, we discuss QuakeCon 2012 and other news of the week! -no -49:04 -
- - -PC Perspective Podcast 211 - 7/26/12 -PC Perspective Podcast #211 - 07/26/2012

-

Join us this week as we talk about the MSI HD 7870 HAWK,  Building a Gaming PC from 1999, a Llano SFF System Build and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 0:53:21

-

Program Schedule:

-
    -
  1. - Introduction
  2. -
  3. - PCPer moving to pcper.com/live
  4. -
  5. - 1-888-38-PCPER or podcast@pcper.com
  6. -
  7. - http://pcper.com/podcast
  8. -
  9. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  10. -
  11. - Quakecon - Hardware Workshop @ pcper.com/workshop (August 4th, 2012, 2pm CT)
  12. -
  13. - Join me this weekend at Fry's!! -
      -
    1. - Fry's Electronics, 1077 East Arques Ave., Sunnyvale, CA 94085
    2. -
    -
  14. -
-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:05:10 MSI R7870 HAWK Review
    2. -
    3. - 0:13:00 Gaming like it's 1999
    4. -
    5. - 0:18:10 Enermax Platimax 1000w PSU Review
    6. -
    7. - 0:18:50 AMD Llano System Build Article
    8. -
    -
  2. -
-
    -
  1. - 0:21:20 This Podcast is brought to you by MSI!
  2. -
-
    -
  1. - News items of interest: -
      -
    1. - 0:22:15 ECS Pre-announced AMD AMP Memory profiles
    2. -
    3. - 0:25:10 New passive CPU cooler can handle 100w
    4. -
    5. - 0:27:15 ARM, TSMC to Produce 64-bit Processors With 3D Transistors
    6. -
    7. - 0:30:20 Falcon Ridge to double Thunderbolt performance
    8. -
    9. - 0:31:40 Drobo Thunderbolt prices
    10. -
    11. - 0:35:10 Radeon HD 7990 delayed again probably
    12. -
    13. - 0:36:35 New Dawn Demo from NVIDIA
    14. -
    15. - 0:40:00 Check out this cool DX11 demo video
    16. -
    17. - 0:44:15 Intel and AMD financials
    18. -
    -
  2. -
-
    -
  1. - Closing: -
      -
    1. -

      0:45:20 Hardware / Software Pick of the Week

      -
        -
      1. - Ryan: Zoom Handy Recorder H4n
      2. -
      3. - Jeremy: Hand knit beer coozy
      4. -
      5. - Josh: GET A DAMN SSD ALREADY
      6. -
      7. - Allyn: Samsung Cloud Gaming Beta (almost)
      8. -
      -
    2. -
    -
  2. -
-
    -
  1. - 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - http://pcper.com/podcast
  4. -
  5. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - Quakecon coverage at pcper.com/workshop. Hope to see you there!
  8. -
  9. - Closing/outro
  10. -
-

 

- - -]]>
-Thu, 26 Jul 2012 06:00:03 -0400 - -pc-perspective-podcast-211-072612 -Ryan Shrout -Join us this week as we talk about the MSI HD 7870 HAWK, Building a Gaming PC from 1999, a Llano SFF System Build and more! -Join us this week as we talk about the MSI HD 7870 HAWK, Building a Gaming PC from 1999, a Llano SFF System Build and more! -no -53:21 -
- - -PC Perspective Podcast 210 - 7/19/12 -PC Perspective Podcast #210 - 07/19/2012

-

Join us this week as we talk about Cheap 1440P Monitors, 11" Gaming Notebooks, Windows 8, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:02:09

-

Program Schedule:

-
    -
  1. - 0:00:30 Introduction
  2. -
  3. - 0:01:30 PC Per moving to pcper.com/live
  4. -
  5. - 1-888-38-PCPER or podcast@pcper.com
  6. -
  7. - http://pcper.com/podcast
  8. -
  9. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  10. -
  11. - 0:03:10 Quakecon - Hardware Workshop @ pcper.com/workshop (August 4th, 2012 time TBD)
  12. -
  13. - 0:04:50 Join me next weekend at Fry's!! -
      -
    1. - Fry's Electronics, 1077 East Arques Ave., Sunnyvale, CA 94085
    2. -
    -
  14. -
-

Podcast topics of discussion:

-
    -
  1. - Week in Reviews: -
      -
    1. - 0:05:40 Achieva Shimian high res Korean monitor review
    2. -
    3. - 0:14:40 Corsair Vengeance 1300 and 1500 headset review
    4. -
    5. - 0:15:30 Origin EON 11-S (m11x successor) review
    6. -
    -
  2. -
-
    -
  1. - 0:20:10 This Podcast is brought to you by MSI!
  2. -
-
    -
  1. - News items of interest: -
      -
    1. - 0:22:00 New Radeon HD 7000-series pricing
    2. -
    3. - 0:25:30 GPU Stock Update for July 17th
    4. -
    5. - 0:32:15 6GB Sapphire TOXIC Edition 7970 GHz - 1200 MHz boost speed
    6. -
    7. - 0:36:55 PoV launches overclocked GT 640
    8. -
    9. - 0:37:35 Microsoft Office 2013 (aka Office 15) Customer Preview,
    10. -
    11. - 0:41:30 Blue Prolimatech Megahalems HSF prototype
    12. -
    13. - SSD Stuff -
        -
      1. - 0:42:40 Intel adds 240GB 330-series SSD, lowers prices
      2. -
      3. - 0:44:00 Possible MSI SandForce SSD -
          -
        1. - Allyn believes this may just mean the company will integrate a mSATA SSD with it's mobos.
        2. -
        -
      4. -
      5. - 0:44:30: New OCZ/Indilinx Barefoot 3 SSD Controller
      6. -
      -
    14. -
    15. - 0:47:50 Retina MacBook Pro from a PC Perspective
    16. -
    17. - 0:53:00 Desktop Trinity APUs delayed
    18. -
    19. - 0:57:15 Microsoft Releasing Upgrade/OEM Editions for sale on October 26, 2012
    20. -
    -
  2. -
-
    -
  1. - Closing: -
      -
    1. - 0:58:30 Hardware / Software Pick of the Week -
        -
      1. - Ryan: Vertex 4 special tease!! -
          -
        1. - VTX4-25SAT3-64G - $69.99
        2. -
        3. - VTX4-25SAT3-128G - $104.99
        4. -
        5. - VTX4-25SAT3-256G - $199.99
        6. -
        7. - VTX4-25SAT3-512G - $529.99
        8. -
        -
      2. -
      3. - Jeremy: I really dislike installing heatsinks
      4. -
      5. - Josh: A kickin card for cheap
      6. -
      7. - Tim: Sins of a Solar Empire: Rebellion, in the steam sale today!
      8. -
      -
    2. -
    -
  2. -
-
    -
  1. - 01:02:10 1-888-38-PCPER or podcast@pcper.com
  2. -
  3. - 01:02:55 http://pcper.com/podcast
  4. -
  5. - 01:03:00 http://twitter.com/ryanshrout and http://twitter.com/pcper
  6. -
  7. - 01:03:30 Quakecon coverage at pcper.com/workshop. Hope to see you there!
  8. -
  9. - 01:04:15 Closing/outro
  10. -
- -]]>
-Thu, 19 Jul 2012 06:00:03 -0400 - -pc-perspective-podcast-210-071912 -Ryan Shrout -Join us this week as we talk about Cheap 1440P Monitors, 11" Gaming Notebooks, Windows 8, and more! -Join us this week as we talk about Cheap 1440P Monitors, 11" Gaming Notebooks, Windows 8, and more! -no -62:09 -
- - -PC Perspective Podcast 209 - 7/12/12 -PC Perspective Podcast #209 - 07/12/2012

-

Join us this week as we talk about Thunderbolt Performance on Windows, the new Western Digital Red Hard Drives, a passively cooled GTX 680 and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:15:06

-

Program Schedule:

-
    -
  1. - Introduction
  2. -
  3. - 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. - http://pcper.com/podcast
  6. -
  7. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  8. -
  9. - Quakecon - we need Tshirt ideas!!
  10. -
  11. - 00:05:45 Thunderbolt Performance on Windows with ASUS P8Z77-V Premium
  12. -
  13. - 00:17 Gigabyte G1.Sniper M3 Motherboard Review
  14. -
  15. - 00:18:30 AMD, Vishera and Beyond!
  16. -
  17. - 00:26:45 HP Envy 14 Spectre Review
  18. -
  19. - 00:28:30 Western Digital Red 3TB NAS HDD Review
  20. -
  21. - 00:41:51 This Podcast is brought to you by MSI!
  22. -
  23. - 00:42:45 Passively cooled GTX 680 anyone?
  24. -
  25. - 00:45:45 Windows 8 Pro will run you $39
  26. -
  27. - 00:50:00 Overclocking makes your system less stable...duhhh
  28. -
  29. - 00:57:00 ASUS and Gigabyte raise warranty times
  30. -
  31. - 00:58:30 Mid-range Kepler rumors
  32. -
  33. - 01:19:40 Hardware / Software Pick of the Week -
      -
    1. - Ryan: ThunderboltEX from ASUS
    2. -
    3. - Jeremy: I like this Lenovo X220 work stuck me with
    4. -
    5. - Josh: Like I need another time sink
    6. -
    7. - Allyn: WD Red
    8. -
    -
  34. -
  35. - 1-888-38-PCPER or podcast@pcper.com
  36. -
  37. - http://pcper.com/podcast
  38. -
  39. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  40. -
  41. - Closing
  42. -
-

Video Coming Soon!

-]]>
-Thu, 12 Jul 2012 06:00:03 -0400 - -pc-perspective-podcast-209-071212 -Ryan Shrout -Join us this week as we talk about Thunderbolt Performance on Windows, the new Western Digital Red Hard Drives, a passively cooled GTX 680 and more! -Join us this week as we talk about Thunderbolt Performance on Windows, the new Western Digital Red Hard Drives, a passively cooled GTX 680 and more! -no -75:06 -
- - -PC Perspective Podcast Holiday Note - 07/05/12 -PC Perspective Podcast Holiday Note - 07/05/12

-]]>
-Thu, 05 Jul 2012 06:00:03 -0400 - -pc-perspective-podcast-holiday-note-070512 -Ryan Shrout -A quick note about our holiday and podcast schedule! -A quick note about our holiday and podcast schedule! -no -00:48 -
- - -PC Perspective Podcast 208 - 06/28/12 -PC Perspective Podcast #208 - 06/28/2012

-

Join us this week as we talk about the AMD Radeon HD 7970 GHZ Edition, Intel Core i5-3470, our Blindfolded APU build and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • - iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • - RSS - Subscribe through your regular RSS reader
  • -
  • - MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:05:24

-

Program Schedule:

-
    -
  1. - Introduction
  2. -
  3. - 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. - http://pcper.com/podcast
  6. -
  7. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  8. -
  9. - 0:01:42 AMD Radeon HD 7970 GHz Edition
  10. -
  11. - 0:09:10 Live Review Recap: AMD Radeon HD 7970 GHz Edition
  12. -
  13. - 0:10:30 Silverstone Crown Series CW02 case review
  14. -
  15. - 0:13:50 Intel Core i5-3470 IVB Review
  16. -
  17. - 0:21:11 This Podcast is brought to you by MSI!
  18. -
  19. - 0:22:05 Live Video Recap: AMD Llano APU Blindfolded Build
  20. -
  21. - 0:25:50 ASUS ROG Matrix HD 7970 coming soon
  22. -
  23. - 0:30:00 Sandia Cooler Prototype
  24. -
  25. - 0:39:50 Dell Ubuntu Notebooks
  26. -
  27. - 0:43:40 Can a 12-core ARM cluster hit critical mass?
  28. -
  29. - 0:48:20 Google announces Nexus 7 tablet powered by Tegra 3
  30. -
  31. - 0:55:55 Hardware / Software Pick of the Week -
      -
    1. - Ryan: Thunderbolt on Windows Article coming tomorrow!!
    2. -
    3. - Jeremy: Core i7 3770K is a compute per watt monster
    4. -
    5. - Josh: Good PS for general use and excellent price
    6. -
    7. - Allyn: OCZ Vertex 4 FW 1.4.1.3
    8. -
    -
  32. -
  33. - 1-888-38-PCPER or podcast@pcper.com
  34. -
  35. - http://pcper.com/podcast
  36. -
  37. - http://twitter.com/ryanshrout and http://twitter.com/pcper
  38. -
  39. - Closing
  40. -
-

Video Coming Soon!

- -]]>
-Thu, 28 Jun 2012 06:00:03 -0400 - -pc-perspective-podcast-208-062812 -Ryan Shrout -Join us this week as we talk about the AMD Radeon HD 7970 GHZ Edition, Intel Core i5-3470, our Blindfolded APU build and more! -Join us this week as we talk about the AMD Radeon HD 7970 GHZ Edition, Intel Core i5-3470, our Blindfolded APU build and more! -no -65:24 -
- - -PC Perspective Podcast 207 - 06/21/12 -PC Perspective Podcast #207 - 06/21/2012

-

Join us this week as we talk about the Western Digital N900 HD Router, NVIDIA GT 640, Falling SSD prices, and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath and Allyn Malvantano

-

This Podcast is brought to you by MSI!

-

Program length: 1:17:19

-

Program Schedule:

-
    -
  1. 0:00:58 Introduction
  2. -
  3. 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. http://pcper.com/podcast
  6. -
  7. http://twitter.com/ryanshrout and http://twitter.com/pcper
  8. -
  9. 0:01:58 Join us for some cool live events this week! - http://pcper.com/live
  10. -
  11. 0:05:15 Western Digital My Net N900 HD Router Review
  12. -
  13. 0:19:00 Low-End Laptop Graphics Solution Comparison: Five Options Go Head-To-Head
  14. -
  15. 0:22:03 Galaxy GeForce GT 640 GC 1GB DDR3 Review - GK107 is no GK104
  16. -
  17. 0:30:17 This Podcast is brought to you by MSI!
  18. -
  19. 0:31:00 Modest announcements at the last day of the AFDS
  20. -
  21. 0:34:20 Western Digital and Seagate doomed to be marked as bad sectors?
  22. -
  23. 0:37:45 How did we suddenly move past the $1/GB on SSDs?
  24. -
  25. 0:40:25 SK Hynix to acquire Link_a_Media Devices for $248 million
  26. -
  27. 0:44:30 Microsoft Surface announced, tablet to compete with iPad
  28. -
  29. 0:52:40 Intel renames Larrabee to Xeon Phi
  30. -
  31. 1:01:00 Hardware / Software Pick of the Week
    -
      -
    1. Ryan: Pegasus R4 Thunderbolt Unit - pushing 660 MB/s with RAID-0
    2. -
    3. Jeremy: I change my mind … This is what I was promised!!
    4. -
    5. Josh: I love the price drop!
    6. -
    7. Allyn: Jawbone HD + The Nerd
    8. -
    -
  32. -
  33. 1-888-38-PCPER or podcast@pcper.com
  34. -
  35. http://pcper.com/podcast
  36. -
  37. http://twitter.com/ryanshrout and http://twitter.com/pcper
  38. -
  39. Closing
  40. -
-

 

-]]>
-Thu, 21 Jun 2012 06:00:03 -0400 - -pc-perspective-podcast-207-062112 -Ryan Shrout -Join us this week as we talk about the Western Digital N900 HD Router, NVIDIA GT 640, Falling SSD prices, and more! -Join us this week as we talk about the Western Digital N900 HD Router, NVIDIA GT 640, Falling SSD prices, and more! -no -77:19 -
- - -PC Perspective Podcast 206 - 06/14/12 -PC Perspective Podcast #206 - 06/14/2012

-

Join us this week as we talk about the Corsair 550D Chassis, AMD licensing ARM, AMD Tahiti 2 GPUs and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Jeremy Hellstrom, Josh Walrath, Allyn Malvantano and Scott Michaud

-

This Podcast is brought to you by MSI!

-

Program length: 1:22:58

-

Program Schedule:

-
    -
  1. 0:00:20 Introduction
  2. -
  3. 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. http://pcper.com/podcast
  6. -
  7. http://twitter.com/ryanshrout and http://twitter.com/pcper
    -
  8. -
  9. 0:02:00 ioSafe SoloPro and Synology DiskStation 212+ Review
  10. -
  11. 0:13:05 Origin EOS17 Gaming Notebook Review
  12. -
  13. 0:18:00 Corsair Obsidian 550D Case Review
  14. -
  15. 0:22:00 This Podcast is brought to you by MSI!
  16. -
  17. 0:24:10 AMD, ARM, Ti, Imagination and MediaTek for HSA Foundation
  18. -
  19. 0:34:30 AMD licenses ARM Cortex-A5 for APUs
  20. -
  21. 0:39:45 Sapphire passive Radeon HD 7770
  22. -
  23. 0:42:50 ASUS ROG laptop first with 802.11ac
  24. -
  25. 0:47:50 AMD could be releasing Tahiti 2 GPU next week
  26. -
  27. 0:49:16 Unreal Engine 4 looks pretty awesome...
  28. -
  29. 0:55:05 AMD Wireless Display standard coming soon
  30. -
  31. 0:56:45 Apple does indeed release high-res 15" laptop
  32. -
  33. 1:02:00 New MacBooks Sporting 6Gb/s Samsung 830 Series SSD Controllers
  34. -
  35. 1:04:18 AMD Kevari 3rd gen APU to hit 1 TFLOPS performance
  36. -
  37. 1:06:45 Link_A_Media controller explored
  38. -
  39. 1:09:45 AMD FirePro W600 launched
  40. -
  41. 1:13:55 Hardware / Software Pick of the Week -
      -
    1. Ryan: That Doctor he was getting drunk with
    2. -
    3. Jeremy: It's heeere and on the Leaderboard
    4. -
    5. Josh:  Not for the faint of heart. Or wallet.
    6. -
    7. Allyn: Windows 8 Release Preview is out
    8. -
    9. Scott: Mount and Blade: Warband: Napoleonic Wars (because you can never have too many subtitles)
    10. -
    11. Tim: Corsair Obsidian 550D I've been drooling over this since CES! )
    12. -
    -
  42. -
  43. 1-888-38-PCPER or podcast@pcper.com
  44. -
  45. http://pcper.com/podcast   
  46. -
  47. http://twitter.com/ryanshrout and http://twitter.com/pcper
  48. -
  49. 1:22:00 Closing
  50. -
-]]>
-Thu, 14 Jun 2012 06:00:03 -0400 - -pc-perspective-podcast-206-061412 -Ryan Shrout -Join us this week as we talk about the Corsair 550D Chassis, AMD licensing ARM, AMD Tahiti 2 GPUs and more! -Join us this week as we talk about the Corsair 550D Chassis, AMD licensing ARM, AMD Tahiti 2 GPUs and more! -no -82:58 -
- - -PC Perspective Podcast 205 - 06/07/12 -PC Perspective Podcast #205 - 06/07/2012

-

Join us this week as we talk about all of the news from Computex 2012! - Ultrabooks, Trinity Motherboards, New products from Corsair, and much more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malvantano
-

-

Program length: 1:31:35

-

Program Schedule:

-
    -
  1. 0:00:25 Introduction
  2. -
  3. 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. http://pcper.com/podcast
  6. -
  7. http://twitter.com/ryanshrout and http://twitter.com/pcper
    -
  8. -
  9. 0:03:15 MSI Radeon HD 7950 Review
  10. -
  11. 0:10:00 ASUS Sabertooth X79 Review
  12. -
  13. 0:11:10 DV Nation RAMRod system review
  14. -
  15. 0:18:25 Samsung Series 5 Chromebook review
  16. -
  17. 0:19:10 Intel Ultrabook Ivy Bridge reference review
  18. -
  19. 0:21:00 AD BREAK
  20. -
  21. 0:21:47 AMD loses monthly Catalyst updates
  22. -
  23. 0:25:20 Ultrabooks -
      -
    1. Gigabyte has some
    2. -
    3. Acer Aspire S7
    4. -
    5. Acer Iconia Tablets
    6. -
    7. ASUS TAICHI dual-screen
    8. -
    9. ASUS Transformer Book
    10. -
    11. ASUS 800 / 610 Windows 8 tablets
    12. -
    -
  24. -
  25. 0:36:00 MAINGEAR 11-in gaming machine
  26. -
  27. 0:37:00 Sandisk PCIe SSD competitor
  28. -
  29. 0:42:00 Trinity / A85 Motherboards -
      -
    1. From ECS
    2. -
    3. From ASRock
    4. -
    5. Lots from MSI
    6. -
    -
  30. -
  31. 0:45:30 ASUS says THEY have the overclocking record
  32. -
  33. 0:46:30 Macbook coming with ultra high-res display?
  34. -
  35. 0:51:00 Gigabyte X79S motherboard
  36. -
  37. 0:53:00 LSI shows SF-2000 driving smaller flash
  38. -
  39. 0:59:30 Corsair has... -
      -
    1. A new PSU
    2. -
    3. A new dominator module
    4. -
    5. A new SSD with a new controller
    6. -
    -
  40. -
  41. 1:05:30 NVIDIA wants discrete GPUs in Ultrabooks
  42. -
  43. 1:07:30 NVIDIA shows GeForce GTX 680M GPU -
      -
    1. Alienware gets it
    2. -
    -
  44. -
  45. 1:11:00 ASUS MARS III dual GTX 680 card
  46. -
  47. 1:13:00 3DMark for Windows 8 Screenshots
  48. -
  49. 1:15:00 AMD releases Brazos 2.0
  50. -
  51. 1:16:45 New ASUS ROG Gear
  52. -
  53. 1:21:00 ASUS shows off beastly concept motherboards
  54. -
  55. 1:24:10 Hardware / Software Pick of the Week -
      -
    1. Ryan: ASUS USB-N53 with bendy straw
    2. -
    3. Jeremy: ah, going with the Norse God
    4. -
    5. Josh: Great basic case for business AND pleasure
    6. -
    7. Allyn: Samsung 830 Series 256GB for $199 at TigerDirect
    8. -
    -
  56. -
  57. 1-888-38-PCPER or podcast@pcper.com
  58. -
  59. http://pcper.com/podcast   
  60. -
  61. http://twitter.com/ryanshrout and http://twitter.com/pcper
  62. -
  63. Closing
  64. -
-

 

-]]>
-Thu, 07 Jun 2012 06:00:03 -0400 - -pc-perspective-podcast-205-060712 -Ryan Shrout -Join us this week as we talk about all of the news from Computex 2012! - Ultrabooks, Trinity Motherboards, New products from Corsair, and much more! -Join us this week as we talk about all of the news from Computex 2012! - Ultrabooks, Trinity Motherboards, New products from Corsair, and much more! -no -91:35 -
- - -PC Perspective Podcast 204 - 05/31/12 -PC Perspective Podcast #204 - 05/31/2012

-

Join us this week as we talk about the ioSafe soloPRO and Synology DiskStation 212+, NVIDIA news, the OCZ Agility 4 and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malvantano
-

-

Program length: 1:10:29

-

Program Schedule:

-
    -
  1. 0:00:30 Introduction
  2. -
  3. 0:00:50 Random Sound Card Discussion
  4. -
  5. 1-888-38-PCPER or podcast@pcper.com
  6. -
  7. http://pcper.com/podcast
  8. -
  9. http://twitter.com/ryanshrout and http://twitter.com/pcper
    -
  10. -
  11. 0:06:30 Take the PC Perspective Survey, win prizes!!
  12. -
  13. 0:08:40 ioSafe SoloPRO and Synology DiskStation 212+ Review - Disaster-proof Networked Storage
  14. -
  15. 0:18:38 Tegra 3 to see 30 devices this year, LTE support
  16. -
  17. 0:20:25 NVIDIA claims GTX 680 sales outpacing GTX 580 sales
  18. -
  19. 0:27:30 NVIDIA shows ASUS Zenbook Prime UX32VD
  20. -
  21. 0:29:50 HP has 27,000 too many employees
  22. -
  23. 0:32:00 Dell leaks Latitude 10 Windows 8 tablet
  24. -
  25. 0:34:40 Dell promotes their "Copper" ARM-based servers
  26. -
  27. 0:39:30 OCZ Launches Agility 4 based on Indilinx Everest 2
  28. -
  29. 0:51:20 Intel shows you how to make a processor
  30. -
  31. 0:54:00 Time for a GPU Stock Update?
  32. -
  33. 0:57:00 Crysis 2 back on Steam? EA and Valve make up?
  34. -
  35. 0:59:00 Hardware / Software Pick of the Week -
      -
    1. Ryan: Corsair Vengeance 2000 Wireless headset $149
    2. -
    3. Jeremy: The best way to blow $10,000
    4. -
    5. Josh: Faster Internets... Worth it!  http://west.optimum.com/services/high-speed_internet/optimum_online_boost/
    6. -
    7. Allyn: is lame
    8. -
    -
  36. -
  37. 1-888-38-PCPER or podcast@pcper.com
  38. -
  39. http://pcper.com/podcast   
  40. -
  41. http://twitter.com/ryanshrout and http://twitter.com/pcper
  42. -
  43. Closing
  44. -
-

 

-]]>
-Thu, 31 May 2012 06:00:03 -0400 - -pc-perspective-podcast-204-053112 -Ryan Shrout -Join us this week as we talk about the ioSafe soloPRO and Synology DiskStation 212+, NVIDIA news, the OCZ Agility 4 and more! -Join us this week as we talk about the ioSafe soloPRO and Synology DiskStation 212+, NVIDIA news, the OCZ Agility 4 and more! -no -70:29 -
- - -PC Perspective Podcast 203 - 05/24/12 -PC Perspective Podcast #203 - 05/24/2012

-

Join us this week as we talk about the ASUS N56VM notebook, XFX 7850s and 7870s, Thunderbolt on Windows and more!

-

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malvantano
-

-

Program length: 1:12:55

-

Program Schedule:

-
    -
  1. Introduction
  2. -
  3. 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. http://pcper.com/podcast
  6. -
  7. http://twitter.com/ryanshrout and http://twitter.com/pcper
    -
  8. -
  9. 0:02:00 You talked about all the cool stuff last week!
    -
      -
    1. GK110
    2. -
    3. NVIDIA GRID
    4. -
    5. AMD Trinity
    6. -
    7. GTX 670
    8. -
    -
  10. -
  11. 0:13:30 Antec High Current Pro Platinum 1000 watt PSU
  12. -
  13. 0:16:20 ASUS N56VM Ivy Bridge Notebook - our reference system
  14. -
  15. 0:17:30 XFX HD 7870 and HD 7850 Black Edition
  16. -
  17. 0:28:25 Unreal Engine 4 Screenshots
  18. -
  19. 0:31:00 AMD to stop making "needlessly powerful" CPUs
  20. -
  21. 0:42:00 NVIDIA is not recalling Kepler
  22. -
  23. 0:45:00 Thunderbolt for Windows from ASUS and MSI announced
  24. -
  25. 0:48:30 Josh's Banana Phone - VIA $49 Android PC
  26. -
  27. 0:51:30 Seagate to purchase LaCie
  28. -
  29. 0:56:30 The discrete graphics card is not dead
  30. -
  31. 1:02:00 Hardware / Software Pick of the Week -
      -
    1. Ryan: Pegasus R4 Thunderbolt External Storage
    2. -
    3. Jeremy: DeLorean Hovercraft or levitating bed? Or I could go old school.
    4. -
    5. Josh: Some Thieving Goodies from Way Back
    6. -
    7. Allyn: Paragon Hard Disk Manager 12 - alignment for SSDs integral with partition moves / resizes / etc
    8. -
    -
  32. -
  33. 1-888-38-PCPER or podcast@pcper.com
  34. -
  35. http://pcper.com/podcast   
  36. -
  37. http://twitter.com/ryanshrout and http://twitter.com/pcper
  38. -
  39. Closing
  40. -
- - - 

-

 

-]]>
-Thu, 24 May 2012 06:00:03 -0400 - -pc-perspective-podcast-203-052412 -Ryan Shrout -Join us this week as we talk about the ASUS N56VM notebook, XFX 7850s and 7870s, Thunderbolt on Windows and more! -Join us this week as we talk about the ASUS N56VM notebook, XFX 7850s and 7870s, Thunderbolt on Windows and more! -no -72:55 -
- - -PC Perspective Podcast 202 - 05/17/12 -PC Perspective Podcast #202 - 05/17/2012

-

Join us this week as we talk about the GTX 670, NVIDIA's GK110 Tesla card, our AMD Trinity Mobile review and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Jeremy Hellstrom, Josh Walrath, and Allyn Malvantano
-

-

Program length: 1:05:16

-

Program Schedule:

-
    -
  1. 0:00:21 Introduction
  2. -
  3. 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. http://pcper.com/podcast
  6. -
  7. http://twitter.com/ryanshrout and http://twitter.com/pcper
    -
  8. -
  9. 0:01:15 NVIDIA GeForce GTX 670 2GB Graphics Card Review - Kepler for $399 -
      -
    1. GeForce GTX 670 vs GTX 570 Performance Update
    2. -
    3. The GTX 670 and the Case of the Missing (and Returning) 4-Way SLI Support
    4. -
    -
  10. -
  11. 0:11:20 Graphics Card (GPU) Stock Check - May 10th, 2012 -
      -
    1. Hard to make a profit when no one can find Kepler cards for sale, NVIDIA
    2. -
    -
  12. -
  13. 0:14:25 NVIDIA Reveals GK110 GPU - Kepler at 7.1B Transistors, 15 SMX Units
  14. -
  15. 0:20:20 Lenovo IdeaCentre Q180: Atom's Wake
  16. -
  17. 0:24:30 AMD A10-4600M Trinity For Mobile Review: Trying To Cut The Ivy
  18. -
  19. 0:33:40 Just Delivered: DV Nation RAMRod PC - Sandy Bridge-E, 64GB DDR3, 480GB RevoDrive 3 X2
  20. -
  21. 0:35:42 Plug and Pray PCIe SSD that you can upgrade; OWC's Mercury Accelsior
  22. -
  23. 0:40:40 GTC 2012: NVIDIA Announces GeForce GRID Cloud Gaming Platform -
      -
    1. NVIDIA Pioneers New Standard for High Performance Computing with Tesla GPUs
    2. -
    3. NVIDIA Introduces World's First Virtualized GPU, Accelerating Graphics for Cloud Computing
    4. -
    -
  24. -
  25. 0:53:00 ZOTAC announces ZOTAC GeForce GT 630, GT 620 and GT 610 series
  26. -
  27. 0:55:00 Hardware / Software Pick of the Week -
      -
    1. Jeremy: Only to be used for evil
    2. -
    3. Josh: Since NV doesn't have an answer yet at this price range...
    4. -
    5. Allyn: If you need your files secure - without the destruction
    6. -
    -
  28. -
  29. 1-888-38-PCPER or podcast@pcper.com
  30. -
  31. http://pcper.com/podcast   
  32. -
  33. http://twitter.com/ryanshrout and http://twitter.com/pcper
  34. -
  35. Closing
  36. -
-]]>
-Thu, 17 May 2012 06:00:03 -0400 - -pc-perspective-podcast-202-051712 -Ryan Shrout -Join us this week as we talk about the GTX 670, NVIDIA's GK110 Tesla card, our AMD Trinity Mobile review and more! -Join us this week as we talk about the GTX 670, NVIDIA's GK110 Tesla card, our AMD Trinity Mobile review and more! -no -65:16 -
- - - -PC Perspective Podcast 201 - 05/10/12 -PC Perspective Podcast #201 - 05/10/2012

-

Join us this week as we talk about our GTX 690 review, ASUS G75V Ivy Bridge Notebook review, a Vertex 4 update and more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malvantano
-

-

Program length: 1:04:25

-

Program Schedule:

-
    -
  1. Introduction
  2. -
  3. 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. http://pcper.com/podcast
  6. -
  7. http://twitter.com/ryanshrout and http://twitter.com/pcper
    -
  8. -
  9. Win a Netgear R6300 802.11ac router!!
  10. -
  11. NVIDIA GeForce GTX 690 Review - Dual GK104 Kepler Greatness
  12. -
  13. ASUS G75V Review: Gaming Goes Ivy
  14. -
  15. Greater than 20 Percent of Malware Articles Miss the Point
  16. -
  17. Trinity Improvements Include Updated Piledriver Cores and VLIW4 GPUs
  18. -
  19. More Leaks Emerge on NVIDIA’s Kepler Based GTX 670 GPU
  20. -
  21. Ready for Diablo III? Not with Catalyst 12.4 you're not.
  22. -
  23. Corsair Launches Air Series of High Airflow and High Static Pressure Fans
  24. -
  25. Steam Allows Remote Installation of Games
  26. -
  27. OCZ Updates Vertex 4 Enthusiasts to 1.4 Release Candidate Firmware
  28. -
  29. Windows Media Center To Be A Pro Only Feature In Windows 8
  30. -
  31. Good news from TSMC for NVIDIA and you
  32. -
  33. Hardware / Software Pick of the Week -
      -
    1. Ryan: ASUS N66U Dual-band Router
    2. -
    3. Jeremy: Wave your hands like an idiot for free
    4. -
    5. Josh: Not exactly mine, but good.
    6. -
    7. Allyn: pqi U819V 3cm USB3 
    8. -
    -
  34. -
  35. 1-888-38-PCPER or podcast@pcper.com
  36. -
  37. http://pcper.com/podcast   
  38. -
  39. http://twitter.com/ryanshrout and http://twitter.com/pcper
  40. -
  41. Closing
  42. -
-
-]]>
-Thu, 10 May 2012 06:00:03 -0400 - -pc-perspective-podcast-201-051012 -Ryan Shrout -Join us this week as we talk about our GTX 690 review, ASUS G75V Ivy Bridge Notebook review, a Vertex 4 update and more! -Join us this week as we talk about our GTX 690 review, ASUS G75V Ivy Bridge Notebook review, a Vertex 4 update and more! -no -64:25 -
- - -PC Perspective Podcast 200 - 05/03/12 -PC Perspective Podcast #200!!! - 05/03/2012

-

Join us this week as we talk about the GTX 690, Intel 910 Series PCI-E SSD, our Podcast Life in Review, and much more!

-

You can subscribe to us through iTunes and you can still access it directly through the RSS page HERE.

-

The URL for the podcast is: http://pcper.com/podcast - Share with your friends!

-
    -
  • iTunes - Subscribe to the podcast directly through the iTunes Store
  • -
  • RSS - Subscribe through your regular RSS reader
  • -
  • MP3 - Direct download link to the MP3 file
  • -
-

Hosts: Ryan Shrout, Jeremy Hellstrom, Josh Walrath, and Allyn Malvantano
-

-

Program length: 1:23:52

-

Program Schedule:

-
    -
  1. Introduction
  2. -
  3. 1-888-38-PCPER or podcast@pcper.com
  4. -
  5. http://pcper.com/podcast
  6. -
  7. http://twitter.com/ryanshrout and http://twitter.com/pcper
    -
  8. -
  9. PC Perspective Live Review - GTX 690 -
      -
    1. http://pcper.com/live
    2. -
    3. http://www.pcper.com/news/Editorial/Questions-GTX-690-Live-Review-Win-NVIDIA-Crowbar
    4. -
    -
  10. -
  11. Podcast Life in Review -
      -
    1. #1 - 5/3/2007 - NV 8800 Ultra
    2. -
    3. #10 - 8/14/2007 - AMD takes wraps off 3.2GHz Athlon 64 X2 6400+ Black Edition 
    4. -
    5. #46 - 2/4/2009 - NVIDIA ION
    6. -
    7. #50 - 3/26/2009 - Bigfoot new Gaming Card, Original from 2006!!
    8. -
    9. #75 - 9/24/2009 - HD 5870 Launch
    10. -
    11. #100 - 4/7/2010 - VRaptor 600GB
    12. -
    13. #150 - 4/13/2011 - HD 6000 mid-range rumors
    14. -
    -
  12. -
  13. Intel SSD 910 Series 800GB PCIe SSD First Look
  14. -
  15. Dying Atoms: The Failure Of Low-Power x86 Processors
  16. -
  17. SilverStone Nightjar ST50NF 500W Fanless Power Supply Review
  18. -
  19. ASUS P8Z77-V Premium motherboard announced.
  20. -
  21. Custom Gaming PC Being Auctioned Off For Charity Doing Multiple Sclerosis Research
  22. -
  23. NVIDIA Announces dual-GPU Kepler GeForce GTX 690
  24. -
  25. NVIDIA Announces GeForce Experience Cloud Service for Quality Presets
  26. -
  27. NVIDIA Crates the GeForce GTX 690
  28. -
  29. Cheaper GTX 670 GPU Spotted At Malaysian Retailer
  30. -
  31. Moore's Law End in Sight
  32. -
  33. Trinity Slides Leaked
  34. -
  35. HWLB Update
  36. -
  37. Hardware / Software Pick of the Week -
      -
    1. Ryan: LogmeIn Ignition - good and bad
    2. -
    3. Jeremy: $60 3 LCD stand
    4. -
    5. Josh:  Apparently quite CPU intensive. SRS gamers only!
    6. -
    7. Allyn:  Mini SAS SFF-8087 to 4x 2.5in SATA/SAS 5.25in Hot Swap Backplane.
    8. -
    -
  38. -
  39. 1-888-38-PCPER or podcast@pcper.com
  40. -
  41. http://pcper.com/podcast   
  42. -
  43. http://twitter.com/ryanshrout and http://twitter.com/pcper
  44. -
  45. Closing
  46. -
- -

 

-]]>
-Thu, 03 May 2012 06:00:03 -0400 - -pc-perspective-podcast-200-050312 -Ryan Shrout -Join us this week as we talk about the GTX 690, Intel 910 Series PCI-E SSD, our Podcast Life in Review, and much more! -Join us this week as we talk about the GTX 690, Intel 910 Series PCI-E SSD, our Podcast Life in Review, and much more! -no -83:52 -
- -
-
\ No newline at end of file diff --git a/hammond-data/benches/feeds/techsnapmp3.xml b/hammond-data/benches/feeds/techsnapmp3.xml deleted file mode 100644 index bee47c1..0000000 --- a/hammond-data/benches/feeds/techsnapmp3.xml +++ /dev/null @@ -1,2922 +0,0 @@ - - - - TechSNAP MP3 - http://www.jupiterbroadcasting.com - An in-depth analysis of tech issues and topics. Hosted by Chris Fisher and Allan Jude, with over 20+ years in the technology industry. Tune in and get engaged by deep critical analysis and conversation around technologies’ milestones. - Feeder 2.5.12(2294); Mac OS X Version 10.12.1 (Build 16B2657) http://reinventedsoftware.com/feeder/ - http://blogs.law.harvard.edu/tech/rss - en - Wed, 08 Nov 2017 00:40:02 -0800 - Wed, 08 Nov 2017 00:40:02 -0800 - - no - no - - Jupiter Broadcasting, LLCAnalysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,BroadcastingTechnology/Tech NewsTechnology/Software How-Tochris@jupiterbroadcasting.comchris@jupiterbroadcasting.comchris@jupiterbroadcasting.comAnalysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,BroadcastingIn-depth Discussion of Tech Topics.An in-depth analysis of tech issues and topics. Hosted by Chris Fisher and Allan Jude, with over 20+ years in the technology industry. Tune in and get engaged by deep critical analysis and conversation around technologies’ milestones. - SSL Strippers | TechSNAP 344 - http://feedproxy.google.com/~r/techsnapmp3/~3/wPWKOQkLLu0/ - You may think that’s a secure password field, but don’t be fooled! We’ve got the disturbing tale of some negligent websites & their fraudulent fonts. Then, some top tips to evaluate the security of your banking institutions & best practices for verbal passwords. Plus, a controversial discussion of opsec, obfuscation, security & you!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/wPWKOQkLLu0" height="1" width="1" alt=""/> - Wed, 08 Nov 2017 00:39:59 -0800 - - F50A9D00-00DE-4897-807F-3DAE1B2FD36E - Jupiter Broadcasting - We’ve got the disturbing tale of some negligent websites & their fraudulent fonts. Then, some top tips to evaluate the security of your banking institutions & best practices for verbal passwords. Plus, a discussion of opsec, obfuscation, security & you! - - no - 1:18:48 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/119711/ssl-strippers-techsnap-344/ - - Low Security Pillow Storage | TechSNAP 343 - http://feedproxy.google.com/~r/techsnapmp3/~3/PA9oAfqA94g/ - <p>We've got some top tips to turn you from ssh-novice to port-forwarding master. Plus the latest on the confusing story of Kaspersky, the NSA & a bone-headed contractor. Then, our backup sense is tingling, with the story of $30,000 lost to a forgotten pin.</p> - -<p>And of course your fantastic feedback, a record setting round-up & so much more on this week's episode of TechSNAP!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/PA9oAfqA94g" height="1" width="1" alt=""/> - Tue, 31 Oct 2017 23:01:27 -0700 - - D2A2DEF9-1574-4C92-B53F-329E3E591383 - Jupiter Broadcasting - We've got some top tips to turn you from ssh-novice to port-forwarding master. Plus the latest on the confusing story of Kaspersky, the NSA & a bone-headed contractor. Then, our backup sense is tingling, with the story of $30,000 lost to a forgotten pin. - - no - 1:27:34 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/119566/low-security-pillow-storage-techsnap-343/ - - Cloudy with a chance of ABI | TechSNAP 342 - http://feedproxy.google.com/~r/techsnapmp3/~3/43b_YtE9zRo/ - We air Microsoft's dirty laundry as news leaks about their less than stellar handling of a security database breach, plus a fascinating story of deceit, white lies, and tacos; all par for the course in the world of social engineering, and we find out that so-called-smart cards might not be so smart, after it is revealed that millions are vulnerable to a crippling cryptographic attack & more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/43b_YtE9zRo" height="1" width="1" alt=""/> - Tue, 24 Oct 2017 22:12:38 -0700 - - 312D59E4-300D-45FF-B9FD-34D086C77D49 - Jupiter Broadcasting - We air Microsoft's dirty laundry as news leaks about their less than stellar handling of a security database breach, plus a fascinating story of deceit, white lies, and tacos, so-called-smart cards might not be so smart & more! - - no - 1:41:54 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/119391/cloudy-with-a-chance-of-abi-techsnap-342/ - - HAMR Time | TechSNAP 341 - http://feedproxy.google.com/~r/techsnapmp3/~3/tCPgR3Vz7WE/ - We've got bad news for Wifi-lovers as the KRACK hack takes the world by storm; We have the details & some places to watch to make sure you stay patched. Plus, some distressing revelations about third party access to your personal information through some US mobile carriers. Then we cover the ongoing debate over HAMR, MAMR, and the future of hard drive technology & take a mini deep dive into the world of elliptic curve cryptography.<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/tCPgR3Vz7WE" height="1" width="1" alt=""/> - Tue, 17 Oct 2017 21:34:49 -0700 - - 375F22EA-9EE7-4471-B477-C51B01EB5599 - Jupiter Broadcasting - The KRACK hack takes the world by storm; Plus, third party access to your personal information through some US mobile carriers. Then the ongoing debate over HAMR, MAMR & take a mini deep dive into the world of elliptic curve cryptography. - - no - 1:08:35 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/119191/hamr-time-techsnap-341/ - - Spy Tapes | TechSNAP 340 - http://feedproxy.google.com/~r/techsnapmp3/~3/teE9O4M12fU/ - We try our hand at spycraft with a set of espionage themed stories covering everything from the latest troubles at Kaspersky to the strategic implications of responsible disclosure at the NSA. Plus, a few more reasons to be careful with what you post on social media & a fascinating discussion of the ethics of running a data breach search service.<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/teE9O4M12fU" height="1" width="1" alt=""/> - Thu, 12 Oct 2017 19:14:34 -0700 - - 5220D803-BDE6-4134-9EC1-34B037810814 - Jupiter Broadcasting - We try spycraft with a set of espionage themed stories covering everything from the latest troubles at Kaspersky to the implications of responsible disclosure at the NSA, a fascinating discussion of the ethics of running a data breach search service. - - no - 1:49:35 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/119041/spy-tapes-techsnap-340/ - - Laying Internet Pipe | TechSNAP 339 - http://feedproxy.google.com/~r/techsnapmp3/~3/4lTp6RiTLRw/ - <p>We cover the problematic implications of SESTA, the latest internet regulations proposed in the US, plus some PR troubles for CBS's Showtime after cryptocoin mining software was found embedded in their webpage & Dan gets excited as we discuss why tape-powered backups are still important for many large organizations.</p> - -<p>And of course your feedback, a fantastic round-up & so much more on this week's episode of TechSNAP!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/4lTp6RiTLRw" height="1" width="1" alt=""/> - Thu, 05 Oct 2017 15:45:58 -0700 - - 23F5A263-67E1-4372-85BF-15875915C96E - Jupiter Broadcasting - We cover the problematic implications of SESTA, plus some PR troubles for CBS's Showtime after cryptocoin mining software was found embedded in their webpage & why tape-powered backups are still important for many large organizations. - - no - 1:14:37 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/118836/laying-internet-pipe-techsnap-339/ - - Patch Your S3it | TechSNAP 338 - http://feedproxy.google.com/~r/techsnapmp3/~3/3ZedEjnOYFY/ - <p>Distrustful US allies further delay the NSA’s new crypto, Viacom’s leaky buckets almost expose its entire IT infrastructure, plus a few more Equifax mishaps & a government spyware tool that might just be masquerading as your favorite app.</p> - -<p>And of course your feedback, a fantastic round-up & so much more on this week's episode of techsnap!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/3ZedEjnOYFY" height="1" width="1" alt=""/> - Wed, 27 Sep 2017 00:44:19 -0700 - - 9BD33842-C8E6-4C09-8DAA-A94AFDC619ED - Jupiter Broadcasting - Distrustful US allies further delay the NSA’s new crypto, Viacom’s leaky buckets almost expose its entire IT infrastructure, plus a few more Equifax mishaps & a government spyware tool that might just be masquerading as your favorite app. - - no - 1:07:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/118531/patch-your-s3it-techsnap-338/ - - FCC’s Free Offsite Storage | TechSNAP 337 - http://feedproxy.google.com/~r/techsnapmp3/~3/NAaXXJ-6taM/ - That Equifax hack? So last week! This weeks vulnerability is BlueBorne, a new attack on just about every bluetooth capable device. We've got the details, and what you need to know to get patched. Plus some of our favorite overlooked shell commands & a breakdown of the ACLUs recent lawsuit to protect your rights at the border.<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/NAaXXJ-6taM" height="1" width="1" alt=""/> - Tue, 19 Sep 2017 20:42:41 -0700 - - 2DFF0948-13E1-464B-948B-FD81B0356EF5 - Jupiter Broadcasting - That Equifax hack? So last week! This weeks vulnerability is BlueBorne, a new attack on just about every bluetooth capable device. Plus some favorite overlooked shell commands, a breakdown of the ACLUs lawsuit to protect your rights at the border & more! - - - no - 1:06:01 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/118386/fccs-free-offsite-storage-techsnap-337/ - - Equihax | TechSNAP 336 - http://feedproxy.google.com/~r/techsnapmp3/~3/yq_ROJBC6N8/ - Equifax got hacked, some top tips for staying safe & a debate over just who's to blame for vulnerable open source software. Then Google's breaking up with Symantec & we take a little time for Sysadmin 101, this time, ticketing systems.<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/yq_ROJBC6N8" height="1" width="1" alt=""/> - Tue, 12 Sep 2017 23:56:34 -0700 - - 490C5352-E6BF-470C-8E48-692D20E47D04 - Jupiter Broadcasting - Equifax got hacked, some top tips for staying safe & a debate over just who's to blame for vulnerable open source software. Then Google's breaking up with Symantec & we take a little time for Sysadmin 101, this time, ticketing systems. - - no - 1:28:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/118206/equihax-techsnap-336/ - - Extended Usefulness | TechSNAP 335 - http://feedproxy.google.com/~r/techsnapmp3/~3/5wrXuUdcPYs/ - We're extending your filesystems usefulness with extended attributes! We learn what they are & how they might be useful. Plus, we take a look behind the scenes of a major spambot operation & check in with Bruce Schneier on the state of internet privacy.<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/5wrXuUdcPYs" height="1" width="1" alt=""/> - Tue, 05 Sep 2017 22:23:35 -0700 - - 6FB762CB-81A4-44D6-9CBF-4F8669355B06 - Jupiter Broadcasting - We're extending your filesystems usefulness with extended attributes! We learn what they are & how they might be useful. Plus, we take a look behind the scenes of a major spambot operation & check in with Bruce Schneier on the state of internet privacy. - - no - 1:35:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/118036/extended-usefulness-techsnap-335/ - - HPKP: Hard to Say, Hard to Use | TechSNAP 334 - http://feedproxy.google.com/~r/techsnapmp3/~3/nQZbKLZ5OjQ/ - We discuss, and struggle to pronounce, the difficulties in deploying HTTP public key pinning & some possible alternatives you should consider. Then we get excited for (n+1)sec, a new protocol for distributed multiparty chat encryption & explore the nuances of setting up home VPN gateway!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/nQZbKLZ5OjQ" height="1" width="1" alt=""/> - Tue, 29 Aug 2017 23:00:07 -0700 - - 52C642F6-C12B-40AA-A740-12F311979B2C - Jupiter Broadcasting - We discuss, and struggle to pronounce, the difficulties in deploying HTTP public key pinning & some possible alternatives you should consider. Then we get excited for (n+1)sec & explore the nuances of setting up home VPN gateway! - - no - 1:24:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/117826/hpkp-hard-to-say-hard-to-use-techsnap-334/ - - Rsync On Ice | TechSNAP 333 - http://feedproxy.google.com/~r/techsnapmp3/~3/M1IB8ShcfEE/ - <p>We take a trip to the ends of the earth and hear some stories of tech support in Antarctica, cover a surprisingly reasonable new suggested standard for responsible disclosure & discuss Kreb's latest adventures in the world of deep-insert credit card skimmers.</p> - -<p>And of course your feedback, a fantastic round-up & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/M1IB8ShcfEE" height="1" width="1" alt=""/> - Fri, 25 Aug 2017 08:31:57 -0700 - - 7A5F1852-0EA4-435E-9ECD-9077D85733CC - Jupiter Broadcasting - We take a trip to the ends of the earth and hear stories of tech support in Antarctica, cover a surprisingly reasonable new suggested standard for responsible disclosure, discuss Kreb's adventures in the world of deep-insert credit card skimmers & more! - - no - 1:34:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/117696/rsync-on-ice-techsnap-333/ - - Leaky Pumps | TechSNAP 332 - http://feedproxy.google.com/~r/techsnapmp3/~3/GblfDzTkzyg/ - <p>With some clever new card skimmer tech we’ve got one more reason to watch your wallet at the gas pump, plus a few handy recommendations for postgres migrations & Dan dives deep into his quest for the ultimate boot and nuke experience. </p> - -<p>Plus your feedback, a fantastic round-up & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/GblfDzTkzyg" height="1" width="1" alt=""/> - Wed, 16 Aug 2017 00:37:56 -0700 - - 304638F6-1A30-49FC-8F5B-749C9499EED8 - Jupiter Broadcasting - With some new card skimmer tech that’s more reason to watch your wallet at the pump, a few tips for postgres migrations & Dan dives deep into his quest for the ultimate boot and nuke experience. - -Plus your feedback, a fantastic round-up & so much more! - - no - 1:28:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/117451/leaky-pumps-techsnap-332/ - - BTRFS is Toast | TechSNAP 331 - http://feedproxy.google.com/~r/techsnapmp3/~3/VMb7SIyY120/ - <p>We discuss just how hard, or not, responsible disclosure really is, share some sad news about the status of BTRFS on RHEL, a few more reasons to use ZFS.</p> - -<p>Then, we find out if our passwords have been cracked, reveal Dan’s password hashes live on air & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/VMb7SIyY120" height="1" width="1" alt=""/> - Tue, 08 Aug 2017 23:43:58 -0700 - - 8E68E5EF-2A81-4F68-8CC1-54958EA71733 - Jupiter Broadcasting - We discuss just how hard, or not, responsible disclosure really is, share some sad news about the status of BTRFS on RHEL, a few more reasons to use ZFS. - -Then, we find out if our passwords have been cracked, reveal Dan’s password hashes live & more! - - no - 1:24:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/117276/btrfs-is-toast-techsnap-331/ - - Netflix Lab Rats | TechSNAP 330 - http://feedproxy.google.com/~r/techsnapmp3/~3/TQAK-zLO4mI/ - <p>Dan does some sleuthing & finds that the story of a major data leak isn't quite what it seems, then a new Talos report that shows a large number of unpatched & unprotected memcached servers. We discuss just how bad that might be. Plus, between some excellent feedback & Dan's recent adventures, we've got a itty bitty ZFS deep dive.</p> - -<p>And of course your feedback, a fantastic round-up & so much more on this week's episode of TechSNAP.</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/TQAK-zLO4mI" height="1" width="1" alt=""/> - Wed, 02 Aug 2017 00:18:03 -0700 - - 7A7B04AF-983F-445E-82B8-B4ADD4E5B30B - Jupiter Broadcasting - Dan finds a story of a major data leak isn't quite what it seems, a new Talos report that shows a large number of unpatched & unprotected memcached servers. Plus, between some excellent feedback & Dan's adventures, we've got a itty bitty ZFS deep dive. - - no - 1:21:26 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/117101/netflix-lab-rats-techsnap-330/ - - Teeny Weeny DNS Server | TechSNAP 329 - http://feedproxy.google.com/~r/techsnapmp3/~3/Gs9tgClZRD0/ - We've got the latest on some mysterious mac malware that's been lurking for years, a handy new tool to help you monitor, backup and generally work with your DNS infrastructure & possibly more problems for Symantec, the certificate authority who just can't seem to get things right.<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Gs9tgClZRD0" height="1" width="1" alt=""/> - Tue, 25 Jul 2017 23:28:58 -0700 - - 01349BC8-D756-4FED-B00D-9158E51EF87A - Jupiter Broadcasting - Some mysterious mac malware that's been lurking for years, a new tool to help you monitor, backup and generally work with your DNS infrastructure & possibly more problems for Symantec, the certificate authority who just can't seem to get things right. - - no - 1:21:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/116921/teeny-weeny-dns-server-techsnap-329/ - - LetsEncrypt is a SNAP | TechSNAP 328 - http://feedproxy.google.com/~r/techsnapmp3/~3/6twiDPUoJL0/ - <p>The recent ‘Devil’s Ivy’ vulnerability has caused quite a rash in the security journalism community. Is it as bad as poison ivy or just a bunch of hyperbole? We discuss. Plus you’ve heard of public key encryption, but what lies beyond? We cover some possible alternatives and the problem of identity.</p> - -<p>Then Dan’s got the latest on his Let’s encrypt setup including a brand new open source tool you too can use!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/6twiDPUoJL0" height="1" width="1" alt=""/> - Tue, 18 Jul 2017 23:49:14 -0700 - - 88E5C9EB-105E-4DA1-8A7D-D2B002913AA5 - Jupiter Broadcasting - The recent ‘Devil’s Ivy’ vulnerability has caused quite a rash in the security journalism community. We discuss. Plus you’ve heard of public key encryption, but what lies beyond? We cover some possible alternatives and the problem of identity & more! - - no - 1:36:03 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/116736/letsencrypt-is-a-snap-techsnap-328/ - - Unsecured IO | TechSNAP 327 - http://feedproxy.google.com/~r/techsnapmp3/~3/LIBkV5IfmBU/ - <p>GNUPG has just released a fix for a dangerous side-channel attack that could expose your private key, a leak of NASDAQ test data was picked up by real news organizations and caused a bit of a panic & the fascinating story of a security researched who managed to take over all .io domains with a little sleuthing and a few domain registrations.</p> - -<p>Plus Dan's got so much new stuff it has its own segment, and of course your feedback, a fantastic round-up & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/LIBkV5IfmBU" height="1" width="1" alt=""/> - Wed, 12 Jul 2017 01:14:15 -0700 - - 358C04A2-5F50-4341-B0FE-66FCB643BF0A - Jupiter Broadcasting - GNUPG has just released a fix for a dangerous side-channel attack, a leak of NASDAQ test data was picked up by real news organizations and caused a bit of a panic, a security researched who managed to take over all .io domains & more! - - no - 1:43:54 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/116571/unsecured-io-techsnap-327/ - - Broadband from Space | TechSNAP 326 - http://feedproxy.google.com/~r/techsnapmp3/~3/xWJhlPVxzAI/ - A new satellite broadband ISP has approval to serve the US, are their low-latency claims too good to be true? UK Law enforcement claims that visiting the dark web is a potential sign of terrorism, watch out tor users! Then we follow a Krebs’ deep dive into the wild world of robocalls. -<br /> -<p>Plus Dan’s latest Let’s Encrypt updates, your fantastic feedback, a robust roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/xWJhlPVxzAI" height="1" width="1" alt=""/> - Tue, 04 Jul 2017 23:54:02 -0700 - - 535A1C7F-B8A6-493F-88F1-0210E049A3F0 - Jupiter Broadcasting - A new satellite broadband ISP has approval to serve the US, UK Law enforcement claims that visiting the dark web is a potential sign of terrorism & a Krebs’ deep dive into the wild world of robocalls. Plus Dan’s latest Let’s Encrypt updates & more! - - no - 1:36:54 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/116356/broadband-from-space-techsnap-326/ - - Google Reads Your Email | TechSNAP 325 - http://feedproxy.google.com/~r/techsnapmp3/~3/R9hCTrnj3oU/ - <p>We go to air just as a massive cyberattack strikes Europe, Google stops reading your email, well sorta maybe & we discuss the latest debate over US government access to overseas data.</p> - -<p>Plus some fantastic feedback, a robust roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/R9hCTrnj3oU" height="1" width="1" alt=""/> - Tue, 27 Jun 2017 21:25:24 -0700 - - 5858B530-04BF-4B16-89D8-EEFB0FC8F0D1 - Jupiter Broadcasting - We go to air just as a massive cyberattack strikes Europe, Google stops reading your email, well sorta maybe & we discuss the latest debate over US government access to overseas data. - -Plus some fantastic feedback, a robust roundup & so much more! - - no - 1:21:08 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/116171/google-reads-your-email-techsnap-325/ - - DNS Mastery | TechSNAP 324 - http://feedproxy.google.com/~r/techsnapmp3/~3/L0YVB0G_9Ic/ - <p>We’ve got the latest on the ‘Stack Crash’ vulnerability affecting a UNIX OS near you. Plus thanks to a recent RNC data leak we’ve got your name, address, birthday & a lot more personal information!</p> - -Then Dan does a deep dive on his DNS infrastructure, some recent improvements & his integration with Let’s Encrypt. -<br /> -<p>Plus some fantastic feedback, a robust roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/L0YVB0G_9Ic" height="1" width="1" alt=""/> - Tue, 20 Jun 2017 23:07:31 -0700 - - B32668AF-27C1-43E3-A9B5-C82CEE28786C - We’ve got the latest on the ‘Stack Crash’ vulnerability affecting UNIX OSes. Plus thanks to a recent RNC data leak we’ve got your name, address, birthday & a lot more personal information! Then Dan does a deep dive on his DNS infrastructure & more! - - no - 1:42:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)chris@jupiterbroadcasting.comAnalysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/115931/dns-mastery-techsnap-324/ - - Comment & Control | TechSNAP 323 - http://feedproxy.google.com/~r/techsnapmp3/~3/DL2i2SwTTF0/ - Dan's back from BSDCAN with peanut butter, taps, and a new library that's the source of all truth. Then we've got the story of Britney Spears latest career move: controlling botnets through Instagram comments & Dan teaches us about steganography and how it helped catch an NSA leaker. -<br /> -<p>Plus some fantastic feedback, a robust roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/DL2i2SwTTF0" height="1" width="1" alt=""/> - Wed, 14 Jun 2017 04:27:16 -0700 - - 131ED4E6-1807-4280-AB90-720D495B8491 - Jupiter Broadcasting - Peanut butter, taps & a new library that's the source of all truth. Then the story of Britney Spears latest career move: controlling botnets through Instagram comments & Dan teaches us about steganography and how it helped catch an NSA leaker. - - no - 1:38:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/115766/comment-control-techsnap-323/ - - #NotMyInternet | TechSNAP 322 - http://feedproxy.google.com/~r/techsnapmp3/~3/u0yxtJK1UKw/ - We discuss who really controls the internet & just how centralized and potentially vulnerable it has become. Plus the latest security letdowns from Windows 10, the story of a questionably ethical hacker & Zomato's data breach. -<br /> -<p>Plus some fantastic feedback, a robust roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/u0yxtJK1UKw" height="1" width="1" alt=""/> - Tue, 06 Jun 2017 21:33:42 -0700 - - 93C5196A-692F-4738-B73F-F8983B2FAE0C - Jupiter Broadcasting - We discuss who really controls the internet & just how centralized and potentially vulnerable it has become. Plus the latest security letdowns from Windows 10, the story of a questionably ethical hacker & Zomato's data breach & so much more! - - no - 1:37:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/115351/notmyinternet-techsnap-322/ - - A Burrito Stole My Money | TechSNAP 321 - http://feedproxy.google.com/~r/techsnapmp3/~3/iIKdHvqBkkI/ - Not only is the UK leaving the Eurozone, they are starting their own internet, this time with more surveillance! Then we’ve got some top tips on getting recruited by the Israeli NSA & the details of some new WannaCry wannabes that may be infecting a windows server near you. -<br /> -<p>Plus some fantastic feedback, a robust roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/iIKdHvqBkkI" height="1" width="1" alt=""/> - Tue, 30 May 2017 22:37:52 -0700 - - B6523917-CD35-4F76-BE43-B6D81F7E7733 - Jupiter Broadcasting - Not only is the UK leaving the Eurozone, they’re starting their own internet with more surveillance! Then some top tips on getting recruited by the Israeli NSA & the details of some new WannaCry wannabes that may be infecting a windows server near you. - - - no - 1:24:22 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/115216/a-burrito-stole-my-money-techsnap-321/ - - Kill Switch Engage | TechSNAP 320 - http://feedproxy.google.com/~r/techsnapmp3/~3/cIA-TJDyt0E/ - <p>We've got another round of WannaCry analysis, the latest on the FCCs battle over Net neutrality. Then IPv6 Tunnels & you, a 2017 check-in.</p> - -<p>Plus some fantastic feedback, a robust roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/cIA-TJDyt0E" height="1" width="1" alt=""/> - Tue, 23 May 2017 19:18:50 -0700 - - 64B3A9D1-23F0-4AE9-B8EB-4FFEBD0A0BB6 - Jupiter Broadcasting - We've got another round of WannaCry analysis, the latest on the FCCs battle over Net neutrality. Then IPv6 Tunnels & you, a 2017 check-in. - -Plus some fantastic feedback, a robust roundup & so much more! - - no - 1:18:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/115001/kill-switch-engage-techsnap-320/ - - When IT Security Cries | TechSNAP 319 - http://feedproxy.google.com/~r/techsnapmp3/~3/R4pwGVJL0-s/ - <p>The WannaCry Worm has brought the world to tears. We've got the latest details, conspiracy theories, fallout & some tissues.</p> - -<p>Plus a keylogger that may be hiding in your audio driver, some great hardware recommendations from the audience, your great feedback, a hard hitting round up & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/R4pwGVJL0-s" height="1" width="1" alt=""/> - Tue, 16 May 2017 22:38:57 -0700 - - 0CB2FB98-8A0B-4B0B-BDA2-A08390272C71 - Jupiter Broadcasting - The WannaCry Worm has brought the world to tears. We've got the latest details, conspiracy theories, fallout & some tissues. - -Plus a keylogger that may be hiding in your audio driver, some great hardware recommendations from the audience & so much more! - - no - 1:20:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/114721/when-it-security-cries-techsnap-319/ - - All Drives Die | TechSNAP 318 - http://feedproxy.google.com/~r/techsnapmp3/~3/VBZvzGd4ycg/ - <p>Turns out you've been doing passwords wrong, but don't worry, we've got the latest and greatest guidance from NIST. Plus the latest numbers from BackBlaze with some interesting conclusions about enterprise drives.</p> - -<p>Then the details about that google docs worm everyone's talking about, some top tips to stay safe & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/VBZvzGd4ycg" height="1" width="1" alt=""/> - Tue, 09 May 2017 21:42:09 -0700 - - 4ADFDB3A-C52D-4F57-B5D8-C3B79E3017AE - Jupiter Broadcasting - Turns out you've been doing passwords wrong, we've got guidance from NIST. Plus the latest numbers from BackBlaze with some interesting conclusions. - -Then, that google docs worm everyone's talking about, some top tips to stay safe & so much more! - - no - 1:19:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/114566/all-drives-die-techsnap-318/ - - Some Fishy Chips | TechSNAP 317 - http://feedproxy.google.com/~r/techsnapmp3/~3/3zoJjgWZ3LE/ - <p>Intel's patched a remote execution exploit that’s been lurking in their chips for the past nine years, we’ve got the details & some handy tips to check if you’re affected. Then Dan does a deep dive into friend of the show Tarsnap: what it is, how to use it & why it’s so awesome. Plus we discuss when we use external services versus building ourselves & a few tips for lightweight backup solutions that might work for you.</p> - -<p>Then your fantastic feedback, a riotous roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/3zoJjgWZ3LE" height="1" width="1" alt=""/> - Wed, 03 May 2017 02:53:47 -0700 - - 5077500E-5265-480D-9E29-4069FA05D1BC - Jupiter Broadcasting - Intel's patched a remote execution exploit that’s been lurking in their chips for the past nine years. Then Dan does a deep dive into friend of the show Tarsnap. Plus we discuss when we use external services versus building ourselves & much more! - - no - 1:38:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/114371/some-fishy-chips-techsnap-317/ - - PHP Steals Your Nuts | TechSNAP 316 - http://feedproxy.google.com/~r/techsnapmp3/~3/3XSykcLcRik/ - The squirrels have gotten in the mailbag as the guys discuss an unfortunate new vulnerability in Squirrelmail. Plus an interesting new entrant to the anonymous domain name space from some of the internet’s most famous rabble rousers. Then Dan & Wes get just a bit jealous of Canada’s new take on net neutrality & more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/3XSykcLcRik" height="1" width="1" alt=""/> - Wed, 26 Apr 2017 00:04:08 -0700 - - 5AE1CB2E-8C22-4479-9379-DA2AD42A4693 - Jupiter Broadcasting - The guys discuss an unfortunate new vulnerability in Squirrelmail. Plus a new entrant to the anonymous domain name space from some of the internet’s most famous rabble rousers. Then Dan & Wes get a bit jealous of Canada’s take on net neutrality & more! - - no - 1:42:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/114206/php-steals-your-nuts-techsnap-316/ - - Tales of FileSystems | TechSNAP 315 - http://feedproxy.google.com/~r/techsnapmp3/~3/WQuqqUgOfxs/ - <p>We’ve got the latest gossip on Apple’s brand new filesystem & why you should care! Plus Dan dives deep into the wonderful world of ZFS and FreeBSD jails & shows us how he is putting them to use in his latest server build.</p> - -<p>Plus it’s your fantastic feedback, a riotous roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/WQuqqUgOfxs" height="1" width="1" alt=""/> - Tue, 18 Apr 2017 21:57:56 -0700 - - 919B9614-2A41-4544-9BDB-6514D7487C65 - Jupiter Broadcasting - We’ve got the latest gossip on Apple’s brand new filesystem, Plus Dan dives deep into the world of ZFS and FreeBSD jails & shows us how he is putting them to use in his latest server build. - -Plus your fantastic feedback, a riotous roundup & so much more! - - no - 1:36:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/113981/tales-of-filesystems-techsnap-315/ - - Cyber Liability | TechSNAP 314 - http://feedproxy.google.com/~r/techsnapmp3/~3/Qw9YvALcXl8/ - <p>We cover some fascinating new research that can steal your phone’s PIN using just the on-board sensors. Then we cover how computer security is broken from top to bottom and Dan does another deep dive, this time on everyone’s favorite database, PostgresSQL.</p> - -<p>Plus it’s your feedback, a huge roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Qw9YvALcXl8" height="1" width="1" alt=""/> - Wed, 12 Apr 2017 03:13:41 -0700 - - 99470104-3B5B-49BD-8C95-4180DC77493A - Jupiter Broadcasting - We cover some new research that can steal your phone’s PIN using just the on-board sensors. Then we cover how computer security is broken from top to bottom, Dan does another deep dive, this time on everyone’s favorite database, PostgresSQ & more! - - no - 1:44:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/113781/cyber-liability-techsnap-314/ - - Wifi Stack Overfloweth | TechSNAP 313 - http://feedproxy.google.com/~r/techsnapmp3/~3/V2ix0lgBCHk/ - <p>Your Wifi Stack is under attack! But dont worry, Apple’s got the patch & we’ve got the story. Then the latest ATM hacking tips that will only cost you $15 & Dan does a deep dive into Let’s Encrypt!</p> - -<p>Plus it’s your feedback, a huge roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/V2ix0lgBCHk" height="1" width="1" alt=""/> - Wed, 05 Apr 2017 02:04:35 -0700 - - 32951009-A775-4AA3-8780-619AD9C9749D - Jupiter Broadcasting - Your Wifi Stack is under attack! But dont worry, Apple’s got the patch & we’ve got the story. Then the latest ATM hacking tips that will only cost you $15 & Dan does a deep dive into Let’s Encrypt! - -Plus it’s your feedback, a huge roundup & so much more! - - no - 1:41:34 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/113571/wifi-stack-overfloweth-techsnap-313/ - - Privacy is Dead | TechSNAP 312 - http://feedproxy.google.com/~r/techsnapmp3/~3/CMmvfW88JHg/ - <p>This week, we sell your private browsing history to the highest bidder! Oh wait, that’s your ISP! We cover the latest rollback of internet privacy regulations in the US, plus the surprisingly uplifting story of script kiddies getting their day in court, Dan does a not-so-deep dive into ZFS & explains why you should already be using it.</p> - -<p>Plus it’s your feedback, a huge roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/CMmvfW88JHg" height="1" width="1" alt=""/> - Wed, 29 Mar 2017 01:34:54 -0700 - - 5E50C834-89DB-4219-8EC0-C0E948201876 - Jupiter Broadcasting - This week, we cover the latest rollback of internet privacy regulations in the US, plus the story of script kiddies getting their day in court & Dan does a not-so-deep dive into ZFS . - -Plus it’s your feedback, a huge roundup & so much more! - - no - 1:42:50 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/113306/privacy-is-dead-techsnap-312/ - - Check Yo Checksum | TechSNAP 311 - http://feedproxy.google.com/~r/techsnapmp3/~3/OTc-DWvKA9c/ - <p>The guys break with the usual format & turn things over to Dan for a deep deep dive on Bacula! Then it’s the latest Yahoo hack news & a few more reasons you should already be using ZFS.</p> - -<p>Plus it’s your feedback, a huge roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/OTc-DWvKA9c" height="1" width="1" alt=""/> - Wed, 22 Mar 2017 02:11:34 -0700 - - 42DA225B-4041-4E04-8556-A0B534C6C67C - Jupiter Broadcasting - The guys break with the usual format & turn things over to Dan for a deep deep dive on Bacula! Then it’s the latest Yahoo hack news & a few more reasons you should already be using ZFS. - -Plus it’s your feedback, a huge roundup & so much more! - - no - 2:01:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/107681/check-yo-checksum-techsnap-311/ - - Don’t Panic & P your S | TechSNAP 310 - http://feedproxy.google.com/~r/techsnapmp3/~3/OkH7iJQOcxY/ - We crack open Vault 7 & are a little let down by what's inside, give you one more reason you should already be using ZFS & just when you thought you could trust your phone again, we’ve got the story of preinstalled Android malware. Then it’s your feedback, a huge roundup & so much more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/OkH7iJQOcxY" height="1" width="1" alt=""/> - Tue, 14 Mar 2017 23:10:36 -0700 - - 9B9F2E5D-7653-4E79-85DA-4A11D4B0D6D8 - Jupiter Broadcasting - We crack open Vault 7 & are let down by what's inside, give you one more reason you should already be using ZFS & you thought you could trust your phone again, we’ve got the story of preinstalled Android malware. Then it’s feedback, the roundup & more! - - no - 1:27:49 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/107531/dont-panic-p-your-s-techsnap-310/ - - Bad Boy Backups | TechSNAP 309 - http://feedproxy.google.com/~r/techsnapmp3/~3/6CdrVD0K7eo/ - <p>We’ve got the sad story of cloud-enabled toys leading to, you guessed it, leaking customer’s personal information! Plus a case of backups gone bad, but this time, it’s a good thing!</p> - -<p>Then it’s your feedback, a huge roundup, and so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/6CdrVD0K7eo" height="1" width="1" alt=""/> - Tue, 07 Mar 2017 21:48:59 -0800 - - 2A8C0656-0A25-4A2D-8363-E1AE2626091B - Jupiter Broadcasting - We’ve got the sad story of cloud-enabled toys leading to, you guessed it, leaking customer’s personal information! Plus a case of backups gone bad, but this time, it’s a good thing! - -Then it’s your feedback, a huge roundup, and so much more! - - no - 1:30:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/107361/bad-boy-backups-techsnap-309/ - - Cloudy with a Chance of Leaks | TechSNAP 308 - http://feedproxy.google.com/~r/techsnapmp3/~3/XXWrp_riJZY/ - <p>Google heard you like hashes so they broke SHA1, we've got the details.</p> - -<p>Plus we dive in to Cloudflare's data disaster, Dan shows us his rack, your feedback, a huge roundup & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/XXWrp_riJZY" height="1" width="1" alt=""/> - Tue, 28 Feb 2017 21:40:13 -0800 - - 27A9FEB4-08B4-4175-A6A9-0A1A8D2BDE97 - Jupiter Broadcasting - Google heard you like hashes so they broke SHA1, we've got the details. - -Plus we dive in to Cloudflare's data disaster, Dan shows us his rack, your feedback, a huge roundup & so much more! - - no - 1:21:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/107191/cloudy-with-a-chance-of-leaks-techsnap-308/ - - State Sponsored Audiophiles | TechSNAP 307 - http://feedproxy.google.com/~r/techsnapmp3/~3/gzqsFNUd1PU/ - <p>The details on the latest WordPress vulnerability, then the surprising, or perhaps not so surprising takeover of a cybersecurity firms website & watch out, hacker's may be using your microphone to steal your data!</p> - -<p>Plus a packed roundup, your feedback & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/gzqsFNUd1PU" height="1" width="1" alt=""/> - Tue, 21 Feb 2017 21:44:00 -0800 - - 8ED56ED6-D8D5-47B9-B1CA-80D78DB58E4D - Jupiter Broadcasting - The details on the latest WordPress vulnerability, then the perhaps not so surprising takeover of a cybersecurity firms website & watch out, hacker's may be using your microphone to steal your data! - -Plus a packed roundup, your feedback & so much more! - - no - 1:07:03 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/107016/state-sponsored-audiophiles-techsnap-307/ - - Metadata Matters | TechSNAP 306 - http://feedproxy.google.com/~r/techsnapmp3/~3/sKiDHtkBNsg/ - <p>The latest on just who has access to your private email, Dan dives deep on the GitLab Postmortem & did you know that Transport for London has been tracking your wifi? We’ve got the details.</p> - -<p>Plus a packed roundup, your feedback & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/sKiDHtkBNsg" height="1" width="1" alt=""/> - Wed, 15 Feb 2017 00:11:40 -0800 - - 810F2BA3-6C7E-4C4D-A2DF-10C715D049D4 - Jupiter Broadcasting - The latest on just who has access to your private email, Dan dives deep on the GitLab Postmortem & did you know that Transport for London has been tracking your wifi? We’ve got the details. - -Plus a packed roundup, your feedback & so much more! - - no - 1:57:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/106886/metadata-matters-techsnap-306/ - - Gambling with Code | TechSNAP 305 - http://feedproxy.google.com/~r/techsnapmp3/~3/UFQbYcvrekw/ - <p>We’ve got the latest on GitLabs data disaster, a clever new method to cheat at the slots & a new Netgear exploit thats coming for your network!</p> - -<p>Plus your feedback, a giant roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/UFQbYcvrekw" height="1" width="1" alt=""/> - Tue, 07 Feb 2017 23:52:21 -0800 - - AA14B4E3-B9CF-44CD-AE65-1484B5282FC3 - Jupiter Broadcasting - We’ve got the latest on GitLabs data disaster, a clever new method to cheat at the slots & a new Netgear exploit thats coming for your network! - -Plus your feedback, a giant roundup & much, much more! - - no - 1:45:08 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/106721/gambling-with-code-techsnap-305/ - - Three C's to Tweet By | TechSNAP 304 - http://feedproxy.google.com/~r/techsnapmp3/~3/7b_TLwC3V2E/ - <p>The guys cover Dropbox bugs that could be holding on to your deleted files, explain what the heck ATM ‘shimmers’ are & talk about how to keep your secret identity secret.</p> - -<p>Plus your feedback, a packed roundup & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/7b_TLwC3V2E" height="1" width="1" alt=""/> - Wed, 01 Feb 2017 01:25:19 -0800 - - FC4CA247-AA35-4B56-8318-3222EE557B66 - Jupiter Broadcasting - The guys cover Dropbox bugs that could be holding on to your deleted files, explain what the heck ATM ‘shimmers’ are & talk about how to keep your secret identity secret. - -Plus your feedback, a packed roundup & much more! - - no - 1:38:04 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/106551/three-cs-to-tweet-by-techsnap-304/ - - DDos Mafia | TechSNAP 303 - http://feedproxy.google.com/~r/techsnapmp3/~3/-FvSwTt-J7o/ - A remote vulnerability in Ansible has been patched, the latest updates on the Mirai botnet, our first TechSNAP challenge, your feedback, a gigantic roundup & so much more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/-FvSwTt-J7o" height="1" width="1" alt=""/> - Tue, 24 Jan 2017 22:42:17 -0800 - - B3675005-B84C-49B4-A7C2-3E0556691505 - Jupiter Broadcasting - A remote vulnerability in Ansible has been patched, the latest updates on the Mirai botnet, our first TechSNAP challenge, your feedback, a gigantic roundup & so much more! - - no - 1:03:28 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/106411/ddos-mafia-techsnap-303/ - - Internet of Voice Triggers | TechSNAP 302 - http://feedproxy.google.com/~r/techsnapmp3/~3/bVyWnJe2DSk/ - <p>The Github enterprise SQL scare, malware that lives in your browser, Dan’s mail server war story, your feedback, a righteous roundup & more!</p> - -<p>Note: This is a shorter episode because the hosts are new and the first recording was also a double episode recording, expect them to get longer as the guys get more comfortable!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/bVyWnJe2DSk" height="1" width="1" alt=""/> - Tue, 17 Jan 2017 07:43:18 -0800 - - CEBCF7B1-3D39-43CF-AEAC-27C7ADC18B9D - Jupiter Broadcasting - The Github enterprise SQL scare, malware that lives in your browser, Dan’s mail server war story, your feedback, a righteous roundup & more! - -Note: Shorter episode because the guys are new and as also a double recording, expect longer episodes over time! - - no - 37:34 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/106226/internet-of-voice-triggers-techsnap-302/ - - The Next Generation | TechSNAP 301 - http://feedproxy.google.com/~r/techsnapmp3/~3/7olqcLTqpkw/ - <p>Malware that evades blocking systems and getting into BSD for the first time.</p> - -<p>Plus a fresh round up, your questions & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/7olqcLTqpkw" height="1" width="1" alt=""/> - Tue, 10 Jan 2017 21:22:09 -0800 - - 2E9AD9A8-0001-45FE-8D87-0EE2A6097784 - Jupiter Broadcasting - Malware that evades blocking systems and getting into BSD for the first time. - -Plus a fresh round up, your questions & much, much more! - - no - 38:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/106086/the-next-generation-techsnap-301/ - - 2089 Days Uptime | TechSNAP 300 - http://feedproxy.google.com/~r/techsnapmp3/~3/50YQDo15-4k/ - <p>How the hack of DigiNotar changed the infrastructure of the Internet forever, changing the way we think about security & how to hide malware in a PNG.</p> - -<p>Plus a packed round up, great emails & more in a packed 300th episode!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/50YQDo15-4k" height="1" width="1" alt=""/> - Thu, 05 Jan 2017 21:11:40 -0800 - - 85B9FE8E-BBE5-4743-A6E4-DE1843D9C31F - Jupiter Broadcasting - How the hack of DigiNotar changed the infrastructure of the Internet forever, changing the way we think about security & how to hide malware in a PNG. - -Plus a packed round up, great emails & more in a packed 300th episode! - - no - 2:13:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/106026/2089-days-uptime-techsnap-300/ - - Fancy Bear Misfire.apk | TechSNAP 299 - http://feedproxy.google.com/~r/techsnapmp3/~3/8RMYiSLdDX8/ - <p>PHPMailer puts almost every PHP CMS at risk, the Fancy Bear Android Malware that has a complicated past & the new botnet that likes brag.</p> - -<p>Plus great questions, a packed round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/8RMYiSLdDX8" height="1" width="1" alt=""/> - Thu, 29 Dec 2016 18:44:14 -0800 - - B1B837EA-5074-42D0-A1D7-FBD3FF7BF2F6 - Jupiter Broadcasting - PHPMailer puts almost every PHP CMS at risk, the Fancy Bear Android Malware that has a complicated past & the new botnet that likes brag. - -Plus great questions, a packed round up & much, much more! - - no - 1:33:10 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/105816/fancy-bear-misfire-apk-techsnap-299/ - - Best of 2016 | TechSNAP 298 - http://feedproxy.google.com/~r/techsnapmp3/~3/rSRfp3Bb8_I/ - We've given the Jupiter Broadcasting staff the holidays off, so lets take this moment to have a look back at some of the best moments of TechSNAP in 2016!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/rSRfp3Bb8_I" height="1" width="1" alt=""/> - Thu, 22 Dec 2016 10:40:03 -0800 - - E96BEA4A-083E-44F0-96C7-FC1902C25D99 - Jupiter Broadcasting - We've given the Jupiter Broadcasting staff the holidays off, so lets take this moment to have a look back at some of the best moments of TechSNAP in 2016! - - no - 1:30:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/105646/best-of-2016-techsnap-298/ - - The Bourne Avalanche | TechSNAP 297 - http://feedproxy.google.com/~r/techsnapmp3/~3/m8QbYtkLvIM/ - <p>The Malvertising campaign that targets routers, script kiddies get a talking to & the Avalanche crime ringleader is on the run.</p> - -<p>Plus your questions, a packed round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/m8QbYtkLvIM" height="1" width="1" alt=""/> - Thu, 15 Dec 2016 20:19:25 -0800 - - C2DE5F02-1932-4829-BC76-B930758F70F7 - Jupiter Broadcasting - The Malvertising campaign that targets routers, script kiddies get a talking to & the Avalanche crime ringleader is on the run. - -Plus your questions, a packed round up & more! - - no - 1:33:04 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/105481/the-bourne-avalanche-techsnap-297/ - - Schoolhouse Exploits | TechSNAP 296 - http://feedproxy.google.com/~r/techsnapmp3/~3/GnkJb1VF4wA/ - <p>Project Zero breaks the chain, we share stories from our mischievous past & malware as a service gets busted.</p> - -<p>Plus your great questions, a packed round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/GnkJb1VF4wA" height="1" width="1" alt=""/> - Thu, 08 Dec 2016 21:39:31 -0800 - - B8406FD7-9E08-4CE9-A436-7C5E48B1138C - Jupiter Broadcasting - Project Zero breaks the chain, we share stories from our mischievous past & malware as a service gets busted. - -Plus your great questions, a packed round up & much, much more! - - no - 1:39:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/105326/schoolhouse-exploits-techsnap-296/ - - Shift+F10 and Done | TechSNAP 295 - http://feedproxy.google.com/~r/techsnapmp3/~3/egMXU_fz1Qo/ - <p>A researcher accidentally roots Microsoft Azure’s Red Hat Update Infrastructure, newly discovered router flaw in-the-wild & hacking Windows 10 by holding down the shift key.</p> - -<p>Plus your questions, our answers & a great round up!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/egMXU_fz1Qo" height="1" width="1" alt=""/> - Thu, 01 Dec 2016 19:58:57 -0800 - - 3D6105CA-56B1-4CD4-A088-D8E76217DF08 - Jupiter Broadcasting - A researcher accidentally roots Microsoft Azure’s Red Hat Update Infrastructure, newly discovered router flaw in-the-wild & hacking Windows 10 by holding down the shift key. - -Plus your questions, our answers & a great round up! - - no - 1:34:22 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/105166/shiftf10-and-done-techsnap-295/ - - Turkey.deb | TechSNAP 294 - http://feedproxy.google.com/~r/techsnapmp3/~3/ngJNQ5IbVEY/ - <p>The Debian packaging flaw that exposes your server, we go over the state of the Internet... report that is & hacking 27% of the web.</p> - -<p>Plus some great questions, a fantastic round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/ngJNQ5IbVEY" height="1" width="1" alt=""/> - Thu, 24 Nov 2016 18:37:07 -0800 - - 146347C0-20FF-47A2-9368-F6CF459DABEE - Jupiter Broadcasting - The Debian packaging flaw that exposes your server, we go over the state of the Internet... report that is & hacking 27% of the web. - -Plus some great questions, a fantastic round up & much, much more! - - no - 1:32:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/105026/turkey-deb-techsnap-294/ - - Root in 70 Seconds | TechSNAP 293 - http://feedproxy.google.com/~r/techsnapmp3/~3/p8veB6CC7w0/ - <p>Get a root shell by holding down enter, comprising a Linux desktop using an NES & PoisonTap, the impressive little hacking tool.</p> - -<p>Plus your great questions, a poppin’ round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/p8veB6CC7w0" height="1" width="1" alt=""/> - Thu, 17 Nov 2016 23:49:30 -0800 - - 07088798-74D4-4F9C-8136-DF23448E2E5D - Jupiter Broadcasting - Get a root shell by holding down enter, comprising a Linux desktop using an NES & PoisonTap, the impressive little hacking tool. - -Plus your great questions, a poppin’ round up & much, much more! - - no - 2:05:55 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/104776/root-in-70-seconds-techsnap-293/ - - Unix Security Trifecta | TechSNAP 292 - http://feedproxy.google.com/~r/techsnapmp3/~3/_I_DipkuLGc/ - <p>It’s a trifecta of Unix vulnerabilities, our concerns with LessPass & a very valuable vulnerability.</p> - -<p>Plus your questions, our answers, a spicy round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/_I_DipkuLGc" height="1" width="1" alt=""/> - Thu, 10 Nov 2016 08:51:06 -0800 - - FA670FC3-699B-424D-955A-EB0EBA13FEE9 - Jupiter Broadcasting - It’s a trifecta of Unix vulnerabilities, our concerns with LessPass & a very valuable vulnerability. - -Plus your questions, our answers, a spicy round up & much, much more! - - no - 1:44:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/104601/unix-security-trifecta-techsnap-292/ - - Nuclear IoT Toaster | TechSNAP 291 - http://feedproxy.google.com/~r/techsnapmp3/~3/i_doq52TyS8/ - <p>We go deep into sophisticated modular malware & meet the manufacturer who vows to recall their IoT devices used in recent attacks.</p> - -<p>Plus home server questions, a fun round-up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/i_doq52TyS8" height="1" width="1" alt=""/> - Thu, 03 Nov 2016 01:50:19 -0700 - - 7B2E0A4F-4B49-4DD0-9E80-D71F28351AE1 - Jupiter Broadcasting - We go deep into sophisticated modular malware & meet the manufacturer who vows to recall their IoT devices used in recent attacks. - -Plus home server questions, a fun round-up & more! - - no - 1:08:18 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/104426/nuclear-iot-toaster-techsnap-291/ - - Internet Snow Day | TechSNAP 290 - http://feedproxy.google.com/~r/techsnapmp3/~3/L1tpQJqXstE/ - <p>A large managed DNS provider was taken down by a DDoS, we'll tell you all about Dyn’s big outage.</p> - -<p>Then we beat the dead dirty CoW, answer your questions, a breaking news round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/L1tpQJqXstE" height="1" width="1" alt=""/> - Thu, 27 Oct 2016 17:27:33 -0700 - - 131ECEB0-9245-4405-83DA-CBF93D98035D - Jupiter Broadcasting - A large managed DNS provider was taken down by a DDoS, we'll tell you all about Dyn’s big outage. - -Then we beat the dead dirty CoW, answer your questions, a breaking news round up & more! - - no - 1:23:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/104286/internet-snow-day-techsnap-290/ - - Long Broken SSL History | TechSNAP 289 - http://feedproxy.google.com/~r/techsnapmp3/~3/sWxaUvK_hsA/ - <p>Spreading the DDoS Disease & selling the cure, we have the audit results of TrueCrypt’s replacement & a comprehensive history of the most important events that shaped the SSL ecosystem.</p> - -<p>Plus your great questions, our answers & much... Much MORE!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/sWxaUvK_hsA" height="1" width="1" alt=""/> - Fri, 21 Oct 2016 00:25:01 -0700 - - 17E570EE-C1C8-4E65-AFAE-DA96F0F85F6A - Jupiter Broadcasting - Spreading the DDoS Disease & selling the cure, we have the audit results of TrueCrypt’s replacement & a comprehensive history of the most important events that shaped the SSL ecosystem. - -Plus your great questions, our answers & much... Much MORE! - - no - 2:41:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://Long%20Broken%20SSL%20History%20%7C%20TechSNAP%20289 - - Internet of Default Passwords | TechSNAP 288 - http://feedproxy.google.com/~r/techsnapmp3/~3/VHEyuogMSVs/ - The Internet of Things is the Internet of Terrible, we’ll round up the week’s stories & submit the TechSNAP solution to you the audience. Plus the security cost of Android fragmentation, great questions & a packed round up!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/VHEyuogMSVs" height="1" width="1" alt=""/> - Fri, 14 Oct 2016 01:48:55 -0700 - - 8316F4C4-F280-4102-82B7-BBF3DB55D833 - Jupiter Broadcasting - The Internet of Things is the Internet of Terrible, we’ll round up the week’s stories & submit the TechSNAP solution to you the audience. Plus the security cost of Android fragmentation, great questions & a packed round up! - - no - 1:40:03 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/103901/internet-of-default-passwords-techsnap-288/ - - Open Source Botnet | TechSNAP 287 - http://feedproxy.google.com/~r/techsnapmp3/~3/rLF3tNuCJKA/ - <p>The Source code for a historic botnet has been released, the tale of a DNS packet & four ways to hack ATMs.</p> - -<p>Plus your hard questions, our answers, a rockin' roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/rLF3tNuCJKA" height="1" width="1" alt=""/> - Thu, 06 Oct 2016 21:21:31 -0700 - - 64B3770B-51AD-424A-9989-0395D94E62DF - Jupiter Broadcasting - The Source code for a historic botnet has been released, the tale of a DNS packet & four ways to hack ATMs. - -Plus your hard questions, our answers, a rockin' roundup & more! - - no - 2:12:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/103671/open-source-botnet-techsnap-287/ - - Botnet of Things | TechSNAP 286 - http://feedproxy.google.com/~r/techsnapmp3/~3/aMoPTGlqitc/ - <p>Krebs is hit with DDoS attack & then gets kicked off of Akamai. We’ll tell you about the record breaking details, Firefox puts it foot down, picking NFS or Samba…</p> - -<p>Your questions, our answers, a packed Round Up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/aMoPTGlqitc" height="1" width="1" alt=""/> - Thu, 29 Sep 2016 20:15:58 -0700 - - 504CC113-DF48-4DEC-8367-866CAE58F9C0 - Jupiter Broadcasting - Krebs is hit with DDoS attack & then gets kicked off of Akamai. We’ll tell you about the record breaking details, Firefox puts it foot down, picking NFS or Samba… - -Your questions, our answers, a packed Round Up & much more! - - no - 2:06:57 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/103516/botnet-of-things-techsnap-286/ - - OpSec for Script Kiddies | TechSNAP 285 - http://feedproxy.google.com/~r/techsnapmp3/~3/PFQcsff5ifc/ - <p>The FBI arrests the script kiddies that hacked the CIA director, how Dropbox hacks your Mac & the guys behind a DDoS for hire service get busted.</p> - -<p>Plus great questions, our answers, a rockin roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/PFQcsff5ifc" height="1" width="1" alt=""/> - Thu, 22 Sep 2016 08:34:53 -0700 - - E99993BB-527A-4800-ADF4-668EDF08843F - Jupiter Broadcasting - The FBI arrests the script kiddies that hacked the CIA director, how Dropbox hacks your Mac & the guys behind a DDoS for hire service get busted. - -Plus great questions, our answers, a rockin roundup & more! - - no - 1:01:32 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/103321/opsec-for-script-kiddies-techsnap-285/ - - Buffalo Overflow | TechSNAP 284 - http://feedproxy.google.com/~r/techsnapmp3/~3/AsHgjIOADPg/ - <p>Massive drive failures after a datacenter gas attack. A critical MySQL vulnerability you should know about & is Cisco responsible for the death of an MMO?</p> - -<p>Plus great questions, our answers & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/AsHgjIOADPg" height="1" width="1" alt=""/> - Thu, 15 Sep 2016 17:28:09 -0700 - - 310BA38B-1547-4377-894E-DB5C6447A330 - Jupiter Broadcasting - Massive drive failures after a datacenter gas attack. A critical MySQL vulnerability you should know about & is Cisco responsible for the death of an MMO? - -Plus great questions, our answers & much more! - - no - 1:17:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/103141/buffalo-overflow-techsnap-284/ - - I Can't Believe It's Not Ethernet | TechSNAP 283 - http://feedproxy.google.com/~r/techsnapmp3/~3/N3o48xyM7ZM/ - <p>How a modified USB ethernet adapter can steal credentials, a new compression algorithm from Facebook that might be legit & the terrible terrible security of a consumer NAS.</p> - -<p>Plus great questions, our answers, a fun roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/N3o48xyM7ZM" height="1" width="1" alt=""/> - Thu, 08 Sep 2016 21:00:07 -0700 - - A80CEF4B-1B87-4630-9618-9F34AA0BBF98 - Jupiter Broadcasting - How a modified USB ethernet adapter can steal credentials, a new compression algorithm from Facebook that might be legit & the terrible terrible security of a consumer NAS. - -Plus great questions, our answers, a fun roundup & much, much more! - - no - 1:23:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/102961/i-cant-believe-its-not-ethernet-techsnap-283/ - - The Shadow Knows | TechSNAP 282 - http://feedproxy.google.com/~r/techsnapmp3/~3/sqXzykoGl5Q/ - <p>The ShadowBrokers release a batch of the NSA’s tools & we dive in. A Google login issue allows for credential theft & researchers map the Netflix content delivery network!</p> - -<p>Plus great feedback, follow up, a rockin' roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/sqXzykoGl5Q" height="1" width="1" alt=""/> - Thu, 01 Sep 2016 19:21:35 -0700 - - 981B5A0F-5B39-409C-8A61-959BB0CF6F24 - Jupiter Broadcasting - The ShadowBrokers release a batch of the NSA’s tools & we dive in. A Google login issue allows for credential theft & researchers map the Netflix content delivery network! - -Plus great feedback, follow up, a rockin' roundup & much, much more! - - no - 1:33:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/102761/the-shadow-knows-techsnap-282/ - - iPhishing Expedition | TechSNAP 281 - http://feedproxy.google.com/~r/techsnapmp3/~3/9NNSFY59Rdo/ - <p>iOS targeted malware in the wild, the simple approach to hacking electronic safes & how digital forensics prove a journalist was framed.</p> - -<p>Plus your great questions, a packed round up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/9NNSFY59Rdo" height="1" width="1" alt=""/> - Thu, 25 Aug 2016 19:49:00 -0700 - - E9A33A05-417E-4BB8-8573-653AA552C854 - Jupiter Broadcasting - iOS targeted malware in the wild, the simple approach to hacking electronic safes & how digital forensics prove a journalist was framed. - -Plus your great questions, a packed round up & much more! - - no - 1:22:01 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/102536/iphishing-expedition-techsnap-281/ - - Microsoft’s Golden Ticket | TechSNAP 280 - http://feedproxy.google.com/~r/techsnapmp3/~3/IrksA-KJm_w/ - <p>Microsoft leaks their golden key, allowing attackers to unlock secure boot systems, a security breach at Oracle exposes hundreds of companies & Linux has an embarrassing networking stack bug.</p> - -<p>Plus your questions, our answers & a packed round up!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/IrksA-KJm_w" height="1" width="1" alt=""/> - Thu, 18 Aug 2016 09:03:59 -0700 - - 6671BE33-52E3-4372-B532-074CAD41BBC7 - Jupiter Broadcasting - Microsoft leaks their golden key, allowing attackers to unlock secure boot systems, a security breach at Oracle exposes hundreds of companies & Linux has an embarrassing networking stack bug. - -Plus your questions, our answers & a packed round up! - - no - 1:38:47 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/102241/microsofts-golden-ticket-techsnap-280/ - - The Internet is Dying | TechSNAP 279 - http://feedproxy.google.com/~r/techsnapmp3/~3/YFtXi_Y-1SY/ - <p>Why the Internet needs it’s own version of cancer researchers, bypassing chip and pin protections & the 2016 Pwnie Awards from Blackhat!</p> - -<p>Plus your questions, our answers & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/YFtXi_Y-1SY" height="1" width="1" alt=""/> - Thu, 11 Aug 2016 07:08:50 -0700 - - F2B9AEB9-52B6-4C8D-AFAD-6A08771D4C9A - Jupiter Broadcasting - Why the Internet needs it’s own version of cancer researchers, bypassing chip and pin protections & the 2016 Pwnie Awards from Blackhat! - -Plus your questions, our answers & much, much more! - - no - 1:08:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/101941/the-internet-is-dying-techsnap-279/ - - Dangerous Dangling Quotes | TechSNAP 278 - http://feedproxy.google.com/~r/techsnapmp3/~3/P9JfZMZtbSs/ - <p>How to get an SSL certificate for other people's domains, how to decrypt HTTPS traffic with some javascript & the latest storage reliability report.</p> - -<p>Plus great questions & a rocking round up!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/P9JfZMZtbSs" height="1" width="1" alt=""/> - Thu, 04 Aug 2016 18:48:29 -0700 - - 2EF103D3-0DDC-4F7D-8BFC-32BFAF344BE7 - Jupiter Broadcasting - How to get an SSL certificate for other people's domains, how to decrypt HTTPS traffic with some javascript & the latest storage reliability report. - -Plus great questions & a rocking round up! - - no - 1:32:09 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/101686/dangerous-dangling-quotes-techsnap-278/ - - Internet Power Struggle | TechSNAP 277 - http://feedproxy.google.com/~r/techsnapmp3/~3/5DiTdvqg6qA/ - <p>We’re in the middle of an epic battle for power in cyberspace & Bruce Schneier breaks it down. PHP gets broken, PornHub gets hacked & the disgruntled employee who wiped the router configs on his way out the door.</p> - -<p>Plus great emails, a packed round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/5DiTdvqg6qA" height="1" width="1" alt=""/> - Thu, 28 Jul 2016 22:55:15 -0700 - - 1515255F-DBC6-42A1-97AB-B6334F511231 - Jupiter Broadcasting - We’re in an epic battle for power in cyberspace & Bruce Schneier breaks it down. PHP gets broken, PornHub gets hacked & the disgruntled employee who wiped the router configs on his way out the door. - -Plus great emails, a packed round up & more! - - no - 1:29:27 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/101521/internet-power-struggle-techsnap-277/ - - Bitmap Pox | TechSNAP 276 - http://feedproxy.google.com/~r/techsnapmp3/~3/q2fnAtpS65Y/ - <p>A new vulnerability in many websites, Oracle's Outside In Technology, Turned Inside-Out & the value of a hacked company.</p> - -<p>Plus your questions, our answers, a really great round up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/q2fnAtpS65Y" height="1" width="1" alt=""/> - Thu, 21 Jul 2016 19:19:58 -0700 - - 32E3D0F7-DEF0-4E86-9D5F-5DF6E23DE8B0 - Jupiter Broadcasting - A new vulnerability in many websites, Oracle's Outside In Technology, Turned Inside-Out & the value of a hacked company. - -Plus your questions, our answers, a really great round up & much more! - - no - 1:19:16 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/101377/bitmap-pox-techsnap-276/ - - Ending Ransomware | TechSNAP 275 - http://feedproxy.google.com/~r/techsnapmp3/~3/vke_RJWBk3U/ - <p>A potential solution to Ransomware, the 15 year bug that cost CitiGroup $7 Million dollars, Dropbox’s new middle out compression & another flaw that affects all versions of Windows.</p> - -<p>Plus your questions, our answers, a packed roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/vke_RJWBk3U" height="1" width="1" alt=""/> - Thu, 14 Jul 2016 18:41:22 -0700 - - 7F664503-9ED3-499A-8F47-20DE45676ED9 - Jupiter Broadcasting - A potential solution to Ransomware, the 15 year bug that cost CitiGroup $7 Million dollars, Dropbox’s new middle out compression & another flaw that affects all versions of Windows. - -Plus your questions, our answers, a packed roundup & more! - - no - 1:25:41 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/101186/ending-ransomware-techsnap-275/ - - Windows Exploit Edition | TechSNAP 274 - http://feedproxy.google.com/~r/techsnapmp3/~3/wyXDJVs_xtg/ - On this weeks episode we cover a UEFI firmware bug that is affecting computers including ThinkPads, tell you how your windows box can be totally pwned even if it's fully encrypted & talk about the shortcomings of the MD5 checksum. Plus the feedback, the roundup & more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/wyXDJVs_xtg" height="1" width="1" alt=""/> - Thu, 07 Jul 2016 20:30:19 -0700 - - 99DB924C-A14B-48BF-887B-2FF3B2864735 - Jupiter Broadcasting - On this weeks episode we cover a UEFI firmware bug that is affecting computers including ThinkPads, tell you how your windows box can be totally pwned even if it's encrypted & talk about the shortcomings of the MD5 checksum. Plus the feedback & more! - - no - 1:28:14 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/101026/windows-exploit-edition-techsnap-274/ - - Make Ads GIF Again | TechSNAP 273 - http://feedproxy.google.com/~r/techsnapmp3/~3/jUypkOtzMxM/ - <p>Project Zero lays into Symantec's enterprise products, the botnet you’ll never find & the poor security of HTML5 video ads.</p> - -<p>Plus your questions, our answers & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/jUypkOtzMxM" height="1" width="1" alt=""/> - Thu, 30 Jun 2016 18:49:48 -0700 - - A96CC29F-51EC-446F-9782-415E40F5C0E2 - Jupiter Broadcasting - Project Zero lays into Symantec's enterprise products, the botnet you’ll never find & the poor security of HTML5 video ads. - -Plus your questions, our answers & much more! - - no - 1:37:38 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/100861/make-ads-gif-again-techsnap-273/ - - Game of File Systems | TechSNAP 272 - http://feedproxy.google.com/~r/techsnapmp3/~3/ncw0GEw4gxs/ - <p>What’s got Windows admins in a Panic? Total chaos my friends, we’ll tell you why. Extensive coverage of Apple’s new filesystem, Ransomware that might just impress you…</p> - -<p>Your great questions, our answers, a packed round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/ncw0GEw4gxs" height="1" width="1" alt=""/> - Thu, 23 Jun 2016 19:58:09 -0700 - - 83050093-9410-487D-B6F9-D980D028C6E8 - Jupiter Broadcasting - What’s got Windows admins in a Panic? Total chaos my friends, we’ll tell you why. Extensive coverage of Apple’s new filesystem, Ransomware that might just impress you… - -Your great questions, our answers, a packed round up & much, much more! - - no - 2:07:30 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/100661/game-of-file-systems-techsnap-272/ - - Apple Pretend Filesystem | TechSNAP 271 - http://feedproxy.google.com/~r/techsnapmp3/~3/ao8y9rYIvyU/ - <p>Why didn’t Apple choose ZFS for its new filesystem? We journey through the long history of ZFS at Apple. Plus how the BadTunnel bug can hijack traffic from all versions of Windows & should we worry about Intel’s management tech? </p> - -<p>Plus great questions, a huge round up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/ao8y9rYIvyU" height="1" width="1" alt=""/> - Thu, 16 Jun 2016 19:51:16 -0700 - - 617BF5EE-4D50-4FB3-9A41-644F49D3B307 - Jupiter Broadcasting - Why didn’t Apple choose ZFS for its new filesystem? We journey through the long history of ZFS at Apple. Plus how the BadTunnel bug can hijack traffic from all versions of Windows & should we worry about Intel’s management tech & much more! - - no - 1:58:25 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/100526/apple-pretend-filesystem-techsnap-271/ - - Signature Bloatware Updates | TechSNAP 270 - http://feedproxy.google.com/~r/techsnapmp3/~3/qj9wk_RloiY/ - <p>The bloatware shipping on those new computers is way, way worse than you probably thought, Internet exposed printers & the thrilling story of reverse engineering an ATM skimmer. Yes that’s really a thing.</p> - -<p>Plus great questions, our answers & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/qj9wk_RloiY" height="1" width="1" alt=""/> - Thu, 09 Jun 2016 11:18:02 -0700 - - 3790A480-1C1F-459D-9EA7-CDCC79790AA8 - Jupiter Broadcasting - The bloatware shipping on those new computers is way, way worse than you probably thought, Internet exposed printers & the thrilling story of reverse engineering an ATM skimmer. Yes that’s really a thing. - -Plus great questions, our answers & more! - - no - 1:15:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/100366/signature-bloatware-updates-techsnap-270/ - - 10,000 Cables Under the Sea | TechSNAP 269 - http://feedproxy.google.com/~r/techsnapmp3/~3/BZHz-juFw2E/ - <p>Windows exploits for sale at a great price, how the Internet works, yes, seriously & it's awesome!</p> - -<p>Plus we solve some of your problems, a great roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/BZHz-juFw2E" height="1" width="1" alt=""/> - Thu, 02 Jun 2016 17:24:00 -0700 - - 73E04878-85C4-4346-A675-A90A29838B55 - Jupiter Broadcasting - Windows exploits for sale at a great price, how the Internet works, yes, seriously & it's awesome! - -Plus we solve some of your problems, a great roundup & more! - - no - 1:41:27 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/100161/10000-cables-under-the-sea-techsnap-269/ - - PIS Poor DNS | TechSNAP 268 - http://feedproxy.google.com/~r/techsnapmp3/~3/O_Clp1-n7dY/ - <p>Is the “Dark Cloud” hype, or a real technology? Using DNS tunneling for remote command and control & the big problem with 1-Day exploits.</p> - -<p>Plus your great question, our answers, a breaking news roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/O_Clp1-n7dY" height="1" width="1" alt=""/> - Thu, 26 May 2016 18:38:08 -0700 - - A0D6D0E6-D044-4B91-A73C-4ECCD11D7BB8 - Jupiter Broadcasting - Is the “Dark Cloud” hype, or a real technology? Using DNS tunneling for remote command and control & the big problem with 1-Day exploits. - -Plus your great question, our answers, a breaking news roundup & more! - - no - 1:29:44 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/100021/pis-poor-dns-techsnap-268/ - - My Kingdom for a VLAN | TechSNAP 267 - http://feedproxy.google.com/~r/techsnapmp3/~3/2-F6KR6RsXQ/ - <p>A typo stops a billion dollar bank hack, a vulnerability in 7zip that might surprise you & the best solutions for secure remote network access.</p> - -<p>Your great questions, our answers, a packed round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/2-F6KR6RsXQ" height="1" width="1" alt=""/> - Thu, 19 May 2016 18:39:53 -0700 - - F63253DD-6474-4C81-9CBE-EB2BDD719375 - Jupiter Broadcasting - A typo stops a billion dollar bank hack, a vulnerability in 7zip that might surprise you & the best solutions for secure remote network access. - -Your great questions, our answers, a packed round up & more! - - no - 1:23:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/99871/my-kingdom-for-a-vlan-techsnap-267/ - - Curl Sleeper Agent | TechSNAP 266 - http://feedproxy.google.com/~r/techsnapmp3/~3/Zy_66AaErw8/ - <p>Zero-day exploits striking over 100 systems, if you think copying links to bash scripts from the internet is okay, maybe you shouldn't be root & the day Google automated itself off the internet.</p> - -<p>Plus your questions, our answers, a huge round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Zy_66AaErw8" height="1" width="1" alt=""/> - Thu, 12 May 2016 20:40:46 -0700 - - 37628685-AD03-4409-915D-7FAD714FE782 - Jupiter Broadcasting - Zero-day exploits striking over 100 systems, if you think copying links to bash scripts from the internet is okay, maybe you shouldn't be root & the day Google automated itself off the internet. - -Plus your questions, our answers, a huge round up & more! - - no - 1:40:24 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/99721/curl-sleeper-agent-techsnap-266/ - - Insecure Socket Layer | TechSNAP 265 - http://feedproxy.google.com/~r/techsnapmp3/~3/h2t23myNWw8/ - <p>A critical flaw in that bit of software tucked far far away that you never think about… Until now, we explain why ImageTragick is a pain. More OpenSSL flaws & fraudsters stealing tax data from the motherload. </p> - -<p>Plus great questions, our answers, a packed Round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/h2t23myNWw8" height="1" width="1" alt=""/> - Thu, 05 May 2016 21:37:50 -0700 - - 96932968-2804-4AD4-96C6-C4B0EAC596BD - Jupiter Broadcasting - A critical flaw in that bit of software tucked far far away that you never think about… We explain why ImageTragick is a pain. More OpenSSL flaws & fraudsters stealing tax data from the motherload. - -Plus your questions, our answers, the roundup & more! - - no - 1:25:46 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/99546/insecure-socket-layer-techsnap-265/ - - On Target | TechSNAP 264 - http://feedproxy.google.com/~r/techsnapmp3/~3/px7j_2KYSkw/ - This week, Chris & allan are both out of town at different shenanigans, but they recorded a sneaky episode for you in which they recap the Target breach, from when the news broke to the lessons learned and everything in between!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/px7j_2KYSkw" height="1" width="1" alt=""/> - Thu, 28 Apr 2016 06:58:28 -0700 - - EBDB5A6E-41E3-4DA4-84CC-37D4CCF8336E - Jupiter Broadcasting - This week, Chris & allan are both out of town at different shenanigans, but they recorded a sneaky episode for you in which they recap the Target breach, from when the news broke to the lessons learned and everything in between! - - no - 1:26:15 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/99151/on-target-techsnap-264/ - - One Key to Rule Them All | TechSNAP 263 - http://feedproxy.google.com/~r/techsnapmp3/~3/Wm_FBMQWBlY/ - <p>This week, the FBI says APT6 has pawned the government for the last 5 years, Unaoil: a company that's bribing the world & Researchers find a flaw in the visa database.</p> - -<p>All that plus a packed feedback, roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Wm_FBMQWBlY" height="1" width="1" alt=""/> - Thu, 21 Apr 2016 11:44:47 -0700 - - 0638D7DB-515E-449C-AF1B-B584DC5595F7 - Jupiter Broadcasting - This week, the FBI says APT6 has pawned the government for the last 5 years, Unaoil: a company that's bribing the world & Researchers find a flaw in the visa database. - -All that plus a packed feedback, roundup & more! - - no - 1:10:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/98991/one-key-to-rule-them-all-techsnap-263/ - - rm -rf $ALLTHETHINGS/ | TechSNAP 262 - http://feedproxy.google.com/~r/techsnapmp3/~3/h9MFm88IOPs/ - <p>Find out why everyone's just a little disappointed in Badlock, the bad security that could be connected to the Panama Papers leak & the story of a simple delete command that took out an entire hosting provider.</p> - -<p>Plus your batch of networking questions, our answers & a packed round up!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/h9MFm88IOPs" height="1" width="1" alt=""/> - Thu, 14 Apr 2016 19:38:34 -0700 - - AC85D9F6-AFB1-40D1-BABB-F98206303C36 - Jupiter Broadcasting - Find out why everyone's disappointed in Badlock, the bad security that could be connected to the Panama Papers leak & a simple delete command that took out an entire hosting provider. - -Plus your batch of networking questions, a packed round up & more! - - no - 1:36:36 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/98886/rm-rf-allthethings-techsnap-262/ - - Holding Hospitals Hostage | TechSNAP 261 - http://feedproxy.google.com/~r/techsnapmp3/~3/qRhbOMHUk1g/ - <p>Find out about another hospital that accidentally took advantage of free encryption, researchers turn up a DDoS on the root DNS servers & the password test you never want to take.</p> - -<p>Plus your batch of networking questions, our answers & a packed round up!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/qRhbOMHUk1g" height="1" width="1" alt=""/> - Thu, 07 Apr 2016 09:51:27 -0700 - - 03421C0F-687D-4656-8E8C-0705E6374D57 - Jupiter Broadcasting - Find out about another hospital that accidentally took advantage of free encryption, researchers turn up a DDoS on the root DNS servers & the password test you never want to take. - -Plus your batch of networking questions, our answers & a packed round up! - - no - 1:13:50 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/98616/holding-hospitals-hostage-techsnap-261/ - - Pay to Boot | TechSNAP 260 - http://feedproxy.google.com/~r/techsnapmp3/~3/aH9Eab73uN8/ - <p>New Ransomware locks your bootloader & makes you pay to boot. Malware with built in DRM? We’ll share the story of this clever hack.</p> - -<p>Plus some great questions, our answers, a packed round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/aH9Eab73uN8" height="1" width="1" alt=""/> - Thu, 31 Mar 2016 16:03:26 -0700 - - 8DA3642C-1DEC-4279-873D-2B2F3BA8273F - Jupiter Broadcasting - New Ransomware locks your bootloader & makes you pay to boot. Malware with built in DRM? We’ll share the story of this clever hack. - -Plus some great questions, our answers, a packed round up & more! - - no - 1:13:12 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/98336/pay-to-boot-techsnap-260/ - - Can You Hack Me Now? | TechSNAP 259 - http://feedproxy.google.com/~r/techsnapmp3/~3/c695e4HAvuY/ - <p>Verizon Enterprise gets breached & the irony is strong with this one, details on the NPM fiasco & why the SAMSAM is holding up the doctor.</p> - -<p>Plus some great questions, a packed round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/c695e4HAvuY" height="1" width="1" alt=""/> - Thu, 24 Mar 2016 18:54:15 -0700 - - 2F7CB58D-906F-4E8C-872C-7A9C53FF64F6 - Jupiter Broadcasting - Verizon Enterprise gets breached & the irony is strong with this one, details on the NPM fiasco & why the SAMSAM is holding up the doctor. - -Plus some great questions, a packed round up & much, much more! - - no - 1:30:41 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/98086/can-you-hack-me-now-techsnap-259/ - - Metaphorically Exploited | TechSNAP 258 - http://feedproxy.google.com/~r/techsnapmp3/~3/HLIbzg1E0yU/ - <p>The theoretical Android flaw becomes reality, a simple phishing scam hits some major companies & why your PIN has already been leaked.</p> - -<p>Plus great questions, our answers, a rocking round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/HLIbzg1E0yU" height="1" width="1" alt=""/> - Thu, 17 Mar 2016 18:11:45 -0700 - - 242A017F-88D2-441B-B766-98C31E6DF940 - Jupiter Broadcasting - The theoretical Android flaw becomes reality, a simple phishing scam hits some major companies & why your PIN has already been leaked. - -Plus great questions, our answers, a rocking round up & much, much more! - - no - 1:13:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/97786/metaphorically-exploited-techsnap-258/ - - Fixing the Barn Door | TechSNAP 257 - http://feedproxy.google.com/~r/techsnapmp3/~3/NCirm5W92pc/ - <p>We’ll tell you about the real world pirates that hacked a shipping company, the open source libraries from Mars Rover found being used in malware & Microsoft’s solution for that after-hack hangover.</p> - -<p>Plus great questions, a packed round up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/NCirm5W92pc" height="1" width="1" alt=""/> - Thu, 10 Mar 2016 10:04:14 -0800 - - 34553705-77CE-4E4D-B335-C78B5D2C301F - Jupiter Broadcasting - We’ll tell you about the real world pirates that hacked a shipping company, the open source libraries from Mars Rover found being used in malware & Microsoft’s solution for that after-hack hangover. - -Plus great questions, a packed round up & much more! - - no - 1:20:47 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/97301/fixing-the-barn-door-techsnap-257/ - - Open Server Sadness Layer | TechSNAP 256 - http://feedproxy.google.com/~r/techsnapmp3/~3/jDXUGw4LqTE/ - <p>OpenSSL issues a major security advisory, we break down the important details, then go in depth on the real world impact of these flaws.</p> - -<p>Plus some great storage and networking question, a packed round up &amp; much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/jDXUGw4LqTE" height="1" width="1" alt=""/> - Thu, 03 Mar 2016 17:22:59 -0800 - - 4D9C42DA-4C75-4595-9DF6-FBF9272371C0 - Jupiter Broadcasting - OpenSSL issues a major security advisory, we break down the important details, then go in depth on the real world impact of these flaws. - -Plus some great storage and networking question, a packed round up &amp; much, much more! - - no - 1:50:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/97136/open-server-sadness-layer-techsnap-256/ - - Dip the Chip | TechSNAP 255 - http://feedproxy.google.com/~r/techsnapmp3/~3/64quK-ElMJg/ - <p>What’s taking the states so long to catch up to the rest of the civilized world and dip the chip? Turns out it's really complicated, we explain. Plus keeping a Hospital secure is much more than following HIPAA, and an analysis of Keybase malware.</p> - -<p>Plus great questions, our answers, and much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/64quK-ElMJg" height="1" width="1" alt=""/> - Thu, 25 Feb 2016 17:50:44 -0800 - - 07CB06D7-4A48-4B84-8C8E-FFD91E007F59 - Jupiter Broadcasting - What’s taking the states so long to catch up to the rest of the civilized world and dip the chip? Turns out it's really complicated, we explain. Plus keeping a Hospital secure is much more than following HIPAA, and an analysis of Keybase malware. - - no - 1:38:29 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/96791/dip-the-chip-techsnap-255/ - - Weaponized Comic Sans | TechSNAP 254 - http://feedproxy.google.com/~r/techsnapmp3/~3/u9ObBaGwdRQ/ - <p>A common vulnerability is impacting Firefox, LibreOffice, and others, the 7 problems with ATM security, and the Enterprise grade protection defeated with a batch script.</p> - -<p>Plus some great questions, our answers, a rockin roundup, and much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/u9ObBaGwdRQ" height="1" width="1" alt=""/> - Thu, 18 Feb 2016 19:02:46 -0800 - - 2E261630-4906-47E5-BD8B-F8BA29ED527C - Jupiter Broadcasting - A common vulnerability is impacting Firefox, LibreOffice, and others, the 7 problems with ATM security, and the Enterprise grade protection defeated with a batch script. - -Plus some great questions, our answers, a rockin roundup, and much much more! - - no - 1:37:15 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/94006/weaponized-comic-sans-techsnap-254/ - - Cisco's Perfect 10 | TechSNAP 253 - http://feedproxy.google.com/~r/techsnapmp3/~3/Y2GCwhROG6w/ - <p>Cisco has a wormable vulnerability in its Firewall appliances, crimeware that allows unlimited ATM withdrawals & the big problem with the Java installer.</p> - -<p>Plus great questions, a rocking round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Y2GCwhROG6w" height="1" width="1" alt=""/> - Thu, 11 Feb 2016 17:56:40 -0800 - - 7758EAAC-E8E4-449E-8361-3ACCC4FBC90F - Jupiter Broadcasting - Cisco has a wormable vulnerability in its Firewall appliances, crimeware that allows unlimited ATM withdrawals & the big problem with the Java installer. - -Plus great questions, a rocking round up & much, much more! - - no - 1:06:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/93716/ciscos-perfect-10-techsnap-253/ - - Hot Norse Potato | TechSNAP 252 - http://feedproxy.google.com/~r/techsnapmp3/~3/1W49KPqdE6U/ - <p>A new openSSL exploit, cyber security firm Norse implodes & the Windows Hot Potato flaw that’s been around for over a decade.</p> - -<p>Plus great questions, our answers, a rockin round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/1W49KPqdE6U" height="1" width="1" alt=""/> - Thu, 04 Feb 2016 18:41:29 -0800 - - D0D47725-5DA5-493A-A860-136E779FB14B - Jupiter Broadcasting - A new openSSL exploit, cyber security firm Norse implodes & the Windows Hot Potato flaw that’s been around for over a decade. - -Plus great questions, our answers, a rockin round up & much, much more! - - no - 1:44:48 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/93496/hot-norse-potato-techsnap-252/ - - A Look Back On Feedback | TechSNAP 251 - http://feedproxy.google.com/~r/techsnapmp3/~3/e2--FgT9-D8/ - Since Allan is off being fancy at FOSDEM, we decided that now would be a good time to celebrate the audience & feature some of the best feedback we've had over the years!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/e2--FgT9-D8" height="1" width="1" alt=""/> - Thu, 28 Jan 2016 08:10:18 -0800 - - 6F986195-83BB-4135-9F4A-AE4814155B8D - Jupiter Broadcasting - Since Allan is off being fancy at FOSDEM, we decided that now would be a good time to celebrate the audience & feature some of the best feedback we've had over the years! - - no - 1:20:32 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/93176/a-look-back-on-feedback-techsnap-251/ - - Lights out Management | TechSNAP 250 - http://feedproxy.google.com/~r/techsnapmp3/~3/4d313fFp7mw/ - <p>The bizarre saga of Juniper maybe finally be coming to a conclusion, details about SLOTH, the latest SSL vulnerability that also affects IPSec and SSH & the attack on the Ukrainian power grid made possible by malware.</p> - -<p>Plus your questions with a special theme, a rockin roundup & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/4d313fFp7mw" height="1" width="1" alt=""/> - Thu, 21 Jan 2016 10:10:51 -0800 - - ED2E54C4-4762-4C5B-8A34-0D52D895DF46 - Jupiter Broadcasting - The bizarre saga of Juniper maybe finally be coming to a conclusion, details about SLOTH, the latest SSL vulnerability that also affects IPSec and SSH & the attack on the Ukrainian power grid made possible by malware & much more! - - no - 1:13:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/92871/lights-out-management-techsnap-250/ - - Internet of Threats | TechSNAP 249 - http://feedproxy.google.com/~r/techsnapmp3/~3/j50svP2xKf8/ - <p>A Critical OpenSSH flaw can expose your private keys, a new WiFi spec for IoT devices, that has all the classic issues & Intel’s SkyLake bug.</p> - -<p>Plus your feedback, our answers, a rockin’ round up & so much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/j50svP2xKf8" height="1" width="1" alt=""/> - Thu, 14 Jan 2016 17:03:30 -0800 - - C60A273A-A92E-4359-A0CB-6CE5BF7C914D - Jupiter Broadcasting - A Critical OpenSSH flaw can expose your private keys, a new WiFi spec for IoT devices, that has all the classic issues & Intel’s SkyLake bug. - -Plus your feedback, our answers, a rockin’ round up & so much more! - - no - 1:30:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/92666/internet-of-threats-techsnap-249/ - - Virtual Private Surveillance | TechSNAP 248 - http://feedproxy.google.com/~r/techsnapmp3/~3/OBPncsWMCao/ - <p>We break down the Bicycle attack against SSL, the story of Brian Krebs’s PayPal account getting backed & the scoop on the Juniper Saga.</p> - -<p>Plus some great questions, our answers, a news breaking round up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/OBPncsWMCao" height="1" width="1" alt=""/> - Thu, 07 Jan 2016 19:23:36 -0800 - - 2741557E-BB94-4D1B-B064-44185D0FFD3F - Jupiter Broadcasting - We break down the Bicycle attack against SSL, the story of Brian Krebs’s PayPal account getting backed & the scoop on the Juniper Saga. - -Plus some great questions, our answers, a news breaking round up & much more! - - no - 1:36:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/92441/virtual-private-surveillance-techsnap-248/ - - Snappy New Year! | TechSNAP 247 - http://feedproxy.google.com/~r/techsnapmp3/~3/ACN-V1nEZm8/ - <p>We take a look back at some of the big stories of 2015, at least, as we see it.</p> - -<p>Plus the round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/ACN-V1nEZm8" height="1" width="1" alt=""/> - Thu, 31 Dec 2015 08:13:45 -0800 - - A79A834F-8C9D-48E2-AB06-448686D45C3C - Jupiter Broadcasting - We take a look back at some of the big stories of 2015, at least, as we see it. - -Plus the round up & more! - - no - 2:13:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/92196/snappy-new-year-techsnap-247/ - - Allan's Favorite Things | TechSNAP 246 - http://feedproxy.google.com/~r/techsnapmp3/~3/3IFH0EvecWU/ - It’s a collection of Allan’s favorite moments from TechSNAP past. Plus the week’s new stories in the roundup & much more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/3IFH0EvecWU" height="1" width="1" alt=""/> - Thu, 24 Dec 2015 09:44:37 -0800 - - DE0B8F21-D537-4F02-823A-5BD062EFB8CE - Jupiter Broadcasting - It’s a collection of Allan’s favorite moments from TechSNAP past. Plus the week’s new stories in the roundup & much more! - - no - 2:09:12 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/91911/allans-favorite-things-techsnap-246/ - - Insecurity Appliance | TechSNAP 245 - http://feedproxy.google.com/~r/techsnapmp3/~3/hevMV26a97o/ - <p>Meet BOOTTRASH the Malware that executes before your OS does, the hard questions you need to ask when buying a security appliance, Project Zero finds flaws in Fireeye hardware.</p> - -<p>Plus some great audience questions, a big round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/hevMV26a97o" height="1" width="1" alt=""/> - Thu, 17 Dec 2015 19:49:21 -0800 - - E62AD877-751A-4C40-A2BC-500ABEB5483B - Jupiter Broadcasting - Meet BOOTTRASH the Malware that executes before your OS does, the hard questions you need to ask when buying a security appliance, Project Zero finds flaws in Fireeye hardware. - -Plus some great audience questions, a big round up & much, much more! - - no - 1:42:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/91681/insecurity-appliance-techsnap-245/ - - Finding Nakamoto | TechSNAP 244 - http://feedproxy.google.com/~r/techsnapmp3/~3/EJhIw41VRAE/ - <p>Bitcoin’s creator has been found again, we’ll cover what the media thinks they’ve figured out & what we really know.</p> - -<p>Then, 'In Patches We Trust: Why Security Updates have to get better', a great batch of questions, a huge round up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/EJhIw41VRAE" height="1" width="1" alt=""/> - Thu, 10 Dec 2015 20:00:22 -0800 - - 75758C04-1396-473F-B390-9583356891C8 - Jupiter Broadcasting - Bitcoin’s creator has been found again, we’ll cover what the media thinks they’ve figured out & what we really know. - -Then, 'In Patches We Trust: Why Security Updates have to get better', a great batch of questions, a huge round up & much more! - - no - 1:55:57 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/91366/finding-nakamoto-techsnap-244/ - - SpyFi Barbie | TechSNAP 243 - http://feedproxy.google.com/~r/techsnapmp3/~3/213RrR1u5DA/ - <p>The US Government is offering free penetration tests, with a catch, we break down the VTech Breakin & the only sure way to protect your credit online.</p> - -<p>Plus great questions, a big round up with breaking news & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/213RrR1u5DA" height="1" width="1" alt=""/> - Thu, 03 Dec 2015 18:50:21 -0800 - - 8D0ED3B6-C20B-428C-A8F3-DD6AEF209938 - Jupiter Broadcasting - The US Government is offering free penetration tests, with a catch, we break down the VTech Breakin & the only sure way to protect your credit online. - -Plus great questions, a big round up with breaking news & much more! - - no - 1:35:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/91091/spyfi-barbie-techsnap-243/ - - A Keyboard Walks into a Barcode | TechSNAP 242 - http://feedproxy.google.com/~r/techsnapmp3/~3/ri4ZPsUa8gk/ - <p>A research team finds various ways to attack LastPass, how to use a cocktail of current Android exploits to own a device & hacking a point of sale system using poisoned barcodes!</p> - -<p>Plus some great questions, our answers, a rockin roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/ri4ZPsUa8gk" height="1" width="1" alt=""/> - Thu, 26 Nov 2015 08:56:23 -0800 - - 9C3CCEE5-FB23-4CF7-BA69-4FE3A769DAD0 - Jupiter Broadcasting - A research team finds various ways to attack LastPass, how to use a cocktail of current Android exploits to own a device & hacking a point of sale system using poisoned barcodes! - -Plus some great questions, our answers, a rockin roundup & much, much more! - - no - 1:20:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/90821/a-keyboard-walks-into-a-barcode-techsnap-242/ - - Double ROT-13 | TechSNAP 241 - http://feedproxy.google.com/~r/techsnapmp3/~3/oho7WKbwUS0/ - Encryption & privacy took quite a beating this week in the wake of the Paris attacks. We come to its defense. Your ISP heard you like backdoors, so they put a backdoor in your backdoor, the story of the social RAT & more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/oho7WKbwUS0" height="1" width="1" alt=""/> - Thu, 19 Nov 2015 17:05:59 -0800 - - F523090D-1ED4-4AF8-A255-86A476B48AA0 - Jupiter Broadcasting - Encryption & privacy took quite a beating this week in the wake of the Paris attacks. We come to its defense. Your ISP heard you like backdoors, so they put a backdoor in your backdoor, the story of the social RAT & more! - - no - 1:26:54 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/90526/double-rot-13-techsnap-241/ - - Zero-Days Of Our Lives | TechSNAP 240 - http://feedproxy.google.com/~r/techsnapmp3/~3/IoJXr5hiyUQ/ - <p>The first remote administration trojan that targets Android, Linux, Mac and Windows. Joomla and vBulletin have major flaws & tips for protecting your online privacy from some very motivated public figures.</p> - -<p>Plus some great questions, a rockin' roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/IoJXr5hiyUQ" height="1" width="1" alt=""/> - Thu, 12 Nov 2015 10:19:53 -0800 - - 70C2B0BD-072A-4B74-AC91-7FA2156D91B1 - Jupiter Broadcasting - The first remote administration trojan that targets Android, Linux, Mac and Windows. Joomla and vBulletin have major flaws & tips for protecting your online privacy from some very motivated public figures. - -Plus great questions, a rockin' roundup & more! - - no - 1:25:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/90321/zero-days-of-our-lives-techsnap-240/ - - PLAID Falls Out of Fashion | TechSNAP 239 - http://feedproxy.google.com/~r/techsnapmp3/~3/qMizG8dhJL8/ - <p>CISA provides no solutions, just new excuses. The new Australian smartcard system is a total disaster & why Google’s URLs are so crazy. </p> - -<p>Plus some great questions, our answers, a rockin' round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/qMizG8dhJL8" height="1" width="1" alt=""/> - Thu, 05 Nov 2015 07:51:13 -0800 - - C9434831-1151-4E4D-9694-7F9A094AD735 - Jupiter Broadcasting - CISA provides no solutions, just new excuses. The new Australian smartcard system is a total disaster & why Google’s URLs are so crazy. - -Plus some great questions, our answers, a rockin' round up & much, much more! - - no - 1:06:58 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/90076/plaid-falls-out-of-fashion-techsnap-239/ - - Certifiable Authority | TechSNAP 238 - http://feedproxy.google.com/~r/techsnapmp3/~3/h6dUfpHI9lg/ - <p>TalkTalk gets compromised, Hackers make cars safer & Google plays hardball with Symantec.</p> - -<p>Plus a great batch of your questions, a rocking round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/h6dUfpHI9lg" height="1" width="1" alt=""/> - Thu, 29 Oct 2015 15:42:53 -0700 - - B595569D-9167-44D0-BA58-97C5589D8D43 - Jupiter Broadcasting - TalkTalk gets compromised, Hackers make cars safer & Google plays hardball with Symantec. - -Plus a great batch of your questions, a rocking round up & much, much more! - - no - 1:18:40 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/89901/certifiable-authority-techsnap-238/ - - A Rip in NTP | TechSNAP 237 - http://feedproxy.google.com/~r/techsnapmp3/~3/gONiosdIHHw/ - <p>The OpenZFS summit just wrapped up and Allan shares the exciting new features coming to the file system, researchers warn about flaws in NTP & of course we've got some critical patches.</p> - -<p>Plus a great batch of questions, a rockin' round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/gONiosdIHHw" height="1" width="1" alt=""/> - Thu, 22 Oct 2015 19:34:12 -0700 - - ACC8B0E9-AFC0-408B-A791-93299836F904 - Jupiter Broadcasting - The OpenZFS summit just wrapped up and Allan shares the exciting new features coming to the file system, researchers warn about flaws in NTP & of course we've got some critical patches. - -Plus a great batch of questions, a rockin' round up & much more! - - no - 2:05:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/89591/a-rip-in-ntp-techsnap-237/ - - National Security Breaking Agency | TechSNAP 236 - http://feedproxy.google.com/~r/techsnapmp3/~3/unjordjpII8/ - <p>How the NSA might be breaking Crypto, fresh zero day exploit against Flash with a twist & Keylogging before computers.</p> - -<p>Plus a great batch of your questions, a rocking round-up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/unjordjpII8" height="1" width="1" alt=""/> - Thu, 15 Oct 2015 19:15:36 -0700 - - 785D8E9F-CBA3-4703-B5FD-E5E808071A3F - Jupiter Broadcasting - How the NSA might be breaking Crypto, fresh zero day exploit against Flash with a twist & Keylogging before computers. - -Plus a great batch of your questions, a rocking round-up & much more! - - no - 1:51:02 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/89226/national-security-breaking-agency-techsnap-236/ - - Catching the Angler | TechSNAP 235 - http://feedproxy.google.com/~r/techsnapmp3/~3/bfCpnPEMvz0/ - <p>Debug mode exposes sensitive data, Cisco’s Talos group exposes the Angler exploit kit & how a Microsoft exposed Conficker with an egg hunt.</p> - -<p>Plus some great feedback, a huge round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/bfCpnPEMvz0" height="1" width="1" alt=""/> - Thu, 08 Oct 2015 19:32:14 -0700 - - 35E1A760-928E-43E4-B4E1-CAB4DA2AB054 - Jupiter Broadcasting - Debug mode exposes sensitive data, Cisco’s Talos group exposes the Angler exploit kit & how a Microsoft exposed Conficker with an egg hunt. - -Plus some great feedback, a huge round up & much, much more! - - no - 1:52:31 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/88851/catching-the-angler-techsnap-235/ - - Key Flaw With GPL | TechSNAP 234 - http://feedproxy.google.com/~r/techsnapmp3/~3/sGncp3xDBOs/ - <p>D-Link publishes its private code signing keys, exploiting Windows Symbolic Links & why encryption is not sufficient protection.</p> - -<p>Plus some great questions, our answers, a rockin roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/sGncp3xDBOs" height="1" width="1" alt=""/> - Thu, 01 Oct 2015 10:38:52 -0700 - - EE711BF8-CE59-4841-A3F5-F6EC21BDBA27 - Jupiter Broadcasting - D-Link publishes its private code signing keys, exploiting Windows Symbolic Links & why encryption is not sufficient protection. - -Plus some great questions, our answers, a rockin roundup & much, much more! - - no - 1:06:48 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/88501/key-flaw-with-gpl-techsnap-234/ - - Dukes of Cyber Hazard | TechSNAP 233 - http://feedproxy.google.com/~r/techsnapmp3/~3/Pu6TaZGbywM/ - <p>Let’s Encrypt hits a major milestone, F-Secure publishes their investigation into “The Dukes” & we dig into Tarsnap’s email confirmation bypass.</p> - -<p>Plus a great batch of your questions, a rocking round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Pu6TaZGbywM" height="1" width="1" alt=""/> - Thu, 24 Sep 2015 08:18:04 -0700 - - 7975021C-3D24-48B7-ABFE-63FE082F2383 - Jupiter Broadcasting - Let’s Encrypt hits a major milestone, F-Secure publishes their investigation into “The Dukes” & we dig into Tarsnap’s email confirmation bypass. - -Plus a great batch of your questions, a rocking round up & much, much more! - - no - 1:16:19 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/88126/dukes-of-cyber-hazard-techsnap-233/ - - Hardware Insecurity Module | TechSNAP 232 - http://feedproxy.google.com/~r/techsnapmp3/~3/V2Rhn4h6FHM/ - <p>How Groupon made the switch to FreeBSD & why. Researches extract keys from a hardware module & Intel’s new CPU backed malware protection.</p> - -<p>Plus your questions, a great roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/V2Rhn4h6FHM" height="1" width="1" alt=""/> - Thu, 17 Sep 2015 12:31:57 -0700 - - A204DDBC-E33E-46D7-8799-76F32C14BFA1 - Jupiter Broadcasting - How Groupon made the switch to FreeBSD & why. Researches extract keys from a hardware module & Intel’s new CPU backed malware protection. - -Plus your questions, a great roundup & more! - - no - 1:04:42 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/87821/hardware-insecurity-module-techsnap-232/ - - Leaky RSA Keys | TechSNAP 231 - http://feedproxy.google.com/~r/techsnapmp3/~3/CQx4b8NIyHM/ - <p>Red Hat highlights how leaky many open source RSA implementations are, Netflix releases Sleepy Puppy & the Mac is definitely under attack.</p> - -<p>Plus some quick feedback, a rockin' roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/CQx4b8NIyHM" height="1" width="1" alt=""/> - Thu, 10 Sep 2015 06:05:44 -0700 - - 50C2D538-4638-4703-B1C6-2AEB3E05EF8D - Jupiter Broadcasting - Red Hat highlights how leaky many open source RSA implementations are, Netflix releases Sleepy Puppy & the Mac is definitely under attack. - -Plus some quick feedback, a rockin' roundup & much, much more! - - no - 1:16:16 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/87466/leaky-rsa-keys-techsnap-231/ - - Trojan Family Ties | TechSNAP 230 - http://feedproxy.google.com/~r/techsnapmp3/~3/kkrz9S1rc0o/ - <p>Rooting your Android device might be more dangerous than you realize, why the insurance industry will take over InfoSec & the NSA prepares for Quantum encryption.</p> - -<p>Plus some great questions, a fantastic roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/kkrz9S1rc0o" height="1" width="1" alt=""/> - Thu, 03 Sep 2015 07:37:57 -0700 - - BF9F8574-2B50-4F1A-BD7E-82BD9BFC1455 - Jupiter Broadcasting - Rooting your Android device might be more dangerous than you realize, why the insurance industry will take over InfoSec & the NSA prepares for Quantum encryption. - -Plus some great questions, a fantastic roundup & more! - - no - 1:09:50 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/87251/trojan-family-ties-techsnap-230/ - - Extortion Startups | TechSNAP 229 - http://feedproxy.google.com/~r/techsnapmp3/~3/3EOE4DyoxfM/ - <p>The real fallout from the Ashley Madison hack gets personal. The Android StageFright patch that doesn’t cover all of the holes, and turning a KVM into a spying appliance.</p> - -<p>Plus a great batch of questions, our answers, and a rocking round up.</p> - -<p>All that and a heck of a lot more on this week’s TechSNAP!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/3EOE4DyoxfM" height="1" width="1" alt=""/> - Thu, 27 Aug 2015 20:24:30 -0700 - - ADCC8AAF-B246-48DC-AB8A-8392C83E4D55 - Jupiter Broadcasting - The real fallout from the Ashley Madison hack gets personal. The Android StageFright patch that doesn’t cover all of the holes, and turning a KVM into a spying appliance. - -Plus a great batch of questions, our answers, a rocking round up & more! - - no - 1:44:24 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/87061/extortion-startups-techsnap-229/ - - Export Grade Vulnerabilities | TechSNAP 228 - http://feedproxy.google.com/~r/techsnapmp3/~3/34jKXDo3P9w/ - <p>Lenovo & HP are caught injecting malware even after you format the drive, Ubiquiti Networks is socially engineered out of 46 million & are we entering the era of Security Research Prohibition? We debate.</p> - -<p>Plus a great batch of your questions, our answers, a rocking round up & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/34jKXDo3P9w" height="1" width="1" alt=""/> - Thu, 20 Aug 2015 10:03:43 -0700 - - 777466F2-F0F3-4569-9BF9-E8D3DA64DBD0 - Jupiter Broadcasting - Lenovo & HP are caught injecting malware even after you format the drive, Ubiquiti Networks is socially engineered out of 46 million & are we entering the era of Security Research Prohibition? We debate. Plus your questions, the roundup & much, much more! - - no - 1:12:27 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/86667/export-grade-vulnerabilities-techsnap-228/ - - Oracle's EULAgy #oraclefanfic | TechSNAP 227 - http://feedproxy.google.com/~r/techsnapmp3/~3/MfyUNCvSnhk/ - <p>Oracle really doesn’t want you to reverse engineer their products but they may have just released the Kraken, we’ll explain.</p> - -<p>A massive drop of 35 fixes in one day, great feedback and follow up, a rockin roundup & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/MfyUNCvSnhk" height="1" width="1" alt=""/> - Thu, 13 Aug 2015 15:46:04 -0700 - - 9969434A-E5A8-492A-B076-5E0EB6A994C0 - Jupiter Broadcasting - Oracle really doesn’t want you to reverse engineer their products but they may have just released the Kraken, we’ll explain. - -A massive drop of 35 fixes in one day, great feedback and follow up, a rockin roundup & much, much more! - - no - 1:13:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/86507/oracles-eulagy-oraclefanfic-techsnap-227/ - - Solving the Flash Plague | TechSNAP 226 - http://feedproxy.google.com/~r/techsnapmp3/~3/vQ7afhrIvv4/ - <p>Adobe is making changes to Flash to mitigate 0day exploits, with help from Google. Chrysler recalls 1.4M vehicles due to a software flaw, we go inside the “Business Club” cyber crime gang.</p> - -<p>Plus a great batch of questions, the roundup & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/vQ7afhrIvv4" height="1" width="1" alt=""/> - Fri, 07 Aug 2015 08:37:15 -0700 - - CCE10EB8-58A2-4459-A8E4-55D0454233A4 - Jupiter Broadcasting - Adobe is making changes to Flash to mitigate 0day exploits, with help from Google. Chrysler recalls 1.4M vehicles due to a software flaw, we go inside the “Business Club” cyber crime gang. - -Plus a great batch of questions, the roundup & more! - - no - 1:23:43 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/86237/solving-the-flash-plague-techsnap-226/ - - SourceForge's Downfall | TechSNAP 225 - http://feedproxy.google.com/~r/techsnapmp3/~3/GyLVt0Iw0Ns/ - <p>SourceForge sees downtime, and we examine their infrastructure, a new pervasive hackgroup has been exposed and their track record is fascinating.</p> - -<p>Plus a Hacking Team Round up, a wide variety of audience questions, our answers & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/GyLVt0Iw0Ns" height="1" width="1" alt=""/> - Thu, 30 Jul 2015 18:07:22 -0700 - - F56BF4E3-994E-411D-B81E-3D71CCB83E95 - Jupiter Broadcasting - SourceForge sees downtime, and we examine their infrastructure, a new pervasive hackgroup has been exposed and their track record is fascinating. - -Plus a Hacking Team Round up, a wide variety of audience questions, our answers & much, much more! - - no - 1:04:45 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/85827/sourceforges-downfall-techsnap-225/ - - Butterflies & Backronyms | TechSNAP 224 - http://feedproxy.google.com/~r/techsnapmp3/~3/Hrx_6xBWkXo/ - <p>The Backronym vulnerability hits MySQL right in the SSL protection, we’ll share the details. The hacker Group that hit Apple & Microsoft intensifies their attacks & a survey shows many core Linux tools are at risk. </p> - -<p>Plus some great questions, a rockin' roundup & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Hrx_6xBWkXo" height="1" width="1" alt=""/> - Thu, 23 Jul 2015 10:47:37 -0700 - - 9C8DEB20-F4DC-4950-9C20-A6AF63FF5CCB - Jupiter Broadcasting - The Backronym vulnerability hits MySQL right in the SSL protection, we’ll share the details. The hacker Group that hit Apple & Microsoft intensifies their attacks, a survey shows many core Linux tools are at risk & much, much more! - - no - 1:10:25 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/85537/butterflies-backronyms-techsnap-224/ - - A Bias to Insecurity | TechSNAP 223 - http://feedproxy.google.com/~r/techsnapmp3/~3/AP8VAxHIq08/ - <p>The Hacking Team fallout continues with more zero day patches you need to install, a new attack against RC4 might finally kill it & how to save yourself from a DDoS attack.</p> - -<p>Plus a great batch of your questions, our answers & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/AP8VAxHIq08" height="1" width="1" alt=""/> - Thu, 16 Jul 2015 16:57:24 -0700 - - A847AE0A-F23C-4A84-AFE0-5D3C68BF1500 - Jupiter Broadcasting - The Hacking Team fallout continues with more zero day patches you need to install, a new attack against RC4 might finally kill it & how to save yourself from a DDoS attack. - -Plus a great batch of your questions, our answers & much, much more! - - no - 1:22:12 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/85347/a-bias-to-insecurity-techsnap-223/ - - ZFS does not prevent Stupidity | TechSNAP 222 - http://feedproxy.google.com/~r/techsnapmp3/~3/VYHnZ8ZCXL0/ - <p>From hacking to hacked, hacking team gets owned & what gets leaked is the best part, we’ll share the details.</p> - -<p>Plus, a new OpenSSL vulnerability revealed, Apple tweaks their two factor authentication.. Your questions, our answers & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/VYHnZ8ZCXL0" height="1" width="1" alt=""/> - Thu, 09 Jul 2015 17:49:51 -0700 - - E59BB705-094E-4413-85A0-50E9772A0E4E - Jupiter Broadcasting - From hacking to hacked, hacking team gets owned & what gets leaked is the best part, we’ll share the details. - -Plus, a new OpenSSL vulnerability revealed, Apple tweaks their two factor authentication.. Your questions, our answers & much much more! - - no - 1:22:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/85007/zfs-does-not-prevent-stupidity-techsnap-222/ - - Ripping me a new Protocol | TechSNAP 221 - http://feedproxy.google.com/~r/techsnapmp3/~3/g0CCsqAPVtU/ - <p>Amazon has a new TLS implementation & the details look great, we’ll share them with you. The technology that powers the NSA’s XKEYSCORE you could have deployed yourself.</p> - -<p>Some fantastic questions, a big round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/g0CCsqAPVtU" height="1" width="1" alt=""/> - Thu, 02 Jul 2015 20:08:21 -0700 - - 7281412A-3455-45D5-B9E1-674BD871F50E - Jupiter Broadcasting - Amazon has a new TLS implementation & the details look great, we’ll share them with you. The technology that powers the NSA’s XKEYSCORE you could have deployed yourself. - -Some fantastic questions, a big round up & much, much more! - - no - 1:48:29 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/84667/ripping-me-a-new-protocol-techsnap-221/ - - Homeland Insecurity | TechSNAP 220 - http://feedproxy.google.com/~r/techsnapmp3/~3/aV6B6-DrUaA/ - Google’s datacenter secrets are finally being revealed & we’ll share the best bits. Why The US Government is in no position to teach anyone about Cyber Security, how you can still get hacked offline, A batch of great questions, a huge round up & much, much more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/aV6B6-DrUaA" height="1" width="1" alt=""/> - Thu, 25 Jun 2015 19:05:38 -0700 - - AF7A9CEA-0104-4361-877C-E889EB8284D0 - Jupiter Broadcasting - Google’s datacenter secrets are finally being revealed & we’ll share the best bits. Why The US Government is in no position to teach anyone about Cyber Security, how you can still get hacked offline, Great questions, a huge round up & much, much more! - - no - 1:28:04 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/84302/homeland-insecurity-techsnap-220/ - - OPM Data too Valuable to Sell | TechSNAP 219 - http://feedproxy.google.com/~r/techsnapmp3/~3/UF2nfgGlX7k/ - <p>Kaspersky labs has been hacked, we’ll tell you why it looks like a nation state was the attacker, why OPM data is too valuable sell & the real situation with LastPass.</p> - -<p>Plus some great questions, our answers & a rocking round up.</p> - -<p>All that and much, much more on this week’s TechSNAP!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/UF2nfgGlX7k" height="1" width="1" alt=""/> - Thu, 18 Jun 2015 19:14:26 -0700 - - 87540137-B9F2-4A78-8C29-754E71985A77 - Jupiter Broadcasting - Kaspersky labs has been hacked, we’ll tell you why it looks like a nation state was the attacker, why OPM data is too valuable sell & the real situation with LastPass. - -Plus some great questions, our answers & a rocking round up. - - no - 1:44:07 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/83962/opm-data-too-valuable-to-sell-techsnap-219/ - - Hacking Henchmen for Hire | TechSNAP 218 - http://feedproxy.google.com/~r/techsnapmp3/~3/wBQBjDerxFM/ - <p>This week, how hard lessons learned in 1982 could be apply to 2015’s security breaches, hacking for hire goes big & a savage sentient car that needs better programming.</p> - -<p>Plus some fantastic questions, a rocking round-up & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/wBQBjDerxFM" height="1" width="1" alt=""/> - Thu, 11 Jun 2015 11:22:54 -0700 - - 1AFD7D92-CFB1-4741-94F0-05C95E2F6F65 - Jupiter Broadcasting - This week, how hard lessons learned in 1982 could be apply to 2015’s security breaches, hacking for hire goes big & a savage sentient car that needs better programming. - -Plus some fantastic questions, a rocking round-up & much more! - - no - 1:23:29 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/83577/hacking-henchmen-for-hire-techsnap-218/ - - An Encryptioner's Conscience | TechSNAP 217 - http://feedproxy.google.com/~r/techsnapmp3/~3/O4M6XkSP6EI/ - <p>The sad state of SMTP encryption, a new huge round of flaws has been found in consumer routers & the reviews of Intel’s new Broadwell desktop processors are in!</p> - -<p>Plus some great questions, a huge round-up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/O4M6XkSP6EI" height="1" width="1" alt=""/> - Thu, 04 Jun 2015 18:41:58 -0700 - - 7EAB3C29-10F8-4647-9517-1CD0C36D8235 - Jupiter Broadcasting - The sad state of SMTP encryption, a new huge round of flaws has been found in consumer routers & the reviews of Intel’s new Broadwell desktop processors are in! - -Plus some great questions, a huge round-up & much, much more! - - no - 1:44:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/83272/an-encryptioners-conscience-techsnap-217/ - - Spy vs MSpy | TechSNAP 216 - http://feedproxy.google.com/~r/techsnapmp3/~3/3icrmXkAx2o/ - <p>Spyware creator mSpy hacked, find out why this breach is particularly egregious, what’s wrong with pcap & why RSA’s death has been greatly exaggerated. </p> - -<p>Plus a great batch of questions, a rocking round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/3icrmXkAx2o" height="1" width="1" alt=""/> - Thu, 28 May 2015 09:37:04 -0700 - - E470238B-072B-4EED-B85D-6F1CE396B535 - Jupiter Broadcasting - Spyware creator mSpy hacked, find out why this breach is particularly egregious, what’s wrong with pcap & why RSA’s death has been greatly exaggerated. - -Plus a great batch of questions, a rocking round up & much, much more! - - no - 1:25:03 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/82967/spy-vs-mspy-techsnap-216/ - - EXTenuating Circumstances | TechSNAP 215 - http://feedproxy.google.com/~r/techsnapmp3/~3/V0RvTBpQPIs/ - <p>Researches have uncovered a weakness in almost all Internet encryption. We’ll explain what LogJam is, how to protect yourself & what the cause is.</p> - -<p>Linux gets bit by a filesystem corruption bug, passport id thieves, a great batch of questions & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/V0RvTBpQPIs" height="1" width="1" alt=""/> - Thu, 21 May 2015 16:52:08 -0700 - - 3E1A0E82-9540-4C50-8C8E-F6D9D1B4A2BC - Jupiter Broadcasting - Researches have uncovered a weakness in almost all Internet encryption. We’ll explain what LogJam is, how to protect yourself & what the cause is. - -Plus Linux gets bit by a filesystem corruption bug, passport id thieves, a great batch of questions & more! - - no - 1:26:49 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/82517/extenuating-circumstances-techsnap-215/ - - Venomous Floppy Legacy | TechSNAP 214 - http://feedproxy.google.com/~r/techsnapmp3/~3/ljfLPZ6-cqc/ - <p>We explain the Venom vulnerability, what the impact is & the steps major providers are taking to protect themselves. </p> - -<p>Plus strategies to mitigate Cyber Intrusions, a truly genius spammer, great questions, a huge round up & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/ljfLPZ6-cqc" height="1" width="1" alt=""/> - Thu, 14 May 2015 19:51:07 -0700 - - E04ADA41-CC10-4363-8A68-8D9CB863D482 - Jupiter Broadcasting - We explain the Venom vulnerability, what the impact is & the steps major providers are taking to protect themselves. - -Plus strategies to mitigate Cyber Intrusions, a truly genius spammer, great questions, a huge round up & more! - - no - 1:50:26 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/82132/venomous-floppy-legacy-techsnap-214/ - - Blame as a Service | TechSNAP 213 - http://feedproxy.google.com/~r/techsnapmp3/~3/-x_Ec2dxHh8/ - <p>Why a stolen healthcare record is harder to track than you might think, Security pros name their must have tools & blame as a service, the new Cybersecurity hot product.</p> - -<p>Plus great questions, a huge Round Up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/-x_Ec2dxHh8" height="1" width="1" alt=""/> - Thu, 07 May 2015 18:45:37 -0700 - - 8966B174-71FB-4B0E-8A28-B8070A65D063 - Jupiter Broadcasting - Why a stolen healthcare record is harder to track than you might think, Security pros name their must have tools & blame as a service, the new Cybersecurity hot product. - -Plus great questions, a huge Round Up & much, much more! - - no - 1:38:16 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/81732/blame-as-a-service-techsnap-213/ - - Dormant Docker Disasters | TechSNAP 212 - http://feedproxy.google.com/~r/techsnapmp3/~3/xXGslY169Mk/ - <p>The man who broke the music business, the major downsides to the container culture & yes, they really are trying to sell you Security Snake Oil.</p> - -<p>Plus your great questions, our answers & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/xXGslY169Mk" height="1" width="1" alt=""/> - Thu, 30 Apr 2015 11:36:22 -0700 - - FAED937D-50A8-49CE-AC43-FE5E6E3C3CA2 - Jupiter Broadcasting - The man who broke the music business, the major downsides to the container culture & yes, they really are trying to sell you Security Snake Oil. - -Plus your great questions, our answers & much, much more! - - no - 1:33:35 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/81407/dormant-docker-disasters-techsnap-212/ - - The French Disconnection | TechSNAP 211 - http://feedproxy.google.com/~r/techsnapmp3/~3/a-5XpvEKp1k/ - <p>What’s really the key to detecting a breach before its become much too late? We’ll share some key insights, plus a technical breakdown of China’s great cannon & the new New French Surveillance Law that should be a warning to us all.</p> - -<p>Plus a great round up, fantastic questions, our answers & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/a-5XpvEKp1k" height="1" width="1" alt=""/> - Fri, 24 Apr 2015 02:17:34 -0700 - - EF12EFC5-45DB-4913-9272-B299CA2CA4A9 - Jupiter Broadcasting - What’s really the key to detecting a breach before its become much too late? We’ll share some key insights, plus a technical breakdown of China’s great cannon & the new New French Surveillance Law that should be a warning to us all & much, much more! - - no - 1:47:00 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/81082/the-french-disconnection-techsnap-211/ - - SMBTrapped in Microsoft | TechSNAP 210 - http://feedproxy.google.com/~r/techsnapmp3/~3/LFrmboZeXQE/ - <p>Researches find an 18 year old bug in Windows thats rather nasty, we’ve got the details. A new perspective on the bug bounty arms race & the security impact of Wifi on a plane.</p> - -<p>Plus great feedback, a bursting round up & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/LFrmboZeXQE" height="1" width="1" alt=""/> - Thu, 16 Apr 2015 20:03:17 -0700 - - 69AEB932-C1E9-449A-8D0E-2B26B6F0684F - Jupiter Broadcasting - Researches find an 18 year old bug in Windows thats rather nasty, we’ve got the details. A new perspective on the bug bounty arms race & the security impact of Wifi on a plane. - -Plus great feedback, a bursting round up & much much more! - - no - 1:23:53 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/80632/smbtrapped-in-microsoft-techsnap-210/ - - Day-0 of an InfoSec Career | TechSNAP 209 - http://feedproxy.google.com/~r/techsnapmp3/~3/gNedGQdUAbE/ - <p>Is it possible to make a truly private phone call anymore? The answer might surprise you. Cisco and Level 3 battle a huge SSH botnet & how to Build a successful Information Security career.</p> - -<p>Plus a great batch of your questions, a rocking round up, and much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/gNedGQdUAbE" height="1" width="1" alt=""/> - Thu, 09 Apr 2015 21:03:21 -0700 - - 3D433430-44B6-441E-B4E5-397784A99DE9 - Jupiter Broadcasting - Is it possible to make a truly private phone call anymore? The answer might surprise you. Cisco and Level 3 battle a huge SSH botnet & how to Build a successful Information Security career & much, much more! - - no - 2:09:23 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/80277/day-0-of-an-infosec-career-techsnap-209/ - - Any Cert Will Do | TechSNAP 208 - http://feedproxy.google.com/~r/techsnapmp3/~3/Z3PMI8E_iSE/ - <p>Why boring technology might be the better choice, Google revokes & China chokes, why you want to create an account at irs.gov before crooks do it for you.</p> - -<p>Plus your great IT questions, a rocking round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Z3PMI8E_iSE" height="1" width="1" alt=""/> - Thu, 02 Apr 2015 17:53:44 -0700 - - 9BB34B95-1EA5-4B32-9B61-5D919EDC03D7 - Jupiter Broadcasting - Why boring technology might be the better choice, Google revokes & China chokes, why you want to create an account at irs.gov before crooks do it for you. - -Plus your great IT questions, a rocking round up & much, much more! - - no - 1:23:13 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/79867/any-cert-will-do-techsnap-208/ - - Lunch Lady Lockdown | TechSNAP 207 - http://feedproxy.google.com/~r/techsnapmp3/~3/Sxc9Mj3zTdM/ - <p>Reverse Engineering Incentives to Improve Security. New Jersey school district computers held for ransom & the flash bug that lives on from 2011 with a twist!</p> - -<p>Plus some great networking questions, drone powered Internet & more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Sxc9Mj3zTdM" height="1" width="1" alt=""/> - Thu, 26 Mar 2015 19:40:35 -0700 - - B2F3CC53-6940-412C-A3F0-2F592AC736E1 - Jupiter Broadcasting - Reverse Engineering Incentives to Improve Security. New Jersey school district computers held for ransom & the flash bug that lives on from 2011 with a twist! - -Plus some great networking questions, drone powered Internet & more! - - no - 1:26:32 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/79567/lunch-lady-lockdown-techsnap-207/ - - Two Factor Falsification | TechSNAP 206 - http://feedproxy.google.com/~r/techsnapmp3/~3/nnzO3_kGt-o/ - <p>Microsoft takes 4 years to fix a nasty bug, how to bypass 2 factor authentication in the popular ‘Authy’ app.</p> - -<p>Hijacking a domain with photoshop, hardware vs software RAID revisited, tons of great questions, our answers & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/nnzO3_kGt-o" height="1" width="1" alt=""/> - Thu, 19 Mar 2015 20:02:12 -0700 - - 0D0A04E1-44D7-4D42-A8F6-1A42ECC8D70C - Jupiter Broadcasting - Microsoft takes 4 years to fix a nasty bug, how to bypass 2 factor authentication in the popular ‘Authy’ app. - -Hijacking a domain with photoshop, hardware vs software RAID revisited, tons of great questions, our answers & much much more! - - no - 1:39:30 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/79162/two-factor-falsification-techsnap-206/ - - An Uber Mess | TechSNAP 205 - http://feedproxy.google.com/~r/techsnapmp3/~3/GNdOxEm27pc/ - <p>Using encryption is a good thing, but its just the start, we’ll explain. Plus how one developer totally owned the Uber app.</p> - -<p>Then it’s a great batch of your questions & our answers!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/GNdOxEm27pc" height="1" width="1" alt=""/> - Thu, 12 Mar 2015 09:56:00 -0700 - - E91A0B80-BB82-4953-A9D4-5C0A9BF9952D - Jupiter Broadcasting - Using encryption is a good thing, but its just the start, we’ll explain. Plus how one developer totally owned the Uber app. - -Then it’s a great batch of your questions & our answers! - - no - 1:03:48 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/78707/an-uber-mess-techsnap-205/ - - Ghost of Crypto Past | TechSNAP 204 - http://feedproxy.google.com/~r/techsnapmp3/~3/WcDYHGVeInw/ - <p>We’ll break down the technical baggage that led to the new FREAK SSL flaw & the security ramifications of top executives using personal email accounts…</p> - -<p>Plus why just need to stop hiding file extensions. Plus some great feedback & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/WcDYHGVeInw" height="1" width="1" alt=""/> - Thu, 05 Mar 2015 17:54:51 -0800 - - 410EB629-FB86-4CDC-B8C0-3250F19E0E97 - Jupiter Broadcasting - We’ll break down the technical baggage that led to the new FREAK SSL flaw & the security ramifications of top executives using personal email accounts… - -Plus why just need to stop hiding file extensions. Plus some great feedback & much, much more! - - no - 1:38:11 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/78387/ghost-of-crypto-past-techsnap-204/ - - TurboHax | TechSNAP 203 - http://feedproxy.google.com/~r/techsnapmp3/~3/sAKAKnOtB4A/ - <p>Lenovo & Google are victims of DNS hijacking, we’ll share the details, Everyone wants you to secure your data, just not from them & how Turbotax profits from Cyber tax fraud!</p> - -<p>Plus a great batch of your questions, a fantastic round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/sAKAKnOtB4A" height="1" width="1" alt=""/> - Thu, 26 Feb 2015 21:15:28 -0800 - - DBEF5DB6-48D5-438E-980B-297C84CE813F - Jupiter Broadcasting - Lenovo & Google are victims of DNS hijacking, we’ll share the details, Everyone wants you to secure your data, just not from them & how Turbotax profits from Cyber tax fraud! - -Plus a great batch of your questions, a fantastic round up & much, much more! - - no - 1:47:17 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/77962/turbohax-techsnap-203/ - - SuperFishy Mistake | TechSNAP 202 - http://feedproxy.google.com/~r/techsnapmp3/~3/ver-RlX7V3A/ - <p>Lenovo PCs ship with man-in-the-middle adware that breaks HTTPS connections, we’ll break down how this is possible, the danger that still exists & more.</p> - -<p>Plus the story of a billion dollar cyber heist anyone could pull off, the Equation group, your questions, our answers & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/ver-RlX7V3A" height="1" width="1" alt=""/> - Thu, 19 Feb 2015 17:29:15 -0800 - - 5C937351-557D-46C3-9620-5BFCC6A6964D - Jupiter Broadcasting - Lenovo PCs ship with man-in-the-middle adware that breaks HTTPS connections, we’ll break down how this is possible, the danger that still exists & more. - -Plus the story of a billion dollar cyber heist anyone could pull off, the Equation group & much more! - - no - 1:11:57 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/77712/superfishy-mistake-techsnap-202/ - - Group Problemcy | TechSNAP 201 - http://feedproxy.google.com/~r/techsnapmp3/~3/r9Uc6ICSZNg/ - <p>A 20 year old design flaw in Windows has just been patched & it requires some major re-working of the software. Attackers compromise Forbes.com & why Facebook’s new ThreatExchange platform could be a great idea.</p> - -<p>Plus a great batch of feedback, our answers & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/r9Uc6ICSZNg" height="1" width="1" alt=""/> - Thu, 12 Feb 2015 19:07:53 -0800 - - 833C5608-467C-4F68-BADF-E288D6BD7DB1 - Jupiter Broadcasting - A 20 year old design flaw in Windows has just been patched & it requires some major re-working of the software. Attackers compromise Forbes.com & why Facebook’s new ThreatExchange platform could be a great idea. - - no - 1:34:06 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/77327/group-problemcy-techsnap-201/ - - Your TechSNAP Story | TechSNAP 200 - http://feedproxy.google.com/~r/techsnapmp3/~3/9TlzU9ufgQA/ - <p>A new major security breach at a large health insurance firm could expose 10s of millions, a phone phishing scam anyone could fall for & we celebrate our 200th episode with your TechSNAP stories.</p> - -<p>Then its a storage spectacular Q&A & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/9TlzU9ufgQA" height="1" width="1" alt=""/> - Thu, 05 Feb 2015 19:51:18 -0800 - - E4F74996-8A43-4FA0-A278-3129AAC2A67F - Jupiter Broadcasting - A new major security breach at a large health insurance firm could expose 10s of millions, a phone phishing scam anyone could fall for & we celebrate our 200th episode with your TechSNAP stories. - -Then its a storage spectacular Q&A & much, much more! - - no - 1:39:25 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/76892/your-techsnap-story-techsnap-200/ - - Internet of Problems | TechSNAP 199 - http://feedproxy.google.com/~r/techsnapmp3/~3/nLAj-eNHY3M/ - <p>The internet of dangerous things is arriving but what about taking care of the devices we already have? We’ll discuss! </p> - -<p>Plus details on critical updates from Adobe, the surprising number of Gas Stations vulnerable to exploitation via the internet, your questions, our answers & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/nLAj-eNHY3M" height="1" width="1" alt=""/> - Thu, 29 Jan 2015 18:56:32 -0800 - - F42D877B-E652-45C4-A06E-D526EB3BAEB0 - Jupiter Broadcasting - The internet of dangerous things is arriving but what about taking care of the devices we already have? - -Plus details on critical updates from Adobe, the surprising number of Gas Stations vulnerable to exploitation via the internet & much, much more! - - no - 1:24:34 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/76517/internet-of-problems-techsnap-199/ - - Dude Where's My Card? | TechSNAP 198 - http://feedproxy.google.com/~r/techsnapmp3/~3/Dv0qRXGN-qo/ - <p>Adobe has a bad week, with exploits in the wild & no patch. We’ll share the details. Had your credit card stolen? We’ll tell you how.</p> - -<p>Plus the harsh reality for IT departments, a great batch of questions, our answers & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/Dv0qRXGN-qo" height="1" width="1" alt=""/> - Thu, 22 Jan 2015 21:17:32 -0800 - - FF3C8952-6100-4E18-B6BD-27E24BC80B69 - Jupiter Broadcasting - Adobe has a bad week, with exploits in the wild & no patch. We’ll share the details. Had your credit card stolen? We’ll tell you how. - -Plus the harsh reality for IT departments, a great batch of questions, our answers & much much more! - - no - 1:44:56 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/76052/dude-wheres-my-card-techsnap-198/ - - Patch and Notify | TechSNAP 197 - http://feedproxy.google.com/~r/techsnapmp3/~3/dHYD0LW8hqU/ - <p>Been putting off that patch? This week we’ll cover how an out of date Joomla install led to a massive breach, Microsoft and Google spar over patch disclosures & picking the right security question...</p> - -<p>Plus a great batch of your feedback, a rocking round up & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/dHYD0LW8hqU" height="1" width="1" alt=""/> - Thu, 15 Jan 2015 22:26:51 -0800 - - 9B822D20-CBBF-4C25-990C-C1A039BBFCC6 - Jupiter Broadcasting - Been putting off that patch? This week we’ll cover how an out of date Joomla install led to a massive breach, Microsoft and Google spar over patch disclosures, picking the right security question & more! - - no - 2:01:07 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/75657/patch-and-notify-techsnap-197/ - - Sony’s Hard Lessons | TechSNAP 196 - http://feedproxy.google.com/~r/techsnapmp3/~3/OoAeMNjNtZw/ - <p>We reflect on the lessons learned from the Sony Hack & discuss some of the tools used to own their network.</p> - -<p>Plus a overview of what makes up a filesystem, a run down of the Bacula backup system & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/OoAeMNjNtZw" height="1" width="1" alt=""/> - Thu, 08 Jan 2015 19:45:48 -0800 - - 220FD560-AB34-42B7-81E3-537B194A74C9 - Jupiter Broadcasting - We reflect on the lessons learned from the Sony Hack & discuss some of the tools used to own their network. - -Plus a overview of what makes up a filesystem, a run down of the Bacula backup system & much more! - - - no - 1:45:51 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/75192/sonys-hard-lessons-techsnap-196/ - - Cloudy With a Chance of SSL | TechSNAP 195 - http://feedproxy.google.com/~r/techsnapmp3/~3/arhcRuIverk/ - <p>We go inside the epic takedown of SpamHaus, then we break down why CloudFlare’s Flexible SSL is the opposite of security.</p> - -<p>Followed by a great batch of questions, our answers & much much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/arhcRuIverk" height="1" width="1" alt=""/> - Thu, 01 Jan 2015 11:54:47 -0800 - - 03BE94A1-C43D-4CE3-B534-683C04B8A916 - Jupiter Broadcasting - We go inside the epic takedown of SpamHaus, then we break down why CloudFlare’s Flexible SSL is the opposite of security. - -Followed by a great batch of questions, our answers & much much more! - - no - 1:09:20 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/74772/cloudy-with-a-chance-of-ssl-techsnap-195/ - - Best Of TechSNAP 2014 | TechSNAP 194 - http://feedproxy.google.com/~r/techsnapmp3/~3/tOwDWNQZlfI/ - We look back at this year in TechSNAP. Allan shares his war stories, TrueCrypt shuts down, Heartbleed happens & more!<img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/tOwDWNQZlfI" height="1" width="1" alt=""/> - Thu, 25 Dec 2014 13:39:47 -0800 - - F58A0515-A7D0-457C-832E-D41086DF0B45 - Jupiter Broadcasting - We look back at this year in TechSNAP. Allan shares his war stories, TrueCrypt shuts down, Heartbleed happens & more! - - no - 1:40:52 - - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com)Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/74442/best-of-techsnap-2014-techsnap-194/ - - Don’t Fire IT | TechSNAP 193 - http://feedproxy.google.com/~r/techsnapmp3/~3/UnRwTZONlG0/ - <p>More and more data breaches are leading to blackmail but the stats don’t tell the whole story. We’ll explain.</p> - -<p>Plus the latest in the Sony hack, and the wider reaction. Plus a great batch of emails & much, much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/UnRwTZONlG0" height="1" width="1" alt=""/> - Thu, 18 Dec 2014 18:54:47 -0800 - - 7D37360F-5254-4895-8E17-D106879873C3 - no - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com) - - More and more data breaches are leading to blackmail but the stats don’t tell the whole story. We’ll explain. Plus the latest in the Sony hack, and the wider reaction. Plus a great batch of emails & much, much more!chris@jupiterbroadcasting.com More and more data breaches are leading to blackmail but the stats don’t tell the whole story. We’ll explain. Plus the latest in the Sony hack, and the wider reaction. Plus a great batch of emails & much, much more!Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/74187/dont-fire-it-techsnap-193/ - - Signed by Sony | TechSNAP 192 - http://feedproxy.google.com/~r/techsnapmp3/~3/us-o1R21euI/ - <p>If we could rebuild the Internet from scratch, what would we change? It’s more than just a thought experiment. We’ll share the details about real world research being done today!</p> - -<p>Plus we dig through the Sony hack, answer a ton of great question & a rocking roundup!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/us-o1R21euI" height="1" width="1" alt=""/> - Thu, 11 Dec 2014 18:52:43 -0800 - - 868A8960-FD9B-40BE-8923-918EC18F496F - no - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com) - - If we could rebuild the Internet from scratch, what would we change? It’s more than just a thought experiment. We’ll share the details about real world research being done today! Plus we dig through the Sony hack, answer a ton of great question & a rockichris@jupiterbroadcasting.com If we could rebuild the Internet from scratch, what would we change? It’s more than just a thought experiment. We’ll share the details about real world research being done today! Plus we dig through the Sony hack, answer a ton of great question & a rocking roundup!Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/73732/signed-by-sony-techsnap-192/ - - Celebrity Bugs | TechSNAP 191 - http://feedproxy.google.com/~r/techsnapmp3/~3/kFqn5TlUzqk/ - <p>2014 has been the year of the celebrity bugs, we take a look at the new trend of giving security vulnerabilities names & logos & ask who it truly benefits.</p> - -<p>Plus practical way to protect yourself from ATM Skimmers, how they work & much more!</p><img src="http://feeds.feedburner.com/~r/techsnapmp3/~4/kFqn5TlUzqk" height="1" width="1" alt=""/> - Thu, 04 Dec 2014 20:58:59 -0800 - - AABF9C60-DD0D-414E-BA28-2FA568A0DE16 - no - chris@jupiterbroadcasting.com (chris@jupiterbroadcasting.com) - - 2014 has been the year of the celebrity bugs, we take a look at the new trend of giving security vulnerabilities names & logos & ask who it truly benefits. Plus practical way to protect yourself from ATM Skimmers, how they work & much more!chris@jupiterbroadcasting.com 2014 has been the year of the celebrity bugs, we take a look at the new trend of giving security vulnerabilities names & logos & ask who it truly benefits. Plus practical way to protect yourself from ATM Skimmers, how they work & much more!Analysis,technology,stories,Linux,Windows,Microsoft,encryption,SSL,bsd,apache,debate,news,TechSNAP,Jupiter,Broadcastinghttp://www.jupiterbroadcasting.com/73082/celebrity-bugs-techsnap-191/ - Jupiter Broadcasting, LLCchris@jupiterbroadcasting.comnonadultIn-depth Discussion of Tech Topics. - diff --git a/hammond-data/migrations/2017-12-09-125835_change_episode_pk/down.sql b/hammond-data/migrations/2017-12-09-125835_change_episode_pk/down.sql index 01f66ff..866e08f 100644 --- a/hammond-data/migrations/2017-12-09-125835_change_episode_pk/down.sql +++ b/hammond-data/migrations/2017-12-09-125835_change_episode_pk/down.sql @@ -16,4 +16,8 @@ CREATE TABLE episode ( podcast_id INTEGER NOT NULL ); -INSERT INTO episode SELECT * FROM old_table; \ No newline at end of file +INSERT INTO episode (title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id) +SELECT title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id +FROM old_table; + +Drop table old_table; \ No newline at end of file diff --git a/hammond-data/migrations/2017-12-09-125835_change_episode_pk/up.sql b/hammond-data/migrations/2017-12-09-125835_change_episode_pk/up.sql index cbe40dd..2a8d1c0 100644 --- a/hammond-data/migrations/2017-12-09-125835_change_episode_pk/up.sql +++ b/hammond-data/migrations/2017-12-09-125835_change_episode_pk/up.sql @@ -2,7 +2,7 @@ ALTER TABLE episode RENAME TO old_table; CREATE TABLE episode ( title TEXT NOT NULL, - uri TEXT UNIQUE, + uri TEXT, local_uri TEXT, description TEXT, published_date TEXT, diff --git a/hammond-data/migrations/2017-12-22-145740_add_duration_column/down.sql b/hammond-data/migrations/2017-12-22-145740_add_duration_column/down.sql new file mode 100644 index 0000000..7f1bbcb --- /dev/null +++ b/hammond-data/migrations/2017-12-22-145740_add_duration_column/down.sql @@ -0,0 +1,22 @@ +ALTER TABLE episode RENAME TO old_table; + +CREATE TABLE episode ( + title TEXT NOT NULL, + uri TEXT, + local_uri TEXT, + description TEXT, + published_date TEXT, + epoch INTEGER NOT NULL DEFAULT 0, + length INTEGER, + guid TEXT, + played INTEGER, + podcast_id INTEGER NOT NULL, + favorite INTEGER DEFAULT 0, + archive INTEGER DEFAULT 0, + PRIMARY KEY (title, podcast_id) +); + +INSERT INTO episode (title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id) +SELECT title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id +FROM old_table; +Drop table old_table; diff --git a/hammond-data/migrations/2017-12-22-145740_add_duration_column/up.sql b/hammond-data/migrations/2017-12-22-145740_add_duration_column/up.sql new file mode 100644 index 0000000..f2dcf10 --- /dev/null +++ b/hammond-data/migrations/2017-12-22-145740_add_duration_column/up.sql @@ -0,0 +1,23 @@ +ALTER TABLE episode RENAME TO old_table; + +CREATE TABLE episode ( + title TEXT NOT NULL, + uri TEXT, + local_uri TEXT, + description TEXT, + published_date TEXT, + epoch INTEGER NOT NULL DEFAULT 0, + length INTEGER, + duration INTEGER, + guid TEXT, + played INTEGER, + podcast_id INTEGER NOT NULL, + favorite INTEGER DEFAULT 0, + archive INTEGER DEFAULT 0, + PRIMARY KEY (title, podcast_id) +); + +INSERT INTO episode (title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id) +SELECT title, uri, local_uri, description, published_date, epoch, length, guid, played, favorite, archive, podcast_id +FROM old_table; +Drop table old_table; \ No newline at end of file diff --git a/hammond-data/migrations/2017-12-30-201631_remove_published_date/down.sql b/hammond-data/migrations/2017-12-30-201631_remove_published_date/down.sql new file mode 100644 index 0000000..e5ec3e3 --- /dev/null +++ b/hammond-data/migrations/2017-12-30-201631_remove_published_date/down.sql @@ -0,0 +1,24 @@ +ALTER TABLE episode RENAME TO old_table; + +CREATE TABLE episode ( + title TEXT NOT NULL, + uri TEXT, + local_uri TEXT, + description TEXT, + published_date TEXT, + epoch INTEGER NOT NULL DEFAULT 0, + length INTEGER, + duration INTEGER, + guid TEXT, + played INTEGER, + podcast_id INTEGER NOT NULL, + favorite INTEGER DEFAULT 0, + archive INTEGER DEFAULT 0, + PRIMARY KEY (title, podcast_id) +); + +INSERT INTO episode (title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id) +SELECT title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id +FROM old_table; + +Drop table old_table; \ No newline at end of file diff --git a/hammond-data/migrations/2017-12-30-201631_remove_published_date/up.sql b/hammond-data/migrations/2017-12-30-201631_remove_published_date/up.sql new file mode 100644 index 0000000..2723e95 --- /dev/null +++ b/hammond-data/migrations/2017-12-30-201631_remove_published_date/up.sql @@ -0,0 +1,23 @@ +ALTER TABLE episode RENAME TO old_table; + +CREATE TABLE episode ( + title TEXT NOT NULL, + uri TEXT, + local_uri TEXT, + description TEXT, + epoch INTEGER NOT NULL DEFAULT 0, + length INTEGER, + duration INTEGER, + guid TEXT, + played INTEGER, + podcast_id INTEGER NOT NULL, + favorite INTEGER DEFAULT 0, + archive INTEGER DEFAULT 0, + PRIMARY KEY (title, podcast_id) +); + +INSERT INTO episode (title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id) +SELECT title, uri, local_uri, description, epoch, length, duration, guid, played, favorite, archive, podcast_id +FROM old_table; + +Drop table old_table; \ No newline at end of file diff --git a/hammond-data/src/database.rs b/hammond-data/src/database.rs index bb18bda..0a37aaa 100644 --- a/hammond-data/src/database.rs +++ b/hammond-data/src/database.rs @@ -1,9 +1,11 @@ -use r2d2_diesel::ConnectionManager; -use diesel::prelude::*; -use r2d2; +//! Database Setup. This is only public to help with some unit tests. + +use diesel::prelude::*; +use diesel::r2d2; +use diesel::r2d2::ConnectionManager; -use std::path::PathBuf; use std::io; +use std::path::PathBuf; use errors::*; @@ -35,6 +37,7 @@ lazy_static! { static ref DB_PATH: PathBuf = TEMPDIR.path().join("hammond.db"); } +/// Get an r2d2 `SqliteConnection`. pub(crate) fn connection() -> Pool { POOL.clone() } @@ -57,8 +60,7 @@ fn init_pool(db_path: &str) -> Pool { fn run_migration_on(connection: &SqliteConnection) -> Result<()> { info!("Running DB Migrations..."); // embedded_migrations::run(connection)?; - embedded_migrations::run_with_output(connection, &mut io::stdout())?; - Ok(()) + embedded_migrations::run_with_output(connection, &mut io::stdout()).map_err(From::from) } /// Reset the database into a clean state. diff --git a/hammond-data/src/dbqueries.rs b/hammond-data/src/dbqueries.rs index f83bc0b..0a1f519 100644 --- a/hammond-data/src/dbqueries.rs +++ b/hammond-data/src/dbqueries.rs @@ -1,217 +1,336 @@ //! Random CRUD helper functions. -use diesel::prelude::*; -use diesel; -use models::queryables::{Episode, Podcast, Source}; use chrono::prelude::*; -use errors::*; +use diesel::prelude::*; + +use diesel; +use diesel::dsl::exists; +use diesel::select; use database::connection; +use errors::*; +use models::*; pub fn get_sources() -> Result> { use schema::source::dsl::*; - let db = connection(); let con = db.get()?; - Ok(source.load::(&*con)?) + + source + .order((http_etag.asc(), last_modified.asc())) + .load::(&con) + .map_err(From::from) } pub fn get_podcasts() -> Result> { use schema::podcast::dsl::*; - let db = connection(); let con = db.get()?; - Ok(podcast.load::(&*con)?) + + podcast + .order(title.asc()) + .load::(&con) + .map_err(From::from) } pub fn get_episodes() -> Result> { use schema::episode::dsl::*; - let db = connection(); let con = db.get()?; - Ok(episode.order(epoch.desc()).load::(&*con)?) + + episode + .order(epoch.desc()) + .load::(&con) + .map_err(From::from) } -pub fn get_downloaded_episodes() -> Result> { +pub(crate) fn get_downloaded_episodes() -> Result> { use schema::episode::dsl::*; - let db = connection(); let con = db.get()?; - Ok(episode + + episode + .select((rowid, local_uri, played)) .filter(local_uri.is_not_null()) - .load::(&*con)?) + .load::(&con) + .map_err(From::from) } -pub fn get_played_episodes() -> Result> { - use schema::episode::dsl::*; +// pub(crate) fn get_played_episodes() -> Result> { +// use schema::episode::dsl::*; +// let db = connection(); +// let con = db.get()?; +// episode +// .filter(played.is_not_null()) +// .load::(&con) +// .map_err(From::from) +// } + +pub(crate) fn get_played_cleaner_episodes() -> Result> { + use schema::episode::dsl::*; let db = connection(); let con = db.get()?; - Ok(episode.filter(played.is_not_null()).load::(&*con)?) + + episode + .select((rowid, local_uri, played)) + .filter(played.is_not_null()) + .load::(&con) + .map_err(From::from) } -pub fn get_episode_from_id(ep_id: i32) -> Result { +pub fn get_episode_from_rowid(ep_id: i32) -> Result { use schema::episode::dsl::*; - let db = connection(); let con = db.get()?; - Ok(episode + + episode .filter(rowid.eq(ep_id)) - .get_result::(&*con)?) + .get_result::(&con) + .map_err(From::from) } pub fn get_episode_local_uri_from_id(ep_id: i32) -> Result> { use schema::episode::dsl::*; - let db = connection(); let con = db.get()?; - Ok(episode + episode .filter(rowid.eq(ep_id)) .select(local_uri) - .get_result::>(&*con)?) + .get_result::>(&con) + .map_err(From::from) } -pub fn get_episodes_with_limit(limit: u32) -> Result> { - use schema::episode::dsl::*; - +pub fn get_episodes_widgets_with_limit(limit: u32) -> Result> { + use schema::episode; let db = connection(); let con = db.get()?; - Ok(episode - .order(epoch.desc()) + episode::table + .select(( + episode::rowid, + episode::title, + episode::uri, + episode::local_uri, + episode::epoch, + episode::length, + episode::duration, + episode::played, + episode::podcast_id, + )) + .order(episode::epoch.desc()) .limit(i64::from(limit)) - .load::(&*con)?) + .load::(&con) + .map_err(From::from) } pub fn get_podcast_from_id(pid: i32) -> Result { use schema::podcast::dsl::*; - let db = connection(); let con = db.get()?; - Ok(podcast.filter(id.eq(pid)).get_result::(&*con)?) + + podcast + .filter(id.eq(pid)) + .get_result::(&con) + .map_err(From::from) +} + +pub fn get_podcast_cover_from_id(pid: i32) -> Result { + use schema::podcast::dsl::*; + let db = connection(); + let con = db.get()?; + + podcast + .select((id, title, image_uri)) + .filter(id.eq(pid)) + .get_result::(&con) + .map_err(From::from) } pub fn get_pd_episodes(parent: &Podcast) -> Result> { use schema::episode::dsl::*; - let db = connection(); let con = db.get()?; - Ok(Episode::belonging_to(parent) + Episode::belonging_to(parent) .order(epoch.desc()) - .load::(&*con)?) + .load::(&con) + .map_err(From::from) +} + +pub fn get_pd_episodeswidgets(parent: &Podcast) -> Result> { + use schema::episode::dsl::*; + let db = connection(); + let con = db.get()?; + + episode.select((rowid, title, uri, local_uri, epoch, length, duration, played, podcast_id)) + .filter(podcast_id.eq(parent.id())) + // .group_by(epoch) + .order(epoch.desc()) + .load::(&con) + .map_err(From::from) } pub fn get_pd_unplayed_episodes(parent: &Podcast) -> Result> { use schema::episode::dsl::*; - let db = connection(); let con = db.get()?; - Ok(Episode::belonging_to(parent) + Episode::belonging_to(parent) .filter(played.is_null()) .order(epoch.desc()) - .load::(&*con)?) + .load::(&con) + .map_err(From::from) } -pub fn get_pd_episodes_limit(parent: &Podcast, limit: u32) -> Result> { - use schema::episode::dsl::*; - - let db = connection(); - let con = db.get()?; - - Ok(Episode::belonging_to(parent) - .order(epoch.desc()) - .limit(i64::from(limit)) - .load::(&*con)?) -} - -pub fn get_source_from_uri(uri_: &str) -> Result { - use schema::source::dsl::*; - - let db = connection(); - let con = db.get()?; - Ok(source.filter(uri.eq(uri_)).get_result::(&*con)?) -} - -// pub fn get_podcast_from_title(title_: &str) -> QueryResult { -// use schema::podcast::dsl::*; +// pub(crate) fn get_pd_episodes_limit(parent: &Podcast, limit: u32) -> Result> { +// use schema::episode::dsl::*; // let db = connection(); // let con = db.get()?; -// podcast -// .filter(title.eq(title_)) -// .get_result::(&*con) + +// Episode::belonging_to(parent) +// .order(epoch.desc()) +// .limit(i64::from(limit)) +// .load::(&con) +// .map_err(From::from) // } +pub fn get_source_from_uri(uri_: &str) -> Result { + use schema::source::dsl::*; + let db = connection(); + let con = db.get()?; + + source + .filter(uri.eq(uri_)) + .get_result::(&con) + .map_err(From::from) +} + pub fn get_podcast_from_source_id(sid: i32) -> Result { use schema::podcast::dsl::*; - let db = connection(); let con = db.get()?; - Ok(podcast + + podcast .filter(source_id.eq(sid)) - .get_result::(&*con)?) + .get_result::(&con) + .map_err(From::from) } -// TODO: unhack me -pub fn get_episode_from_new_episode( - con: &SqliteConnection, - title_: &str, - pid: i32, -) -> QueryResult { +pub fn get_episode_from_pk(title_: &str, pid: i32) -> Result { use schema::episode::dsl::*; + let db = connection(); + let con = db.get()?; episode .filter(title.eq(title_)) .filter(podcast_id.eq(pid)) - .get_result::(&*con) + .get_result::(&con) + .map_err(From::from) } -pub fn remove_feed(pd: &Podcast) -> Result<()> { +pub(crate) fn get_episode_minimal_from_pk(title_: &str, pid: i32) -> Result { + use schema::episode::dsl::*; + let db = connection(); + let con = db.get()?; + + episode + .select((rowid, title, uri, epoch, duration, guid, podcast_id)) + .filter(title.eq(title_)) + .filter(podcast_id.eq(pid)) + .get_result::(&con) + .map_err(From::from) +} + +pub(crate) fn remove_feed(pd: &Podcast) -> Result<()> { let db = connection(); let con = db.get()?; con.transaction(|| -> Result<()> { delete_source(&con, pd.source_id())?; - delete_podcast(&con, *pd.id())?; - delete_podcast_episodes(&con, *pd.id())?; + delete_podcast(&con, pd.id())?; + delete_podcast_episodes(&con, pd.id())?; info!("Feed removed from the Database."); Ok(()) }) } -pub fn delete_source(con: &SqliteConnection, source_id: i32) -> QueryResult { +fn delete_source(con: &SqliteConnection, source_id: i32) -> QueryResult { use schema::source::dsl::*; - diesel::delete(source.filter(id.eq(source_id))).execute(&*con) + diesel::delete(source.filter(id.eq(source_id))).execute(con) } -pub fn delete_podcast(con: &SqliteConnection, podcast_id: i32) -> QueryResult { +fn delete_podcast(con: &SqliteConnection, podcast_id: i32) -> QueryResult { use schema::podcast::dsl::*; - diesel::delete(podcast.filter(id.eq(podcast_id))).execute(&*con) + diesel::delete(podcast.filter(id.eq(podcast_id))).execute(con) } -pub fn delete_podcast_episodes(con: &SqliteConnection, parent_id: i32) -> QueryResult { +fn delete_podcast_episodes(con: &SqliteConnection, parent_id: i32) -> QueryResult { use schema::episode::dsl::*; - diesel::delete(episode.filter(podcast_id.eq(parent_id))).execute(&*con) + diesel::delete(episode.filter(podcast_id.eq(parent_id))).execute(con) } -pub fn update_none_to_played_now(parent: &Podcast) -> Result { +pub fn source_exists(url: &str) -> Result { + use schema::source::dsl::*; + + let db = connection(); + let con = db.get()?; + + select(exists(source.filter(uri.eq(url)))) + .get_result(&con) + .map_err(From::from) +} + +pub(crate) fn podcast_exists(source_id_: i32) -> Result { + use schema::podcast::dsl::*; + + let db = connection(); + let con = db.get()?; + + select(exists(podcast.filter(source_id.eq(source_id_)))) + .get_result(&con) + .map_err(From::from) +} + +#[cfg_attr(rustfmt, rustfmt_skip)] +pub(crate) fn episode_exists(title_: &str, podcast_id_: i32) -> Result { use schema::episode::dsl::*; let db = connection(); let con = db.get()?; + select(exists(episode.filter(podcast_id.eq(podcast_id_)).filter(title.eq(title_)))) + .get_result(&con) + .map_err(From::from) +} + +pub(crate) fn index_new_episodes(eps: &[NewEpisode]) -> Result<()> { + use schema::episode::dsl::*; + let db = connection(); + let con = db.get()?; + + diesel::insert_into(episode) + .values(eps) + .execute(&*con) + .map_err(From::from) + .map(|_| ()) +} + +pub fn update_none_to_played_now(parent: &Podcast) -> Result { + use schema::episode::dsl::*; + let db = connection(); + let con = db.get()?; + let epoch_now = Utc::now().timestamp() as i32; con.transaction(|| -> Result { - Ok( - diesel::update(Episode::belonging_to(parent).filter(played.is_null())) - .set(played.eq(Some(epoch_now))) - .execute(&*con)?, - ) + diesel::update(Episode::belonging_to(parent).filter(played.is_null())) + .set(played.eq(Some(epoch_now))) + .execute(&con) + .map_err(From::from) }) } diff --git a/hammond-data/src/errors.rs b/hammond-data/src/errors.rs index 274a1a1..6a2d00c 100644 --- a/hammond-data/src/errors.rs +++ b/hammond-data/src/errors.rs @@ -1,18 +1,25 @@ -use diesel::result; +use diesel; +use diesel::r2d2; use diesel_migrations::RunMigrationsError; -use rss; +use hyper; +use native_tls; use reqwest; -use r2d2; +use rss; +use url; use std::io; error_chain! { foreign_links { - R2D2Error(r2d2::Error); - DieselResultError(result::Error); + DieselResultError(diesel::result::Error); DieselMigrationError(RunMigrationsError); + R2D2Error(r2d2::Error); + R2D2PoolError(r2d2::PoolError); RSSError(rss::Error); ReqError(reqwest::Error); + HyperError(hyper::Error); + UrlError(url::ParseError); + TLSError(native_tls::Error); IoError(io::Error); } } diff --git a/hammond-data/src/feed.rs b/hammond-data/src/feed.rs index af38f1a..f416c8c 100644 --- a/hammond-data/src/feed.rs +++ b/hammond-data/src/feed.rs @@ -1,287 +1,208 @@ -//! Index and retrieve Feeds. +//! Index Feeds. -use rayon::prelude::*; -use diesel::prelude::*; -use rayon::iter::IntoParallelIterator; - -use diesel::associations::Identifiable; +use futures::future::*; +use itertools::{Either, Itertools}; use rss; use dbqueries; -use parser; - -use models::queryables::{Episode, Podcast, Source}; -use models::insertables::{NewEpisode, NewPodcast}; -use database::connection; use errors::*; +use models::{IndexState, Update}; +use models::{NewEpisode, NewPodcast, Podcast}; +use pipeline::*; -#[derive(Debug)] -/// Wrapper struct that hold a `Source` and the `rss::Channel` +type InsertUpdate = (Vec, Vec>); + +/// Wrapper struct that hold a `Source` id and the `rss::Channel` /// that corresponds to the `Source.uri` field. +#[derive(Debug, Clone, Builder, PartialEq)] +#[builder(derive(Debug))] +#[builder(setter(into))] pub struct Feed { + /// The `rss::Channel` parsed from the `Source` uri. channel: rss::Channel, - source: Source, + /// The `Source` id where the xml `rss::Channel` came from. + source_id: i32, } impl Feed { - /// Constructor that consumes a `Source` and returns the corresponding `Feed` struct. - pub fn from_source(s: Source) -> Result { - s.into_feed() + /// Index the contents of the RSS `Feed` into the database. + pub fn index(self) -> Box + Send> { + let fut = self.parse_podcast_async() + .and_then(|pd| pd.to_podcast()) + .and_then(move |pd| self.index_channel_items(&pd)); + + Box::new(fut) } - /// Constructor that consumes a `Source` and a `rss::Channel` returns a `Feed` struct. - pub fn from_channel_source(chan: rss::Channel, s: Source) -> Feed { - Feed { - channel: chan, - source: s, - } + fn parse_podcast(&self) -> NewPodcast { + NewPodcast::new(&self.channel, self.source_id) } - fn index(&self) -> Result<()> { - let pd = self.get_podcast()?; - self.index_channel_items(&pd) + fn parse_podcast_async(&self) -> Box + Send> { + Box::new(ok(self.parse_podcast())) } - // #[allow(dead_code)] - // fn index_channel(&self) -> Result<()> { - // self.parse_channel().index()?; - // Ok(()) - // } - - // TODO: Refactor transcactions and find a way to do it in parallel. - fn index_channel_items(&self, pd: &Podcast) -> Result<()> { - let episodes = self.parse_channel_items(pd); - let db = connection(); - let con = db.get()?; - - let _ = con.transaction::<(), Error, _>(|| { - episodes.into_iter().for_each(|x| { - let e = x.index(&con); - if let Err(err) = e { - error!("Failed to index episode: {:?}.", x.title()); - error!("Error msg: {}", err); - }; + fn index_channel_items(&self, pd: &Podcast) -> Box + Send> { + let fut = self.get_stuff(pd) + .and_then(|(insert, update)| { + if !insert.is_empty() { + info!("Indexing {} episodes.", insert.len()); + dbqueries::index_new_episodes(insert.as_slice())?; + } + Ok((insert, update)) + }) + .map(|(_, update)| { + if !update.is_empty() { + info!("Updating {} episodes.", update.len()); + // see get_stuff for more + update + .into_iter() + .filter_map(|x| x) + .for_each(|(ref ep, rowid)| { + if let Err(err) = ep.update(rowid) { + error!("Failed to index episode: {:?}.", ep.title()); + error!("Error msg: {}", err); + }; + }) + } }); - Ok(()) - }); - Ok(()) + + Box::new(fut) } - fn parse_channel(&self) -> NewPodcast { - parser::new_podcast(&self.channel, *self.source.id()) + fn get_stuff(&self, pd: &Podcast) -> Box + Send> { + let (insert, update): (Vec<_>, Vec<_>) = self.channel + .items() + .into_iter() + .map(|item| glue_async(item, pd.id())) + // This is sort of ugly but I think it's cheaper than pushing None + // to updated and filtering it out later. + // Even though we already map_filter in index_channel_items. + // I am not sure what the optimizations are on match vs allocating None. + .map(|fut| { + fut.and_then(|x| match x { + IndexState::NotChanged => bail!("Nothing to do here."), + _ => Ok(x), + }) + }) + .flat_map(|fut| fut.wait()) + .partition_map(|state| match state { + IndexState::Index(e) => Either::Left(e), + IndexState::Update(e) => Either::Right(Some(e)), + // This should never occur + IndexState::NotChanged => Either::Right(None), + }); + + Box::new(ok((insert, update))) } - - fn parse_channel_items(&self, pd: &Podcast) -> Vec { - let items = self.channel.items(); - let new_episodes: Vec<_> = items - .into_par_iter() - .filter_map(|item| parser::new_episode(item, *pd.id()).ok()) - .collect(); - - new_episodes - } - - fn get_podcast(&self) -> Result { - self.parse_channel().into_podcast() - } - - #[allow(dead_code)] - fn get_episodes(&self) -> Result> { - let pd = self.get_podcast()?; - let eps = self.parse_channel_items(&pd); - - let db = connection(); - let con = db.get()?; - // TODO: Make it parallel - // This returns only the episodes in the xml feed. - let episodes: Vec<_> = eps.into_iter() - .filter_map(|ep| ep.into_episode(&con).ok()) - .collect(); - - Ok(episodes) - - // This would return every episode of the feed from the db. - // self.index_channel_items(&pd)?; - // Ok(dbqueries::get_pd_episodes(&pd)?) - } -} - -/// Use's `fetch_all` to retrieve a list of `Feed`s and use index them using `feed::index`. -pub fn index_all() -> Result<()> { - let feeds = fetch_all()?; - - index(feeds); - Ok(()) -} - -/// Handle the indexing of a feed `F` into the Database. -/// -/// Consume a `ParallelIterator` and index it. -pub fn index>(feeds: F) { - feeds.into_par_iter().for_each(|f| { - let e = f.index(); - if e.is_err() { - error!("Error While trying to update the database."); - error!("Error msg: {}", e.unwrap_err()); - }; - }); - info!("Indexing done."); -} - -/// Retrieve a list of all the `Source` in the database, -/// then use `feed::fetch` to convert them into `Feed`s -/// and return them. -pub fn fetch_all() -> Result> { - let feeds = dbqueries::get_sources()?; - Ok(fetch(feeds)) -} - -/// Consume a `ParallelIterator` and return a list of `Feed`s. -pub fn fetch>(feeds: F) -> Vec { - let results: Vec<_> = feeds - .into_par_iter() - .filter_map(|x| { - let uri = x.uri().to_owned(); - let feed = Feed::from_source(x).ok(); - if feed.is_none() { - error!("Error While trying to fetch from source url: {}.", uri); - } - feed - }) - .collect(); - - results } #[cfg(test)] mod tests { + use rss::Channel; + use tokio_core::reactor::Core; + + use Source; + use database::truncate_db; + use dbqueries; + use utils::get_feed; + use std::fs; use std::io::BufReader; - use database::truncate_db; use super::*; - #[test] - /// Insert feeds and update/index them. - fn test_index_loop() { - truncate_db().unwrap(); - let inpt = vec![ - "https://request-for-explanation.github.io/podcast/rss.xml", - "https://feeds.feedburner.com/InterceptedWithJeremyScahill", - "http://feeds.propublica.org/propublica/podcast", - "http://feeds.feedburner.com/linuxunplugged", - ]; - - inpt.iter().for_each(|url| { - // Index the urls into the source table. - Source::from_url(url).unwrap(); - }); - - index_all().unwrap(); - - // Run again to cover Unique constrains erros. - index_all().unwrap(); - } - - #[test] - /// Insert feeds and update/index them. - fn test_fetch_loop() { - truncate_db().unwrap(); - let inpt = vec![ - "https://request-for-explanation.github.io/podcast/rss.xml", - "https://feeds.feedburner.com/InterceptedWithJeremyScahill", - "http://feeds.propublica.org/propublica/podcast", - "http://feeds.feedburner.com/linuxunplugged", - ]; - - inpt.iter().for_each(|url| { - // Index the urls into the source table. - Source::from_url(url).unwrap(); - }); - - fetch_all().unwrap(); - } + // (path, url) tuples. + const URLS: &[(&str, &str)] = { + &[ + ( + "tests/feeds/2018-01-20-Intercepted.xml", + "https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.\ + com/InterceptedWithJeremyScahill", + ), + ( + "tests/feeds/2018-01-20-LinuxUnplugged.xml", + "https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.\ + com/linuxunplugged", + ), + ( + "tests/feeds/2018-01-20-TheTipOff.xml", + "https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff", + ), + ( + "tests/feeds/2018-01-20-StealTheStars.xml", + "https://web.archive.org/web/20180120104957if_/https://rss.art19.\ + com/steal-the-stars", + ), + ( + "tests/feeds/2018-01-20-GreaterThanCode.xml", + "https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.\ + com/feed/podcast", + ), + ] + }; #[test] fn test_complete_index() { - // vec of (path, url) tuples. - let urls = vec![ - ( - "tests/feeds/Intercepted.xml", - "https://feeds.feedburner.com/InterceptedWithJeremyScahill", - ), - ( - "tests/feeds/LinuxUnplugged.xml", - "http://feeds.feedburner.com/linuxunplugged", - ), - ( - "tests/feeds/TheBreakthrough.xml", - "http://feeds.propublica.org/propublica/podcast", - ), - ( - "tests/feeds/R4Explanation.xml", - "https://request-for-explanation.github.io/podcast/rss.xml", - ), - ]; - truncate_db().unwrap(); - let feeds: Vec<_> = urls.iter() + let feeds: Vec<_> = URLS.iter() .map(|&(path, url)| { // Create and insert a Source into db let s = Source::from_url(url).unwrap(); - - // open the xml file - let feed = fs::File::open(path).unwrap(); - // parse it into a channel - let chan = rss::Channel::read_from(BufReader::new(feed)).unwrap(); - Feed::from_channel_source(chan, s) + get_feed(path, s.id()) }) .collect(); + let mut core = Core::new().unwrap(); // Index the channels - index(feeds); + let list: Vec<_> = feeds.into_iter().map(|x| x.index()).collect(); + let _foo = core.run(join_all(list)); // Assert the index rows equal the controlled results - assert_eq!(dbqueries::get_sources().unwrap().len(), 4); - assert_eq!(dbqueries::get_podcasts().unwrap().len(), 4); - assert_eq!(dbqueries::get_episodes().unwrap().len(), 274); + assert_eq!(dbqueries::get_sources().unwrap().len(), 5); + assert_eq!(dbqueries::get_podcasts().unwrap().len(), 5); + assert_eq!(dbqueries::get_episodes().unwrap().len(), 354); } #[test] - fn test_partial_index_podcast() { + fn test_feed_parse_podcast() { truncate_db().unwrap(); - let url = "https://feeds.feedburner.com/InterceptedWithJeremyScahill"; - let s1 = Source::from_url(url).unwrap(); - let s2 = Source::from_url(url).unwrap(); - assert_eq!(s1, s2); - assert_eq!(s1.id(), s2.id()); + let path = "tests/feeds/2018-01-20-Intercepted.xml"; + let feed = get_feed(path, 42); - let f1 = s1.into_feed().unwrap(); - let f2 = s2.into_feed().unwrap(); + let file = fs::File::open(path).unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); - let p1 = f1.get_podcast().unwrap(); - let p2 = { - f2.index().unwrap(); - f2.get_podcast().unwrap() - }; - assert_eq!(p1, p2); - assert_eq!(p1.id(), p2.id()); - assert_eq!(p1.source_id(), p2.source_id()); + let pd = NewPodcast::new(&channel, 42); + assert_eq!(feed.parse_podcast(), pd); + } - let eps1 = f1.get_episodes().unwrap(); - let eps2 = { - f2.index().unwrap(); - f2.get_episodes().unwrap() - }; + #[test] + fn test_feed_index_channel_items() { + truncate_db().unwrap(); - eps1.into_par_iter().zip(eps2).into_par_iter().for_each( - |(ep1, ep2): (Episode, Episode)| { - assert_eq!(ep1, ep2); - assert_eq!(ep1.id(), ep2.id()); - assert_eq!(ep1.podcast_id(), ep2.podcast_id()); - }, - ); + let path = "tests/feeds/2018-01-20-Intercepted.xml"; + let feed = get_feed(path, 42); + let pd = feed.parse_podcast().to_podcast().unwrap(); + + feed.index_channel_items(&pd).wait().unwrap(); + assert_eq!(dbqueries::get_podcasts().unwrap().len(), 1); + assert_eq!(dbqueries::get_episodes().unwrap().len(), 43); + } + + #[test] + fn test_feed_get_stuff() { + truncate_db().unwrap(); + + let path = "tests/feeds/2018-01-20-Intercepted.xml"; + let feed = get_feed(path, 42); + let pd = feed.parse_podcast().to_podcast().unwrap(); + + let (insert, update) = feed.get_stuff(&pd).wait().unwrap(); + assert_eq!(43, insert.len()); + assert_eq!(0, update.len()); + // TODO: find or create a feed to test updates too. } } diff --git a/hammond-data/src/lib.rs b/hammond-data/src/lib.rs index c562fbd..399d119 100644 --- a/hammond-data/src/lib.rs +++ b/hammond-data/src/lib.rs @@ -1,67 +1,71 @@ #![recursion_limit = "1024"] +#![cfg_attr(all(test, feature = "clippy"), allow(option_unwrap_used, result_unwrap_used))] #![cfg_attr(feature = "cargo-clippy", allow(blacklisted_name))] #![cfg_attr(feature = "clippy", warn(option_unwrap_used, result_unwrap_used, print_stdout, wrong_pub_self_convention, mut_mut, non_ascii_literal, similar_names, unicode_not_nfc, enum_glob_use, if_not_else, items_after_statements, used_underscore_binding))] -#![cfg_attr(all(test, feature = "clippy"), allow(option_unwrap_used, result_unwrap_used))] -//! A libraty for parsing, indexing and retrieving podcast Feeds, -//! into and from a Database. +//! FIXME: Docs #![allow(unknown_lints)] #![deny(bad_style, const_err, dead_code, improper_ctypes, legacy_directory_ownership, non_shorthand_field_patterns, no_mangle_generic_items, overflowing_literals, path_statements, patterns_in_fns_without_body, plugin_as_library, private_in_public, private_no_mangle_fns, private_no_mangle_statics, safe_extern_statics, - unconditional_recursion, unions_with_drop_fields, unused, unused_allocation, - unused_comparisons, unused_parens, while_true)] -#![deny(missing_debug_implementations, missing_docs, trivial_casts, trivial_numeric_casts, - unused_extern_crates)] + unconditional_recursion, unions_with_drop_fields, unused_allocation, unused_comparisons, + unused_parens, while_true)] +#![deny(missing_debug_implementations, missing_docs, trivial_casts, trivial_numeric_casts)] +#![deny(unused_extern_crates, unused)] -#[macro_use] -extern crate error_chain; - -#[macro_use] -extern crate lazy_static; - -#[macro_use] -extern crate log; - -#[macro_use] -extern crate diesel; - -#[macro_use] -extern crate diesel_migrations; +// #![feature(conservative_impl_trait)] #[macro_use] extern crate derive_builder; +#[macro_use] +extern crate diesel; +#[macro_use] +extern crate diesel_migrations; +#[macro_use] +extern crate error_chain; +#[macro_use] +extern crate lazy_static; +#[macro_use] +extern crate log; extern crate ammonia; extern crate chrono; +extern crate futures; +extern crate futures_cpupool; +extern crate hyper; +extern crate hyper_tls; extern crate itertools; -extern crate r2d2; -extern crate r2d2_diesel; +extern crate native_tls; +extern crate num_cpus; extern crate rayon; extern crate reqwest; extern crate rfc822_sanitizer; extern crate rss; +extern crate tokio_core; extern crate url; extern crate xdg; #[allow(missing_docs)] pub mod dbqueries; -pub mod utils; -pub mod feed; #[allow(missing_docs)] pub mod errors; -pub(crate) mod database; +pub mod utils; +pub mod database; +pub mod pipeline; pub(crate) mod models; +mod feed; mod parser; mod schema; -pub use models::queryables::{Episode, Podcast, Source}; +pub use feed::{Feed, FeedBuilder}; +pub use models::{Episode, EpisodeWidgetQuery, Podcast, PodcastCoverQuery, Source}; +pub use models::Save; /// [XDG Base Direcotory](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) Paths. #[allow(missing_debug_implementations)] diff --git a/hammond-data/src/models/episode.rs b/hammond-data/src/models/episode.rs new file mode 100644 index 0000000..948422c --- /dev/null +++ b/hammond-data/src/models/episode.rs @@ -0,0 +1,493 @@ +use chrono::prelude::*; +use diesel; +use diesel::SaveChangesDsl; +use diesel::prelude::*; + +use database::connection; +use errors::*; +use models::{Podcast, Save}; +use schema::episode; + +#[derive(Queryable, Identifiable, AsChangeset, Associations, PartialEq)] +#[table_name = "episode"] +#[changeset_options(treat_none_as_null = "true")] +#[primary_key(title, podcast_id)] +#[belongs_to(Podcast, foreign_key = "podcast_id")] +#[derive(Debug, Clone)] +/// Diesel Model of the episode table. +pub struct Episode { + rowid: i32, + title: String, + uri: Option, + local_uri: Option, + description: Option, + epoch: i32, + length: Option, + duration: Option, + guid: Option, + played: Option, + favorite: bool, + archive: bool, + podcast_id: i32, +} + +impl Save for Episode { + /// Helper method to easily save/"sync" current state of self to the Database. + fn save(&self) -> Result { + let db = connection(); + let tempdb = db.get()?; + + self.save_changes::(&*tempdb).map_err(From::from) + } +} + +impl Episode { + /// Get the value of the sqlite's `ROW_ID` + pub fn rowid(&self) -> i32 { + self.rowid + } + + /// Get the value of the `title` field. + pub fn title(&self) -> &str { + &self.title + } + + /// Set the `title`. + pub fn set_title(&mut self, value: &str) { + self.title = value.to_string(); + } + + /// Get the value of the `uri`. + /// + /// Represents the url(usually) that the media file will be located at. + pub fn uri(&self) -> Option<&str> { + self.uri.as_ref().map(|s| s.as_str()) + } + + /// Set the `uri`. + pub fn set_uri(&mut self, value: Option<&str>) { + self.uri = value.map(|x| x.to_string()); + } + + /// Get the value of the `local_uri`. + /// + /// Represents the local uri,usually filesystem path, + /// that the media file will be located at. + pub fn local_uri(&self) -> Option<&str> { + self.local_uri.as_ref().map(|s| s.as_str()) + } + + /// Set the `local_uri`. + pub fn set_local_uri(&mut self, value: Option<&str>) { + self.local_uri = value.map(|x| x.to_string()); + } + + /// Get the `description`. + pub fn description(&self) -> Option<&str> { + self.description.as_ref().map(|s| s.as_str()) + } + + /// Set the `description`. + pub fn set_description(&mut self, value: Option<&str>) { + self.description = value.map(|x| x.to_string()); + } + + /// Get the Episode's `guid`. + pub fn guid(&self) -> Option<&str> { + self.guid.as_ref().map(|s| s.as_str()) + } + + /// Set the `guid`. + pub fn set_guid(&mut self, value: Option<&str>) { + self.guid = value.map(|x| x.to_string()); + } + + /// Get the `epoch` value. + /// + /// Retrieved from the rss Item publish date. + /// Value is set to Utc whenever possible. + pub fn epoch(&self) -> i32 { + self.epoch + } + + /// Set the `epoch`. + pub fn set_epoch(&mut self, value: i32) { + self.epoch = value; + } + + /// Get the `length`. + /// + /// The number represents the size of the file in bytes. + pub fn length(&self) -> Option { + self.length + } + + /// Set the `length`. + pub fn set_length(&mut self, value: Option) { + self.length = value; + } + + /// Get the `duration` value. + /// + /// The number represents the duration of the item/episode in seconds. + pub fn duration(&self) -> Option { + self.duration + } + + /// Set the `duration`. + pub fn set_duration(&mut self, value: Option) { + self.duration = value; + } + + /// Epoch representation of the last time the episode was played. + /// + /// None/Null for unplayed. + pub fn played(&self) -> Option { + self.played + } + + /// Set the `played` value. + pub fn set_played(&mut self, value: Option) { + self.played = value; + } + + /// Represents the archiving policy for the episode. + pub fn archive(&self) -> bool { + self.archive + } + + /// Set the `archive` policy. + /// + /// If true, the download cleanr will ignore the episode + /// and the corresponding media value will never be automaticly deleted. + pub fn set_archive(&mut self, b: bool) { + self.archive = b + } + + /// Get the `favorite` status of the `Episode`. + pub fn favorite(&self) -> bool { + self.favorite + } + + /// Set `favorite` status. + pub fn set_favorite(&mut self, b: bool) { + self.favorite = b + } + + /// `Podcast` table foreign key. + pub fn podcast_id(&self) -> i32 { + self.podcast_id + } + + /// Sets the `played` value with the current `epoch` timestap and save it. + pub fn set_played_now(&mut self) -> Result<()> { + let epoch = Utc::now().timestamp() as i32; + self.set_played(Some(epoch)); + self.save().map(|_| ()) + } +} + +#[derive(Queryable, AsChangeset, PartialEq)] +#[table_name = "episode"] +#[changeset_options(treat_none_as_null = "true")] +#[primary_key(title, podcast_id)] +#[derive(Debug, Clone)] +/// Diesel Model to be used for constructing `EpisodeWidgets`. +pub struct EpisodeWidgetQuery { + rowid: i32, + title: String, + uri: Option, + local_uri: Option, + epoch: i32, + length: Option, + duration: Option, + played: Option, + // favorite: bool, + // archive: bool, + podcast_id: i32, +} + +impl From for EpisodeWidgetQuery { + fn from(e: Episode) -> EpisodeWidgetQuery { + EpisodeWidgetQuery { + rowid: e.rowid, + title: e.title, + uri: e.uri, + local_uri: e.local_uri, + epoch: e.epoch, + length: e.length, + duration: e.duration, + played: e.played, + podcast_id: e.podcast_id, + } + } +} + +impl Save for EpisodeWidgetQuery { + /// Helper method to easily save/"sync" current state of self to the Database. + fn save(&self) -> Result { + use schema::episode::dsl::*; + + let db = connection(); + let tempdb = db.get()?; + + diesel::update(episode.filter(rowid.eq(self.rowid))) + .set(self) + .execute(&*tempdb) + .map_err(From::from) + } +} + +impl EpisodeWidgetQuery { + /// Get the value of the sqlite's `ROW_ID` + pub fn rowid(&self) -> i32 { + self.rowid + } + + /// Get the value of the `title` field. + pub fn title(&self) -> &str { + &self.title + } + + /// Get the value of the `uri`. + /// + /// Represents the url(usually) that the media file will be located at. + pub fn uri(&self) -> Option<&str> { + self.uri.as_ref().map(|s| s.as_str()) + } + + /// Get the value of the `local_uri`. + /// + /// Represents the local uri,usually filesystem path, + /// that the media file will be located at. + pub fn local_uri(&self) -> Option<&str> { + self.local_uri.as_ref().map(|s| s.as_str()) + } + + /// Set the `local_uri`. + pub fn set_local_uri(&mut self, value: Option<&str>) { + self.local_uri = value.map(|x| x.to_string()); + } + + /// Get the `epoch` value. + /// + /// Retrieved from the rss Item publish date. + /// Value is set to Utc whenever possible. + pub fn epoch(&self) -> i32 { + self.epoch + } + + /// Get the `length`. + /// + /// The number represents the size of the file in bytes. + pub fn length(&self) -> Option { + self.length + } + + /// Set the `length`. + pub fn set_length(&mut self, value: Option) { + self.length = value; + } + + /// Get the `duration` value. + /// + /// The number represents the duration of the item/episode in seconds. + pub fn duration(&self) -> Option { + self.duration + } + + /// Set the `duration`. + pub fn set_duration(&mut self, value: Option) { + self.duration = value; + } + + /// Epoch representation of the last time the episode was played. + /// + /// None/Null for unplayed. + pub fn played(&self) -> Option { + self.played + } + + /// Set the `played` value. + pub fn set_played(&mut self, value: Option) { + self.played = value; + } + + // /// Represents the archiving policy for the episode. + // pub fn archive(&self) -> bool { + // self.archive + // } + + // /// Set the `archive` policy. + // /// + // /// If true, the download cleanr will ignore the episode + // /// and the corresponding media value will never be automaticly deleted. + // pub fn set_archive(&mut self, b: bool) { + // self.archive = b + // } + + // /// Get the `favorite` status of the `Episode`. + // pub fn favorite(&self) -> bool { + // self.favorite + // } + + // /// Set `favorite` status. + // pub fn set_favorite(&mut self, b: bool) { + // self.favorite = b + // } + + /// `Podcast` table foreign key. + pub fn podcast_id(&self) -> i32 { + self.podcast_id + } + + /// Sets the `played` value with the current `epoch` timestap and save it. + pub fn set_played_now(&mut self) -> Result<()> { + let epoch = Utc::now().timestamp() as i32; + self.set_played(Some(epoch)); + self.save().map(|_| ()) + } +} + +#[derive(Queryable, AsChangeset, PartialEq)] +#[table_name = "episode"] +#[changeset_options(treat_none_as_null = "true")] +#[primary_key(title, podcast_id)] +#[derive(Debug, Clone)] +/// Diesel Model to be used internal with the `utils::checkup` function. +pub struct EpisodeCleanerQuery { + rowid: i32, + local_uri: Option, + played: Option, +} + +impl Save for EpisodeCleanerQuery { + /// Helper method to easily save/"sync" current state of self to the Database. + fn save(&self) -> Result { + use schema::episode::dsl::*; + + let db = connection(); + let tempdb = db.get()?; + + diesel::update(episode.filter(rowid.eq(self.rowid))) + .set(self) + .execute(&*tempdb) + .map_err(From::from) + } +} + +impl From for EpisodeCleanerQuery { + fn from(e: Episode) -> EpisodeCleanerQuery { + EpisodeCleanerQuery { + rowid: e.rowid(), + local_uri: e.local_uri, + played: e.played, + } + } +} + +impl EpisodeCleanerQuery { + /// Get the value of the sqlite's `ROW_ID` + pub fn rowid(&self) -> i32 { + self.rowid + } + + /// Get the value of the `local_uri`. + /// + /// Represents the local uri,usually filesystem path, + /// that the media file will be located at. + pub fn local_uri(&self) -> Option<&str> { + self.local_uri.as_ref().map(|s| s.as_str()) + } + + /// Set the `local_uri`. + pub fn set_local_uri(&mut self, value: Option<&str>) { + self.local_uri = value.map(|x| x.to_string()); + } + + /// Epoch representation of the last time the episode was played. + /// + /// None/Null for unplayed. + pub fn played(&self) -> Option { + self.played + } + + /// Set the `played` value. + pub fn set_played(&mut self, value: Option) { + self.played = value; + } +} + +#[derive(Queryable, AsChangeset, PartialEq)] +#[table_name = "episode"] +#[changeset_options(treat_none_as_null = "true")] +#[primary_key(title, podcast_id)] +#[derive(Debug, Clone)] +/// Diesel Model to be used for FIXME. +pub struct EpisodeMinimal { + rowid: i32, + title: String, + uri: Option, + epoch: i32, + duration: Option, + guid: Option, + podcast_id: i32, +} + +impl From for EpisodeMinimal { + fn from(e: Episode) -> Self { + EpisodeMinimal { + rowid: e.rowid, + title: e.title, + uri: e.uri, + guid: e.guid, + epoch: e.epoch, + duration: e.duration, + podcast_id: e.podcast_id, + } + } +} + +impl EpisodeMinimal { + /// Get the value of the sqlite's `ROW_ID` + pub fn rowid(&self) -> i32 { + self.rowid + } + + /// Get the value of the `title` field. + pub fn title(&self) -> &str { + &self.title + } + + /// Get the value of the `uri`. + /// + /// Represents the url(usually) that the media file will be located at. + pub fn uri(&self) -> Option<&str> { + self.uri.as_ref().map(|s| s.as_str()) + } + + /// Get the Episode's `guid`. + pub fn guid(&self) -> Option<&str> { + self.guid.as_ref().map(|s| s.as_str()) + } + + /// Get the `epoch` value. + /// + /// Retrieved from the rss Item publish date. + /// Value is set to Utc whenever possible. + pub fn epoch(&self) -> i32 { + self.epoch + } + + /// Get the `duration` value. + /// + /// The number represents the duration of the item/episode in seconds. + pub fn duration(&self) -> Option { + self.duration + } + + /// `Podcast` table foreign key. + pub fn podcast_id(&self) -> i32 { + self.podcast_id + } +} diff --git a/hammond-data/src/models/insertables.rs b/hammond-data/src/models/insertables.rs deleted file mode 100644 index e63f64d..0000000 --- a/hammond-data/src/models/insertables.rs +++ /dev/null @@ -1,261 +0,0 @@ -#![allow(unused_mut)] - -use diesel::prelude::*; - -use schema::{episode, podcast, source}; -use models::queryables::{Episode, Podcast, Source}; - -use utils::url_cleaner; -use errors::*; - -use dbqueries; -use diesel; -use database::connection; - -trait Insert { - fn insert(&self, &SqliteConnection) -> QueryResult; -} - -trait Update { - fn update(&self, &SqliteConnection, i32) -> QueryResult; -} - -#[derive(Insertable)] -#[table_name = "source"] -#[derive(Debug, Clone, Default, Builder)] -#[builder(default)] -#[builder(derive(Debug))] -#[builder(setter(into))] -pub(crate) struct NewSource { - uri: String, - last_modified: Option, - http_etag: Option, -} - -impl Insert for NewSource { - fn insert(&self, con: &SqliteConnection) -> QueryResult { - use schema::source::dsl::*; - diesel::insert_into(source).values(self).execute(&*con) - } -} - -impl NewSource { - pub(crate) fn new_with_uri(uri: &str) -> NewSource { - let uri = url_cleaner(uri); - NewSource { - uri, - last_modified: None, - http_etag: None, - } - } - - fn index(&self) -> Result<()> { - let db = connection(); - let con = db.get()?; - - // Throw away the result like `insert or ignore` - // Diesel deos not support `insert or ignore` yet. - let _ = self.insert(&con); - Ok(()) - } - - // Look out for when tryinto lands into stable. - pub(crate) fn into_source(self) -> Result { - self.index()?; - dbqueries::get_source_from_uri(&self.uri) - } -} - -#[derive(Insertable, AsChangeset)] -#[table_name = "podcast"] -#[derive(Debug, Clone, Default, Builder)] -#[builder(default)] -#[builder(derive(Debug))] -#[builder(setter(into))] -pub(crate) struct NewPodcast { - title: String, - link: String, - description: String, - image_uri: Option, - source_id: i32, -} - -impl Insert for NewPodcast { - fn insert(&self, con: &SqliteConnection) -> QueryResult { - use schema::podcast::dsl::*; - diesel::insert_into(podcast).values(self).execute(&*con) - } -} - -impl Update for NewPodcast { - fn update(&self, con: &SqliteConnection, podcast_id: i32) -> QueryResult { - use schema::podcast::dsl::*; - - info!("Updating {}", self.title); - diesel::update(podcast.filter(id.eq(podcast_id))) - .set(self) - .execute(&*con) - } -} - -impl NewPodcast { - // Look out for when tryinto lands into stable. - pub(crate) fn into_podcast(self) -> Result { - self.index()?; - Ok(dbqueries::get_podcast_from_source_id(self.source_id)?) - } - - pub(crate) fn index(&self) -> Result<()> { - let pd = dbqueries::get_podcast_from_source_id(self.source_id); - - let db = connection(); - let con = db.get()?; - match pd { - Ok(foo) => { - if foo.source_id() != self.source_id { - error!("NSPD sid: {}, SPD sid: {}", self.source_id, foo.source_id()); - }; - - if (foo.link() != self.link) || (foo.title() != self.title) - || (foo.image_uri() != self.image_uri.as_ref().map(|x| x.as_str())) - { - self.update(&con, *foo.id())?; - } - } - Err(_) => { - self.insert(&con)?; - } - } - Ok(()) - } -} - -#[allow(dead_code)] -// Ignore the following geters. They are used in unit tests mainly. -impl NewPodcast { - pub(crate) fn source_id(&self) -> i32 { - self.source_id - } - - pub(crate) fn title(&self) -> &str { - &self.title - } - - pub(crate) fn link(&self) -> &str { - &self.link - } - - pub(crate) fn description(&self) -> &str { - &self.description - } - - pub(crate) fn image_uri(&self) -> Option<&str> { - self.image_uri.as_ref().map(|s| s.as_str()) - } -} - -#[derive(Insertable, AsChangeset)] -#[table_name = "episode"] -#[derive(Debug, Clone, Default, Builder)] -#[builder(default)] -#[builder(derive(Debug))] -#[builder(setter(into))] -pub(crate) struct NewEpisode { - title: String, - uri: Option, - description: Option, - published_date: Option, - length: Option, - guid: Option, - epoch: i32, - podcast_id: i32, -} - -impl Insert for NewEpisode { - fn insert(&self, con: &SqliteConnection) -> QueryResult { - use schema::episode::dsl::*; - diesel::insert_into(episode).values(self).execute(&*con) - } -} - -impl Update for NewEpisode { - fn update(&self, con: &SqliteConnection, episode_id: i32) -> QueryResult { - use schema::episode::dsl::*; - - info!("Updating {:?}", self.title); - diesel::update(episode.filter(rowid.eq(episode_id))) - .set(self) - .execute(&*con) - } -} - -impl NewEpisode { - // TODO: Refactor into batch indexes instead. - pub(crate) fn into_episode(self, con: &SqliteConnection) -> Result { - self.index(con)?; - Ok(dbqueries::get_episode_from_new_episode( - con, - &self.title, - self.podcast_id, - )?) - } - - pub(crate) fn index(&self, con: &SqliteConnection) -> QueryResult<()> { - // TODO: Change me - let ep = dbqueries::get_episode_from_new_episode(con, &self.title, self.podcast_id); - - match ep { - Ok(foo) => { - if foo.podcast_id() != self.podcast_id { - error!("NEP pid: {}, EP pid: {}", self.podcast_id, foo.podcast_id()); - }; - - if foo.title() != self.title.as_str() || foo.epoch() != self.epoch - || foo.uri() != self.uri.as_ref().map(|s| s.as_str()) - { - self.update(con, foo.rowid())?; - } - } - Err(_) => { - self.insert(con)?; - } - } - Ok(()) - } -} - -#[allow(dead_code)] -// Ignore the following getters. They are used in unit tests mainly. -impl NewEpisode { - pub(crate) fn title(&self) -> &str { - self.title.as_ref() - } - - pub(crate) fn uri(&self) -> Option<&str> { - self.uri.as_ref().map(|s| s.as_str()) - } - - pub(crate) fn description(&self) -> Option<&str> { - self.description.as_ref().map(|s| s.as_str()) - } - - pub(crate) fn published_date(&self) -> Option<&str> { - self.published_date.as_ref().map(|s| s.as_str()) - } - - pub(crate) fn guid(&self) -> Option<&str> { - self.guid.as_ref().map(|s| s.as_str()) - } - - pub(crate) fn epoch(&self) -> i32 { - self.epoch - } - - pub(crate) fn length(&self) -> Option { - self.length - } - - pub(crate) fn podcast_id(&self) -> i32 { - self.podcast_id - } -} diff --git a/hammond-data/src/models/mod.rs b/hammond-data/src/models/mod.rs index 9f4dc1b..87efe30 100644 --- a/hammond-data/src/models/mod.rs +++ b/hammond-data/src/models/mod.rs @@ -1,2 +1,51 @@ -pub(crate) mod insertables; -pub(crate) mod queryables; +mod new_episode; +mod new_podcast; +mod new_source; + +mod episode; +mod podcast; +mod source; + +// use futures::prelude::*; +// use futures::future::*; + +pub(crate) use self::episode::EpisodeCleanerQuery; +pub(crate) use self::new_episode::{NewEpisode, NewEpisodeMinimal}; +pub(crate) use self::new_podcast::NewPodcast; +pub(crate) use self::new_source::NewSource; + +#[cfg(test)] +pub(crate) use self::new_episode::NewEpisodeBuilder; +#[cfg(test)] +pub(crate) use self::new_podcast::NewPodcastBuilder; + +pub use self::episode::{Episode, EpisodeMinimal, EpisodeWidgetQuery}; +pub use self::podcast::{Podcast, PodcastCoverQuery}; +pub use self::source::Source; + +use errors::*; + +#[derive(Debug, Clone, PartialEq)] +pub enum IndexState { + Index(T), + Update((T, i32)), + NotChanged, +} + +pub trait Insert { + fn insert(&self) -> Result<()>; +} + +pub trait Update { + fn update(&self, i32) -> Result<()>; +} + +pub trait Index: Insert + Update { + fn index(&self) -> Result<()>; +} + +/// FIXME: DOCS +pub trait Save { + /// Helper method to easily save/"sync" current state of a diesel model to the Database. + fn save(&self) -> Result; +} diff --git a/hammond-data/src/models/new_episode.rs b/hammond-data/src/models/new_episode.rs new file mode 100644 index 0000000..3de8043 --- /dev/null +++ b/hammond-data/src/models/new_episode.rs @@ -0,0 +1,639 @@ +use diesel::prelude::*; + +use diesel; +use schema::episode; + +use ammonia; +use rfc822_sanitizer::parse_from_rfc2822_with_fallback as parse_rfc822; +use rss; + +use database::connection; +use dbqueries; +use errors::*; +use models::{Episode, EpisodeMinimal, Index, Insert, Update}; +use parser; +use utils::{replace_extra_spaces, url_cleaner}; + +#[derive(Insertable, AsChangeset)] +#[table_name = "episode"] +#[derive(Debug, Clone, Default, Builder, PartialEq)] +#[builder(default)] +#[builder(derive(Debug))] +#[builder(setter(into))] +pub(crate) struct NewEpisode { + title: String, + uri: Option, + description: Option, + length: Option, + duration: Option, + guid: Option, + epoch: i32, + podcast_id: i32, +} + +impl From for NewEpisode { + fn from(e: NewEpisodeMinimal) -> Self { + NewEpisodeBuilder::default() + .title(e.title) + .uri(e.uri) + .duration(e.duration) + .epoch(e.epoch) + .podcast_id(e.podcast_id) + .guid(e.guid) + .build() + .unwrap() + } +} + +impl Insert for NewEpisode { + fn insert(&self) -> Result<()> { + use schema::episode::dsl::*; + let db = connection(); + let con = db.get()?; + + info!("Inserting {:?}", self.title); + diesel::insert_into(episode) + .values(self) + .execute(&con) + .map_err(From::from) + .map(|_| ()) + } +} + +impl Update for NewEpisode { + fn update(&self, episode_id: i32) -> Result<()> { + use schema::episode::dsl::*; + let db = connection(); + let con = db.get()?; + + info!("Updating {:?}", self.title); + diesel::update(episode.filter(rowid.eq(episode_id))) + .set(self) + .execute(&con) + .map_err(From::from) + .map(|_| ()) + } +} + +impl Index for NewEpisode { + // Does not update the episode description if it's the only thing that has changed. + fn index(&self) -> Result<()> { + let exists = dbqueries::episode_exists(self.title(), self.podcast_id())?; + + if exists { + let other = dbqueries::get_episode_minimal_from_pk(self.title(), self.podcast_id())?; + + if self != &other { + self.update(other.rowid()) + } else { + Ok(()) + } + } else { + self.insert() + } + } +} + +impl PartialEq for NewEpisode { + fn eq(&self, other: &EpisodeMinimal) -> bool { + (self.title() == other.title()) && (self.uri() == other.uri()) + && (self.duration() == other.duration()) && (self.epoch() == other.epoch()) + && (self.guid() == other.guid()) && (self.podcast_id() == other.podcast_id()) + } +} + +impl PartialEq for NewEpisode { + fn eq(&self, other: &Episode) -> bool { + (self.title() == other.title()) && (self.uri() == other.uri()) + && (self.duration() == other.duration()) && (self.epoch() == other.epoch()) + && (self.guid() == other.guid()) && (self.podcast_id() == other.podcast_id()) + && (self.description() == other.description()) + && (self.length() == other.length()) + } +} + +impl NewEpisode { + /// Parses an `rss::Item` into a `NewEpisode` Struct. + #[allow(dead_code)] + pub(crate) fn new(item: &rss::Item, podcast_id: i32) -> Result { + NewEpisodeMinimal::new(item, podcast_id).map(|ep| ep.into_new_episode(item)) + } + + #[allow(dead_code)] + pub(crate) fn to_episode(&self) -> Result { + self.index()?; + dbqueries::get_episode_from_pk(&self.title, self.podcast_id) + } +} + +// Ignore the following getters. They are used in unit tests mainly. +impl NewEpisode { + pub(crate) fn title(&self) -> &str { + self.title.as_ref() + } + + pub(crate) fn uri(&self) -> Option<&str> { + self.uri.as_ref().map(|s| s.as_str()) + } + + pub(crate) fn description(&self) -> Option<&str> { + self.description.as_ref().map(|s| s.as_str()) + } + + pub(crate) fn guid(&self) -> Option<&str> { + self.guid.as_ref().map(|s| s.as_str()) + } + + pub(crate) fn epoch(&self) -> i32 { + self.epoch + } + + pub(crate) fn duration(&self) -> Option { + self.duration + } + + pub(crate) fn length(&self) -> Option { + self.length + } + + pub(crate) fn podcast_id(&self) -> i32 { + self.podcast_id + } +} + +#[derive(Insertable, AsChangeset)] +#[table_name = "episode"] +#[derive(Debug, Clone, Builder, PartialEq)] +#[builder(derive(Debug))] +#[builder(setter(into))] +pub(crate) struct NewEpisodeMinimal { + title: String, + uri: Option, + duration: Option, + epoch: i32, + guid: Option, + podcast_id: i32, +} + +impl PartialEq for NewEpisodeMinimal { + fn eq(&self, other: &EpisodeMinimal) -> bool { + (self.title() == other.title()) && (self.uri() == other.uri()) + && (self.duration() == other.duration()) && (self.epoch() == other.epoch()) + && (self.guid() == other.guid()) && (self.podcast_id() == other.podcast_id()) + } +} + +impl NewEpisodeMinimal { + pub(crate) fn new(item: &rss::Item, parent_id: i32) -> Result { + if item.title().is_none() { + bail!("No title specified for the item.") + } + + let title = item.title().unwrap().trim().to_owned(); + let guid = item.guid().map(|s| s.value().trim().to_owned()); + + let uri = if let Some(url) = item.enclosure().map(|s| url_cleaner(s.url())) { + Some(url) + } else if item.link().is_some() { + item.link().map(|s| url_cleaner(s)) + } else { + bail!("No url specified for the item.") + }; + + // Default to rfc2822 represantation of epoch 0. + let date = parse_rfc822(item.pub_date().unwrap_or("Thu, 1 Jan 1970 00:00:00 +0000")); + // Should treat information from the rss feeds as invalid by default. + // Case: Thu, 05 Aug 2016 06:00:00 -0400 <-- Actually that was friday. + let epoch = date.map(|x| x.timestamp() as i32).unwrap_or(0); + + let duration = parser::parse_itunes_duration(item.itunes_ext()); + + NewEpisodeMinimalBuilder::default() + .title(title) + .uri(uri) + .duration(duration) + .epoch(epoch) + .guid(guid) + .podcast_id(parent_id) + .build() + .map_err(From::from) + } + + pub(crate) fn into_new_episode(self, item: &rss::Item) -> NewEpisode { + let length = || -> Option { item.enclosure().map(|x| x.length().parse().ok())? }(); + + // Prefer itunes summary over rss.description since many feeds put html into + // rss.description. + let summary = item.itunes_ext().map(|s| s.summary()).and_then(|s| s); + let description = if summary.is_some() { + summary.map(|s| replace_extra_spaces(&ammonia::clean(s))) + } else { + item.description() + .map(|s| replace_extra_spaces(&ammonia::clean(s))) + }; + + NewEpisodeBuilder::default() + .title(self.title) + .uri(self.uri) + .duration(self.duration) + .epoch(self.epoch) + .podcast_id(self.podcast_id) + .guid(self.guid) + .length(length) + .description(description) + .build() + .unwrap() + } +} + +// Ignore the following getters. They are used in unit tests mainly. +impl NewEpisodeMinimal { + pub(crate) fn title(&self) -> &str { + self.title.as_ref() + } + + pub(crate) fn uri(&self) -> Option<&str> { + self.uri.as_ref().map(|s| s.as_str()) + } + + pub(crate) fn guid(&self) -> Option<&str> { + self.guid.as_ref().map(|s| s.as_str()) + } + + pub(crate) fn duration(&self) -> Option { + self.duration + } + + pub(crate) fn epoch(&self) -> i32 { + self.epoch + } + + pub(crate) fn podcast_id(&self) -> i32 { + self.podcast_id + } +} +#[cfg(test)] +mod tests { + use database::truncate_db; + use dbqueries; + use models::*; + use models::new_episode::{NewEpisodeMinimal, NewEpisodeMinimalBuilder}; + + use rss::Channel; + + use std::fs::File; + use std::io::BufReader; + + // TODO: Add tests for other feeds too. + // Especially if you find an *intresting* generated feed. + + // Known prebuilt expected objects. + lazy_static! { + static ref EXPECTED_MINIMAL_INTERCEPTED_1: NewEpisodeMinimal = { + NewEpisodeMinimalBuilder::default() + .title("The Super Bowl of Racism") + .uri(Some(String::from( + "http://traffic.megaphone.fm/PPY6458293736.mp3", + ))) + .guid(Some(String::from("7df4070a-9832-11e7-adac-cb37b05d5e24"))) + .epoch(1505296800) + .duration(Some(4171)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_MINIMAL_INTERCEPTED_2: NewEpisodeMinimal = { + NewEpisodeMinimalBuilder::default() + .title("Atlas Golfed — U.S.-Backed Think Tanks Target Latin America") + .uri(Some(String::from( + "http://traffic.megaphone.fm/FL5331443769.mp3", + ))) + .guid(Some(String::from("7c207a24-e33f-11e6-9438-eb45dcf36a1d"))) + .epoch(1502272800) + .duration(Some(4415)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_INTERCEPTED_1: NewEpisode = { + let descr = "NSA whistleblower Edward Snowden discusses the massive Equifax data breach \ + and allegations of Russian interference in the US election. Commentator \ + Shaun King explains his call for a boycott of the NFL and talks about his \ + campaign to bring violent neo-Nazis to justice. Rapper Open Mike Eagle \ + performs."; + + NewEpisodeBuilder::default() + .title("The Super Bowl of Racism") + .uri(Some(String::from( + "http://traffic.megaphone.fm/PPY6458293736.mp3", + ))) + .description(Some(String::from(descr))) + .guid(Some(String::from("7df4070a-9832-11e7-adac-cb37b05d5e24"))) + .length(Some(66738886)) + .epoch(1505296800) + .duration(Some(4171)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_INTERCEPTED_2: NewEpisode = { + let descr = "This week on Intercepted: Jeremy gives an update on the aftermath of \ + Blackwater’s 2007 massacre of Iraqi civilians. Intercept reporter Lee Fang \ + lays out how a network of libertarian think tanks called the Atlas Network \ + is insidiously shaping political infrastructure in Latin America. We speak \ + with attorney and former Hugo Chavez adviser Eva Golinger about the \ + Venezuela\'s political turmoil.And we hear Claudia Lizardo of the \ + Caracas-based band, La Pequeña Revancha, talk about her music and hopes for \ + Venezuela."; + + NewEpisodeBuilder::default() + .title("Atlas Golfed — U.S.-Backed Think Tanks Target Latin America") + .uri(Some(String::from( + "http://traffic.megaphone.fm/FL5331443769.mp3", + ))) + .description(Some(String::from(descr))) + .guid(Some(String::from("7c207a24-e33f-11e6-9438-eb45dcf36a1d"))) + .length(Some(67527575)) + .epoch(1502272800) + .duration(Some(4415)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref UPDATED_DURATION_INTERCEPTED_1: NewEpisode = { + NewEpisodeBuilder::default() + .title("The Super Bowl of Racism") + .uri(Some(String::from( + "http://traffic.megaphone.fm/PPY6458293736.mp3", + ))) + .description(Some(String::from("New description"))) + .guid(Some(String::from("7df4070a-9832-11e7-adac-cb37b05d5e24"))) + .length(Some(66738886)) + .epoch(1505296800) + .duration(Some(424242)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_MINIMAL_LUP_1: NewEpisodeMinimal = { + NewEpisodeMinimalBuilder::default() + .title("Hacking Devices with Kali Linux | LUP 214") + .uri(Some(String::from( + "http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0214.mp3", + ))) + .guid(Some(String::from("78A682B4-73E8-47B8-88C0-1BE62DD4EF9D"))) + .epoch(1505280282) + .duration(Some(5733)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_MINIMAL_LUP_2: NewEpisodeMinimal = { + NewEpisodeMinimalBuilder::default() + .title("Gnome Does it Again | LUP 213") + .uri(Some(String::from( + "http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0213.mp3", + ))) + .guid(Some(String::from("1CE57548-B36C-4F14-832A-5D5E0A24E35B"))) + .epoch(1504670247) + .duration(Some(4491)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_LUP_1: NewEpisode = { + let descr = "Audit your network with a couple of easy commands on Kali Linux. Chris \ + decides to blow off a little steam by attacking his IoT devices, Wes has the \ + scope on Equifax blaming open source & the Beard just saved the show. \ + It’s a really packed episode!"; + + NewEpisodeBuilder::default() + .title("Hacking Devices with Kali Linux | LUP 214") + .uri(Some(String::from( + "http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0214.mp3", + ))) + .description(Some(String::from(descr))) + .guid(Some(String::from("78A682B4-73E8-47B8-88C0-1BE62DD4EF9D"))) + .length(Some(46479789)) + .epoch(1505280282) + .duration(Some(5733)) + .podcast_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_LUP_2: NewEpisode = { + let descr = "The Gnome project is about to solve one of our audience's biggest Wayland’s \ + concerns. But as the project takes on a new level of relevance, decisions for the \ + next version of Gnome have us worried about the future.\nPlus we chat with Wimpy \ + about the Ubuntu Rally in NYC, Microsoft’s sneaky move to turn Windows 10 into the \ + “ULTIMATE LINUX RUNTIME”, community news & more!"; + + NewEpisodeBuilder::default() + .title("Gnome Does it Again | LUP 213") + .uri(Some(String::from( + "http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0213.mp3", + ))) + .description(Some(String::from(descr))) + .guid(Some(String::from("1CE57548-B36C-4F14-832A-5D5E0A24E35B"))) + .length(Some(36544272)) + .epoch(1504670247) + .duration(Some(4491)) + .podcast_id(42) + .build() + .unwrap() + }; + } + + #[test] + fn test_new_episode_minimal_intercepted() { + let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let episode = channel.items().iter().nth(14).unwrap(); + let ep = NewEpisodeMinimal::new(&episode, 42).unwrap(); + assert_eq!(ep, *EXPECTED_MINIMAL_INTERCEPTED_1); + + let episode = channel.items().iter().nth(15).unwrap(); + let ep = NewEpisodeMinimal::new(&episode, 42).unwrap(); + assert_eq!(ep, *EXPECTED_MINIMAL_INTERCEPTED_2); + } + + #[test] + fn test_new_episode_intercepted() { + let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let episode = channel.items().iter().nth(14).unwrap(); + let ep = NewEpisode::new(&episode, 42).unwrap(); + assert_eq!(ep, *EXPECTED_INTERCEPTED_1); + + let episode = channel.items().iter().nth(15).unwrap(); + let ep = NewEpisode::new(&episode, 42).unwrap(); + + assert_eq!(ep, *EXPECTED_INTERCEPTED_2); + } + + #[test] + fn test_new_episode_minimal_lup() { + let file = File::open("tests/feeds/2018-01-20-LinuxUnplugged.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let episode = channel.items().iter().nth(18).unwrap(); + let ep = NewEpisodeMinimal::new(&episode, 42).unwrap(); + assert_eq!(ep, *EXPECTED_MINIMAL_LUP_1); + + let episode = channel.items().iter().nth(19).unwrap(); + let ep = NewEpisodeMinimal::new(&episode, 42).unwrap(); + assert_eq!(ep, *EXPECTED_MINIMAL_LUP_2); + } + + #[test] + fn test_new_episode_lup() { + let file = File::open("tests/feeds/2018-01-20-LinuxUnplugged.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let episode = channel.items().iter().nth(18).unwrap(); + let ep = NewEpisode::new(&episode, 42).unwrap(); + assert_eq!(ep, *EXPECTED_LUP_1); + + let episode = channel.items().iter().nth(19).unwrap(); + let ep = NewEpisode::new(&episode, 42).unwrap(); + assert_eq!(ep, *EXPECTED_LUP_2); + } + + #[test] + fn test_minimal_into_new_episode() { + truncate_db().unwrap(); + + let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let item = channel.items().iter().nth(14).unwrap(); + let ep = EXPECTED_MINIMAL_INTERCEPTED_1 + .clone() + .into_new_episode(&item); + assert_eq!(ep, *EXPECTED_INTERCEPTED_1); + + let item = channel.items().iter().nth(15).unwrap(); + let ep = EXPECTED_MINIMAL_INTERCEPTED_2 + .clone() + .into_new_episode(&item); + assert_eq!(ep, *EXPECTED_INTERCEPTED_2); + } + + #[test] + fn test_new_episode_insert() { + truncate_db().unwrap(); + + let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let episode = channel.items().iter().nth(14).unwrap(); + let new_ep = NewEpisode::new(&episode, 42).unwrap(); + new_ep.insert().unwrap(); + let ep = dbqueries::get_episode_from_pk(new_ep.title(), new_ep.podcast_id()).unwrap(); + + assert_eq!(new_ep, ep); + assert_eq!(&new_ep, &*EXPECTED_INTERCEPTED_1); + assert_eq!(&*EXPECTED_INTERCEPTED_1, &ep); + + let episode = channel.items().iter().nth(15).unwrap(); + let new_ep = NewEpisode::new(&episode, 42).unwrap(); + new_ep.insert().unwrap(); + let ep = dbqueries::get_episode_from_pk(new_ep.title(), new_ep.podcast_id()).unwrap(); + + assert_eq!(new_ep, ep); + assert_eq!(&new_ep, &*EXPECTED_INTERCEPTED_2); + assert_eq!(&*EXPECTED_INTERCEPTED_2, &ep); + } + + #[test] + fn test_new_episode_update() { + truncate_db().unwrap(); + let old = EXPECTED_INTERCEPTED_1.clone().to_episode().unwrap(); + + let updated = &*UPDATED_DURATION_INTERCEPTED_1; + updated.update(old.rowid()).unwrap(); + let mut new = dbqueries::get_episode_from_pk(old.title(), old.podcast_id()).unwrap(); + + // Assert that updating does not change the rowid and podcast_id + assert_ne!(old, new); + assert_eq!(old.rowid(), new.rowid()); + assert_eq!(old.podcast_id(), new.podcast_id()); + + assert_eq!(updated, &new); + assert_ne!(updated, &old); + + new.set_archive(true); + new.save().unwrap(); + + let new2 = dbqueries::get_episode_from_pk(old.title(), old.podcast_id()).unwrap(); + assert_eq!(true, new2.archive()); + } + + #[test] + fn test_new_episode_index() { + truncate_db().unwrap(); + let expected = &*EXPECTED_INTERCEPTED_1; + + // First insert + assert!(expected.index().is_ok()); + // Second identical, This should take the early return path + assert!(expected.index().is_ok()); + // Get the episode + let old = dbqueries::get_episode_from_pk(expected.title(), expected.podcast_id()).unwrap(); + // Assert that NewPodcast is equal to the Indexed one + assert_eq!(*expected, old); + + let updated = &*UPDATED_DURATION_INTERCEPTED_1; + + // Update the podcast + assert!(updated.index().is_ok()); + // Get the new Podcast + let new = dbqueries::get_episode_from_pk(expected.title(), expected.podcast_id()).unwrap(); + // Assert it's diff from the old one. + assert_ne!(new, old); + assert_eq!(*updated, new); + assert_eq!(new.rowid(), old.rowid()); + assert_eq!(new.podcast_id(), old.podcast_id()); + } + + #[test] + fn test_new_episode_to_episode() { + let expected = &*EXPECTED_INTERCEPTED_1; + let updated = &*UPDATED_DURATION_INTERCEPTED_1; + + // Assert insert() produces the same result that you would get with to_podcast() + truncate_db().unwrap(); + expected.insert().unwrap(); + let old = dbqueries::get_episode_from_pk(expected.title(), expected.podcast_id()).unwrap(); + let ep = expected.to_episode().unwrap(); + assert_eq!(old, ep); + + // Same as above, diff order + truncate_db().unwrap(); + let ep = expected.to_episode().unwrap(); + // This should error as a unique constrain violation + assert!(expected.insert().is_err()); + let mut old = + dbqueries::get_episode_from_pk(expected.title(), expected.podcast_id()).unwrap(); + assert_eq!(old, ep); + + old.set_archive(true); + old.save().unwrap(); + + // Assert that it does not mess with user preferences + let ep = updated.to_episode().unwrap(); + let old = dbqueries::get_episode_from_pk(expected.title(), expected.podcast_id()).unwrap(); + assert_eq!(old, ep); + assert_eq!(old.archive(), true); + } +} diff --git a/hammond-data/src/models/new_podcast.rs b/hammond-data/src/models/new_podcast.rs new file mode 100644 index 0000000..f6da37c --- /dev/null +++ b/hammond-data/src/models/new_podcast.rs @@ -0,0 +1,421 @@ +use diesel; +use diesel::prelude::*; + +use ammonia; +use rss; + +use models::{Index, Insert, Update}; +use models::Podcast; +use schema::podcast; + +use database::connection; +use dbqueries; +use utils::{replace_extra_spaces, url_cleaner}; + +use errors::*; + +#[derive(Insertable, AsChangeset)] +#[table_name = "podcast"] +#[derive(Debug, Clone, Default, Builder, PartialEq)] +#[builder(default)] +#[builder(derive(Debug))] +#[builder(setter(into))] +pub(crate) struct NewPodcast { + title: String, + link: String, + description: String, + image_uri: Option, + source_id: i32, +} + +impl Insert for NewPodcast { + fn insert(&self) -> Result<()> { + use schema::podcast::dsl::*; + let db = connection(); + let con = db.get()?; + + diesel::insert_into(podcast) + .values(self) + .execute(&con) + .map(|_| ()) + .map_err(From::from) + } +} + +impl Update for NewPodcast { + fn update(&self, podcast_id: i32) -> Result<()> { + use schema::podcast::dsl::*; + let db = connection(); + let con = db.get()?; + + info!("Updating {}", self.title); + diesel::update(podcast.filter(id.eq(podcast_id))) + .set(self) + .execute(&con) + .map(|_| ()) + .map_err(From::from) + } +} + +// TODO: Maybe return an Enum Instead. +// It would make unti testing better too. +impl Index for NewPodcast { + fn index(&self) -> Result<()> { + let exists = dbqueries::podcast_exists(self.source_id)?; + + if exists { + let other = dbqueries::get_podcast_from_source_id(self.source_id)?; + + if self != &other { + self.update(other.id()) + } else { + Ok(()) + } + } else { + self.insert() + } + } +} + +impl PartialEq for NewPodcast { + fn eq(&self, other: &Podcast) -> bool { + (self.link() == other.link()) && (self.title() == other.title()) + && (self.image_uri() == other.image_uri()) + && (self.description() == other.description()) + && (self.source_id() == other.source_id()) + } +} + +impl NewPodcast { + /// Parses a `rss::Channel` into a `NewPodcast` Struct. + pub(crate) fn new(chan: &rss::Channel, source_id: i32) -> NewPodcast { + let title = chan.title().trim(); + + // Prefer itunes summary over rss.description since many feeds put html into + // rss.description. + let summary = chan.itunes_ext().map(|s| s.summary()).and_then(|s| s); + let description = if let Some(sum) = summary { + replace_extra_spaces(&ammonia::clean(sum)) + } else { + replace_extra_spaces(&ammonia::clean(chan.description())) + }; + + let link = url_cleaner(chan.link()); + let x = chan.itunes_ext().map(|s| s.image()); + let image_uri = if let Some(img) = x { + img.map(|s| s.to_owned()) + } else { + chan.image().map(|foo| foo.url().to_owned()) + }; + + NewPodcastBuilder::default() + .title(title) + .description(description) + .link(link) + .image_uri(image_uri) + .source_id(source_id) + .build() + .unwrap() + } + + // Look out for when tryinto lands into stable. + pub(crate) fn to_podcast(&self) -> Result { + self.index()?; + dbqueries::get_podcast_from_source_id(self.source_id).map_err(From::from) + } +} + +// Ignore the following geters. They are used in unit tests mainly. +impl NewPodcast { + #[allow(dead_code)] + pub(crate) fn source_id(&self) -> i32 { + self.source_id + } + + pub(crate) fn title(&self) -> &str { + &self.title + } + + pub(crate) fn link(&self) -> &str { + &self.link + } + + pub(crate) fn description(&self) -> &str { + &self.description + } + + pub(crate) fn image_uri(&self) -> Option<&str> { + self.image_uri.as_ref().map(|s| s.as_str()) + } +} + +#[cfg(test)] +mod tests { + use super::*; + // use tokio_core::reactor::Core; + + use rss::Channel; + + use database::truncate_db; + use models::{NewPodcastBuilder, Save}; + + use std::fs::File; + use std::io::BufReader; + + // Pre-built expected NewPodcast structs. + lazy_static!{ + static ref EXPECTED_INTERCEPTED: NewPodcast = { + let descr = "The people behind The Intercept’s fearless reporting and incisive \ + commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss \ + the crucial issues of our time: national security, civil liberties, foreign \ + policy, and criminal justice. Plus interviews with artists, thinkers, and \ + newsmakers who challenge our preconceptions about the world we live in."; + + NewPodcastBuilder::default() + .title("Intercepted with Jeremy Scahill") + .link("https://theintercept.com/podcasts") + .description(descr) + .image_uri(Some(String::from( + "http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/\ + uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_\ + 2FIntercepted_COVER%2B_281_29.png") + )) + .source_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_LUP: NewPodcast = { + let descr = "An open show powered by community LINUX Unplugged takes the best attributes \ + of open collaboration and focuses them into a weekly lifestyle show about \ + Linux."; + + NewPodcastBuilder::default() + .title("LINUX Unplugged Podcast") + .link("http://www.jupiterbroadcasting.com/") + .description(descr) + .image_uri(Some(String::from( + "http://www.jupiterbroadcasting.com/images/LASUN-Badge1400.jpg", + ))) + .source_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_TIPOFF: NewPodcast = { + let desc = "Welcome to The Tip Off- the podcast where we take you behind the scenes of \ + some of the best investigative journalism from recent years. Each episode \ + we’ll be digging into an investigative scoop- hearing from the journalists \ + behind the work as they tell us about the leads, the dead-ends and of course, \ + the tip offs. There’ll be car chases, slammed doors, terrorist cells, \ + meetings in dimly lit bars and cafes, wrangling with despotic regimes and \ + much more. So if you’re curious about the fun, complicated detective work \ + that goes into doing great investigative journalism- then this is the podcast \ + for you."; + + NewPodcastBuilder::default() + .title("The Tip Off") + .link("http://www.acast.com/thetipoff") + .description(desc) + .image_uri(Some(String::from( + "https://imagecdn.acast.com/image?h=1500&w=1500&source=http%3A%2F%2Fi1.sndcdn.\ + com%2Favatars-000317856075-a2coqz-original.jpg", + ))) + .source_id(42) + .build() + .unwrap() + + }; + + static ref EXPECTED_STARS: NewPodcast = { + let descr = "

The first audio drama from Tor Labs and Gideon Media, Steal the Stars is \ + a gripping noir science fiction thriller in 14 episodes: Forbidden love, a \ + crashed UFO, an alien body, and an impossible heist unlike any ever \ + attempted - scripted by Mac Rogers, the award-winning playwright and writer \ + of the multi-million download The Message and LifeAfter.

"; + let img = "https://dfkfj8j276wwv.cloudfront.net/images/2c/5f/a0/1a/2c5fa01a-ae78-4a8c-\ + b183-7311d2e436c3/b3a4aa57a576bb662191f2a6bc2a436c8c4ae256ecffaff5c4c54fd42e\ + 923914941c264d01efb1833234b52c9530e67d28a8cebbe3d11a4bc0fbbdf13ecdf1c3.jpeg"; + + NewPodcastBuilder::default() + .title("Steal the Stars") + .link("http://tor-labs.com/") + .description(descr) + .image_uri(Some(String::from(img))) + .source_id(42) + .build() + .unwrap() + }; + + static ref EXPECTED_CODE: NewPodcast = { + let descr = "A podcast about humans and technology. Panelists: Coraline Ada Ehmke, David \ + Brady, Jessica Kerr, Jay Bobo, Astrid Countee and Sam Livingston-Gray. \ + Brought to you by @therubyrep."; + + NewPodcastBuilder::default() + .title("Greater Than Code") + .link("https://www.greaterthancode.com/") + .description(descr) + .image_uri(Some(String::from( + "http://www.greaterthancode.com/wp-content/uploads/2016/10/code1400-4.jpg", + ))) + .source_id(42) + .build() + .unwrap() + }; + + static ref UPDATED_DESC_INTERCEPTED: NewPodcast = { + NewPodcastBuilder::default() + .title("Intercepted with Jeremy Scahill") + .link("https://theintercept.com/podcasts") + .description("New Description") + .image_uri(Some(String::from( + "http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/\ + uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_\ + 2FIntercepted_COVER%2B_281_29.png") + )) + .source_id(42) + .build() + .unwrap() + }; + } + + #[test] + fn test_new_podcast_intercepted() { + let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let pd = NewPodcast::new(&channel, 42); + assert_eq!(*EXPECTED_INTERCEPTED, pd); + } + + #[test] + fn test_new_podcast_lup() { + let file = File::open("tests/feeds/2018-01-20-LinuxUnplugged.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let pd = NewPodcast::new(&channel, 42); + assert_eq!(*EXPECTED_LUP, pd); + } + + #[test] + fn test_new_podcast_thetipoff() { + let file = File::open("tests/feeds/2018-01-20-TheTipOff.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let pd = NewPodcast::new(&channel, 42); + assert_eq!(*EXPECTED_TIPOFF, pd); + } + + #[test] + fn test_new_podcast_steal_the_stars() { + let file = File::open("tests/feeds/2018-01-20-StealTheStars.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let pd = NewPodcast::new(&channel, 42); + assert_eq!(*EXPECTED_STARS, pd); + } + + #[test] + fn test_new_podcast_greater_than_code() { + let file = File::open("tests/feeds/2018-01-20-GreaterThanCode.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let pd = NewPodcast::new(&channel, 42); + assert_eq!(*EXPECTED_CODE, pd); + } + + #[test] + // This maybe could be a doc test on insert. + fn test_new_podcast_insert() { + truncate_db().unwrap(); + let file = File::open("tests/feeds/2018-01-20-Intercepted.xml").unwrap(); + let channel = Channel::read_from(BufReader::new(file)).unwrap(); + + let npd = NewPodcast::new(&channel, 42); + npd.insert().unwrap(); + let pd = dbqueries::get_podcast_from_source_id(42).unwrap(); + + assert_eq!(npd, pd); + assert_eq!(*EXPECTED_INTERCEPTED, npd); + assert_eq!(&*EXPECTED_INTERCEPTED, &pd); + } + + #[test] + // TODO: Add more test/checks + // Currently there's a test that only checks new description or title. + // If you have time and want to help, implement the test for the other fields too. + fn test_new_podcast_update() { + truncate_db().unwrap(); + let old = EXPECTED_INTERCEPTED.to_podcast().unwrap(); + + let updated = &*UPDATED_DESC_INTERCEPTED; + updated.update(old.id()).unwrap(); + let mut new = dbqueries::get_podcast_from_source_id(42).unwrap(); + + assert_ne!(old, new); + assert_eq!(old.id(), new.id()); + assert_eq!(old.source_id(), new.source_id()); + assert_eq!(updated, &new); + assert_ne!(updated, &old); + + // Chech that the update does not override user preferences. + new.set_archive(true); + new.save().unwrap(); + + let new2 = dbqueries::get_podcast_from_source_id(42).unwrap(); + assert_eq!(true, new2.archive()); + } + + #[test] + fn test_new_podcast_index() { + truncate_db().unwrap(); + + // First insert + assert!(EXPECTED_INTERCEPTED.index().is_ok()); + // Second identical, This should take the early return path + assert!(EXPECTED_INTERCEPTED.index().is_ok()); + // Get the podcast + let old = dbqueries::get_podcast_from_source_id(42).unwrap(); + // Assert that NewPodcast is equal to the Indexed one + assert_eq!(&*EXPECTED_INTERCEPTED, &old); + + let updated = &*UPDATED_DESC_INTERCEPTED; + + // Update the podcast + assert!(updated.index().is_ok()); + // Get the new Podcast + let new = dbqueries::get_podcast_from_source_id(42).unwrap(); + // Assert it's diff from the old one. + assert_ne!(new, old); + assert_eq!(new.id(), old.id()); + assert_eq!(new.source_id(), old.source_id()); + } + + #[test] + fn test_to_podcast() { + // Assert insert() produces the same result that you would get with to_podcast() + truncate_db().unwrap(); + EXPECTED_INTERCEPTED.insert().unwrap(); + let old = dbqueries::get_podcast_from_source_id(42).unwrap(); + let pd = EXPECTED_INTERCEPTED.to_podcast().unwrap(); + assert_eq!(old, pd); + + // Same as above, diff order + truncate_db().unwrap(); + let pd = EXPECTED_INTERCEPTED.to_podcast().unwrap(); + // This should error as a unique constrain violation + assert!(EXPECTED_INTERCEPTED.insert().is_err()); + let mut old = dbqueries::get_podcast_from_source_id(42).unwrap(); + assert_eq!(old, pd); + + old.set_archive(true); + old.save().unwrap(); + + // Assert that it does not mess with user preferences + let pd = UPDATED_DESC_INTERCEPTED.to_podcast().unwrap(); + let old = dbqueries::get_podcast_from_source_id(42).unwrap(); + assert_eq!(old, pd); + assert_eq!(old.archive(), true); + } +} diff --git a/hammond-data/src/models/new_source.rs b/hammond-data/src/models/new_source.rs new file mode 100644 index 0000000..944e7c1 --- /dev/null +++ b/hammond-data/src/models/new_source.rs @@ -0,0 +1,53 @@ +#![allow(unused_mut)] + +use diesel; +use diesel::prelude::*; +use url::Url; + +use database::connection; +use dbqueries; +// use models::{Insert, Update}; +use models::Source; +use schema::source; + +use errors::*; + +#[derive(Insertable)] +#[table_name = "source"] +#[derive(Debug, Clone, Default, Builder, PartialEq)] +#[builder(default)] +#[builder(derive(Debug))] +#[builder(setter(into))] +pub(crate) struct NewSource { + uri: String, + last_modified: Option, + http_etag: Option, +} + +impl NewSource { + pub(crate) fn new(uri: &Url) -> NewSource { + NewSource { + uri: uri.to_string(), + last_modified: None, + http_etag: None, + } + } + + pub(crate) fn insert_or_ignore(&self) -> Result<()> { + use schema::source::dsl::*; + let db = connection(); + let con = db.get()?; + + diesel::insert_or_ignore_into(source) + .values(self) + .execute(&con) + .map(|_| ()) + .map_err(From::from) + } + + // Look out for when tryinto lands into stable. + pub(crate) fn to_source(&self) -> Result { + self.insert_or_ignore()?; + dbqueries::get_source_from_uri(&self.uri) + } +} diff --git a/hammond-data/src/models/podcast.rs b/hammond-data/src/models/podcast.rs new file mode 100644 index 0000000..fb6ab74 --- /dev/null +++ b/hammond-data/src/models/podcast.rs @@ -0,0 +1,158 @@ +use diesel::SaveChangesDsl; + +use database::connection; +use errors::*; +use models::{Save, Source}; +use schema::podcast; + +#[derive(Queryable, Identifiable, AsChangeset, Associations, PartialEq)] +#[belongs_to(Source, foreign_key = "source_id")] +#[changeset_options(treat_none_as_null = "true")] +#[table_name = "podcast"] +#[derive(Debug, Clone)] +/// Diesel Model of the podcast table. +pub struct Podcast { + id: i32, + title: String, + link: String, + description: String, + image_uri: Option, + favorite: bool, + archive: bool, + always_dl: bool, + source_id: i32, +} + +impl Save for Podcast { + /// Helper method to easily save/"sync" current state of self to the Database. + fn save(&self) -> Result { + let db = connection(); + let tempdb = db.get()?; + + self.save_changes::(&*tempdb).map_err(From::from) + } +} + +impl Podcast { + /// Get the Feed `id`. + pub fn id(&self) -> i32 { + self.id + } + + /// Get the Feed `title`. + pub fn title(&self) -> &str { + &self.title + } + + /// Get the Feed `link`. + /// + /// Usually the website/homepage of the content creator. + pub fn link(&self) -> &str { + &self.link + } + + /// Set the Podcast/Feed `link`. + pub fn set_link(&mut self, value: &str) { + self.link = value.to_string(); + } + + /// Get the `description`. + pub fn description(&self) -> &str { + &self.description + } + + /// Set the `description`. + pub fn set_description(&mut self, value: &str) { + self.description = value.to_string(); + } + + /// Get the `image_uri`. + /// + /// Represents the uri(url usually) that the Feed cover image is located at. + pub fn image_uri(&self) -> Option<&str> { + self.image_uri.as_ref().map(|s| s.as_str()) + } + + /// Set the `image_uri`. + pub fn set_image_uri(&mut self, value: Option<&str>) { + self.image_uri = value.map(|x| x.to_string()); + } + + /// Represents the archiving policy for the episode. + pub fn archive(&self) -> bool { + self.archive + } + + /// Set the `archive` policy. + pub fn set_archive(&mut self, b: bool) { + self.archive = b + } + + /// Get the `favorite` status of the `Podcast` Feed. + pub fn favorite(&self) -> bool { + self.favorite + } + + /// Set `favorite` status. + pub fn set_favorite(&mut self, b: bool) { + self.favorite = b + } + + /// Represents the download policy for the `Podcast` Feed. + /// + /// Reserved for the use with a Download manager, yet to be implemented. + /// + /// If true Podcast Episode should be downloaded automaticly/skipping + /// the selection queue. + pub fn always_download(&self) -> bool { + self.always_dl + } + + /// Set the download policy. + pub fn set_always_download(&mut self, b: bool) { + self.always_dl = b + } + + /// `Source` table foreign key. + pub fn source_id(&self) -> i32 { + self.source_id + } +} + +#[derive(Queryable, Debug, Clone)] +/// Diesel Model of the podcast cover query. +/// Used for fetching information about a Podcast's cover. +pub struct PodcastCoverQuery { + id: i32, + title: String, + image_uri: Option, +} + +impl From for PodcastCoverQuery { + fn from(p: Podcast) -> PodcastCoverQuery { + PodcastCoverQuery { + id: p.id(), + title: p.title, + image_uri: p.image_uri, + } + } +} + +impl PodcastCoverQuery { + /// Get the Feed `id`. + pub fn id(&self) -> i32 { + self.id + } + + /// Get the Feed `title`. + pub fn title(&self) -> &str { + &self.title + } + + /// Get the `image_uri`. + /// + /// Represents the uri(url usually) that the Feed cover image is located at. + pub fn image_uri(&self) -> Option<&str> { + self.image_uri.as_ref().map(|s| s.as_str()) + } +} diff --git a/hammond-data/src/models/queryables.rs b/hammond-data/src/models/queryables.rs deleted file mode 100644 index ce0d3f6..0000000 --- a/hammond-data/src/models/queryables.rs +++ /dev/null @@ -1,428 +0,0 @@ -use chrono::prelude::*; - -use reqwest; -use diesel::SaveChangesDsl; -use reqwest::header::{ETag, LastModified}; -use rss::Channel; - -use schema::{episode, podcast, source}; -use feed::Feed; -use errors::*; - -use models::insertables::NewSource; -use database::connection; - -use std::io::Read; -use std::str::FromStr; - -#[derive(Queryable, Identifiable, AsChangeset, Associations, PartialEq)] -#[table_name = "episode"] -#[changeset_options(treat_none_as_null = "true")] -#[primary_key(title, podcast_id)] -#[belongs_to(Podcast, foreign_key = "podcast_id")] -#[derive(Debug, Clone)] -/// Diesel Model of the episode table. -pub struct Episode { - rowid: i32, - title: String, - uri: Option, - local_uri: Option, - description: Option, - published_date: Option, - epoch: i32, - length: Option, - guid: Option, - played: Option, - favorite: bool, - archive: bool, - podcast_id: i32, -} - -impl Episode { - /// Get the value of the sqlite's `ROW_ID` - pub fn rowid(&self) -> i32 { - self.rowid - } - - /// Get the value of the `title` field. - pub fn title(&self) -> &str { - &self.title - } - - /// Set the `title`. - pub fn set_title(&mut self, value: &str) { - self.title = value.to_string(); - } - - /// Get the value of the `uri`. - /// - /// Represents the url(usually) that the media file will be located at. - pub fn uri(&self) -> Option<&str> { - self.uri.as_ref().map(|s| s.as_str()) - } - - /// Set the `uri`. - pub fn set_uri(&mut self, value: Option<&str>) { - self.uri = value.map(|x| x.to_string()); - } - - /// Get the value of the `local_uri`. - /// - /// Represents the local uri,usually filesystem path, - /// that the media file will be located at. - pub fn local_uri(&self) -> Option<&str> { - self.local_uri.as_ref().map(|s| s.as_str()) - } - - /// Set the `local_uri`. - pub fn set_local_uri(&mut self, value: Option<&str>) { - self.local_uri = value.map(|x| x.to_string()); - } - - /// Get the `description`. - pub fn description(&self) -> Option<&str> { - self.description.as_ref().map(|s| s.as_str()) - } - - /// Set the `description`. - pub fn set_description(&mut self, value: Option<&str>) { - self.description = value.map(|x| x.to_string()); - } - - /// Get the the `published_date`. - pub fn published_date(&self) -> Option<&str> { - self.published_date.as_ref().map(|s| s.as_str()) - } - - /// Set the `published_date`. - pub fn set_published_date(&mut self, value: Option<&str>) { - self.published_date = value.map(|x| x.to_string().to_owned()); - } - - /// Get the value of the `description`. - pub fn guid(&self) -> Option<&str> { - self.guid.as_ref().map(|s| s.as_str()) - } - - /// Set the `guid`. - pub fn set_guid(&mut self, value: Option<&str>) { - self.guid = value.map(|x| x.to_string()); - } - - /// Get the `epoch` value. - /// - /// Retrieved from the rss Item publish date. - /// Value is set to Utc whenever possible. - pub fn epoch(&self) -> i32 { - self.epoch - } - - /// Set the `epoch`. - pub fn set_epoch(&mut self, value: i32) { - self.epoch = value; - } - - /// Get the `length`. - pub fn length(&self) -> Option { - self.length - } - - /// Set the `length`. - pub fn set_length(&mut self, value: Option) { - self.length = value; - } - - /// Epoch representation of the last time the episode was played. - /// - /// None/Null for unplayed. - pub fn played(&self) -> Option { - self.played - } - - /// Set the `played` value. - pub fn set_played(&mut self, value: Option) { - self.played = value; - } - - /// Represents the archiving policy for the episode. - pub fn archive(&self) -> bool { - self.archive - } - - /// Set the `archive` policy. - /// - /// If true, the download cleanr will ignore the episode - /// and the corresponding media value will never be automaticly deleted. - pub fn set_archive(&mut self, b: bool) { - self.archive = b - } - - /// Get the `favorite` status of the `Episode`. - pub fn favorite(&self) -> bool { - self.favorite - } - - /// Set `favorite` status. - pub fn set_favorite(&mut self, b: bool) { - self.favorite = b - } - - /// `Podcast` table foreign key. - pub fn podcast_id(&self) -> i32 { - self.podcast_id - } - - /// Sets the `played` value with the current `epoch` timestap and save it. - pub fn set_played_now(&mut self) -> Result<()> { - let epoch = Utc::now().timestamp() as i32; - self.set_played(Some(epoch)); - self.save()?; - Ok(()) - } - - /// Helper method to easily save/"sync" current state of self to the Database. - pub fn save(&self) -> Result { - let db = connection(); - let tempdb = db.get()?; - - Ok(self.save_changes::(&*tempdb)?) - } -} - -#[derive(Queryable, Identifiable, AsChangeset, Associations, PartialEq)] -#[belongs_to(Source, foreign_key = "source_id")] -#[changeset_options(treat_none_as_null = "true")] -#[table_name = "podcast"] -#[derive(Debug, Clone)] -/// Diesel Model of the podcast table. -pub struct Podcast { - id: i32, - title: String, - link: String, - description: String, - image_uri: Option, - favorite: bool, - archive: bool, - always_dl: bool, - source_id: i32, -} - -impl Podcast { - /// Get the Feed `title`. - pub fn title(&self) -> &str { - &self.title - } - - /// Get the Feed `link`. - /// - /// Usually the website/homepage of the content creator. - pub fn link(&self) -> &str { - &self.link - } - - /// Set the Podcast/Feed `link`. - pub fn set_link(&mut self, value: &str) { - self.link = value.to_string(); - } - - /// Get the `description`. - pub fn description(&self) -> &str { - &self.description - } - - /// Set the `description`. - pub fn set_description(&mut self, value: &str) { - self.description = value.to_string(); - } - - /// Get the `image_uri`. - /// - /// Represents the uri(url usually) that the Feed cover image is located at. - pub fn image_uri(&self) -> Option<&str> { - self.image_uri.as_ref().map(|s| s.as_str()) - } - - /// Set the `image_uri`. - pub fn set_image_uri(&mut self, value: Option<&str>) { - self.image_uri = value.map(|x| x.to_string()); - } - - /// Represents the archiving policy for the episode. - pub fn archive(&self) -> bool { - self.archive - } - - /// Set the `archive` policy. - pub fn set_archive(&mut self, b: bool) { - self.archive = b - } - - /// Get the `favorite` status of the `Podcast` Feed. - pub fn favorite(&self) -> bool { - self.favorite - } - - /// Set `favorite` status. - pub fn set_favorite(&mut self, b: bool) { - self.favorite = b - } - - /// Represents the download policy for the `Podcast` Feed. - /// - /// Reserved for the use with a Download manager, yet to be implemented. - /// - /// If true Podcast Episode should be downloaded automaticly/skipping - /// the selection queue. - pub fn always_download(&self) -> bool { - self.always_dl - } - - /// Set the download policy. - pub fn set_always_download(&mut self, b: bool) { - self.always_dl = b - } - - /// `Source` table foreign key. - pub fn source_id(&self) -> i32 { - self.source_id - } - - /// Helper method to easily save/"sync" current state of self to the Database. - pub fn save(&self) -> Result { - let db = connection(); - let tempdb = db.get()?; - - Ok(self.save_changes::(&*tempdb)?) - } -} - -#[derive(Queryable, Identifiable, AsChangeset, PartialEq)] -#[table_name = "source"] -#[changeset_options(treat_none_as_null = "true")] -#[derive(Debug, Clone)] -/// Diesel Model of the source table. -pub struct Source { - id: i32, - uri: String, - last_modified: Option, - http_etag: Option, -} - -impl<'a> Source { - /// Represents the location(usually url) of the Feed xml file. - pub fn uri(&self) -> &str { - &self.uri - } - - /// Represents the Http Last-Modified Header field. - /// - /// See [RFC 7231](https://tools.ietf.org/html/rfc7231#section-7.2) for more. - pub fn last_modified(&self) -> Option<&str> { - self.last_modified.as_ref().map(|s| s.as_str()) - } - - /// Set `last_modified` value. - pub fn set_last_modified(&mut self, value: Option<&str>) { - self.last_modified = value.map(|x| x.to_string()); - } - - /// Represents the Http Etag Header field. - /// - /// See [RFC 7231](https://tools.ietf.org/html/rfc7231#section-7.2) for more. - pub fn http_etag(&self) -> Option<&str> { - self.http_etag.as_ref().map(|s| s.as_str()) - } - - /// Set `http_etag` value. - pub fn set_http_etag(&mut self, value: Option<&str>) { - self.http_etag = value.map(|x| x.to_string()); - } - - /// Extract Etag and LastModifier from req, and update self and the - /// corresponding db row. - fn update_etag(&mut self, req: &reqwest::Response) -> Result<()> { - let headers = req.headers(); - - // let etag = headers.get_raw("ETag").unwrap(); - let etag = headers.get::(); - let lmod = headers.get::(); - - // FIXME: This dsnt work most of the time apparently - if self.http_etag() != etag.map(|x| x.tag()) || self.last_modified != lmod.map(|x| { - format!("{}", x) - }) { - self.http_etag = etag.map(|x| x.tag().to_string().to_owned()); - self.last_modified = lmod.map(|x| format!("{}", x)); - self.save()?; - } - - Ok(()) - } - - /// Helper method to easily save/"sync" current state of self to the Database. - pub fn save(&self) -> Result { - let db = connection(); - let tempdb = db.get()?; - - Ok(self.save_changes::(&*tempdb)?) - } - - /// `Feed` constructor. - /// - /// Fetches the latest xml Feed. - /// - /// Updates the validator Http Headers. - /// - /// Consumes `self` and Returns the corresponding `Feed` Object. - // TODO: Refactor into TryInto once it lands on stable. - pub fn into_feed(mut self) -> Result { - use reqwest::header::{EntityTag, Headers, HttpDate, IfNoneMatch, IfModifiedSince}; - - let mut headers = Headers::new(); - - if let Some(foo) = self.http_etag() { - headers.set( - IfNoneMatch::Items(vec![ - EntityTag::new(true, foo.to_owned()) - ]) - ); - } - - if let Some(foo) = self.last_modified() { - if let Ok(x) = foo.parse::() { - headers.set(IfModifiedSince(x)); - } - } - - // FIXME: I have fucked up somewhere here. - // Getting back 200 codes even though I supposedly sent etags. - // info!("Headers: {:?}", headers); - let client = reqwest::Client::builder().referer(false).build()?; - let mut req = client.get(self.uri()).headers(headers).send()?; - - info!("GET to {} , returned: {}", self.uri(), req.status()); - - // TODO match on more stuff - // 301: Permanent redirect of the url - // 302: Temporary redirect of the url - // 304: Up to date Feed, checked with the Etag - // 410: Feed deleted - // match req.status() { - // reqwest::StatusCode::NotModified => (), - // _ => (), - // }; - - self.update_etag(&req)?; - - let mut buf = String::new(); - req.read_to_string(&mut buf)?; - let chan = Channel::from_str(&buf)?; - - Ok(Feed::from_channel_source(chan, self)) - } - - /// Construct a new `Source` with the given `uri` and index it. - pub fn from_url(uri: &str) -> Result { - NewSource::new_with_uri(uri).into_source() - } -} diff --git a/hammond-data/src/models/source.rs b/hammond-data/src/models/source.rs new file mode 100644 index 0000000..e6eb18a --- /dev/null +++ b/hammond-data/src/models/source.rs @@ -0,0 +1,265 @@ +use diesel::SaveChangesDsl; +use rss::Channel; +use url::Url; + +use hyper::{Client, Method, Request, Response, StatusCode, Uri}; +use hyper::client::HttpConnector; +use hyper::header::{ETag, EntityTag, HttpDate, IfModifiedSince, IfNoneMatch, LastModified, + Location}; +use hyper_tls::HttpsConnector; + +// use futures::future::ok; +use futures::prelude::*; +use futures_cpupool::CpuPool; + +use database::connection; +use errors::*; +use feed::{Feed, FeedBuilder}; +use models::{NewSource, Save}; +use schema::source; + +use std::str::FromStr; + +#[derive(Queryable, Identifiable, AsChangeset, PartialEq)] +#[table_name = "source"] +#[changeset_options(treat_none_as_null = "true")] +#[derive(Debug, Clone)] +/// Diesel Model of the source table. +pub struct Source { + id: i32, + uri: String, + last_modified: Option, + http_etag: Option, +} + +impl Save for Source { + /// Helper method to easily save/"sync" current state of self to the Database. + fn save(&self) -> Result { + let db = connection(); + let con = db.get()?; + + self.save_changes::(&con).map_err(From::from) + } +} + +impl Source { + /// Get the source `id` column. + pub fn id(&self) -> i32 { + self.id + } + + /// Represents the location(usually url) of the Feed xml file. + pub fn uri(&self) -> &str { + &self.uri + } + + /// Set the `uri` field value. + pub fn set_uri(&mut self, uri: String) { + self.uri = uri; + } + + /// Represents the Http Last-Modified Header field. + /// + /// See [RFC 7231](https://tools.ietf.org/html/rfc7231#section-7.2) for more. + pub fn last_modified(&self) -> Option<&str> { + self.last_modified.as_ref().map(|s| s.as_str()) + } + + /// Set `last_modified` value. + pub fn set_last_modified(&mut self, value: Option) { + // self.last_modified = value.map(|x| x.to_string()); + self.last_modified = value; + } + + /// Represents the Http Etag Header field. + /// + /// See [RFC 7231](https://tools.ietf.org/html/rfc7231#section-7.2) for more. + pub fn http_etag(&self) -> Option<&str> { + self.http_etag.as_ref().map(|s| s.as_str()) + } + + /// Set `http_etag` value. + pub fn set_http_etag(&mut self, value: Option<&str>) { + self.http_etag = value.map(|x| x.to_string()); + } + + /// Extract Etag and LastModifier from res, and update self and the + /// corresponding db row. + fn update_etag(&mut self, res: &Response) -> Result<()> { + let headers = res.headers(); + + let etag = headers.get::().map(|x| x.tag()); + let lmod = headers.get::().map(|x| format!("{}", x)); + + if (self.http_etag() != etag) || (self.last_modified != lmod) { + self.set_http_etag(etag); + self.set_last_modified(lmod); + self.save()?; + } + + Ok(()) + } + + // TODO match on more stuff + // 301: Moved Permanently + // 304: Up to date Feed, checked with the Etag + // 307: Temporary redirect of the url + // 308: Permanent redirect of the url + // 401: Unathorized + // 403: Forbidden + // 408: Timeout + // 410: Feed deleted + fn match_status(mut self, res: Response) -> Result<(Self, Response)> { + let code = res.status(); + match code { + StatusCode::NotModified => bail!("304: skipping.."), + StatusCode::MovedPermanently => { + error!("Feed was moved permanently."); + self.handle_301(&res)?; + bail!("301: Feed was moved permanently.") + } + StatusCode::TemporaryRedirect => debug!("307: Temporary Redirect."), + StatusCode::PermanentRedirect => warn!("308: Permanent Redirect."), + StatusCode::Unauthorized => bail!("401: Unauthorized."), + StatusCode::Forbidden => bail!("403: Forbidden."), + StatusCode::NotFound => bail!("404: Not found."), + StatusCode::RequestTimeout => bail!("408: Request Timeout."), + StatusCode::Gone => bail!("410: Feed was deleted."), + _ => info!("HTTP StatusCode: {}", code), + }; + Ok((self, res)) + } + + fn handle_301(&mut self, res: &Response) -> Result<()> { + let headers = res.headers(); + + if let Some(url) = headers.get::() { + self.set_uri(url.to_string()); + self.save()?; + info!("Feed url was updated succesfully."); + // TODO: Refresh in place instead of next time, Not a priority. + info!("New content will be fetched with the next refesh."); + } + + Ok(()) + } + + /// Construct a new `Source` with the given `uri` and index it. + /// + /// This only indexes the `Source` struct, not the Podcast Feed. + pub fn from_url(uri: &str) -> Result { + let url = Url::parse(uri)?; + + NewSource::new(&url).to_source() + } + + /// `Feed` constructor. + /// + /// Fetches the latest xml Feed. + /// + /// Updates the validator Http Headers. + /// + /// Consumes `self` and Returns the corresponding `Feed` Object. + // TODO: Refactor into TryInto once it lands on stable. + pub fn into_feed( + self, + client: &Client>, + pool: CpuPool, + ignore_etags: bool, + ) -> Box> { + let id = self.id(); + let feed = self.request_constructor(client, ignore_etags) + .and_then(move |(mut source, res)| { + source.update_etag(&res)?; + Ok(res) + }) + .and_then(move |res| response_to_channel(res, pool)) + .and_then(move |chan| { + FeedBuilder::default() + .channel(chan) + .source_id(id) + .build() + .map_err(From::from) + }); + + Box::new(feed) + } + + // TODO: make ignore_etags an Enum for better ergonomics. + // #bools_are_just_2variant_enmus + fn request_constructor( + self, + client: &Client>, + ignore_etags: bool, + ) -> Box> { + // FIXME: remove unwrap somehow + let uri = Uri::from_str(self.uri()).unwrap(); + let mut req = Request::new(Method::Get, uri); + + if !ignore_etags { + if let Some(foo) = self.http_etag() { + req.headers_mut().set(IfNoneMatch::Items(vec![ + EntityTag::new(true, foo.to_owned()), + ])); + } + + if let Some(foo) = self.last_modified() { + if let Ok(x) = foo.parse::() { + req.headers_mut().set(IfModifiedSince(x)); + } + } + } + + let work = client + .request(req) + .map_err(From::from) + .and_then(move |res| self.match_status(res)); + Box::new(work) + } +} + +fn response_to_channel( + res: Response, + pool: CpuPool, +) -> Box + Send> { + let chan = res.body() + .concat2() + .map(|x| x.into_iter()) + .map_err(From::from) + .map(|iter| iter.collect::>()) + .map(|utf_8_bytes| String::from_utf8_lossy(&utf_8_bytes).into_owned()) + .and_then(|buf| Channel::from_str(&buf).map_err(From::from)); + let cpu_chan = pool.spawn(chan); + Box::new(cpu_chan) +} + +#[cfg(test)] +mod tests { + use super::*; + use tokio_core::reactor::Core; + + use database::truncate_db; + use utils::get_feed; + + #[test] + fn test_into_feed() { + truncate_db().unwrap(); + + let pool = CpuPool::new_num_cpus(); + let mut core = Core::new().unwrap(); + let client = Client::configure() + .connector(HttpsConnector::new(4, &core.handle()).unwrap()) + .build(&core.handle()); + + let url = "https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.\ + com/InterceptedWithJeremyScahill"; + let source = Source::from_url(url).unwrap(); + let id = source.id(); + + let feed = source.into_feed(&client, pool.clone(), true); + let feed = core.run(feed).unwrap(); + + let expected = get_feed("tests/feeds/2018-01-20-Intercepted.xml", id); + assert_eq!(expected, feed); + } +} diff --git a/hammond-data/src/parser.rs b/hammond-data/src/parser.rs index 1be8064..116dcd5 100644 --- a/hammond-data/src/parser.rs +++ b/hammond-data/src/parser.rs @@ -1,378 +1,81 @@ -use ammonia; -use rss::{Channel, Item}; -use rfc822_sanitizer::parse_from_rfc2822_with_fallback; +use rss::extension::itunes::ITunesItemExtension; -use models::insertables::{NewEpisode, NewEpisodeBuilder, NewPodcast, NewPodcastBuilder}; -use utils::url_cleaner; -use utils::replace_extra_spaces; +/// Parses an Item Itunes extension and returns it's duration value in seconds. +// FIXME: Rafactor +#[allow(non_snake_case)] +pub(crate) fn parse_itunes_duration(item: Option<&ITunesItemExtension>) -> Option { + let duration = item.map(|s| s.duration())??; -use errors::*; - -// TODO: Extend the support for parsing itunes extensions -/// Parses a `rss::Channel` into a `NewPodcast` Struct. -pub(crate) fn new_podcast(chan: &Channel, source_id: i32) -> NewPodcast { - let title = chan.title().trim(); - let description = replace_extra_spaces(&ammonia::clean(chan.description())); - - let link = url_cleaner(chan.link()); - let x = chan.itunes_ext().map(|s| s.image()); - let image_uri = if let Some(img) = x { - img.map(|s| url_cleaner(s)) - } else { - chan.image().map(|foo| url_cleaner(foo.url())) + // FOR SOME FUCKING REASON, IN THE APPLE EXTENSION SPEC + // THE DURATION CAN BE EITHER AN INT OF SECONDS OR + // A STRING OF THE FOLLOWING FORMATS: + // HH:MM:SS, H:MM:SS, MM:SS, M:SS + // LIKE WHO THE FUCK THOUGH THAT WOULD BE A GOOD IDEA. + if let Ok(NO_FUCKING_LOGIC) = duration.parse::() { + return Some(NO_FUCKING_LOGIC); }; - NewPodcastBuilder::default() - .title(title) - .description(description) - .link(link) - .image_uri(image_uri) - .source_id(source_id) - .build() - .unwrap() -} - -/// Parses an `rss::Item` into a `NewEpisode` Struct. -pub(crate) fn new_episode(item: &Item, parent_id: i32) -> Result { - if item.title().is_none() { - bail!("No title specified for the item.") + let mut seconds = 0; + let fk_apple = duration.split(':').collect::>(); + if fk_apple.len() == 3 { + seconds += fk_apple[0].parse::().unwrap_or(0) * 3600; + seconds += fk_apple[1].parse::().unwrap_or(0) * 60; + seconds += fk_apple[2].parse::().unwrap_or(0); + } else if fk_apple.len() == 2 { + seconds += fk_apple[0].parse::().unwrap_or(0) * 60; + seconds += fk_apple[1].parse::().unwrap_or(0); } - let title = item.title().unwrap().trim().to_owned(); - let description = item.description() - .map(|s| replace_extra_spaces(&ammonia::clean(s))); - let guid = item.guid().map(|s| s.value().trim().to_owned()); - // Its kinda weird this being an Option type. - // Rss 2.0 specified that it's optional. - // Though the db scema has a requirment of episode uri being Unique && Not Null. - // TODO: Restructure - let x = item.enclosure().map(|s| url_cleaner(s.url())); - // FIXME: refactor - let uri = if x.is_some() { - x - } else if item.link().is_some() { - item.link().map(|s| url_cleaner(s)) - } else { - bail!("No url specified for the item.") - }; - - let date = parse_from_rfc2822_with_fallback( - // Default to rfc2822 represantation of epoch 0. - item.pub_date().unwrap_or("Thu, 1 Jan 1970 00:00:00 +0000"), - ); - - // Should treat information from the rss feeds as invalid by default. - // Case: Thu, 05 Aug 2016 06:00:00 -0400 <-- Actually that was friday. - let pub_date = date.map(|x| x.to_rfc2822()).ok(); - let epoch = date.map(|x| x.timestamp() as i32).unwrap_or(0); - - let length = item.enclosure().map(|x| x.length().parse().unwrap_or(0)); - - Ok(NewEpisodeBuilder::default() - .title(title) - .uri(uri) - .description(description) - .length(length) - .published_date(pub_date) - .epoch(epoch) - .guid(guid) - .podcast_id(parent_id) - .build() - .unwrap()) + Some(seconds) } - #[cfg(test)] mod tests { - use std::fs::File; - use std::io::BufReader; - use rss::Channel; + use rss::extension::itunes::ITunesItemExtensionBuilder; use super::*; #[test] - fn test_new_podcast_intercepted() { - let file = File::open("tests/feeds/Intercepted.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); + fn test_itunes_duration() { + // Input is a String + let extension = ITunesItemExtensionBuilder::default() + .duration(Some("3370".into())) + .build() + .unwrap(); + let item = Some(&extension); + assert_eq!(parse_itunes_duration(item), Some(3370)); - let descr = "The people behind The Intercept’s fearless reporting and incisive \ - commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss \ - the crucial issues of our time: national security, civil liberties, foreign \ - policy, and criminal justice. Plus interviews with artists, thinkers, and \ - newsmakers who challenge our preconceptions about the world we live in."; - let pd = new_podcast(&channel, 0); + // Input is a String + let extension = ITunesItemExtensionBuilder::default() + .duration(Some("6:10".into())) + .build() + .unwrap(); + let item = Some(&extension); + assert_eq!(parse_itunes_duration(item), Some(370)); - assert_eq!(pd.title(), "Intercepted with Jeremy Scahill"); - assert_eq!(pd.link(), "https://theintercept.com/podcasts"); - assert_eq!(pd.description(), descr); - assert_eq!( - pd.image_uri(), - Some( - "http://static.megaphone.fm/podcasts/d5735a50-d904-11e6-8532-73c7de466ea6/image/\ - uploads_2F1484252190700-qhn5krasklbce3dh-a797539282700ea0298a3a26f7e49b0b_\ - 2FIntercepted_COVER%2B_281_29.png" - ) - ); + // Input is a String + let extension = ITunesItemExtensionBuilder::default() + .duration(Some("56:10".into())) + .build() + .unwrap(); + let item = Some(&extension); + assert_eq!(parse_itunes_duration(item), Some(3370)); + + // Input is a String + let extension = ITunesItemExtensionBuilder::default() + .duration(Some("1:56:10".into())) + .build() + .unwrap(); + let item = Some(&extension); + assert_eq!(parse_itunes_duration(item), Some(6970)); + + // Input is a String + let extension = ITunesItemExtensionBuilder::default() + .duration(Some("01:56:10".into())) + .build() + .unwrap(); + let item = Some(&extension); + assert_eq!(parse_itunes_duration(item), Some(6970)); } - #[test] - fn test_new_podcast_breakthrough() { - let file = File::open("tests/feeds/TheBreakthrough.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); - - let descr = "Latest Articles and Investigations from ProPublica, an independent, \ - non-profit newsroom that produces investigative journalism in the public \ - interest."; - let pd = new_podcast(&channel, 0); - - assert_eq!(pd.title(), "The Breakthrough"); - assert_eq!(pd.link(), "http://www.propublica.org/podcast"); - assert_eq!(pd.description(), descr); - assert_eq!( - pd.image_uri(), - Some("http://www.propublica.org/images/podcast_logo_2.png") - ); - } - - #[test] - fn test_new_podcast_lup() { - let file = File::open("tests/feeds/LinuxUnplugged.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); - - let descr = "An open show powered by community LINUX Unplugged takes the best attributes \ - of open collaboration and focuses them into a weekly lifestyle show about \ - Linux."; - let pd = new_podcast(&channel, 0); - - assert_eq!(pd.title(), "LINUX Unplugged Podcast"); - assert_eq!(pd.link(), "http://www.jupiterbroadcasting.com/"); - assert_eq!(pd.description(), descr); - assert_eq!( - pd.image_uri(), - Some("http://www.jupiterbroadcasting.com/images/LASUN-Badge1400.jpg") - ); - } - - #[test] - fn test_new_podcast_r4explanation() { - let file = File::open("tests/feeds/R4Explanation.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); - - let pd = new_podcast(&channel, 0); - let descr = "A weekly discussion of Rust RFCs"; - - assert_eq!(pd.title(), "Request For Explanation"); - assert_eq!( - pd.link(), - "https://request-for-explanation.github.io/podcast/" - ); - assert_eq!(pd.description(), descr); - assert_eq!( - pd.image_uri(), - Some("https://request-for-explanation.github.io/podcast/podcast.png") - ); - } - - #[test] - fn test_new_episode_intercepted() { - let file = File::open("tests/feeds/Intercepted.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); - - let firstitem = channel.items().first().unwrap(); - let descr = "NSA whistleblower Edward Snowden discusses the massive Equifax data breach \ - and allegations of Russian interference in the US election. Commentator \ - Shaun King explains his call for a boycott of the NFL and talks about his \ - campaign to bring violent neo-Nazis to justice. Rapper Open Mike Eagle \ - performs."; - let i = new_episode(&firstitem, 0).unwrap(); - - assert_eq!(i.title(), "The Super Bowl of Racism"); - assert_eq!( - i.uri(), - Some("http://traffic.megaphone.fm/PPY6458293736.mp3") - ); - assert_eq!(i.description(), Some(descr)); - assert_eq!(i.length(), Some(66738886)); - assert_eq!(i.guid(), Some("7df4070a-9832-11e7-adac-cb37b05d5e24")); - assert_eq!(i.published_date(), Some("Wed, 13 Sep 2017 10:00:00 +0000")); - assert_eq!(i.epoch(), 1505296800); - - let second = channel.items().iter().nth(1).unwrap(); - let i2 = new_episode(&second, 0).unwrap(); - - let descr2 = "This week on Intercepted: Jeremy gives an update on the aftermath of \ - Blackwater’s 2007 massacre of Iraqi civilians. Intercept reporter Lee Fang \ - lays out how a network of libertarian think tanks called the Atlas Network \ - is insidiously shaping political infrastructure in Latin America. We speak \ - with attorney and former Hugo Chavez adviser Eva Golinger about the \ - Venezuela\'s political turmoil.And we hear Claudia Lizardo of the \ - Caracas-based band, La Pequeña Revancha, talk about her music and hopes for \ - Venezuela."; - assert_eq!( - i2.title(), - "Atlas Golfed — U.S.-Backed Think Tanks Target Latin America" - ); - assert_eq!( - i2.uri(), - Some("http://traffic.megaphone.fm/FL5331443769.mp3") - ); - assert_eq!(i2.description(), Some(descr2)); - assert_eq!(i2.length(), Some(67527575)); - assert_eq!(i2.guid(), Some("7c207a24-e33f-11e6-9438-eb45dcf36a1d")); - assert_eq!(i2.published_date(), Some("Wed, 9 Aug 2017 10:00:00 +0000")); - assert_eq!(i2.epoch(), 1502272800); - } - - #[test] - fn test_new_episode_breakthrough() { - let file = File::open("tests/feeds/TheBreakthrough.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); - - let firstitem = channel.items().first().unwrap(); - let descr = "

A reporter finds that homes meant to replace New York’s troubled \ - psychiatric hospitals might be just as bad.

"; - let i = new_episode(&firstitem, 0).unwrap(); - - assert_eq!( - i.title(), - "The Breakthrough: Hopelessness and Exploitation Inside Homes for Mentally Ill" - ); - assert_eq!( - i.uri(), - Some("http://tracking.feedpress.it/link/10581/6726758/20170908-cliff-levy.mp3") - ); - assert_eq!(i.description(), Some(descr)); - assert_eq!(i.length(), Some(33396551)); - assert_eq!( - i.guid(), - Some( - "https://www.propublica.org/podcast/\ - the-breakthrough-hopelessness-exploitation-homes-for-mentally-ill#134472" - ) - ); - assert_eq!(i.published_date(), Some("Fri, 8 Sep 2017 12:00:00 +0000")); - assert_eq!(i.epoch(), 1504872000); - - let second = channel.items().iter().nth(1).unwrap(); - let i2 = new_episode(&second, 0).unwrap(); - let descr2 = "

Jonathan Allen and Amie Parnes didn’t know their book would be called \ - ‘Shattered,’ or that their extraordinary access would let them chronicle \ - the mounting signs of a doomed campaign.

"; - - assert_eq!( - i2.title(), - "The Breakthrough: Behind the Scenes of Hillary Clinton’s Failed Bid for President" - ); - assert_eq!( - i2.uri(), - Some("http://tracking.feedpress.it/link/10581/6726759/16_JohnAllen-CRAFT.mp3") - ); - assert_eq!(i2.description(), Some(descr2)); - assert_eq!(i2.length(), Some(17964071)); - assert_eq!( - i2.guid(), - Some( - "https://www.propublica.\ - org/podcast/the-breakthrough-hillary-clinton-failed-presidential-bid#133721" - ) - ); - assert_eq!(i2.published_date(), Some("Fri, 25 Aug 2017 12:00:00 +0000")); - assert_eq!(i2.epoch(), 1503662400); - } - - #[test] - fn test_new_episode_lup() { - let file = File::open("tests/feeds/LinuxUnplugged.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); - - let firstitem = channel.items().first().unwrap(); - let descr = "Audit your network with a couple of easy commands on Kali Linux. Chris \ - decides to blow off a little steam by attacking his IoT devices, Wes has the \ - scope on Equifax blaming open source & the Beard just saved the show. \ - It’s a really packed episode!"; - let i = new_episode(&firstitem, 0).unwrap(); - - assert_eq!(i.title(), "Hacking Devices with Kali Linux | LUP 214"); - assert_eq!( - i.uri(), - Some("http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0214.mp3") - ); - assert_eq!(i.description(), Some(descr)); - assert_eq!(i.length(), Some(46479789)); - assert_eq!(i.guid(), Some("78A682B4-73E8-47B8-88C0-1BE62DD4EF9D")); - assert_eq!(i.published_date(), Some("Tue, 12 Sep 2017 22:24:42 -0700")); - assert_eq!(i.epoch(), 1505280282); - - let second = channel.items().iter().nth(1).unwrap(); - let i2 = new_episode(&second, 0).unwrap(); - - let descr2 = "

The Gnome project is about to solve one of our audience's biggest \ - Wayland’s concerns. But as the project takes on a new level of relevance, \ - decisions for the next version of Gnome have us worried about the \ - future.

\n

Plus we chat with Wimpy about the Ubuntu Rally in NYC, \ - Microsoft’s sneaky move to turn Windows 10 into the “ULTIMATE LINUX \ - RUNTIME”, community news & more!

"; - assert_eq!(i2.title(), "Gnome Does it Again | LUP 213"); - assert_eq!( - i2.uri(), - Some("http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0213.mp3") - ); - assert_eq!(i2.description(), Some(descr2)); - assert_eq!(i2.length(), Some(36544272)); - assert_eq!(i2.guid(), Some("1CE57548-B36C-4F14-832A-5D5E0A24E35B")); - assert_eq!(i2.published_date(), Some("Tue, 5 Sep 2017 20:57:27 -0700")); - assert_eq!(i2.epoch(), 1504670247); - } - - #[test] - fn test_new_episode_r4expanation() { - let file = File::open("tests/feeds/R4Explanation.xml").unwrap(); - let channel = Channel::read_from(BufReader::new(file)).unwrap(); - - let firstitem = channel.items().iter().nth(9).unwrap(); - let descr = "This week we look at RFC 2094 \"Non-lexical lifetimes\""; - let i = new_episode(&firstitem, 0).unwrap(); - - assert_eq!(i.title(), "Episode #9 - A Once in a Lifetime RFC"); - assert_eq!( - i.uri(), - Some( - "http://request-for-explanation.github.\ - io/podcast/ep9-a-once-in-a-lifetime-rfc/episode.mp3" - ) - ); - assert_eq!(i.description(), Some(descr)); - assert_eq!(i.length(), Some(15077388)); - assert_eq!( - i.guid(), - Some("https://request-for-explanation.github.io/podcast/ep9-a-once-in-a-lifetime-rfc/") - ); - assert_eq!(i.published_date(), Some("Mon, 28 Aug 2017 15:00:00 -0700")); - assert_eq!(i.epoch(), 1503957600); - - let second = channel.items().iter().nth(8).unwrap(); - let i2 = new_episode(&second, 0).unwrap(); - - let descr2 = "This week we look at RFC 2071 \"Add impl Trait type alias and variable \ - declarations\""; - assert_eq!(i2.title(), "Episode #8 - An Existential Crisis"); - assert_eq!( - i2.uri(), - Some( - "http://request-for-explanation.github.\ - io/podcast/ep8-an-existential-crisis/episode.mp3" - ) - ); - assert_eq!(i2.description(), Some(descr2)); - assert_eq!(i2.length(), Some(13713219)); - assert_eq!( - i2.guid(), - Some("https://request-for-explanation.github.io/podcast/ep8-an-existential-crisis/") - ); - assert_eq!(i2.published_date(), Some("Tue, 15 Aug 2017 17:00:00 -0700")); - assert_eq!(i2.epoch(), 1502841600); - } } diff --git a/hammond-data/src/pipeline.rs b/hammond-data/src/pipeline.rs new file mode 100644 index 0000000..c91976d --- /dev/null +++ b/hammond-data/src/pipeline.rs @@ -0,0 +1,199 @@ +// FIXME: +//! Docs. + +use futures::future::*; +use futures_cpupool::CpuPool; +// use futures::prelude::*; + +use hyper::Client; +use hyper::client::HttpConnector; +use hyper_tls::HttpsConnector; +use tokio_core::reactor::Core; + +use num_cpus; +use rss; + +use Source; +use dbqueries; +use errors::*; +use models::{IndexState, NewEpisode, NewEpisodeMinimal}; +// use Feed; + +use std; +// use std::sync::{Arc, Mutex}; + +macro_rules! clone { + (@param _) => ( _ ); + (@param $x:ident) => ( $x ); + ($($n:ident),+ => move || $body:expr) => ( + { + $( let $n = $n.clone(); )+ + move || $body + } + ); + ($($n:ident),+ => move |$($p:tt),+| $body:expr) => ( + { + $( let $n = $n.clone(); )+ + move |$(clone!(@param $p),)+| $body + } + ); +} + +/// The pipline to be run for indexing and updating a Podcast feed that originates from +/// `Source.uri`. +/// +/// Messy temp diagram: +/// Source -> GET Request -> Update Etags -> Check Status -> Parse xml/Rss -> +/// Convert `rss::Channel` into Feed -> Index Podcast -> Index Episodes. +pub fn pipeline>( + sources: S, + ignore_etags: bool, + tokio_core: &mut Core, + pool: &CpuPool, + client: Client>, +) -> Result<()> { + let list: Vec<_> = sources + .into_iter() + .map(clone!(pool => move |s| s.into_feed(&client, pool.clone(), ignore_etags))) + .map(|fut| fut.and_then(clone!(pool => move |feed| pool.clone().spawn(feed.index())))) + .map(|fut| fut.map(|_| ()).map_err(|err| error!("Error: {}", err))) + .collect(); + + if list.is_empty() { + bail!("No futures were found to run."); + } + + // Thats not really concurrent yet I think. + tokio_core.run(collect_futures(list))?; + + Ok(()) +} + +/// Creates a tokio `reactor::Core`, a `CpuPool`, and a `hyper::Client` and runs the pipeline. +pub fn run(sources: Vec, ignore_etags: bool) -> Result<()> { + if sources.is_empty() { + return Ok(()); + } + + let pool = CpuPool::new_num_cpus(); + let mut core = Core::new()?; + let handle = core.handle(); + let client = Client::configure() + .connector(HttpsConnector::new(num_cpus::get(), &handle)?) + .build(&handle); + + pipeline(sources, ignore_etags, &mut core, &pool, client) +} + +fn determine_ep_state(ep: NewEpisodeMinimal, item: &rss::Item) -> Result> { + // Check if feed exists + let exists = dbqueries::episode_exists(ep.title(), ep.podcast_id())?; + + if !exists { + Ok(IndexState::Index(ep.into_new_episode(item))) + } else { + let old = dbqueries::get_episode_minimal_from_pk(ep.title(), ep.podcast_id())?; + let rowid = old.rowid(); + + if ep != old { + Ok(IndexState::Update((ep.into_new_episode(item), rowid))) + } else { + Ok(IndexState::NotChanged) + } + } +} + +pub(crate) fn glue_async<'a>( + item: &'a rss::Item, + id: i32, +) -> Box, Error = Error> + 'a> { + Box::new( + result(NewEpisodeMinimal::new(item, id)).and_then(move |ep| determine_ep_state(ep, item)), + ) +} + +// Weird magic from #rust irc channel +// kudos to remexre +/// FIXME: Docs +#[cfg_attr(feature = "cargo-clippy", allow(type_complexity))] +pub fn collect_futures( + futures: Vec, +) -> Box>, Error = Error>> +where + F: 'static + Future, + ::Item: 'static, + ::Error: 'static, +{ + Box::new(loop_fn((futures, vec![]), |(futures, mut done)| { + select_all(futures).then(|r| { + let (r, rest) = match r { + Ok((r, _, rest)) => (Ok(r), rest), + Err((r, _, rest)) => (Err(r), rest), + }; + done.push(r); + if rest.is_empty() { + Ok(Loop::Break(done)) + } else { + Ok(Loop::Continue((rest, done))) + } + }) + })) +} + +#[cfg(test)] +mod tests { + use super::*; + use Source; + use database::truncate_db; + + // (path, url) tuples. + const URLS: &[(&str, &str)] = { + &[ + ( + "tests/feeds/2018-01-20-Intercepted.xml", + "https://web.archive.org/web/20180120083840if_/https://feeds.feedburner.\ + com/InterceptedWithJeremyScahill", + ), + ( + "tests/feeds/2018-01-20-LinuxUnplugged.xml", + "https://web.archive.org/web/20180120110314if_/https://feeds.feedburner.\ + com/linuxunplugged", + ), + ( + "tests/feeds/2018-01-20-TheTipOff.xml", + "https://web.archive.org/web/20180120110727if_/https://rss.acast.com/thetipoff", + ), + ( + "tests/feeds/2018-01-20-StealTheStars.xml", + "https://web.archive.org/web/20180120104957if_/https://rss.art19.\ + com/steal-the-stars", + ), + ( + "tests/feeds/2018-01-20-GreaterThanCode.xml", + "https://web.archive.org/web/20180120104741if_/https://www.greaterthancode.\ + com/feed/podcast", + ), + ] + }; + + #[test] + /// Insert feeds and update/index them. + fn test_pipeline() { + truncate_db().unwrap(); + URLS.iter().for_each(|&(_, url)| { + // Index the urls into the source table. + Source::from_url(url).unwrap(); + }); + let sources = dbqueries::get_sources().unwrap(); + run(sources, true).unwrap(); + + let sources = dbqueries::get_sources().unwrap(); + // Run again to cover Unique constrains erros. + run(sources, true).unwrap(); + + // Assert the index rows equal the controlled results + assert_eq!(dbqueries::get_sources().unwrap().len(), 5); + assert_eq!(dbqueries::get_podcasts().unwrap().len(), 5); + assert_eq!(dbqueries::get_episodes().unwrap().len(), 354); + } +} diff --git a/hammond-data/src/schema.rs b/hammond-data/src/schema.rs index 7b43171..cf22457 100644 --- a/hammond-data/src/schema.rs +++ b/hammond-data/src/schema.rs @@ -5,9 +5,9 @@ table! { uri -> Nullable, local_uri -> Nullable, description -> Nullable, - published_date -> Nullable, epoch -> Integer, length -> Nullable, + duration -> Nullable, guid -> Nullable, played -> Nullable, favorite -> Bool, @@ -38,3 +38,5 @@ table! { http_etag -> Nullable, } } + +allow_tables_to_appear_in_same_query!(episode, podcast, source,); diff --git a/hammond-data/src/utils.rs b/hammond-data/src/utils.rs index 42a6af7..97f762b 100644 --- a/hammond-data/src/utils.rs +++ b/hammond-data/src/utils.rs @@ -1,65 +1,63 @@ //! Helper utilities for accomplishing various tasks. -use rayon::prelude::*; use chrono::prelude::*; +use rayon::prelude::*; -use url::{Position, Url}; use itertools::Itertools; +use url::{Position, Url}; -use errors::*; use dbqueries; -use models::queryables::Episode; +use errors::*; +use models::{EpisodeCleanerQuery, Podcast, Save}; +use xdg_dirs::DL_DIR; -use std::path::Path; use std::fs; +use std::path::Path; +/// Scan downloaded `episode` entries that might have broken `local_uri`s and set them to `None`. fn download_checker() -> Result<()> { - let episodes = dbqueries::get_downloaded_episodes()?; + let mut episodes = dbqueries::get_downloaded_episodes()?; episodes - .into_par_iter() - .for_each(|mut ep| checker_helper(&mut ep)); + .par_iter_mut() + .filter(|ep| !Path::new(ep.local_uri().unwrap()).exists()) + .for_each(|ep| { + ep.set_local_uri(None); + if let Err(err) = ep.save() { + error!("Error while trying to update episode: {:#?}", ep); + error!("Error: {}", err); + }; + }); Ok(()) } -fn checker_helper(ep: &mut Episode) { - if !Path::new(ep.local_uri().unwrap()).exists() { - ep.set_local_uri(None); - let res = ep.save(); - if let Err(err) = res { - error!("Error while trying to update episode: {:#?}", ep); - error!("Error: {}", err); - }; - } -} - +/// Delete watched `episodes` that have exceded their liftime after played. fn played_cleaner() -> Result<()> { - let episodes = dbqueries::get_played_episodes()?; + let mut episodes = dbqueries::get_played_cleaner_episodes()?; let now_utc = Utc::now().timestamp() as i32; - episodes.into_par_iter().for_each(|mut ep| { - if ep.local_uri().is_some() && ep.played().is_some() { - let played = ep.played().unwrap(); + episodes + .par_iter_mut() + .filter(|ep| ep.local_uri().is_some() && ep.played().is_some()) + .for_each(|ep| { // TODO: expose a config and a user set option. // Chnage the test too when exposed - let limit = played + 172_800; // add 2days in seconds + let limit = ep.played().unwrap() + 172_800; // add 2days in seconds if now_utc > limit { - let e = delete_local_content(&mut ep); - if let Err(err) = e { + if let Err(err) = delete_local_content(ep) { error!("Error while trying to delete file: {:?}", ep.local_uri()); error!("Error: {}", err); } else { - info!("Episode {:?} was deleted succesfully.", ep.title()); + info!("Episode {:?} was deleted succesfully.", ep.local_uri()); }; } - } - }); + }); Ok(()) } /// Check `ep.local_uri` field and delete the file it points to. -pub fn delete_local_content(ep: &mut Episode) -> Result<()> { +fn delete_local_content(ep: &mut EpisodeCleanerQuery) -> Result<()> { if ep.local_uri().is_some() { let uri = ep.local_uri().unwrap().to_owned(); if Path::new(&uri).exists() { @@ -89,8 +87,10 @@ pub fn delete_local_content(ep: &mut Episode) -> Result<()> { /// Runs a cleaner for played Episode's that are pass the lifetime limit and /// scheduled for removal. pub fn checkup() -> Result<()> { + info!("Running database checks."); download_checker()?; played_cleaner()?; + info!("Checks completed."); Ok(()) } @@ -106,7 +106,7 @@ pub fn url_cleaner(s: &str) -> String { } } -/// Helper functions that strips extra spaces and newlines and all the tabs. +/// Helper functions that strips extra spaces and newlines and ignores the tabs. #[allow(match_same_arms)] pub fn replace_extra_spaces(s: &str) -> String { s.trim() @@ -122,14 +122,64 @@ pub fn replace_extra_spaces(s: &str) -> String { .collect::() } +/// Returns the URI of a Podcast Downloads given it's title. +pub fn get_download_folder(pd_title: &str) -> Result { + // It might be better to make it a hash of the title or the podcast rowid + let download_fold = format!("{}/{}", DL_DIR.to_str().unwrap(), pd_title); + + // Create the folder + fs::DirBuilder::new() + .recursive(true) + .create(&download_fold)?; + Ok(download_fold) +} + +/// Removes all the entries associated with the given show from the database, +/// and deletes all of the downloaded content. +// TODO: Write Tests +pub fn delete_show(pd: &Podcast) -> Result<()> { + dbqueries::remove_feed(pd)?; + info!("{} was removed succesfully.", pd.title()); + + let fold = get_download_folder(pd.title())?; + fs::remove_dir_all(&fold)?; + info!("All the content at, {} was removed succesfully", &fold); + Ok(()) +} + +#[cfg(test)] +use Feed; + +#[cfg(test)] +/// Helper function that open a local file, parse the rss::Channel and gives back a Feed object. +/// Alternative Feed constructor to be used for tests. +pub fn get_feed(file_path: &str, id: i32) -> Feed { + use feed::FeedBuilder; + use rss::Channel; + use std::fs; + use std::io::BufReader; + + // open the xml file + let feed = fs::File::open(file_path).unwrap(); + // parse it into a channel + let chan = Channel::read_from(BufReader::new(feed)).unwrap(); + FeedBuilder::default() + .channel(chan) + .source_id(id) + .build() + .unwrap() +} + #[cfg(test)] mod tests { extern crate tempdir; - use super::*; - use database::{connection, truncate_db}; - use models::insertables::NewEpisodeBuilder; use self::tempdir::TempDir; + use super::*; + + use database::truncate_db; + use models::NewEpisodeBuilder; + use std::fs::File; use std::io::Write; @@ -144,14 +194,12 @@ mod tests { writeln!(tmp_file, "Foooo").unwrap(); // Setup episodes - let db = connection(); - let con = db.get().unwrap(); let n1 = NewEpisodeBuilder::default() .title("foo_bar".to_string()) .podcast_id(0) .build() .unwrap() - .into_episode(&con) + .to_episode() .unwrap(); let n2 = NewEpisodeBuilder::default() @@ -159,17 +207,14 @@ mod tests { .podcast_id(1) .build() .unwrap() - .into_episode(&con) + .to_episode() .unwrap(); - let mut ep1 = - dbqueries::get_episode_from_new_episode(&con, n1.title(), n1.podcast_id()).unwrap(); - let mut ep2 = - dbqueries::get_episode_from_new_episode(&con, n2.title(), n2.podcast_id()).unwrap(); + let mut ep1 = dbqueries::get_episode_from_pk(n1.title(), n1.podcast_id()).unwrap(); + let mut ep2 = dbqueries::get_episode_from_pk(n2.title(), n2.podcast_id()).unwrap(); ep1.set_local_uri(Some(valid_path.to_str().unwrap())); ep2.set_local_uri(Some(bad_path.to_str().unwrap())); - drop(con); ep1.save().unwrap(); ep2.save().unwrap(); @@ -178,35 +223,28 @@ mod tests { #[test] fn test_download_checker() { - let _tmp_dir = helper_db(); + let tmp_dir = helper_db(); download_checker().unwrap(); let episodes = dbqueries::get_downloaded_episodes().unwrap(); + let valid_path = tmp_dir.path().join("virtual_dl.mp3"); assert_eq!(episodes.len(), 1); - assert_eq!("foo_bar", episodes.first().unwrap().title()); - } + assert_eq!( + Some(valid_path.to_str().unwrap()), + episodes.first().unwrap().local_uri() + ); - #[test] - fn test_checker_helper() { let _tmp_dir = helper_db(); - let mut episode = { - let db = connection(); - let con = db.get().unwrap(); - dbqueries::get_episode_from_new_episode(&con, "bar_baz", 1).unwrap() - }; - - checker_helper(&mut episode); + download_checker().unwrap(); + let episode = dbqueries::get_episode_from_pk("bar_baz", 1).unwrap(); assert!(episode.local_uri().is_none()); } #[test] fn test_download_cleaner() { let _tmp_dir = helper_db(); - let mut episode = { - let db = connection(); - let con = db.get().unwrap(); - dbqueries::get_episode_from_new_episode(&con, "foo_bar", 0).unwrap() - }; + let mut episode: EpisodeCleanerQuery = + dbqueries::get_episode_from_pk("foo_bar", 0).unwrap().into(); let valid_path = episode.local_uri().unwrap().to_owned(); delete_local_content(&mut episode).unwrap(); @@ -216,11 +254,7 @@ mod tests { #[test] fn test_played_cleaner_expired() { let _tmp_dir = helper_db(); - let mut episode = { - let db = connection(); - let con = db.get().unwrap(); - dbqueries::get_episode_from_new_episode(&con, "foo_bar", 0).unwrap() - }; + let mut episode = dbqueries::get_episode_from_pk("foo_bar", 0).unwrap(); let now_utc = Utc::now().timestamp() as i32; // let limit = now_utc - 172_800; let epoch = now_utc - 200_000; @@ -236,11 +270,7 @@ mod tests { #[test] fn test_played_cleaner_none() { let _tmp_dir = helper_db(); - let mut episode = { - let db = connection(); - let con = db.get().unwrap(); - dbqueries::get_episode_from_new_episode(&con, "foo_bar", 0).unwrap() - }; + let mut episode = dbqueries::get_episode_from_pk("foo_bar", 0).unwrap(); let now_utc = Utc::now().timestamp() as i32; // limit = 172_800; let epoch = now_utc - 20_000; @@ -280,4 +310,11 @@ mod tests { assert_eq!(replace_extra_spaces(&bad_txt), valid_txt); } + + #[test] + fn test_get_dl_folder() { + let foo_ = format!("{}/{}", DL_DIR.to_str().unwrap(), "foo"); + assert_eq!(get_download_folder("foo").unwrap(), foo_); + let _ = fs::remove_dir_all(foo_); + } } diff --git a/hammond-data/tests/feeds/2018-01-20-GreaterThanCode.xml b/hammond-data/tests/feeds/2018-01-20-GreaterThanCode.xml new file mode 100644 index 0000000..687c270 --- /dev/null +++ b/hammond-data/tests/feeds/2018-01-20-GreaterThanCode.xml @@ -0,0 +1,15209 @@ + + + + + + Greater Than Code + + https://www.greaterthancode.com/ + A podcast about humans and technology. Panelists: Coraline Ada Ehmke, David Brady, Jessica Kerr, Jay Bobo, Astrid Countee and Sam Livingston-Gray. Brought to you by @therubyrep. + Wed, 17 Jan 2018 19:21:11 +0000 + en-US + © 2016 Greater Than Code + Because #PeopleMatter + Greater Than Code + Greater Than Code + mandy@greaterthancode.com + A podcast about humans and technology. Panelists: Coraline Ada Ehmke, David Brady, Jessica Kerr, Jay Bobo, Astrid Countee and Sam Livingston-Gray. Brought to you by @therubyrep. + A podcast about humans and technology. Panelists: Coraline Ada Ehmke, David Brady, Jessica Kerr, Jay Bobo, Astrid Countee and Sam Livingston-Gray. Brought to you by @therubyrep. + + Mandy Moore + mandy@greaterthancode.com + + clean + No + + + + http://www.greaterthancode.com/wp-content/uploads/2016/10/code1400-4.jpg + Greater Than Code + https://www.greaterthancode.com/ + + + + + + + + + https://wordpress.org/?v=4.9.2 + + 063: The Distribution of Brilliance and Opportunity with Rehema Wachira + https://www.greaterthancode.com/podcast/063-the-distribution-of-brilliance-and-opportunity-with-rehema-wachira/ + Wed, 17 Jan 2018 05:00:46 +0000 + Mandy Moore + http://www.greaterthancode.com/?post_type=podcast&p=1111 + + + Panelists:

+

Astrid Countee | Rein Henrichs | Jessica Kerr |
+
Sam Livingston-Gray | Janelle Klein

+

Guest Starring:

+

Rehema Wachira: @remy_stack | Andela

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

01:22 – Rehema’s Superpower: Empathy

+

02:53 – Rehema’s “Untypical” Origin Story

+

07:20 – Enjoying Coding Because of the Complexity Behind It

+

11:21 – Creating a “Culture of Saving”

+

14:52 – “Diversity of Thought” and Seeing the World Through Others’ Eyes

+

22:20 – Being Creators and Makers

+

Indie Hackers

+

30:28 – How Technology Empowers People

+

38:27 – The Distribution of Brilliance and Opportunity

+

47:01 – Freedom of Creative Expression

+

Reflections:

+

Astrid: Having to unlearn the need of being perfect.

+

Jessica: We want to speak to more guests on a global level! Please reach out!

+

Sam: Fixed vs growth mindset.

+

Rein: Diversity is not just good for ethical reasons, it also makes your organization more competent.

+

Janelle: Celebrating beautiful.

+

Rehema: A fundamental right to freedom.

+

Transcript:

+

ASTRID:  Hello everybody and welcome to Episode 63 of Greater Than Code. I’m Astrid Countee and I’m here with my friend, Rein Henrichs.

+

REIN:  Good morning, or whatever time it is when you’re listening to this. I am here with my friend, the colorfully-haired Jessica Kerr.

+

JESSICA:  Good morning! And I am thrilled to be here today with Sam Livingston-Gray!

+

SAM:  Woohoo! And I’m happy to introduce the prodigal Janelle Klein.

+

JANELLE:  And we’re here today with Rehema Wachira. And she doesn’t fit the typical profile of a software developer. She is a self-taught coder from Nairobi, Kenya whose passionate about making a positive impact on people’s lives through technology. She’s a graduate of the University of Virginia. And she first started her career working in advertising. And then after learning about product development, becoming intrigued with the complexities of coding, she began teaching herself the basics of Python. So, with only two months of coding experience under her belt, she applied and was accepted to Andela’s development program where she now creates code that’s used by companies every day. Welcome.

+

REHEMA:  Thank you. Thank you so much. I’m really happy to be here.

+

JANELLE:  We’re excited to have you here, too. So, the way we usually start this is by asking a question about your superhero powers. So, what would you say your superpower is and how did you acquire it?

+

REHEMA:  Hey, that’s an interesting question. I think for me, it would have to be empathy. I think. My mom used to work for nonprofits for most of her career. The majority of her career, actually. And she has a big heart. She cares a lot. And I think she would bring that home and that’s something that I would witness and sort of absorb as well. And it was really important and it made me good at my job when I was working at nonprofits and when I worked in advertising and communications.

+

I wasn’t so sure how it would apply to being a developer but I actually more and more am realizing just how important it is to have that empathy to see people not just the way you see them but to be able to see people the way they see themselves. And to be able to understand things from their perspective, really putting yourself in their shoes. It’s important just for everyday life but also when we’re building things. To me, code is a tool but it’s also always an expression of who you are and the way that you think in the way that you write the code. And so, being able to put yourself in a potentially user’s perspective I think adds more to the thing that you create at the end of the day. So yeah, I like thinking about empathy not just as a personality trait but as an actually really useful took for navigating the world, especially as it becomes more complex.

+

REIN:  Superheroes also usually have an origin story. Can we talk about origin stories in tech for a minute? I think that you said that you don’t have what you would consider to be a typical origin story for a developer. So, in my mind that’s the, for my generation it was you grew up with an Apple2e in your parents’ basement and you wrote BASIC when you were five or something. What was your origin story like? And how do you think that has given you maybe a different perspective than other people who are in the industry?

+

REHEMA:  Well to begin with, I’ve never had a basement. [Laughs] That’s not something that we have in Kenya.

+

SAM:  Well done.

+

[Laughter]

+

REHEMA:  But yeah. I always thought that I would do something with my life related to helping people and communities. Again, I think stemming from what my mom did. And I was one of those kids for whom school wasn’t that difficult. It was fun. I enjoyed learning things, especially the humanities and languages and all that good stuff. Good at the sciences as well but really terrible at math. And I just didn’t think that I was a logical thinker. This thing that we tell ourselves and we tell kids from a very early age of like, if you’re good with languages and humanities, then that’s how you think and that’s where you should stay. And then if you’re good at maths and science, then you’re logical and that’s a completely different thing. And we sort of put people into these different categories from very early on. So, I always thought I was going the humanities route. And even when I went to college, I studied political and social thought. My major literally was called Thought, something that my parents were not too happy about but they got over it. But essentially that was the way I was thinking about my life and my career, was in terms of how I help people and thinking about systems and the human systems that we build, really. Society, culture, all that good stuff.

+

But it wasn’t until I was working for a company, a telecommunications company in Kenya, the biggest one in East Africa, and they created a mobile money payment solution that is pretty revolutionary (and I can talk more about that because it’s really cool), way before you guys had Apple Pay and all that stuff. We’ve been sending and paying for things using our mobile phones for the last 10 years. So, I was just fascinated by the impact that that had, just seeing what it could do for communities for individuals and for financial inclusion. It just, it blew my mind. And I was like, “Okay. So, if you can create these things, if people can do this, then why can’t I also be one of the people that creates things.” I wanted to be more involved in actually shaping solutions and creating them.

+

So, I was interested in product, actually. I wanted to start building products. And I figure if I know a little bit of code, maybe that can help me be a better product manager. And when I started playing around in Codecademy and all that stuff, I realized, “Hey, wait. I actually really enjoy this. I’m writing stuff and things are happening.” [Chuckles] And that feeling really got me excited. And I just continued with that, trying to figure out how I could get better at it. And a short while later, found Andela and applied to join their program and yeah, and now here I am as a developer. And sometimes when I say even as introduction to other people like, “I’m a software developer,” it still sounds a bit funny to my own ears. But it’s cool. [Laughs]

+

SAM:  You said something interesting just now which was that you thought that learning to code could help you be a better product manager. And it’s funny how many programmers I don’t hear say things like, “You know, I thought that learning more about the humanities would make me a better developer.” And I feel like we do, just societally, we do such a tremendous disservice to kids who are good at math by not making them study more of the humanities. Because there’s so much out there that we could benefit from.

+

REHEMA:  Absolutely. Because at the end of the day, everything that we build is within a particular context, right? Whether business context or social context, we’re putting things out there that other people have to interact with. And if we don’t understand the human systems that affect those, then I think the solutions that we build can never really be true solutions. And it’s so important because I have met people who are so focused on the code and they’re like, “Just give me the specs and I’ll build the thing,” and I’m like, “But there’s a whole world that you have to build for and that your product will live in.” And if we don’t have a sense of what that means and then importance of it, then I think we’re missing out in a big way as developers.

+

JESSICA:  Yeah, and that world is full of human systems which are even more complex. I found it interesting in your bio that you enjoy coding because of the complexity of it?

+

REHEMA:  Yeah. It struck me as a field where when I started to think about a possible career in terms of getting into this and really looking at it for the long haul, it struck me as a space where I would continuously be learning. And that was really important to me as well, because at some point in some of my previous careers I was looking up the ladder and looking up the chain and thinking, “I don’t feel like excited by what’s in the future.” Like if I try and imagine myself five years down the line as a marketing manager or something like that there were parts of it that really excited me, things that got me into the field in the first place, but I wasn’t super excited about it. But when I think about a possible career as a developer, and not just as a developer but what it could mean as a product manager, as a person who creates things, hopefully also as an entrepreneur, the skillset and the fact that it’s a field that’s changing so often is what I find really exciting about it. And the fact that you also have to do a lot of deep work, a lot of deep thinking to really solve problems, the problems in front of you, that kind of complexity also I think is just really fascinating.

+

REIN:  So, when you say complexity, I’d like to maybe explore that for a minute. Because I get the feeling that you may not mean algorithmic complexity or cyclometric, like ‘how many branches there are in you code’ complexity. What do you mean by complexity?

+

REHEMA:  Yeah, so you’re absolutely correct. For me, the complexity is in, I always think about things in terms of what can this help solve in terms of a human need. So for me, complexity is in terms of ‘Are we able to build something? Are we able to build a product or a solution that can address things at various layers or various levels of understanding or reach or depth?’ essentially. So, if we’re looking at creating the mobile money solution for instance, in Kenya, if the problem is we need an easier way for people to be able to send money back and forth to each other because we don’t have the right banking systems that make banking accessible to the vast majority of the population, how do we make that happen?

+

So, one way of thinking about it is, “Oh, let’s just have this service where I can send money to you, you can send money to me. Done.” But what has happened in Kenya is that it’s gone way beyond that. It’s not just about sending money. It’s also about savings. How do you create a savings culture? How can you use technology to remind people or to prompt people to start planning their finances and thinking through long-term how they’re using their money and where it’s going and how they can better track and monitor it? How are they able to seize opportunities to get loans for small businesses and enterprises? And are we linking that back to financial education?

+

So, that’s why I mean by complexities. It’s more in terms of the human complexities that we live in and how we can use tech to address all of those different things. I think as I continue in my learning and in my career and as I continue to get deeper into trying to solve for those different problems, things like algorithms and things like how to optimize different kinds of systems, the nitty-gritty, I think that’ll start to become of more interest to me once I can relate it back to a bigger picture. Does that make sense?

+

REIN:  So, the complexity for you comes from the computers, that system interacting with other systems, usually humans, right?

+

REHEMA:  Exactly, exactly. Humans and the infrastructures that we create. So again, in the same thread of the financial systems, how do we integrate that back with banks and make sure that they are actually serving people in a way that’s meaningful to people but also useful for them as a business, right? So yeah, for me that’s the area of interest.

+

REIN:  Software would be a lot easier if we didn’t have requirements.

+

REHEMA:  [Laughs]

+

SAM:  Or people.

+

REIN:  Or people.

+

REHEMA:  Or people. [Laughs] It would also be a lot less fun. [Chuckles]

+

SAM:  This is true. So, you talked about creating a savings culture and I find that really interesting that you’re talking about using technology to affect the larger culture in that way. Is that something that you think is just something that you’re personally interested in? Or is that a major value of the culture that you’re in?

+

REHEMA:  Yeah, I think a culture of saving is important, and especially so in a country where traditionally banking has not been accessible to the majority of people. So, companies that are in this space and that are trying to create and promote a culture of savings obviously have their own personal interest, which is the more money you put with them, the more money that they make. But I think it also goes much deeper and much larger than that because it does affect people’s ability to pull themselves out of poverty, right? So, in Kenya right now there’s big talk about a growing middle income. And you can definitely see it. Kenya’s a country that’s going through a lot of changes and we’re the biggest economic powerhouse of East Africa. So, there’s a lot of activity happening here. But how do you make sure that that’s a tide that’s raising all boats? So, the way that people have access to and are able to understand and interact with their money is super important, super big part pf that.

+

ASTRID:  So Rehema, it almost sounds like your major that you talked about, that social and political thought, is actually…

+

REHEMA:  Yeah.

+

ASTRID:  The beginning of where you start thinking about these problems as opposed to the side-effect that you hope will happen in the end. And because of that, it looks like what you’re doing, well not just you obviously but other people who you’re working with, is that you’re creating a physical infrastructure by using technology instead of maybe augmenting or changing or even just adding to some other infrastructure that already exists. And that changes the way you ask questions. Do you think that some of what you’re doing can be translated to other systems that are not already set up to think about that stuff first? And how would you suggest somebody start changing the way that they solve these problems?

+

REHEMA:  That’s huge, right? So recently, I learned about civic tech as an area that I guess a lot of people and interestingly enough a lot of cities are getting into, at least in the west. So, I met somebody who worked for New York’s, I can’t remember if it was part of… I think it was part of the city’s push to start using data science more effectively, essentially. And they were creating or they were using different maps and applying different algorithms to them to try and figure out as the city grows and as different types of infrastructures pop up in different parts of the city, how do you optimize for the populations that are there? So, if you notice that a whole bunch of high-rises are coming up in one part of the city, then you can figure out if you need more buses. Or do you need to add more libraries or more public amenities? Things like that. So, a very smart way, literally smart as in, you know what I mean [Laughs]. Like a smart city, essentially.

+

But thinking about how you build right from the get go instead of using information that may be outdated or anything like that, you essentially have this data constantly at your fingertips. And so, city planners are able to tap into that and look at all this information and be able to make smart goals and smart planning based off of data, which I thought was really interesting. So, there’s lots of different ways in which this is happening all over the world. And even in Kenya, open information type of movements and all of that where we’re keeping better track of what government is doing and what the public sector is doing to empower people.

+

REIN:  Can I just mention that the phrase ‘diversity of thought’ has been sort of perverted to mean being able to be a bigot without consequence. But in my mind, this is what ‘diversity of thought’ really means. When someone like you approaches a problem, you may look at it from a way that no one else on your team looks at it. And that gives the whole team a better understanding of the problem.

+

REHEMA: Yeah. I think that’s the biggest argument for diversity, because at the end of the day, like I said earlier, what we build is an expression of ourselves. So, if I’m building and I’m thinking about the end user, then essentially I’m just thinking about myself, right? Because that’s the frame of mind in which I understand and interact with the world and that’s what I know best. So, it’s so important to have people from all different walks of life, different experiences. I think the challenge that a lot of companies have is, because this goes right through to hiring, to how the company talks about itself, to the type of people that it attracts. So, its’ one thing to talk the talk and say, “Yes, diversity is important for us,” and I think quite challenging for a lot of companies to actually figure out how to put that into practice. And making sure that as you’re sitting there in an interview with somebody across the table that you can somehow control for people’s biases, right? Because people have them and it’s like, how do you navigate past that? That’s a tricky one.

+

SAM:  Yeah. It’s very easy as a company to say “We value diversity,” but it’s a bigger commitment to actually value it with dollars or local currency of choice, right?

+

REIN:  [Laughs]

+

REHEMA:  Yeah.

+

REIN:  The other problem is hiring for diversity and then making everyone think the same way.

+

SAM:  Right.

+

REHEMA:  Yeah. I think that that’s also really fascinating, because you… I see this a lot in adverts or company profiles, especially in Silicon Valley where the descriptions all kind of tend to sound the same. “We’re super fun. We hang out all the time. We have lots of games and we all drink.” It always… they say they’re hiring for different people but you’re right. The culture always seems to be the same in every environment. So, the question is how do you create a world where within the company, a world where everybody can have their voice and be comfortable.

+

Something that I’ve been thinking about a lot that we discuss quite a bit here at Andela is extrovert versus introverts, and how the world is primed and built for extroverts. But how do we make sure that those of us whose energy comes from different places are also served just as well and feel comfortable in that environment?

+

JANELLE:  I’ve just been kicking back listening to you and taking all these notes. And there’s this theme that I hear emerging in the references you’re making of continuously taking the problem that you’re looking at and then zooming out and zooming out and zooming out and relating it to that bigger picture. And that bigger picture always comes back to culture. And when you started and talked about your superpower with empathy and you mentioned your mom, I have that in the back of my head. And then I’m thinking about where we went with this discussion to the meaning of diversity and diversity of thought specifically. And what I’ve come to really appreciate in different people is to learn how to see through their eyes and to listen to them and see ‘How is it that you see the world?’. And when you learn how to look at the world through another person’s eyes, that’s where you really get that diversity of thought coming together in synergy.

+

And so, the question on my mind that I wanted to ask you is you’ve got this rich culture that comes from your mom and from Kenya and this savings culture and everything that means. And that’s given you a current set of eyes. And so, when you look at the human system around you, what I’d like to ask you is just what are the major patterns that pop out to you? What do you see?

+

REHEMA:  Would this be specific to Kenya or just in general?

+

JANELLE:  I think contrasting those things. If you think about that upbringing and you look at the things around you, I’m guessing what you see is a lot of dissonance with that culture. Like savings culture and what that means. Here we promote the complete opposite. It’s a spending culture, right? And that contrast alone is very distinctive. And it’s also in that meaning of diversity, right? It all comes together in that human system. And I bet given the things you’ve bene talking about, you see a lot of contrast in that. But it is contrast at the same time, like the smart city movement is very much happening. It’s very much alive here, right? But there’s a lot of contrast to that, too, of people stuck in the weeds in their thinking where you’re like, “Bigger picture. Bigger picture. Bigger picture.” Like an echo.

+

REHEMA:  Yeah. So, when I’ve been fortunate enough to travel, I spent a bit of time in the US. And when I contrast these different places that I’ve been in and the different spaces I move through, I think one thing that always strikes me is how to some extent, people are fundamentally looking for the same things. It’s just how they go about actually getting them that tends to be very different, or even how they will talk about how they go about getting them. So, I don’t know. The interesting thing about comparing people in Nairobi specifically to people in for example New York City is there’s a very similar drive towards being active and active in terms of hustling. Like, I need to get to this next thing. I need to get this next gig. I need to push and push and push.

+

And I don’t know. It’s interesting how people will describe what they are doing, because here it’s very much like that’s the accepted thing. Whenever people from outside come to visit, they’re always fascinated by the fact that so many developers are doing other things completely unrelated sometimes to actually being developers. You have people who have farms. You have people who are like, raising livestock. You have people who are doing very different things. But here, it’s just part of the culture and the energy of the space. So, it gives the two cities very similar energies in terms of being very almost frenetic and high-speed. But at the end of the day what people are looking for is a sense of independence, a sense of control over their lives and their incomes in many ways. In Nairobi that’s very much geared towards ‘I need to do this because for me, but also because I need to support family’. In places like New York, it’s ‘I need to do this for me because I need to be at a certain level and have a certain level of accomplishment’.

+

So, people are sort of going after the same things in what seems to me to be increasingly similar ways, like the gig economy and all that stuff. But the way that they talk about it here, they’ll always try and frame it in terms of “I’m doing this because people need me to do this.” Or people often are the only breadwinners or have come from outside of Nairobi and therefore this is their one big break and if they don’t make it then the world falls apart. So, that’s been interesting to see. I don’t know if I’m really getting on, I’m really touching on what you’re asking in terms of the human systems. I don’t know. I might need to think about that a little bit more.

+

ASTRID:  It sounds like what you’re saying Rehema is that they’re doing the same sort of things but in the context of the values of wherever they’re from and what’s going to be rewarded. Is that right?

+

REHEMA:  Yeah, yeah. I think so. I think so.

+

ASTRID:  Earlier in the conversation you were talking about how people kind of get tracked into different routes, like you’re good at math and science, you’re more humanistic. And some of the things I’ve been thinking about lately are similar and to like, how do you stop making it about those specific traits and more about how people think? And you had also mentioned how the reason why you wanted to pick up more coding skills is because you wanted to be able to make things. And so, I wanted to ask you what you thought about creating and making as something that is more neutral in terms of you’re not really talking about how you’re doing it. And if people can start to think of themselves as wanting to be creators and if that can help them switch their mindset a little bit and give them more access to maybe something that they weren’t trained to do.

+

REHEMA:  Absolutely. That’s something that’s actually quite close to my heart [Laughs] as an area of discussion. So, like I mentioned, growing up school was fun for me. And I think I’m quite lucky for that, because I know for a number of people, it wasn’t. And I think for me it was fun because again I enjoyed learning. I enjoyed the process and act of learning. I did well in my studies and so I got a lot of positive feedback. “You’re smart. You’re clever. You’re intelligent. Good job.” That all fell apart once I got to college, actually. I started a bit late. I think I joined about a week after everybody else did. And I had put myself in this, I guess it was an accelerated intermediate Spanish class or something like that. I’d only done Spanish for three months before then, but I somehow tested into it. And I was excited. I loved learning languages, which probably also explains why I love being a developer. But I was excited and I joined the class and I realized that it was a week late but I figured, “Oh, I’ll just catch up.” And I never did. It was a four-credit class and I think I got a D by the end of it. So, this is first semester, first year, new country, university and all of that. And I was failing that class that had the most credits.

+

I think that was my first major experience with failure and I completely fell apart. I didn’t know what to do. My whole identity was built around this idea that I am clever, I am an intelligent person. Nothing should be too difficult for me. Failure shouldn’t happen. And I completely fell apart. And it took a while, probably the rest of my college career and a lot of time after that, to realize that essentially what they call the ‘growth mindset’ versus ‘fixed mindset’ of me believing that I was a certain way and it was therefore a fixed amount of intelligence that I had and I had surpassed it when I failed and realized that I had used up my quota of intelligence, so to speak. And that was that. But fortunately, over many sort of almost painful years of trying and failing and trying and failing, I got comfortable with the idea of failure. And reading about growth versus fixed mindsets and seeing people who are a lot more comfortable with experimenting and creating helped me realize that actually, I needed to change the way I think about things.

+

And it’s interesting because to me, being a creator, when you’re in the context of development it’s very specific. Like, yes there was nothing there and I built something and now there’s something there for somebody to interact with. But I think it applies to everything. Like, people who cook, people who make music, people who write, people who do haircuts. The idea of being a creator to me matters or integrates with the idea of a growth mindset because essentially what you’re saying is, “I’m going to take a blank page,” so to speak, “and I’m going to put something on it. And I’m going to see where that leads.” And it doesn’t have to be perfect from the get go. And even if it goes wrong, I can always fix it, change it, scrap it, start again, and create something else. So to me, that mindset of being comfortable, being a tinkerer, being comfortable with just playing almost with things and just to see where they lead, has been really important, like shift in my mindset.

+

When I started writing code, I was terrified of breaking anything. I always thought that to even begin writing the code I needed to know the exact right way to approach a particular problem. And I would spend hours trying to google and research and figure out, ‘What is the right way?’ before I would even begin. And it took me a lot of unlearning to get past that and to be comfortable making mistakes, essentially. Hopefully none that cost my company anything. [Chuckles] But being comfortable with that frame of mind. And I’m applying it to all different areas of my life. Learning how to play the ukulele, for instance. I’ve always loved music, always wanted to learn how to do something and how to play something. But I was always like, “If I’m not going to be perfect, then why begin?” which is a terrible way to go through life because essentially you never do anything. You never challenge yourself. So yeah, I’m all about thinking about myself and having other people think about themselves as creators.

+

REIN:  I think there’s a whole conversation we could have about the value of mistakes, per se. But I just wanted to mention this one neat trick that I learned from Virginia [Set] here, which is that whenever you catch yourself making a statement about who you are that comes from a fixed mindset, like ‘I don’t know how to write JavaScript’ what you do is you tack the word ‘yet’ at the end.

+

REHEMA: Mm.

+

REIN:  You say “I don’t know how to write JavaScript yet.”

+

REHEMA:  Yeah, yeah. I think that’s awesome. Actually, I’m going to start adding that to my mental lingo. [Laughs]

+

ASTRID:  I love that story, Rehema, because I feel like there are so many people who when they hear will be nodding and saying, “Oh my god, that’s me. Oh my god, that’s me.” And we don’t hear enough of it because there tends to be a lot of discussion about how amazing you are and how you got to be so amazing and how your amazing is so special that nobody can be amazing like you.

+

[Chuckles]

+

ASTRID:  And there’s not a lot of discussion about “Yeah, this was hard and I failed. And then I tried and I failed again. And I tried and I failed again.” Even in the “tech failure stories” it’s always like “Yeah, they gave me a hundred million dollars and then that company crashed and burned, but it’s okay because I took a vacation and I thought about things. And then when I came back from climbing that mountain, I realized I could do this other thing.” And that’s really not helpful for most people to try to take that next step forward. So, thank you so much for sharing that.

+

REHEMA:  Yeah, no problem. And one place that I really like to go to read stories about people who are still in the weeds and trying to figure that out, especially entrepreneurs, is Indie Hackers. I don’t know if you guys are familiar with that. They have a really good newsletter where people ask different questions but also a lot of people will just talk about their experiences trying to build something and the mistakes that they made. Which I think yeah, is important to hear that over and over again. And especially back now in my context of being in a developing country. We’re in a position where the majority of our leaders are a generation or two older than the majority of the population that they’re leading.

+

And I think the topic of empowerment is a difficult one. Because on one hand, you have a group of leaders who perhaps see things in a very different way and believe in a sort of “I’m going to tell you what to do so you should do it” type of mentality, the traditional teacher/student type of relationship where you don’t really have an opportunity to ask questions or at least in our context, you’re not really supposed to talk back to a teacher and question them or challenge them. And I see that a lot. We see that when we go and do mentoring or tutoring for kids in different schools. And you ask kids a question and everyone will be scared to respond, not because they don’t know the answer but because they haven’t been in an environment where they’re empowered to speak and to have their voices heard and that their thoughts are valid.

+

So, letting people know that it’s okay to make mistakes and it’s okay to try and to create and you have some agency in your world I think is such an important mindset to have, not just for us as we build things in our day-to-day lives, but in an entire population actually, of people who will become the next business owners and public leaders and all of that.

+

JANELLE: So, there’s no real right answer to this question. What I asked you was essentially ‘What do you see?’ because we were talking about this diversity of thought and perspective. And I wanted to be able to just see the things that stand out to you as a starting point. So, we got Nairobi versus New York City. Two cities, both very high-speed. And you’ve got this similar active drive and hustle, the similar culture in terms of push, push, push toward the next thing. And what you described as the importance of this is the sense of independence and control over your life, of your income, being able to choose your next goal, where you invest your energy, whether it be your money or your time. And at the core of this seems to be the essence of what it means to be a free human being. [Chuckles] And there’s constraints in terms of things that we shackle ourselves down with in terms of culture and shapes.

+

And we talked a little bit about identity and how we look at ourselves. And then you mentioned earlier about how technology has this role in shaping culture, in shaping that human system. And so, you’ve connected these things together. So, you’re always going big picture, big picture, big picture, right? And so, I’m wondering then, if these are the patterns you see at a societal level, how do you think technology has helped to shape those two systems similarly and differently?

+

REHEMA:  I think one thing that always stands out to me about a difference between the two societies that I’ve moved through, Kenya and the US, one of the things that always strikes me about the US and I think for any foreigner who visits especially if you’re coming from a developed country, is you can see the history of the place. America’s very good at, and has been very good at, telling a very unified story to the outside world, to the international community, about its origin story, going back to superheroes. Its origin story, its ethics, values, the people who made it great, the things that they’ve built. And you’ll see monuments to that and you’ll see all of this massive effort to preserve a particular narrative in the history, right? I know the US last year was having some trouble with that. [Chuckles] But from the outside it’s always seemed very unified. One thing that I struggle with as an African is where to find that at home in terms of where the monuments to the people who’ve made our countries and our continent great, where the monuments to the things that we have built that have stood the test of time.

+

So, one thing that Andela’s director, country director of Nigeria, our Nigeria campus, his name is Seni Sulyman, he loves to say “Africa may have missed the industrial revolution but we’re not going to miss the technology one.” And I think that’s the thought that I think is really important for a particular generation of Africans in terms of “How do we build things that will last?” And how do we build things that can become part of that conversation and part of the monuments to what makes this continent important and incredible and amazing? And they don’t have to match what has made the west and what has made America important and amazing. We’re trying to create our own narrative and our own story.

+

So, in terms of how technology can bring that about for us, because technology is in many ways such a huge force for democratization (if I’m saying that correctly), it’s an opportunity to really build something that could change the narrative around the entire continent, if that makes sense. So, I guess in some way, it very much ties into why I wanted to be part of Andela and what Andela is all about. It’s essentially founded on the belief that brilliance is evenly distributed but opportunity isn’t. So, how do we create that opportunity? How do we make it accessible? So, we’re about creating an entire network of technologists that will be not only the leaders for Africa but for the world as a whole, to be global technology leaders and creating solutions in a world and a space that is really moving forward in a more inclusive and supportive way.

+

So, that’s an area where I’ve seen so far has been a huge difference between the African context and for example the North American one, where there’s a history there and a narrative that continues to empower young people in the US telling them that if you’re going to build something, it’ll impact the world. And that’s very true in Silicon Valley, I think. That’s the narrative in Silicon Valley. But in the US as a whole, you build products for the United States but they impact the world. That’s something that I think we feel very strongly about here now in the African continent, that it’s now our turn to do that. And we’re empowering people to do that. We’re building solutions that may begin locally but will impact the world, essentially. Does that connect? [Laughs]

+

JANELLE:  Yeah, I thought that was great. There are so many great things in that of what I ultimately heard you coming to with technology empowers people.

+

REHEMA:  Yeah.

+

JANELLE:  And lets us have an impact, lets us not be invisible. And our narrative that we push forward as ourselves, this is the foundation of our identity. This is our story. And if you think about who I am, what it comes back to is, what is my story? What is the narrative I’m telling? And whether we’re telling that narrative as an individual, as a team, as a company, as a nation, there’s this echo of the same kind of human system that we’re talking about at all these different levels of abstraction, that bigger picture, bigger picture, bigger picture. That echo. And so, that’s kind of what I hear from you when you jump to these different tangents, is there’s essentially isomorphisms between these different contexts that are associated with identity.

+

REHEMA:  Very much so, with identity and the story we tell ourselves about what is possible. Because if our identity is built around the idea that we missed out in this revolution, we missed out on that revolution, we don’t hear or see or tell stories about the things that have made us as the African people uniquely powerful and uniquely fantastic. If we don’t hear enough of those stories, then our idea of what’s possible, what’s in the realm of possibility is therefore very small in comparison to the kinds of stories that in the US, that you are told and that you hear about yourselves as a people.

+

So for me, yeah exactly what you’re saying, identity is so important. Because if we continue to push the ideas of what is possible, if we change what the stereotypical developer is supposed to look like and I present myself as a developer and I’m saying “I’m from Kenya, born and bred. I’m female. I changed careers. I’d done all of these different things,” and there’s so many stories here of people who come from such different backgrounds who are creating and building such incredible things, I think that narrative is so important. And that’s why Andela is more than just a company. It’s really a movement, because we’re tapping into that and saying “This is possible. We are here. We are working out of our native countries. I don’t have to leave my home in order to have global impact.” And that’s so important to me.

+

JANELLE:  That’s beautiful. Because it basically echoes as a statement of identity “We’re just going to be superheroes. We’re going to choose to be superheroes and let technology empower us to make the world a better place.” That’s the identity statement.

+

REHEMA:  Yeah, exactly. [Chuckles]

+

JESSICA:  This goes back to something we wanted to talk to you about, which was you told us that sometimes you feel insecure about not having the traditional developer story?

+

REHEMA:  Yes, yeah.

+

JESSICA:  I love that ‘brilliance is evenly distributed but opportunity isn’t’ in relation to that. Because maybe it’s like we think of developers as having learned to program as children and been doing this their whole lives and they had computers as kids and this is how the grew up, and that’s the traditional getting into programming story. But maybe that’s not where brilliance is distributed. It’s where opportunity is distributed.

+

REHEMA:  Precisely. Exactly. [Laughs] You’d be surprised the number of people who started learning how to code on phones here. They saw games or whatnot and they were just like, “Hey, let me just try and figure out how to make a game.” The number of my colleagues who first interacted with computers when they were in high school or once they were in college didn’t even have laptops of their own, borrowed from friends, because they were just, they saw something. They saw somebody write something or they saw a game or they saw a website and they were like, “Hey, I’m really curious about that. Let me figure out how to do this thing.” And now they’re here working for companies like Viacom. They’re working for companies like Facebook. And it’s amazing, right? And I think that every single day that I come to work and I’m working with people and I’m interacting with them, that always come to mind as why it’s so important that we do provide and we do give people access to different kinds of opportunities. Because it’s not always going to come from the most traditional or the most obvious of places. And there’s the whole narrative, I think especially in startups about yeah, they went to university and then they dropped out. And here it’s like, “Well, some people didn’t even have that opportunity to get to university.” but here they are still creating incredible things.

+

REIN:  When you think about the global tech community culture, it is extremely anglocentric. And one of the outcomes of that is that work done by people that aren’t in the USA, Europe, especially people in the global south, is erased. We don’t know that it exists unless you go look for it. And even if you do, it can be hard to find. So, I wonder how many of our listeners knew that there was a system for mobile payments in Africa before Apple Pay was a thing. I wonder how many of our listeners knew that Chile in the early 70s had a cybernetic software-based system that managed their global economy that is the basis for a lot of work in cybernetics. It’s led to things like [Kybernetes] today. We don’t know that. If you go search…

+

JESSICA:  Wow.

+

REIN:   For that project, it’s called Project Cybersyn. If you search for it on Amazon, there are zero results and Amazon things you misspelled something else.

+

[Chuckles]

+

REIN:  So, this work around the world that’s getting done in various countries that don’t speak English, that aren’t primarily white, is erased. It’s hard to find. And That’s a tragedy as far as I’m concerned. And I’m wondering what we can do about that.

+

REHEMA:  Very true. I mean, even when you think about it essentially, to be able to code means to have to learn English. [Chuckles] Essentially.

+

SAM:  At least the 50 or so keywords that are used in most programming languages, right?

+

REHEMA:  [Laughs] Exactly. But even…

+

JESSICA:  But the documentation.

+

REHEMA:  Just to read documentation. Exactly, yeah. I was working with a developer from Albania and he was saying to me how when he started off it would take him an incredible amount of time because he had to, when he was looking something up [Chuckles] for every other word that he read, he would have to google that word. So forget just trying to understand documentation, which can be difficult enough in and of itself. He had to understand the language as well. And I never really thought about that because Kenya is predominantly, English is one of our national languages. So, it’s not something that I’d had to think about. And even then, you’d assume that because I’m coming from a country where we do speak a lot of other languages, that that’s something that I would be sensitive to. But it wasn’t until I met someone who was from somewhere where English isn’t even on the menu, he was like, “Yeah, that was actually a really big challenge.” But he’s grateful fro now the ability to learn the language because it’s helping him in other ways in terms of his education and his business opportunities and all fo that. But again…

+

SAM:  Thanks, colonialism.

+

REHEMA:  [Laughs] Exactly. Very anglocentric world that we’re living in. Yeah, I don’t know how we go about fixing that. I think part of it is telling these stories of people from different places and having their voices heard. The fact that you guys agreed to have me on here, I think that’s incredible because otherwise there isn’t much of an avenue for people from different parts of the world to tell their stories and have them heard on the global platforms. That’s quite tricky. But I do think that the tech world does it better than most though, even having said all of that. Because I think there is, okay with some caveats, I think if you’re working on things that are already deemed interesting by the Silicon Valley set, then yes, you’ll be able to maybe have your voice heard. If you’re working in spaces that are not directly related to the next Uber or the next e-commerce app, if you’re working on things that are more local to your context or even more focused on civic tech, then I think there is still more of a challenge there and we still need to highlight those projects because they’re just as important.

+

JESSICA:  Yeah. And that gets back to the empathy of, can you appreciate a solution to a problem that you don’t have?

+

REHEMA:  Right. [Laughs] Absolutely, yeah. I think that’s the biggest thing. I’m not entirely sure how that’s something that we can solve until we really appreciate what we were saying earlier about the importance of diversity and the importance of different people’s perspectives. Because at the end of the day, it might not be a problem that you have directly, but I think we should be able to appreciate and try to understand the difficulty that somebody else is having and how that solution then solves that. But yeah, that’s a tricky one. Because I think it means not just being able to imagine having a problem but to imagine how that problem then affects so many other aspects of somebody’s life, right?

+

So, I read about, sorry I watched a documentary actually about a coding competition for young girls in different parts of the world. And I think there was a group of girls from an Eastern European country. I don’t remember which one, but if I find it I’ll share it with you guys. And they had a problem where in their town, clean drinking water is very difficult to find. So, what these girls did is they built an app that basically pointed people to all of the wells in the surrounding neighborhoods and would have indicators for the level of cleanliness of the water or like at different times of the day or at different times of the month. I can’t remember. But essentially, a way for people to easily check and see which wells were most appropriate to go get clean drinking water. So, that’s a solution that’s very much tied into that particular area. But you’d also have to understand why, for you to understand how important their solution is, you’d have to understand how lack of access to sanitary drinking water can affect so many other aspects of their lives.

+

So, it’s not just about understanding a specific problem but understanding a whole context in which somebody lives. And that takes a lot of mental effort. [Chuckles] And I guess some people would find that to be too much work. But I think hopefully if we continue to tell the stories in a positive and inspiring way, more people would be interested, hopefully. And want to take part in those discussions. Because eventually, there will be some application or some learnings that they can take and bring back to their own context.

+

SAM:  I’m really encouraged by that particular example just because it tells me that the tools of programming and creation are accessible enough that they can be picked up and used by people who have such different contexts than somebody in my position does.

+

REHEMA:  Yeah. Technology as a tool is incredible, I really think. And so is the internet, which allows us to go and find out all of these things. But not everyone has access to [Laughs] internet easily. Which is again, another challenge. So, seeing stories like that and hearing about people who’ve been able to create solutions in that way is really inspiring but it’s also I feel like another reminder of just how important it is to make sure that these tools are actually more greatly accessible.

+

SAM:  Oh yeah. I didn’t mean to imply that we don’t have a lot further to go. But yeah, definitely.

+

REHEMA:  Yeah.

+

REIN:  We were talking earlier about access to opportunities being unequally distributed. I think in my mind there’s another thing that’s very important that’s also unequally distributed, which is freedom of creative expression. The ability to…

+

JESSICA:  Is that the ability to make mistakes?

+

REIN:  It’s the ability to create on your own terms without being dictated by other people.

+

REHEMA:  Can you give us an example?

+

REIN:  Yeah, so… and I wouldn’t be doing my job if I didn’t name-drop a philosopher on one of these shows.

+

[Laughter]

+

SAM:  Bring it.

+

REIN:  John Locke, the inventor of classical liberalism, said that the basic human rights were life, liberty, and ownership of property. Wilhelm von Humboldt a hundred years later said that the basic human rights were freedom of inquiry and freedom of creative expression. And the example he gave is that if a craftsperson makes a piece of art of a sculpture or something like that on their own terms, we generally respect their creative expression. If they were told to make a thing by someone else, if they made it for their boss, we can appreciate the thing they made but not respect the way it was made. So, access to freedom of creative expression is necessary for art and I think it’s necessary for a lot of human growth.

+

JANELLE:  I think this was the same thing I was seeing before in the contrast that I brought up freedom. And then Jessica made this funny face like, “What?”

+

[Chuckles]

+

JANELLE:  And I was sitting there thinking about well, how does this fit in? But it’s this theme that I see repeating with this idea of basic human rights and being able to see all this potential of what could be. And then being able to have the freedom to reach for your dreams and to express creatively. And in order to do that, to not have shackles that hold us from those things, we have to have knowledge distributed. We have to have the opportunity to be able to experience these things, to have the basis of knowledge so that we can participate in that. And once we’re empowered by technology which is awesome because it’s just, we’re empowered by the ability, the things that we learn, by things that are in our mind. They’re not things that we acquire. They’re not materialistic things. It’s the ability to create with our mind, the ability to do free, creative expression. Think about what you can do with software. It’s amazing. It’s like magic. We can create anything we can dream, right?

+

And so, if you think about the freedom of creative expression as something that’s core and fundamental to be what it means to be human, and you bring back this contrast in culture of movement, movement, movement. We’re always pushing forward toward the next thing. And then when you look at that system and how technology influences the culture, then you’re like, well what if this was the thing that we all looked at? What if we saw our potential? What if we imagine that we could build anything that we can imagine and we started working together to make that happen? What if we looked at the human system and started with smart cities you brought up? So, that’s sort of the similar theme i’m hearing, is there’s all this potential that we’re wasting because of our culture, essentially. Like barriers in our culture. And what if things like, we could tell our stories and identities and we could accept people for who they were and the way that they saw the world and their unique perspectives that they brought to the table? And you described those things at a team level, an individual level, and then at a national level too, which I thought was really interesting.

+

REHEMA:  Yeah. Because I think the world that you’re describing would be utopia, right? And I think that we can get closer to it, inching closer to it, in different ways and with different aspects. But you’re right. I think that’s such a profound way of looking at the whole idea of human potential, and through human potential achieving an incredible almost nationwide or continent-wide potential. I think for the context of the African continent, access to that kind of freedom is something that we have been sorely lacking. And what you’re seeing now is this huge resurgence in music and fashion and food and all of these different things that help to cement and celebrate different aspects of different cultures within these different countries. And it’s so fascinating to see that grow, because I think the more that we celebrate in the things that we are able to do, the more people’s minds open up. And the more they’re able to start thinking beyond what we currently have and think about the opportunities of the future and how they can make the best use of that.

+

What’s been really fun for me personally is, so currently Andela is based out of three countries in Africa. We’re in Lagos, Nigeria, Nairobi, Kenya (where I’m based), and Kampala, Uganda. So, we have a lot of exchanges where we’ll meet and hang out with folks from the Lagos office or from the Uganda office and it’s just so fascinating to see and to experience and enjoy everybody’s differences and the cultures. Because they’re all very different. And we all get to interact and share so much. And I think that really adds to and builds to everybody’s sense of what we’re doing and what we’re building might look slightly different in each country but it’s all moving towards the same ideas and goals of opportunity and what can we do and what can we make of this opportunities that we have? What can we build for each other? What can we share with each other to help continue to grow and cement this movement? And I think that’s such a cool, cool way of thinking about it, what freedom can do for lighting a fire essentially, towards achieving such incredible things. That’s so exciting. I hadn’t really thought about it in that way. But that’s really cool.

+

JESSICA:  Speaking of really cool, it’s now time for reflections. Who wants to go first?

+

ASTRID:  I can go. What I wanted to bring up was what you had said Rehema about you having to unlearn this need to wanting to be perfect or wanting to have the right solution first. Because I think it’s something that happens a lot. I know for me it’s something that still happens to me a lot except it’s more under the radar whereas before it was top of mind. But now it’s, “Why haven’t I done this yet? Oh, because I think I have to make it perfect.” Or I want it to be this way, instead of just starting. And I feel that it’s applicable to actually writing code. But I think it’s also applicable in other aspects of your life where it’s very uncomfortable to be uncomfortable so much and I think it makes you want to retreat back to what you know so that you can at least feel some sense of safety again. And you have to push yourself to take baby steps so that you’re not still in the same place month after month, year after year. So, I thought that was a really great thing to remind everybody about.

+

JESSICA: One thing that stood out to me was that Rehema, you said that people outside of the US don’t often get an opportunity like this podcast to speak to people globally. And I’m like, “Whoa, our podcast is global?”

+

[Laughter]

+

JESSICA:  But, but, but I think you have a great point there and we should seek out guests from all around the world and do this disparate timezone thing some more.

+

REHEMA:  Absolutely. There are so many stories out there that are just waiting for a mic. [Chuckles] It would be incredible just to hear from these different people, to hear so many different perspectives. Because it makes our worlds all that much richer for it. But also because there could be real sparks of inspiration from people’s stories and the things that they work with and the things that they’ve created. If you guys could create that kind of a platform, I think that would be incredible because I also think it would be very, very unique.

+

JESSICA:  Greater Than Code: The World Tour.

+

[Laughter]

+

REHEMA:  Do it. [Laughs]

+

ASTRID:  I like the sound of that, I really do.

+

SAM:  One thing that really stood out for me was Rehema, your story about failing in your first semester of Spanish and you were talking about the fixed versus growth mindset. And that really resonated for me because a lot of the frustration that I feel in life really does come from that place of feeling like I should be good at something from the get go. So, it was a really useful reminder to me and hopefully to our listeners as well that I need to be more gentle with myself, that I need to accept mistakes as being part of the learning process, and how you get good at something is by [chuckles] being bad at something first. And Rein, I’m going to take your reminder to heart to add the word ‘yet’ at the end of my sentences now. So, thank you all.

+

REIN:  I’m glad that we as a podcast are thinking about how we can add more diverse voices. I think we do better than most people or most podcasts in the game right now because our focus is on people and because we care about getting diverse viewpoints. But we’re still reaching into a really small pool. And there’s so much more that we could be doing.

+

And my other reflection would be that diversity is not just good for ethical reasons. It’s also a way to make your organization more competent. Because you need at least as much variety to solve problems as the variety of problems you have.

+

REHEMA:  Absolutely.

+

REIN:  And the way that you get that variety as an organization is through diversity of experiences, of viewpoints, of all sort.

+

SAM:  And you have more problems than you think you do.

+

[Chuckles]

+

REIN:  And so, if you want as an organization to solve harder problems, to become more competent, that’s where you should be looking.

+

REHEMA:  Absolutely.

+

JANELLE:  So, the thing that really struck me that I still got on my mind was right at the end you mentioned fashion. And so I’m thinking “Fashion? Where does fashion come into this?” But you brought up this idea of celebrating culture and celebrating our stories through fashion and how beautiful that was to be able to empower something like fashion. And when I started thinking about who I am and who we are and you start thinking about what matters to us, being able to express my soul, being able to express my art, that essence of creative freedom; and then I’m thinking about fashion and it’s the same kind of thing, right? We have all of our stories and all these things that we build which is the beauty that comes out of us. And that maybe if we just take a step back, that fundamental thing that we can do to influence the culture around us is just celebrating beautiful. And I think that’s ultimately the message I hear you echoing through all of the things that you’re saying when you’re admiring all these different cultures, when you’re admiring all these different people, is to celebrate beautiful.

+

REHEMA:  Yeah. I think that’s probably yeah, my reflection as well, my takeaway from this. Because I’m all about opportunity and I believe in it so much but I hadn’t, even I hadn’t thought about it in terms of fundamental right to freedom, which I think is such an incredible way to think about it. Because technology as a tool, like we said, it democratizes. It has so many applications. Like you said, it’s like magic, right? You can create entire worlds with it, which I think is what so many of us love about this. But if we do go slightly more bigger picture and we pull back and we’re looking at people’s fundamental rights to have freedom of thought, freedom of expression, and the ability to create, and the kind of mindset that allows them to see the world around them and want to, and feel like they have the ability to effect change and positive change hopefully on it, then opportunity isn’t something that somebody else has to provide. It becomes something that people are able to take and make for themselves. And that’s the big thing that I’ve taken away from this conversation. Thank you guys for directing that and for bringing that up because I think that’s really cool.

+

JESSICA:  Awesome. Rehema, thank you so much for coming on the show.

+

REHEMA:  Thank you guys for having me. This has been a blast. [Laughs]

+

JESSICA:  As a reminder to our listeners, if you like the show and you want to hear more of it, Greater Than Code is a listener-sponsored show. We are looking for a few really special companies to sponsor episodes but we’re pretty much listener-supported. And you can participate in that. And if you contribute to our Patreon in any amount, even $1 once, you get an invitation to the exclusive Greater Than Code Slack channel, which is my favorite Slack channel because it’s not very high volume and everyone is super nice. And especially, you get access to the overheard channel where I put things that Rein has said without attributing them.

+

[Laughter]

+

REIN:  Wait, what?

+

[Laughter]

+

JESSICA:  Go to GreaterThanCode.com to find out more!

+

 

+

This episode was brought to you by @therubyrep of DevReps, LLC. To pledge your support and to join our awesome Slack community, visit patreon.com/greaterthancode.

+

To make a one-time donation so that we can continue to bring you more content like this, please do so at paypal.me/devreps. You will also get an invitation to our Slack community this way as well.

+

Amazon links may be affiliate links, which means you’re supporting the show when you purchase our recommendations. Thanks!

+]]>
+ Panelists:

+

Astrid Countee | Rein Henrichs | Jessica Kerr |
+
Sam Livingston-Gray | Janelle Klein

+

Guest Starring:

+

Rehema Wachira: @remy_stack | Andela

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

01:22 – Rehema’s Superpower: Empathy

+

02:53 – Rehema’s “Untypical” Origin Story

+

07:20 – Enjoying Coding Because of the Complexity Behind It

+

11:21 – Creating a “Culture of Saving”

+

14:52 – “Diversity of Thought” and Seeing the World Through Others’ Eyes

+

22:20 – Being Creators and Makers

+

Indie Hackers

+

30:28 – How Technology Empowers People

+

38:27 – The Distribution of Brilliance and Opportunity

+

47:01 – Freedom of Creative Expression

+

Reflections:

+

Astrid: Having to unlearn the need of being perfect.

+

Jessica: We want to speak to more guests on a global level! Please reach out!

+

Sam: Fixed vs growth mindset.

+

Rein: Diversity is not just good for ethical reasons, it also makes your organization more competent.

+

Janelle: Celebrating beautiful.

+

Rehema: A fundamental right to freedom.

+

Transcript:

+

ASTRID:  Hello everybody and welcome to Episode 63 of Greater Than Code. I’m Astrid Countee and I’m here with my friend, Rein Henrichs.

+

REIN:  Good morning, or whatever time it is when you’re listening to this. I am here with my friend, the colorfully-haired Jessica Kerr.

+

JESSICA:  Good morning! And I am thrilled to be here today with Sam Livingston-Gray!

+

SAM:  ]]> + Panelists:

+

Astrid Countee | Rein Henrichs | Jessica Kerr |
+
Sam Livingston-Gray | Janelle Klein

+

Guest Starring:

+

Rehema Wachira: @remy_stack | Andela

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

01:22 – Rehema’s Superpower: Empathy

+

02:53 – Rehema’s “Untypical” Origin Story

+

07:20 – Enjoying Coding Because of the Complexity Behind It

+

11:21 – Creating a “Culture of Saving”

+

14:52 – “Diversity of Thought” and Seeing the World Through Others’ Eyes

+

22:20 – Being Creators and Makers

+

Indie Hackers

+

30:28 – How Technology Empowers People

+

38:27 – The Distribution of Brilliance and Opportunity

+

47:01 – Freedom of Creative Expression

+

Reflections:

+

Astrid: Having to unlearn the need of being perfect.

+

Jessica: We want to speak to more guests on a global level! Please reach out!

+

Sam: Fixed vs growth mindset.

+

Rein: Diversity is not just good for ethical reasons, it also makes your organization more competent.

+

Janelle: Celebrating beautiful.

+

Rehema: A fundamental right to freedom.

+

Transcript:

+

ASTRID:  Hello everybody and welcome to Episode 63 of Greater Than Code. I’m Astrid Countee and I’m here with my friend, Rein Henrichs.

+

REIN:  Good morning, or whatever time it is when you’re listening to this. I am here with my friend, the colorfully-haired Jessica Kerr.

+

JESSICA:  Good morning! And I am thrilled to be here today with Sam Livingston-Gray!

+

SAM:  ]]> + + + + clean + No + no + no + 01:00:57 + Mandy Moore + + + 062: The Beauty of Art and Technology with Jamey Hampton + https://www.greaterthancode.com/podcast/062-the-beauty-of-art-and-technology-with-jamey-hampton/ + Wed, 10 Jan 2018 05:00:31 +0000 + Mandy Moore + http://www.greaterthancode.com/?post_type=podcast&p=1100 + + + Panelists:

+

Jessica Kerr | Sam Livingston-Gray | Astrid Countee

+

Guest Starring:

+

Jamey Hampton: @jameybash | jameybash.com | Agrilyst |
+
Sugar City Arts Collaborative

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

01:22 – Jamey’s Superpower: “The Fharlanghn Sense”

+

02:40 – Working in Agriculture

+

04:03 – Theories on Automation

+

05:56 – Pivoting Into Computer Science and Software Development

+

10:35 – Feeling Like You Need to Know Everything

+

Stella Report from the SNAFUcatchers Workshop on Coping With Complexity

+

15:47 – ‘Zines and Being a ‘Zine Librarian

+

27:50 – The Beauty of Art and Technology and Forming Emotional Connections to Things

+

Floppy Music DUO – Imperial March

+

35:26 – The Death Star => Ethics in Technology and Taking Responsibility/Being Accountable for your Code

+

Malcolm Gladwell: The strange tale of the Norden bombsite

+ +

+

49:42 – Brilliance and Learning From Others Without Consent

+

54:49 – Advice for Channeling Your Own Inner Fharlanghn Sense

+

Transcript:

+

SAM:  Hello and welcome to Episode 62 of Greater Than Code. I am Sam Livingston-Gray and I am here to introduce my good friend, Jessica Kerr.

+

JESSICA:  Good morning. Thank you, Sam. I am excited about this episode of Greater Than Code because this is our first episode wherein we don’t have an extra guest and we get to grill one of our fellow panelists. So, thank you very much to Jamey Hampton for being the first panel target. I mean, guest.

+

Jamey is a non-binary adventurer from Buffalo, New York, who wishes they were immortal so they can have time to visit every coffee shop in the world! They’re an artist who turned into a programmer after one too many animation classes that was a Computer Science class in disguise. Currently, they’re working as a professional plant-liker and software engineer for Agrilyst, a data analysis platform for indoor agriculture. They’re also the zine librarian at Sugar City Arts Collaborative and, bet you wouldn’t have guessed this, a permanent panelist on the podcast, Greater Than Code!

+

SAM:  Woohoo!

+

JESSICA:  Jamey spends most of their free time camping and thinking about Star Wars, sometimes simultaneously. Jamey. So, the other day you came to St. Louis and visited me and it was fun and I learned about your superpower, which is to magically find the best place to go on a given night in a city you’ve never been in.

+

JAMEY:  Yes. I call it my Fharlanghn sense where Fharlanghn is the god of travel and roads from Dungeons and Dragons.

+

[Laughter]

+

JAMEY:  It’s a good superpower to have. It makes me very fun to travel with. So, if anyone ever wants to go on vacation with me, just hit me up.

+

JESSICA:  Yeah, if you’re adventurous, I guess. If you don’t like surprises, don’t go with Jamey.

+

JAMEY:  That’s true.

+

[Chuckles]

+

JAMEY:  I’ve thought about it. I’m like, I wish I could offer my superpower as a service…

+

JESSICA:  [Laughs]

+

JAMEY:  To other people, like have an app.

+

SAM:  [Laughs]

+

JAMEY:  That’s like me giving people advice on what to do. But I’m worried that if I tried to exploit it in that way, maybe it wouldn’t work the way I want, because it’s kind of fickle.

+

JESSICA:  It sounds like you would have to be there.

+

JAMEY:  I don’t think I could automate it. I think I would have to have a personal consultation with someone. I could do that. I’m quitting my day job. Hard pivot.

+

JESSICA:  [Laughs]

+

JAMEY:  Just kidding. I love working at Agrilyst. I like plants. And I like working with plants. And I like working with farmers and growers because they’re very interesting.

+

JESSICA:  I’m curious. So, I used to work at an agriculture-related company, too. And one thing I observed about the growers in that particular very corn-dominated agriculture segment is they’re all white males. Is that true in your customer base?

+

JAMEY:  That’s a little bit true. Agrilyst is actually, the founder of our company, her name is Allison. She’s the CEO, Allison Kopf, and she’s awesome. And she used to be a grower. She was an agronomist for an indoor farm and she actually did very similar to what I was just saying about my superpower where she was like, wow, not every farm can afford a me to have a personal agronomist to do this for them. So, what if I created myself as a service? And [chuckles] that’s kind of how Agrilyst happened. And so, she had this whole idea for how you could do the kind of management that she did with software. And I think that’s really cool. But also, the reason I brought it up is because she is a minority, for sure, in the agriculture industry. So, it’s an honor to work with her.

+

JESSICA:  Sweet. So, she is also in the process of automating herself.

+

JAMEY:  Yeah. It’s going well. [Laughs] Now every farm can have an Allison. It must be nice to be so important. I like that.

+

JESSICA:  Ah, that’s an interesting point. But the part about whether we’re important, that’s our decision, right? Is my work worth automating and spreading?

+

SAM:  You have to have the ability to do so as well, right?

+

JAMEY:  Yeah, I think…

+

JESSICA:  Yeah, not everything works.

+

JAMEY:  Some things need the personal touch, I think. Automation. There’s a lot of discussion about automation and what’s going to get automated. And we’re not going to have people doing jobs. I remember the first time I ever thought about that question. I used to work… when I was in high school I worked at a TV studio and I was really, really into it. And we got to tour a local news TV station one time. And I was so excited. And so, we show up there and we met the newscasters and it was super cool. And we watched as they were doing one of the news broadcasts and they had these really cool cameras that were on these robotic tripods and they moved around the studio on their own and focused on different things. And we were like, “These are so cool! These are amazing. We wish we had these in our studio.” And my boss was like, “I’m not saying that they’re not cool. But think about this. Because this is doing your job to the point where they don’t need you to do your job anymore.” And I was like, “Oh.” And that was the moment I first thought about that.

+

SAM:  [Laughs] Right.

+

JESSICA:  We think of… your job was to move the camera, but there’s so much of your job is deciding how and where to move the camera.

+

JAMEY:  That’s true.

+

SAM:  And somebody still does need to at least punch a button to tell it which move to make. But yeah, maybe you go from three camera operators to one.

+

JESSICA:  Or three and you just do more camera movement.

+

JAMEY:  That’s true. It freaked me out at the time because I was planning on going into TV production for my career at that point. And I was like, “Oh, it’s going to be so hard to find a job in TV production,” which was true. And it’s not what I do now. So… [Laughs]

+

JESSICA:  Yeah, so tell us about how you made that switch.

+

JAMEY:  I went to school for digital art, which was the closest that I had to film and TV production at the school that I went to. And because it wasn’t an actual film and TV production major, I took a lot of other miscellaneous art classes. They were basically like, “Take animation.” I’m like, “I don’t want to take animation. I don’t want to be an animator.” And they’re like, “Well just take one. One is required. And then if you hate it, you don’t have to take any more, ever.” So, I took some graphic design classes and I took some animation classes and some game design classes. And I found that specifically in animation and game design, there was a lot of actual strict writing code involved. [Chuckles] I learned ActionScript at that point. And everyone else in all of my classes was like, “This sucks. Why do I have to do this? This isn’t art. This is math. It’s stupid.”

+

SAM:  [Laughs] Wait, there’s a difference?

+

JAMEY:  [Laughs] Some people think so. But so, I was like, “This is great. I love writing ActionScript.” And everyone else seems to hate it, which makes me special for liking it, I guess. At least, in my digital art classes. So, I started studying computer science. And I got a minor in computer science. And then I decided that’s what I actually wanted to do instead of trying to move to the big city and make my big break or whatever I would have had to do to go into film production.

+

SAM:  So, I really want to ask you about that. But first, I have to mention that we have a surprise bonus panelist. Astrid Countee has just joined us.

+

JESSICA:  Yay.

+

SAM:  Welcome, Astrid.

+

JESSICA:  Thank you for coming.

+

JAMEY:  We’re glad you’re here.

+

ASTRID:  Yeah, I had to hear all about you, Jamey.

+

JAMEY:  That’s a lot of fresh [inaudible]. Sorry.

+

ASTRID:  [Laughs]

+

SAM:  So yeah, I had it on my list to ask you how you got into tech. And so, it sounds like you sort of discovered a love for it during college. What happened after you graduated? How’d you get your first tech job?

+

JAMEY:  I found my first tech job on Craigslist. That’s a true story. And it was this tiny startup, like locally to me, that did QR code generation and text message marketing using it.

+

SAM:  Oh yeah, I’ve seen one of those.

+

JAMEY:  I was the only developer. I learned Ruby on Rails while I was working there. So, they hired me. They were paying me $10 an hour to basically teach myself Ruby on Rails to the point where I was capable of running this software by myself. And I worked there as the only developer until essentially they ran out of money to pay me and they started cutting my hours. And I found another job at that point. But it was really, really interesting being the only developer at my first tech job because I did a little bit of mentorship because one of the owners is a very talented developer. He just wasn’t writing code for this project. So, he was there to answer some of my questions sometimes, although this was kind of his side-gig. But I learned a lot from him because he was really brilliant. But I worked for about a year on a codebase that I was the only person who touched, which was really interesting. Because I knew how everything worked and that is the last time I’ve ever worked on a project…

+

[Laughter]

+

JAMEY:  Where I knew how every single piece worked.

+

SAM:  Yeah.

+

JESSICA:  Yeah.

+

JAMEY:  I was the one who built everything. That’s not true, because it did work before I joined. But I touched everything in that year and I updated everything in that year. But also, then if something breaks, I didn’t learn that, “Oh, who broke this?” It was always me.

+

[Laughter]

+

JAMEY:  If something was great, I could pat myself on the back. And if something was broken, I could blame myself because there was nobody else. [Chuckles]

+

ASTRID:  I once went to a talk with somebody who was in a similar position where they are the only developer. It was a Rails app. And they had done it for, I think at that point, three or four years.

+

JAMEY:  Wow.

+

ASTRID:  And the talk was titled “Galapagos Rails” and they were talking about like…

+

SAM:  [Laughs]

+

ASTRID:  When you’re the only one and it’s only you and everything that breaks is your fault and you have to just figure stuff out. And how it made him into a better developer but that it also made him had way less patience for people who don’t fix their own problems.

+

SAM:  [Laughs] Yeah, because I guess in one year you could potentially make a bunch of problems and then leave and then let somebody else deal with them, or at least some of the bigger problems that you made, you could leave to somebody else. But in three years, you’re really going to have your face rubbed in it, huh?

+

ASTRID:  [Laughs] Yeah, yeah. He talked about that, about the really lonely nights where it’s all broken and you just can’t do it anymore. And you have to come back the next day because the whole company is depending on you.

+

JESSICA:  Wow.

+

ASTRID:  So, do you think it changed anything about your attitude about being a developer, Jamey? Like, having to do it by yourself?

+

JAMEY:  Yeah, I do. I think the hardest thing about going from being the only person to working with other people, and in fairness I’ve never worked at a big company. I’ve never worked on anything with more than a handful of developers, really. My next company after that, at our peak, there were about 10 of us. And at Agrilyst right now there’s, at our peak, there were probably five or six people touching the codebase. But even just from that jump from one to a few, the hardest thing was that I feel guilt about not understanding how something works. And if someone’s like, “Hey, do you know how our application does this?” and I have to be like, “No, I didn’t write that and I’ve never looked at it,” I feel guilt about saying that. I feel like I should know everything. And so, that’s kind of hard. And I still feel that way a little bit. I recognize that it’s kind of silly and that it’s reasonable not to know everything.

+

JESSICA:  It’s more than reasonable.

+

JAMEY:  [Chuckles]

+

JESSICA:  It is literally impossible to know everything. And if you try to know everything, you won’t get anything done. These systems scale bigger than our heads. Actually, there’s a paper on this in the [inaudible] report. It talks about our software systems are sufficiently complex that every model is always incomplete and out of date.

+

[Chuckles]

+

JESSICA:  The best we can do is collectively have enough accuracy over enough of the system to be able to keep it running and change it.

+

JAMEY:  I would agree with that. And I think the other thing that I got from being the only person is that a sense of, “Well, but I’ll figure it out,” because I was in a position where I had to figure it out. There was no other option. And so, that was kind of empowering. Because I remember, and that was my first job and I was very new. And there were a lot of times where I was like, “This is impossible. I don’t know how to do this. I can’t pawn it off on anyone else. [Chuckles] I just got to do it.” And every time I started a new big feature I’d be like, “This is impossible. I’m never going to be able to get this to work.” And somehow, I always did get it to work eventually. I’d have to learn new stuff. And I’d have to figure it out. But I did it. And so, after this cycle happened a few times, I started to be like, “Okay. I’m feeling that feeling where it feels like it’s impossible. But the last six or eight times I said that, it was possible. So maybe, that feeling is wrong.”

+

JESSICA:  So, one of those things that you learned at that first job where there wasn’t really anybody else was that you could figure it out?

+

JAMEY:  Definitely.

+

JESSICA:  And it is. [Sighs] I still feel that every day. I have this urge to understand the whole system. And I just have to let it go because if I try to keep up, it’s changing so fast and there are six other devs working on it. It changes so fast that if I tried to just keep up with what’s going on, I don’t have time to do anything. So, I’ve had to force myself to narrow my focus, not know how most of the backend works, and just move forward on relative frontend stuff.

+

JAMEY:  That makes sense to me. I think the two things are related. Because if you have confidence that you can figure it out if and when you need to, then you can let it go for now.

+

SAM:  Yeah.

+

JESSICA:  That’s a good point, yeah.

+

SAM:  Yeah, my strategy for that is to try to leave the code in a legible enough state that when I come back to it, some way down the road, that I’m confident that I can pick it back up again. Or whoever else touches it can pick it back up. And that’s why refactoring is important, kids.

+

[Laughter]

+

JAMEY:  Code politeness.

+

SAM:  [Laughs]

+

JESSICA:  Lately I find that the limiting resource is based in my head. So, I’ve become really stingy with what I keep in my head and started writing more stuff down and letting go of it.

+

JAMEY:  I write everything down. And I write it all down on paper. Everything has to go on paper. It’s like I don’t even know something until I write it down on paper. Because I can type without thinking about what I’m writing or reading what I type. [Chuckles] But I can’t do that with paper.

+

SAM:  Right. Well, the trade-off is you can search typed stuff easier. But writing it down with your hands on paper helps cement it more firmly in your brain.

+

JAMEY:  Yeah. A lot of times I don’t even go back and read the stuff I wrote. But just having written it down is so helpful.

+

ASTRID:  I’m totally like that. It’s like by writing it, now it’s in my brain so I don’t need it.

+

JESSICA:  Yeah. It’s almost like that. That puts it in a more built-in form of memory instead of some active memory that I feel like I’m expending RAM to remember this, until I write it down.

+

JAMEY:  I like that.

+

JESSICA:  Like deeper storage or something.

+

JAMEY:  I didn’t know you were a droid. But now I know.

+

[Laughter]

+

SAM:  Yeah, actually I think possibly a better metaphor would be registers in the CPU for working memory. Because I think most people have seven plus or minus two slots for holding onto things in their head.

+

JESSICA:  Yeah. Today I feel like I have three.

+

[Chuckles]

+

SAM:  That’s my usual.

+

[Chuckles]

+

ASTRID:  So Jamey, you’re a librarian. Can you tell us about that?

+

JAMEY:  I am. I get a little nervous about using the word librarian sometimes because there are actual librarians that had to study and learn a lot of things to be a professional and that is not what I do.

+

ASTRID:  Well, was is it you do that they’re not doing, or that you’re not doing that they are doing?

+

JAMEY:  I don’t know what they’re doing. I feel like they’re doing magic and I’m doing, I don’t know, volunteer work. But I work at a local collaborative art space called Sugar City and we have the zine library that people can donate zines to. And I take care of them and I keep them nice on the wall and I put them in the database. And I meet people who want to donate to us and I get zines from them. I take in donations from the mail and I keep track of all of it. And I love all the zines in our library and I take care of them lovingly. So, if people read them and they get ripped, I fix them.

+

ASTRID:  What kind of zines are they?

+

JAMEY:  We have any/every kind of zine you can imagine, because we take any kind of donations that anyone wants to give. So, we’ll often get someone donating their entire library because they’re like, “I’m moving,” and, “I don’t collect these anymore,” whatever.

+

SAM:  Wow.

+

JAMEY:  So, we’ll get a whole box of art zines or queer zines from the 90’s, which is cool. We have a ton of anarchist political zines because we’ll get full collections of those. So, it’s really cool. And then we put them on the wall. There’s no order or anything. So, you just have to browse. We do have a list of what we own and people can come in and read zines. And it’s very exciting and cool. And I run zine fairs where people can sell zines.

+

JESSICA:  Define zine.

+

JAMEY:  A zine, well it’s short for a magazine. This is like a 90’s thing that’s… I feel like it was very popular then and then it got less popular and now it’s research, which I’m really excited about. I feel like zines are very popular again. But it’s basically self-published magazines.

+

SAM:  So, I’m guessing something like something that a person would type up or draw and then take down to Kinko’s and make 20 copies of?

+

JAMEY:  A lot of them are like that. There as some that are a little bit more well-put-together than that. But that’s what I like so much about zines, is that anyone can do it. If you want to go big and do this whole production and do bookbinding and stuff, I know people who do that and it’s really cool. But if you don’t want to do that or you don’t know how to do that, or you don’t have the time or the skill, you can still do zines. There’s really no minimum skill required. If you have an idea that you want to put on paper, you can put it on paper and make it. And I love all zines. Some of my favorite zines are just these crappy Kinko’s copies that you can barely read. But the content of them is so important that I’m like, “Yes! I’m so glad that I have this on paper.” And it’s so different from the internet in some ways. Because the internet also has that extremely low barrier of entry. You don’t have to have any measurable skill in anything to go on the internet and post something. So in that way, it’s similar. But in every other conceivable way, it’s different.

+

[Chuckles]

+

SAM:  Yeah, it’s funny. You were talking about how they were really popular in the 90’s and then less so and then they experienced a resurgence. And being the sort of nerd that I am, I want to correlate that with a technical story about how in the 90’s publishing to the web kind of sucked. And then we got sites like LiveJournal and then later Tumblr and somewhere along the way WordPress. But that doesn’t really account for their recent resurgence. And maybe I’m totally off-base. What do you think? Why did they come back? Why did they go away?

+

JAMEY:  I think that they went away because people were like, “Oh, we can use the internet for this, but better.” I would agree with that. I’m not sure why they came back. I was doing zines in 2010-ish and people were making fun of me. And now, half the artists I know locally do zines. And so somewhere in between there it’s become a thing.

+

SAM:  Is the answer hipsters?

+

JAMEY:  I don’t think the answer is hipsters.

+

SAM:  [Laughs]

+

JAMEY:  I think if anything, the answer is like the punk scene. And I think the punk scene has, not that like… I’m not accusing punk of being dead at any point. But I think the punk scene has been more culturally relevant lately because of the political climate. I think that’s part of it. I think there’s been a nostalgia factor. Not just to, “Oh, remember when we had zines?” specifically, because I think some of these people are doing zines for the first time now. But like, the idea of holding something in your hand is very attractive to me and very different from the internet.

+

One of my favorite things about zines is that they travel organically and they can’t be censored or searched. So, they can’t be censored is kind of obvious. You make them yourself and you hand them out to people and nobody can stop you from doing that, which is cool. But I also think that you get very personal stories in zines that you wouldn’t get on the internet, because you have a lot more control in some ways about who gets that story. You can control who you pass these zines to. You can make 20 and then never make them again. And now it’s out there and maybe it was cathartic for you to do. And maybe you shared it with someone who really needed to be shared with, but nobody can go on Google and be like, ‘Jamey Hampton this, this, and this’, and get these personal stories that I’ve written in zines. Because they’re just not on the Internet in that way.

+

JESSICA:  So, you’re sharing your story and you have some control over who sees it but not full control. You don’t know where all those zines will end up but you have some idea how many. And it’s more localized?

+

JAMEY:  I like sending zines through the mail. Someone recently asked me if I would put my zines on Etsy and I was like, “No.” And they’re like, “Well, can I buy one?” And I was like, “Yes.” PayPal me money and I’ll mail it to you.

+

SAM:  [Laughs]

+

JAMEY:  But I’m not going to put it on Etsy. And I think that the reason that I’m against… I’m not against Etsy in theory for other people, but zines used to be like you would find an address on the back of another zine and you would mail them a dollar through the postal service. And they would mail you something hopefully, or they would steal your dollar. I don’t know. Hopefully they’ll mail you something. I don’t steal people’s dollars. I do mail them out. People are like, “Well, that’s kind of sketchy.” I’m like, “Well, you know what? It is a little sketchy but that’s how we’re doing it. So…” [Chuckles]

+

JESSICA:  Your two dollars are not PayPal-insured.

+

JAMEY:  [Chuckles]

+

SAM:  Yeah, so back in the 90’s I actually had a physical copy of a book that think was called ‘Weird Stuff by Mail’. And if I remember correctly, it was actually written by the same person who did the whole ‘Church of the SubGenius’ thing.

+

JAMEY:  Awesome.

+

SAM:  It was a printed book. So, by the time I got it, some of the stuff was already obsolete. But it was a list of just places that you could mail a couple of bucks and get back random, weird shit.

+

JAMEY:  I love that. I want to get that book and mail to people and see if any of them still exists.

+

SAM:  [Laughs] Right. Well, good luck finding the book. I’m sure it’s out of print. 

+

JAMEY:  Even the book doesn’t exist. It’s an enigma. Out of print is also another thing I think about with zines. Because a lot of them are really low printing numbers and I have zines. I got a zine when I was in France and it was four out of 15 on the back. And I was like, “15 copies of this exist.” And in France. And somehow I had one in Buffalo. Just the sheer randomness of the universe that put this zines into my possession. I love that.

+

ASTRID:  I also think, it seems to have something to do with art. The whole it started and then it moved to the internet and then now it’s coming back again because… I was just at the art museum this past week over the holiday break which was awesome, because I forgot how much I love going to art museums, because I’m always at science museums because I love science. But when you go to the art museums and you realize some things you just can’t experience the same unless you are holding, touching it, looking at it in person. It’s just different. Especially because part of the purpose of things that are creative and made to be artfully done are that you want to experience something. You can’t just always experience it online in the same way.

+

And I kind of feel like things that first moved to the internet like blogging, when that first moved there, it was a small community. It was like you could actually talk to people. And then it got to a place where everybody was online so, it’s like you’re shouting in a crowded room. It’s not the same intimate personal feeling, which is part of the reason why I think there’s starting to be a resurgence of the more tactile experience of things. And then there’s people like me. I love to buy Kindle books because I have a Kindle. It’s so easy to read that way. But then books that I really want or things I want to read again, I want the real book, because I want to touch it and smell the pages. And I think that’s happening with a lot of things.

+

JAMEY:  I’m a little bit materialist, too. I used to be very self-conscious about it. I wanted to be like, “I’m not materialistic.”

+

ASTRID:  Okay. [Inaudible]

+

JAMEY:  But I kind of am. And it’s because I feel safe when I physically surround myself with things that I really love.

+

ASTRID:  Mmhmm.

+

JAMEY:  And so, the idea of I really love this book and I want to put it on my bookshelf so it’s there is comforting to me.

+

ASTRID:  Yeah. It’s like when you see sci-fi movies that are supposed to be set in the near future. And everything is very sterile and there’s no personal or clutter-y because everything is just perfect, it feels so lonely. It doesn’t feel like a life you want to have.

+

JESSICA:  Yeah. There’s a quantity of information here, too, just like with our programming systems. You can’t read all the blogs but you can read all of the zines that are in your hand.

+

JAMEY:  At first I got a little overwhelmed by the fact that things were so limited edition. I was like, “There are so many that I’m never going to see.” And I’m like, “I mean, true. But there’s also so many that I am going to see that other people aren’t going to see. And I can share them, the ones I like.” I also collect cassette tapes from local bands and stuff, because I just really like things that other people made that I can hold and read and listen to and be like, “Somebody spent time doing this.” And they made creative decisions about how this is going to be. I listened to a cassette tape recently that was literally just static-y noise with beeps.

+

SAM:  [Chuckles]

+

JAMEY:  And I loved it so much, because I imagined the person who made it sitting there and changing the frequency of the beeps and being like, “No, this is wrong,” and then changing them and be like, “Yes. This is it. This is what’s going on the tape.”

+

SAM:  [Laughs]

+

JAMEY:  And I thought about, what feeling were they having that they were trying to evoke in me? It’s probably not the same feeling I’m actually feeling. But this idea of putting something together and being like, “Yes. This is it. This is the feeling and now I’m going to give it to someone else and see what happens.” That’s what art is to me. And it just makes me really happy. I feel like I have a connection with whoever this was that put the beeps on the tape.

+

JESSICA:  Yeah, that’s beautiful. And we are physical beings, so we do have a connection to physical objects that the interwebs can’t satisfy. You talked about the beauty of this art that’s created by someone and passed down. Do you find any beauty like that in your work?

+

JAMEY:  I think about code and art a lot. And I think the beauty of a lot of code is what it does. We talk about beautiful code and beautiful code is nice. I enjoy it. Aesthetically, it’s good to work with. But in essence, when you’re writing code, you’re not creating code to give to someone. You’re creating a program to give to someone. But I’ve thought some about playing with it. I had this idea. This is an art exhibit idea that I’ve had for a while and I haven’t done yet. But I’m like, what if I wrote some little applets in JavaScript and I wrote them normal and tested them, made sure they worked. And then I typed them out on a typewriter and framed them.

+

SAM:  [Laughs]

+

JAMEY:  Because [chuckles] I think it’s really funny to present things that are useful in a context where they are useless.

+

[Laughter]

+

JESSICA:  Yeah. You can get code embroidered, right?

+

SAM:  Mmhmm.

+

JAMEY:  I cross-stitched a QR code, once.

+

JESSICA:  Oh, cool. Wow!

+

SAM:  I actually saw something like that on Twitter yesterday.

+

JAMEY:  I saw something like that recently, too. But I used to do urban exploration. It was my big thing. And I ran a blog about urban exploration. And I had a backpack that I took with me. And so, I cross-stitched a QR code to my blog and put it on my backpack. [Chuckles]

+

SAM:  [Laughs] Nice.

+

JESSICA:  Oh, you just said you used to do urban exploration. And you didn’t tell us about that when we asked where your superpower came from?

+

[Laughter]

+

JESSICA:  It does seem like…

+

JAMEY:  It does seem related.

+

JESSICA:  Doing urban exploration would enhance your, what did you call it? Far-fig-newgan? No.

+

[Laughter]

+

JAMEY:  My Fharlanghn sense.

+

ASTRID:  So, Jamey when you were just talking about the beauty in code, it sort of made me think about something, this book I had to read when I was doing anthropology graduate study. And it was this book about why we buy. And there was this anthropologist who would watch people in the supermarket and see what they purchased. And some of the people, he would go home and see how they distributed their food items. And there was this interesting that he noticed where some people would purchase something, especially parents, and let’s say like a box of goldfish crackers. And they would go home and they would take it out of the box and they would put it into other little baggies or something for their kids. And he talked about how functionally, that doesn’t really do anything. But that it gave this impression that these are not the brand crackers. Like, these are mom and dad’s crackers for you. It created a connection to it that was beyond what it was purchased. It was about this function of somebody putting the time to put this into a small enough package for you to have so now it’s specialized for you.

+

And that might be a big leap, but it just made me think about how you were saying it’s not about… you’re not making code for someone. You’re making this program, but that’s what programs do. They have some sort of thing that they are supposed to complete or finish or do. And it’s almost like it’s a similar concept where it’s not about the thing. It’s about how well that thing was made, who it could have been made for, and how that affects someone, and what that could mean. It’s more abstract but when something is well-built and you’re using it, you feel that as a user. You feel like someone thought about what I was going to do. Someone thought about this choice. Someone gave me an option that I’ll always have. And it means something. And it reminded me of that same scenario where he noticed that it’s not really… it’s a strange thing to do functionally, to take something out of a box and put it in another box basically, but it’s being done to create a connection.

+

JAMEY:  I think that how we feel about things emotionally changes the meaning of them really profoundly, too, in the way that we form emotional connections to things. When I was talking about how I feel like I’m kind of materialistic, I’ve forgiven myself for it, I guess, because I form these really intense connections to things I own. But it’s not because like, “Oh, I have this valuable thing.” It’s like, “Somebody gave me this. And now it has meaning beyond what it just is, because it makes me think of this person or this thing that happened or this place I was.” It’s almost like you can take emotions about people or memories about the past and trap them in these things that you own.

+

JESSICA:  Oh, because even though it’s a thing, itself doesn’t contain the memory. The thing in combination with your brain has the memory.

+

SAM:  Yeah, because our brains are highly associative.

+

JAMEY:  It’s like cryptography, almost.

+

ASTRID:  Yeah.

+

JAMEY:  Like your brain has this key…

+

SAM:  [Chuckles]

+

JAMEY:  That makes these random letters into words. And your brain also has this key that makes these objects into like…

+

JESSICA:  It’s like we’re living in augmented reality.

+

[Laughter]

+

SAM:  But it’s only augmented for you.

+

[Laughter]

+

JESSICA:  Now if only we realized that.

+

JAMEY:  It’s personalized. It’s like the crackers.

+

SAM:  Yes.

+

ASTRID:  Yeah.

+

SAM:  [Chuckles]

+

JESSICA:  So then, if the beauty of the code is in what it does, and I completely agree with you there, then your work satisfaction is going to be less about what language you’re writing or how well-factored it is than what the software accomplishes?

+

JAMEY:  To me, the moment that makes me writing code is the moment when something that didn’t work before suddenly works. And I’m sure that other people feel this way. Like, they must, because it’s so satisfying.

+

JESSICA:  Mmhmm.

+

JAMEY:  [Laughs]

+

SAM:  There is definitely a magic in that moment.

+

JAMEY:  I remember the first time I ever really… I don’t work with a lot of hardware. But I was doing consulting and I was doing a project where I was working with printers. And it was a huge pain. It was just the worst. And there were all these restrictions. And so, I ended up sending information to printers via… I opened a bytestream from an Android phone and sent it directly to the printer via Bluetooth. It was such a pain. And it didn’t work for a long time and I was just days of, “Oh, I sent it and it didn’t work. It printed gibberish. Oh, I sent it and nothing happened.” And the first time that a piece of paper came out of that printer with real words on it I was like, “Oh my god.”

+

[Laughter]

+

JAMEY:  “I am the master. I control. The technology. I have so much power. I felt so powerful.” And I was like, “Ah, this why people like working with hardware.

+

[Laughter]

+

JESSICA: Right, right. It’s that changing the physical world thing.

+

SAM:  Oh my god, I made an LED blink. I’m so great.

+

JAMEY:  I’m a powerful technomancer.

+

[Laughter]

+

JAMEY:  I can make the LED blink whenever I want.

+

SAM:  And of course, at this point I absolutely have to share one of my favorite YouTube videos.

+

JAMEY:  [Chuckles]

+

SAM:  Which is of somebody who programmed two floppy disk drives to play The Imperial March from Star Wars.

+

JAMEY:  Oh my god.

+

[Laughter]

+

SAM:  And I will drop a link to that into the show notes. Because, oh my god, it is awesome.

+

JAMEY: I have a tattoo of the Death Star. Fun fact. Fun to me.

+

[Laughter]

+

JESSICA:  Really, Jamey. Is that ethical?

+

JAMEY:  It’s not at all. And that’s literally why I have it.

+

SAM:  [Chuckles] Yeah, because did you pay a copyright fee for that tattoo?

+

JAMEY:  That’s not why.

+

[Laughter]

+

JAMEY:  George Lucas doesn’t need any more of my money. I promise.

+

SAM:  [Laughs]

+

JAMEY:  He has so much of it. [Laughs] No. I think about the Death Star all the time. I think about the Death Star whenever I think about my career, to be honest. It sounds like a joke, but it’s actually kind of true. Because when I started thinking critically about the Death Star for the first time, which happened the first day that Rogue One came out, when I went to see Rogue One. I went to see this movie and I’m like, “Yeah, Star Wars. I love it. I’m going to go. I’m going to see this movie.” And I went with my fiancé and we were just like, “Yes, a Star Wars movie. We’re so excited.” And we got out and he was like, “What did you think of it?” And I imagine that I went super pale and I was like, “I’m worried about my career.” And he was like…

+

[Laughter]

+

JAMEY:  This is what you want to talk about? Don’t you want to talk about Star Wars? I’m like, “I am talking about Star Wars. I don’t know.”

+

[Chuckles]

+

JAMEY:  Because it really freaked me out to watch that movie and see the backstories of the engineers that worked on the Death Star. Because everyone wants to go to the movies and be like, “I’m the good guy. I’m a hero. I’m an action hero.” And I was like, “Oh, I’m like an old white man in a white coat that works for the Empire.” Like, that’s who I relate to in Rogue One, because they didn’t know that they were building a super-weapon. They were just engineers who want to build something cool. And they did. And then it was the Death Star. And they all got killed. Spoilers.

+

ASTRID:  I feel like that’s so relevant to our current life and times in technology.

+

JAMEY:  Yes, yes. I think about it a lot and it’s like, if you don’t think about ethics when you’re building something, that’s dangerous. Because I was like, “I wouldn’t work on the Death Star. No way.” But you can’t prevent yourself from working on something like that unless you stop to consider what it actually is. I’m lucky because I’ve worked on projects pretty much my whole career that I actually do feel really strongly like, “This is a good thing.” But there’s a lot of stuff that seems just not immoral but amoral. Like, unrelated to morality. And I think if you are too quick to be like, “Well, my work is amoral. It has nothing to do with morality,” you put yourself in a situation where you could be doing something that’s really immoral actually and you don’t really realize it. And I think that’s what happened in Rogue One.

+

ASTRID:  Or it could be used in a way after the fact.

+

JAMEY:  Yes.

+

ASTRID:  That is not the way it was intended when it was being built.

+

JAMEY:  Definitely.

+

JESSICA:  Or have effects that it wasn’t designed for.

+

ASTRID:  Mmhmm.

+

JESSICA:  What if you get really good at growing indoor plants and then the plants take over and eat you?

+

ASTRID:  Little Shop of Horrors.

+

JAMEY:  I’m not as worried about that as other things.

+

[Chuckles]

+

JAMEY:  But I’m glad we’re talking about it.

+

[Laughter]

+

SAM:  I feel like a lot of us look at the Volkswagen thing where they were deliberately spoofing emissions tests. We look at that and we think, “Well, I wouldn’t ever write something like that.” But a surprising number of us might write something like that if it’s where money was coming from, if that’s how we’re feeding our family. And [sighs] there are a lot of other cases in our industry that are a lot less clear-cut even than that is. And that I think a lot of people just don’t really think about, because they don’t really want to think about them. Because you don’t really want to face the possibility that you might be even to some small degree a monster.

+

JAMEY: I’m working on a talk about this right now actually. And I was researching the other day people who regret their inventions.

+

SAM:  Mmhmm.

+

JAMEY:  Because I was talking about… like a well-known example is Einstein’s contributions that ended up being related to the atomic bomb, even though he wasn’t personally the person who did that. He was very regretful of his involvement. And I was looking up other examples. And the person who developed pepper spray didn’t do so to make it a biological… it was supposed to be a weapon. It wasn’t something that wasn’t going to be a weapon. But now, the way people are using it, the way that police use it and stuff, he’s like, “This is just so… I’ve never seen such irresponsible uses of chemicals.” So, he has regrets about that. The person who invented the AK-47, there’s a really interesting quote that I found where he was debating, “Am I responsible for people who died with this gun or not? Sometimes I think I am. Sometimes I feel like I didn’t force anyone to do this.” But, on his deathbed or something, he had this quote where it was like, “I wish I just could have used that energy doing something else. I wish instead of inventing the AK-47 I could have invented something that could help people do their jobs, like farmers or something.” And I read that and I was like, “That’s what I do.”

+

[Laughter]

+

JAMEY:  But another example I used is the person who invented the cubicle, because he was like, “Yeah, the cubicle is great. It’s going to be flexible. It’s going to let people have a better work environment than offices,” and then people used it to just pack people in because it was cost-efficient. And he was like, “No, that’s not what I meant.” But it’s too late.

+

SAM:  Right.

+

JAMEY:  Because he already invented it.

+

SAM:  But it was in many ways better than what came before, which was a giant, open, floorplan with a bunch of people at desks just making noise.

+

ASTRID:  You mean like now?

+

SAM:  Well, but now it looks different.

+

[Laughter]

+

SAM:  Now it’s IKEA furniture, right?

+

ASTRID:  Exactly. So, there’s this talk that Malcolm Gladwell does in a similar topic and it’s about the Norden bombsight. Have you seen that, Jamey?

+

JAMEY:  No. Tell me about it.

+

ASTRID:  Okay, so you’ll probably like this for the research you’re doing. It’s about a person who was, he makes this device to make bombing more accurate. Because what he’s thinking is that if we can make the bombing more accurate then we can have less death and then war can be over faster. Because he assumed, “I’m not going to stop war. But maybe if I can make war more efficient, then we won’t lose as many people.” And he tells a very interesting tale about how it works. But at the end of the day, it ended up being used to drop the atomic bombs. So, even though his intention was to try to make the loss of life as small as possible, it ended up being used completely outside of its intention of being accurate, because you don’t have to be accurate so much if you’re dropping an atomic bomb, to hurt and kill so many people.

+

And that’s like what we’re talking about where sometimes you’re building something because you think it’s going to do something that could be good. But then it could be used in a completely different capacity in a way that you never expected or intended. And unfortunately, especially with science and technology, oftentimes the money that you get to build things, when they will fund you to build all kinds of things and let you learn all kinds of science, it’s usually to be used in some way that’s going to exert power from one people over another people. And it’s like, how do you deal with that Faustian bargain of we’re going to advance science but it’s going to be at this cost that we may not be able to quantify? And it seems like it always happens that way.

+

JAMEY:  It’s hard because once you’ve put something out there, you kind of lose control over it and how it’s used. And I think that’s what a lot of the stories that we just told are about. And I also think that as programmers, we’re at a particular risk of that, because code doesn’t know what it’s doing. So, repurposing code is very easy in many ways. The example I like to use of this is AR technology, which is really interesting, and like facial recognition. So, people are like, “Yeah, AR video games.” It’s a big thing. And it’s cool and it’s interesting and it’s new and it’s futuristic or whatever. But if you write facial recognition software, the software doesn’t know whose faces it’s recognizing or why. And then if they repurpose that code to say, try to find protesters to arrest them; that would be easy to do with that code. And if you wrote it, there’s nothing you can do about it. You can’t stop them from doing that once they’re doing it.

+

[Sigh] So, I think it’s just really hard because there’s no way that we can anticipate all of the ways that our code could be repurposed. But I do think we have to take some sort of responsibility for what else could be done with it that isn’t what we originally meant. And I’m not sure where the line is between, “I’m afraid that my stuff’s going to get repurposed so now I just can’t write anything, ever,” which is also not realistic.

+

JESSICA:  Yeah. The world is a complex system and when we create something or learn something, we change that system. And we can’t know how that’s going to affect things. But we can influence the system in various ways to hold people in power accountable for their pepper spray actions.

+

ASTRID:  You know Jessica, sometimes I wonder if maybe we could just start thinking about… like, I try to think about code like a tool. In anthropology, especially when you’re learning about hominids, what you learn is that the tools that we make are extensions of us. So, an axe is an extension of our ability to use our arm with force. And cars are an extension of us to be able to run. Something like that. So in that case, then code is like an extension of what we could use our brain to do, or use a connection of brains to do, in one instance. And so, it’s like you wouldn’t give young kids sharp objects and then leave the room. Because you would expect that something bad could happen. So maybe it might be possible for us to think more about, “Okay, this type of code could be utilized in a bad way or in a destructive way by those who are uneducated about what to do with it or not capable of understanding how to use it.” We should know that. And maybe there are things we can do around that to help it be used properly.

+

Because I think it’s not so much that you can make things without any type of morality. But, tools are tools. They’re just there until somebody picks them up. And you can use hammers to build a house for somebody or you can use them to destroy something. So, it’s really not, should you not make a hammer? It’s like, how do you teach people to use hammers and why would you have hammers? And who should be around if somebody doesn’t know how to use a hammer so that they can teach them the right way. And maybe we should be thinking around those questions and less so about, should we make this or not?

+

SAM:  I feel like there are some tools that are a little bit more single-purpose than others. Like it’s hard to imagine a use for a gun that isn’t destroying something. Which is not to say that we shouldn’t make guns, but it’s maybe a little bit less balanced of an example than a hammer.

+

ASTRID:  I was just reading a book about somebody who was doing research in the rainforest and having a shotgun was really important because there was anacondas and there were jaguars. And you needed it. That’s totally different than if you take that same gun and point it towards a person in the rainforest.

+

JESSICA:  Yeah.

+

ASTRID:  Because you don’t need to shoot a person unless they are seriously [inaudible]. So, it’s really about understanding… you know a gun is a powerful tool. So, you should understand when you’re using it, what the implications of what you’re doing with it could be.

+

JAMEY:  I think the more powerful a tool is, the more respect you have to have for it. And I think the tough thing here is I can control how much respect I have. And I can try to encourage and teach other people to have respect. But I can’t force other people to respect something the way I respect it, or think it should be respected. You know what I mean?

+

ASTRID:  Yeah.

+

JAMEY:  I like what you’re saying though. And I think that with software, what you’re describing, we already do a lot in a… not a moral way, but in a mundane way. When we build something as engineers, we say like, “Okay. How are users going to break this? How are they going to screw this up and do it wrong? And what safeguards can I put in so that they don’t do it wrong?”

+

JESSICA:  Mmhmm.

+

JAMEY:  I think that’s a huge part of our jobs. But I think you’re right. I think extending that to be about morality and not just usability is important. I just have to figure out how to do it. It’s not just my job to figure it out. We can all think about it.

+

ASTRID:  Well, I think it helps to just ask the question.

+

JAMEY:  I agree.

+

JESSICA:  Yeah.

+

JAMEY:  I think getting people thinking about it is a huge thing. Because I had never thought about this, really, before I saw Rogue One, like I said. And it was scary, because I’m like, “I’m a good person. I wouldn’t purposely do something that I think is wrong.” But until you’ve asked the question and thought about it, you never know what you’re going to do, I guess. And at that moment, I felt like I didn’t know what I would do in that situation. And now that I’ve asked the question and talked to people about it and thought about it, I feel like I do know what I would do. And so, I feel much less anxiety about it now. And I feel like the more I talk about it, maybe other people will think about it, too. Hopefully.

+

JESSICA:  I had two things I wanted to follow up on. Your first job. You said one of the owners was a developer and even though he didn’t have a lot of time, you said I learned a lot from him because he was really brilliant. Does brilliance cause someone to be able to learn from you? Or is there some intermediate step? Or something different?

+

JAMEY:  I think brilliance does allow someone to learn from you. I think being a good teacher definitely, obviously, helps someone to learn from you, even if you’re not a genius, which this person was. But I think if you really want to learn from someone who’s a genius, you can learn from them without their consent. [Chuckles] Like if you just observe things that they do that are really brilliant and think about why are they doing these things and how can I emulate these things? There’s stuff to be learned there. Obviously if someone is also a good teacher, that’s a great combo. And he did teach me some stuff. It wasn’t that he was a bad teacher. It was just that he didn’t have the time to devote to me all the time that I would like. But I think picking out people who you look up to in that regard and just watching them very intently and observantly, you can learn things from them, even if they’re not trying. If you’re trying. At least one person has to be trying.

+

JESSICA:  Interesting.

+

JAMEY:  Do you agree with that?

+

JESSICA:  Yeah. At the time you were inexperienced. So, there was an infinite amount of stuff to learn. And you had the energy to devote to that careful learning. I wonder if there are some people that we think are brilliant that if we put the effort into learning from what they do, we’d find out they aren’t.

+

ASTRID:  I agree.

+

SAM:  [Chuckles]

+

ASTRID:  I think we slap that label on people because they’re doing something that feels like we don’t know how to do that. And then we miss the people who are doing what they’re doing so amazingly that it’s so seamless we can’t even see it, unless you’re really looking.

+

JESSICA:  Yeah, the real genius makes it look simple.

+

ASTRID:  Yeah.

+

JESSICA:  But then if you look closely, you will learn.

+

ASTRID:  Yes, of course. But I think part of it is just, I feel like sometimes our culture has this idea about genius, like some people have it and some people don’t. And genius are these people that do things that nobody can do. And I think sometimes it’s like, when you see them, it’s the combination of a lot of things they’ve gotten really good at and that’s why they seem so otherworldly. And then we kind of confuse that with people who are just loud about what they do.

+

JESSICA:  Mm.

+

ASTRID:  You know, like, “I’m awesome. You have to love me.” And then we’re like, “You must be a genius.” And then they’re really not.

+

JAMEY:  I think if you want… I agree with you. But I think that if you want to be critical about that, that’s a pretty easy thing to be critical about. I think that kind of genius façade that you’re describing is a façade that kind of crumbles pretty quickly once you look closer at what someone is doing.

+

ASTRID:  Yeah, I agree. I just don’t know how much time we spend to look for those little things anymore.

+

JAMEY:  That’s true.

+

JESSICA:  That is the limitation, the time we have to process the information. There’s so much more that we… more zines than we can possibly read. [Chuckles]

+

SAM:  Yup.

+

JESSICA:  And yeah, and more blogs and more people that we could possibly learn from than we can possibly learn from.

+

[Laughter]

+

JESSICA:  There’s one other thing you said early, Jamey, that I thought was important. You were in your animation classes and there was a lot of code. And you said you loved it and everyone else seemed to hate it. So, you recognized that that made you special and ran with it.

+

SAM:  Yeah, that’s not a reaction that a lot of people would have. They would think, “What’s wrong with me? Maybe I shouldn’t love this.”

+

JESSICA:  Yeah. If you can see that thing that is different that makes you different from other people, then that’s where you can find your special job that’s actually fulfilling.

+

JAMEY:  I think there are some kinds of people that are afraid of being different from other people. And then there are some kinds of people that are afraid of being the same as other people.

+

JESSICA:  That’s so true. That’s like welcoming of difference is easier for some people than others.

+

JAMEY:  But I even think, originally I was going to say some people are afraid of being different and some people like being different. But I decided to… I think it’s even more than that. I think that some people who like being different are actually afraid of being similar. And I feel that in myself, sometimes, I think.

+

SAM:  I feel like there’s a Portlandia sketch about that.

+

JAMEY:  There’s a Portlandia sketch, I feel about everything, every episode we talk about. We could just… in fact, you could just watch Portlandia instead of listening to Greater Than Code.

+

[Laughter]

+

SAM:  You could, but please don’t.

+

JESSICA:  No, no. Our podcast is good.

+

JAMEY:  I’m just kidding. Don’t do that.

+

[Laughter]

+

JESSICA:  So, I wanted to bring it back to your superpower. And how can you share your superpower which does not transfer to an app. What is one piece of advice that you would give people who find themselves in a new city with options about where to go that evening?

+

JAMEY:  Okay. I’m going to give away part of the secret.

+

JESSICA:  Ooh, goody.

+

JAMEY:  And it’s great because it’s related to what we were talking about. But the way that the Fharlanghn sense works is being very observant. I’ve had people say to me something like, “You’re cheating. You’re not really using the superpower. You heard about this place from someone else who went to Montreal four years ago and that’s how you know about it.” And I’m like, “Yeah. And the fact that I remember what somebody else said about a place in Montreal four years ago and remembered it enough to look it up and go to it, that is what the superpower is.” [Chuckles]

+

SAM:  Right. To somebody like me with memory problems, that is a freaking superpower.

+

[Chuckles]

+

JAMEY:  But like I catalog information about places that I’ve heard people say are cool or read about or a stranger told me about. I catalog that information and I’m observant about what sounds like it would be fun. And then I remember it. And I think that what Astrid was saying about, are we observant about things in our lives? Do we have time or whatever? You don’t have the time and energy and mental RAM to be observant and catalog information about everything that you ever hear from anybody. You have to prioritize what’s important to you. And to me, this is what’s important to me. And so, I categorize it. And then it coagulated into the superpower.

+

JESSICA:  So, to turn the question to our readers, what do you want to be a genius about?

+

JAMEY:  And what kind of information do you have to catalog to get there?

+

JESSICA:  We can’t all hold it all so we each get to be special with the piece we…

+

JAMEY:  [Chuckles]

+

JESSICA: Focus on. What do you love that other people don’t love quite as much?

+

SAM:  And thank you listeners. We’ll end it there. We will be back at you soon with a new episode. Meanwhile, if you like the sort of things that we do, the conversations that we have here, please support us on Patreon. We all as panelists do this show for free because we love it. But the production costs are not insignificant. It takes money to pay Mandy to do the wonderful editing that she does so that you get the interesting bits without all the uhm’s and ah’s. And it takes a bit of money to pay for transcriptionists so that our show is searchable and accessible. So, if you’d like to help us with those costs, go to Patreon.com/GreaterThanCode and help us out. And any donation will get you into our Slack community as well where we have a couple of hundred people being really, really nice to each other. Anyway, thanks very much. We’ll be back at you soon.

+

 

+

This episode was brought to you by @therubyrep of DevReps, LLC. To pledge your support and to join our awesome Slack community, visit patreon.com/greaterthancode.

+

To make a one-time donation so that we can continue to bring you more content like this, please do so at paypal.me/devreps. You will also get an invitation to our Slack community this way as well.

+

Amazon links may be affiliate links, which means you’re supporting the show when you purchase our recommendations. Thanks!

+]]> + Panelists:

+

Jessica Kerr | Sam Livingston-Gray | Astrid Countee

+

Guest Starring:

+

Jamey Hampton: @jameybash | jameybash.com | Agrilyst |
+
Sugar City Arts Collaborative

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

01:22 – Jamey’s Superpower: “The Fharlanghn Sense”

+

02:40 – Working in Agriculture

+

04:03 – Theories on Automation

+

05:56 – Pivoting Into Computer Science and Software Development

+

10:35 – Feeling Like You Need to Know Everything

+

Stella Report from the SNAFUcatchers Workshop on Coping With Complexity

+

15:47 – ‘Zines and Being a ‘Zine Librarian

+

27:50 – The Beauty of Art and Technology and Forming Emotional Connections to Things

+

Floppy Music DUO – Imperial March

+

35:26 – The Death Star => Ethics in Technology and Taking Responsibility/Being Accountable for your Code

+

Malcolm Gladwell: The strange tale of the Norden bombsite

+ +

+

49:42 – Brilliance and Learning From Others Without Consent

+

54:49 – Adv]]> + Panelists:

+

Jessica Kerr | Sam Livingston-Gray | Astrid Countee

+

Guest Starring:

+

Jamey Hampton: @jameybash | jameybash.com | Agrilyst |
+
Sugar City Arts Collaborative

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

01:22 – Jamey’s Superpower: “The Fharlanghn Sense”

+

02:40 – Working in Agriculture

+

04:03 – Theories on Automation

+

05:56 – Pivoting Into Computer Science and Software Development

+

10:35 – Feeling Like You Need to Know Everything

+

Stella Report from the SNAFUcatchers Workshop on Coping With Complexity

+

15:47 – ‘Zines and Being a ‘Zine Librarian

+

27:50 – The Beauty of Art and Technology and Forming Emotional Connections to Things

+

Floppy Music DUO – Imperial March

+

35:26 – The Death Star => Ethics in Technology and Taking Responsibility/Being Accountable for your Code

+

Malcolm Gladwell: The strange tale of the Norden bombsite

+ +

+

49:42 – Brilliance and Learning From Others Without Consent

+

54:49 – Adv]]> + + + + clean + No + no + no + 58:44 + Mandy Moore + + + 061: Destruction-Focused Development with Safia Abdalla + https://www.greaterthancode.com/podcast/061-destruction-focused-development-with-safia-abdalla/ + Wed, 03 Jan 2018 05:00:07 +0000 + Mandy Moore + http://www.greaterthancode.com/?post_type=podcast&p=1083 + + + Panelists:

+

Jasmine Greenaway | Jessica Kerr | Coraline Ada Ehmke

+

Guest Starring:

+

Safia Abdalla: @captainsafia | safia.rocks | Zarf | Tanmu Labs

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

00:53 – Safia’s Superpower: Sight

+

03:04 – Learning Languages — Both Human and Programming

+

The Sapir Whorf Hypothesis

+

07:56 – Being Empathetic in an International Perspective and Building Universal and Approachable Tech

+

11:19 – What does success look like for minorities in the Silicon Valley monoculture?; Being Tokenized

+

Admiral Grace Hopper

+

21:59 – Accepting Speaking Engagements Because of Who You Are (i.e. as a woman, minority, etc.)

+

24:07 – Writing Things Down to Balance Prioritizing Decisions

+

30:46 – Defining “Happy” and Always Feeling the Need to Do More

+

37:02 – Destruction-Focused Development

+ +

+

43:58 – Safia’s Early Coding “Shenanigans”

+

Reflections:

+

Coraline: Being thoughtful about planning finite energy and labor. Also being content vs being happy.

+ +

+

Jasmine: Exploring feelings about being represented at events.

+

Jessica: Broadening perspectives that most of us were born into.

+

Safia: Talking about the Silicon Valley monoculture, being content vs happy, and tokenism.

+

Transcript:

+

JASMINE:  Hi and welcome to Greater Than Code Episode 61. My name is Jasmine. And with us on the panel today we have Jessica.

+

JESSICA:  Good morning. I’m Jessitron and I am thrilled to be here today with Coraline Ada Ehmke.

+

CORALINE:  Hi, everybody. And I’m happy to introduce our guest, Safia Abdalla. Safia started building HTML websites when she was 11 and writing Python and JavaScript since she was 13. For a little under a decade, she’s been a curious young technologist using computers to make cool things and share them. Now, she can be found speaking at conferences, blogging, contributing to open source, and working on her startup. Safia, so happy to have you here. Welcome.

+

SAFIA:  Thank you so much for having me.

+

CORALINE:  Our standard question that we start every podcast with is, what is your superpower and when and how did you discover it?

+

SAFIA:  I would say my superpower is sight. One of the things that I pride myself in is being the kind of person who can just sit back and observe a room and look at people’s interactions and see how they’re talking with each other and what they’re sharing, and use that to inform my interactions or solve problems or work with them. So, I would say just having this empathy and this ability to feel and observe things and watch people would be my superpower. It’s not as cool as being invisible or being able to fly, but it works.

+

CORALINE:  Cool. And were you always able to read a room like that and understand where people were coming from, or is that something you developed over time?

+

SAFIA:  So, I think it kind of relates really strongly to my background as an immigrant. My family moved to the United States when I was seven years old. And when I moved here I didn’t really know any English. I had a lot of trouble interacting with people and making friends. And so, one of the ways that I would figure out what was going on in a place was just to sit back in the corner and watch what people were doing and see if I can gather some sort of understanding of what was going on around me. I think it started from there, from trying to just understand this new setting I was in and learn what was going on and evolved to me just reading a space and figuring out what I can do to make myself useful to the people in it, or figuring out how to interact with those people.

+

CORALINE:  That’s so cool. That kind of reminds me, about 10 years ago I went with my grandmother to Germany and Poland. She hadn’t been back to Poland, where she grew up, since World War II. So, I took her on this trip to go back to her home. And all of the relatives we were traveling with, only one of them spoke any English at all. And my German is extremely rudimentary. I can talk in first-person present and that’s about it. So, I did a lot of sitting around listening to people speaking German which I could kind of follow what they were saying, but yeah, you’re right. That did give me a lot of time to observe their interactions and step back and see what they were saying without saying anything.

+

SAFIA:  Yeah. I agree. And I think you brought up something really interesting about learning different human languages. So, German, Spanish, French, et cetera. That I think has been useful is, as someone who’s been programming for a long time I’ve kind of gotten to the point where learning a new language is second nature to me. I pretty much understand all of the ropes. It’s just learning the syntax. And I think one way that I’ve learned to empathize with people who are completely new to the industry who are just starting to learn how to code is thinking about my experiences learning new human languages. Because I think that’s the best way to understand what it’s like to come into tech and not know Ruby or Python or JavaScript or anything and have to learn that from scratch. It helps me just relate to people better. So, I can definitely understand you having to use German in a setting that was not normal to you and what that was like.

+

CORALINE:  I think it’s so valuable too, with programming languages to know more than one language, because I think what happens is you start to understand underlying concepts outside of syntax. And I think that makes people better developers long-term, because you’re thinking about solving problems in the abstract and then translating them into syntax, instead of just trying to look for the canonical solution in the language that you happen to be working in.

+

JASMINE:  Yeah, I agree. And I would also say, just different languages that have different characteristics and different sayings and just different ways of looking at how we communicate, I would say that programming languages are the same way. The way we actually write the code, the way that we… I guess just difference in style and how we target solving different problems can differ between languages.

+

JESSICA:  Yeah, it’s one thing to learn the syntax of a language and another thing to learn how to think in it, because they do each make you think differently. So yeah, I thought it was interesting that you compare learning a new human language to learning your first programming language. As in, that’s a whole lot harder than learning your second or third programming language.

+

SAFIA:  Yeah, because I think part of learning your first language is learning things like if statements and while loops and for loops, and the concepts that underpin, this might be a fancy way to say it, but just the algorithmic thinking around writing software. And then once you figure that out, it’s just about learning, what is the special way that this language does for loops? What is the special way that this language addresses an issue that another language solves poorly? Whereas when you transition to learning a new human language, it involves learning a new set of grammar, a new way of thinking about the world almost. I think there’s a close connection between what we speak and how we see the world. And the transition into learning a new human language and the way it affects the way you see the world is very similar to learning your first programming language, learning algorithmic thinking and problem solving and how that changes the way you see the world and approach problems.

+

CORALINE:  Language definitely influences the way that we see the world. There’s been a lot of studies on that. And there’s this thing called Sapir-Whorf hypothesis which explicitly states that the words that we use influence the way we interpret things and events and people around us. There’s a great example of that. There was a bridge built in Europe. I can’t remember. I think it connects Spain, maybe Spain and France. And it’s the tallest bridge in the world. And the word for bridge in French is masculine. And someone did a study of the newspaper reports of the construction and finishing of this bridge. And in French, all of the words that were used to describe the bridge emphasized its mass and its strength and its material. Whereas in German, the word bridge, ‘die Brücke’, is feminine. And the German reporters use words like weightless and it floats above the clouds, and they emphasized its gracefulness. So, I thought that was a really poignant example of how language was… they’re looking at the same bridge and they’re seeing completely different things.

+

SAFIA:  Yeah, so fascinating. And I think just a great way to showcase something that I’ve been experiencing as I’ve started to adopt a more international focus with my writing and speaking in tech. it’s just the ways that developers in Germany or India or France see things differently from developers in the US. And I’ll admit that I kind of mostly lean towards presenting and blogging towards an American audience. But just recognizing and hearing back from people across the globe who read my work and realizing that they pick up on different things or that they interpret my tone in different ways has been really interesting. And that’s one of the things that I’ve made a personal focus recently, is becoming more empathetic in an international perspective. Because I would say that for the first part of my life, moving to America and having to learn English, it was a lot about conforming to American culture and fitting into the standard. And now I’m realizing that I kind of need to go back and connect more with the outside world, now that I’ve figured out how to speak English and how to live in America and how to interact with people in America. It’s just learning how to do that for people in other countries.

+

JESSICA:  Oh, that’s beautiful. Can you give us some examples of ways that developers outside of the US think differently?

+

SAFIA:  So, one of the big things that come to mind when I think about how developers outside the US think a little bit differently than developers who are local is the attention to linguistic diversity that European developers have. And I think that comes as a consequence of the fact that Europe is about, I think smaller than the land mass of the United States but within that small area you have lots of different languages and lots of different cultures interacting with each other. So, one thing that I’ve found that is a little bit more common in developers in Europe is just a stronger focus or a bigger awareness of differences in culture within a particular region, or differences in language within a particular region. And I think that developers in America haven’t totally figured out because we’re used to looking at the world from the perspective of a Silicon Valley startup or from our tech hubs. Whereas if you’re in Europe and other places around the world, you’re more attentive to the nuances in language and thinking that occur even within a small region of the world. [Inaudible]

+

CORALINE: I would argue that Silicon Valley companies do the same sort of thing except without that awareness. They’re influenced by the culture of a small geographic area because they think of their users as being exactly like them, right? And that doesn’t apply even across all of America. My dad expressed a little frustration. He lives in a very rural part of the country and doesn’t have high-speed internet. He has satellite internet which is throttled and metered. And so, a lot of the applications, the web apps that people develop assume a broadband connection when the significant portion of the country doesn’t have access to that. And as people in a bubble in Silicon Valley just assuming that everyone across America is just like them, then we see the same thing when those companies try and go international. They assume American culture, and specifically Silicon Valley culture, exists everywhere else in the world, too.

+

SAFIA:  Yeah, that’s a great way of putting what I was trying to say. Everyone seems to think that, or I think most developers in Silicon Valley and our country think that everyone’s got the newest iPhone at a high-speed data connection with great internet at home. And the uncomfortable reality is that most of Silicon Valley isn’t like that. Not everyone in San Francisco has those kinds of resources. Certainly not everyone in America. So, building universal and approachable tech is really difficult.

+

JASMINE:  So, you know, this [inaudible] culture that we have in Silicon Valley, what is it like? What’s the experience like for somebody who doesn’t fit in that norm and their norm, or Silicon Valley’s norm? And what does success look for somebody who is trying to work their way up in that industry?

+

SAFIA:  To kind of establish to those who are listening or might not know me, as mentioned earlier I’m an immigrant. I’m a woman of color. So, I exist at the intersection of a couple of minority labels or minority identities. And I’ve been involved in tech for a little under a decade if you include all of my youthful shenanigans that I pulled when I was 11 and 12. But I’ve been directly engaged with different companies and different conferences and at events for probably six years now. And I’ve been this different person who doesn’t look like the “norm” in tech. And one of the things that I’ve seen in other successful minorities in tech and just in myself as I try to establish a career in the industry and develop something for myself in the industry is the fact that so often people who are not the norm in tech end up being tokenized a little bit.

+

One example that I think of, and I think this is going to be a popular example that everyone can relate to, is Admiral Grace Hopper. That name is probably recognized by pretty much everyone in the industry. There are conferences named after her. Her name gets used a lot as an example of a successful woman in tech. But one of the things I struggle with is of all of the people who know her name and know that she was a female computer scientist and one of the first, how many actually know what she accomplished? Grace Hopper had the courage to bring up the idea of a compiler in her time. This notion that instead of writing everything in low-level machine code and it being painstaking and difficult to debug, you can create compilers that could translate code in a language that a human could understand much more easily to something that a machine can process. And that idea was revolutionary. It’s the reason that we have things like startups. it’s the reason that we can even talk about people learning to code at home or at bootcamps or at universities, is because she reduced that barrier to entry. But I think so often when we talk about her, she’s tokenized for being a woman in computer science, that the intellectual and technical value of her work is overshadowed.

+

And that’s something that I think a lot of minority individuals struggle with. And something that I’m trying to struggle with is I don’t want to be remembered for being a woman of color who is an engineer. I want to be remembered as an engineer who happens to be a woman of color. And it’s so difficult because when you’re different from the mono-culture or from the norm, people want to focus on your differences, not how you’re the same. So,people want to focus on how I’m a woman of color and how that is something unique about me and not necessarily the fact that I’m a pretty darn good engineer and that I’m really great at maintaining open source projects. And that’s one thing that I’ve tried to think about a lot and dictates a lot of my interactions recently in tech, is I don’t want to be remembered for being a great woman in tech. I just want to be remembered for being a great engineer, a great business person, who happens to be a woman of color.

+

I’m sure that there’s more examples beyond Grace Hopper of people who have experienced similar tokenizations, I would say, where who they were and their identity quickly overshadowed what they did. And it’s tough to balance, because I definitely… who I am is a big part of my identity but it’s not all I am. So, playing this balancing act where I am comfortable with who I am and I recognize that it’s part of my journey, but it’s not my entire self. And I don’t want people to see me as that.

+

CORALINE:  I think that’s such a difficult balance too, because you want… I don’t want to project onto you. I want to open the way for other women in tech. I want to open the way for other transgender women in tech. I want to be a role model in some kind of way and I want to inspire people who are like me to succeed and show them, you can do these things and who you are isn’t a barrier. But like you, I don’t want to be, “Oh, Coraline’s a great transgender female engineer,” right? That’s not my identity, but it is part of who I am. And I think the struggle is being your whole self without erasing part of your identity or overemphasizing part of your identity. And that’s so difficult to navigate.

+

JESSICA:  Yeah, you just want it to be so that there are enough transgender women in tech that that’s not the first thing people notice.

+

CORALINE:  Yeah, exactly.

+

SAFIA:  I agree with that. And I would say this is a problem that uniquely falls on individuals who are underrepresented minorities. And I think that’s something important for people to recognize when they want to be maybe good allies or just good friends and colleagues of underrepresented individuals, that we do have this kind of emotional burden that we’re carrying about how we move around the industry. Do we want to be seen as a woman of color? Is now the time to showcase the fact that we’re a strong engineer? Do we emphasize this part of our identity now or this other part? And that’s just an emotional and intellectual burden that is constantly on our minds that might not be a primary focus for somebody who is part of the norm or doesn’t have to struggle with being underrepresented in the industry.

+

CORALINE:  I’m really curious about how that intersects with your conference speaking, because I know for me myself, I get a lot of invitations to speak at what I call unicorn talks where it’s like, “Oh hey, come be on this panel about women in tech,” or, “Hey, come be on this panel about X or Y.” And that’s like a hyper-focus on identity issues. I think it was Sandi Metz who said that she’ll know that the industry has changed when women in tech can go on stage talking about something other than being a woman in tech. Have you had that same kind of experience? And do you talk about your identity as part of your conference talks? Or what do you prefer to talk about?

+

SAFIA:  Yeah. So, I haven’t had any direct experiences, and I might just not be recalling them at the moment, where I’ve been invited to speak specifically about being a woman in tech. But I can tell there have been instances where a conference just realized that a majority of their speakers were white men and it’s kind of rushing to invite minority speakers. So, I’ve never been in situations where I’ve had to speak about being a woman of color. But I have been in a lot of situations where I could tell that I was invited because I was a woman of color. And those are always really hard for me to navigate, because it’s like, “Okay, do I accept this invitation because I know it will push forward my career? It’ll help expose me to a new audience. It’ll be another speaking engagement that I could use to lead into a job or some sort of other opportunity.” Or, the fact that you know somebody invited you not necessarily because of what you did or your accomplishments but because of who you are, it kind of leaves a bad taste in your mouth going into the talk.

+

And I’ve learned to just take the opportunities regardless of the reasons that I’m invited. But I definitely think that when I am invited to speak because I’m a woman of color, even if I get to propose my own topic or speak about what I like, there is an expectation by the conference organizers sometimes that I will perform a certain amount of emotional labor and discuss the issues of diversity and inclusion. And it’s not an over-explicit expectation. But it’s definitely there, that we want you to tie this topic into your talk in some way because you are of a minority identity. And sometimes I will discuss it. I think the fact that I was an immigrant is a big part of my experience in tech. But oftentimes I try to avoid it and just focus on the fact that I have been in this industry for a while. I’m curious. I’m passionate. I like to build things. I have all of these attributes that we correlate with “good engineers”. And it doesn’t really matter who I am at the end of the day. It’s what I am. Such a weird way to phrase it.

+

And I think the fact that I’m struggling to convey what I mean right now is a big part of the problem. There’s just this emotional burden and this intellectual burden around my identity and who I want to be and how I want to present myself. And I’m constantly thinking about it. And I don’t think this is just an issue in tech in particular. I think anyone who is an underrepresented individual attempting to navigate career or social life or anything is going to struggle with this. I’m not like everybody else. It affects everything I do and I always have to think about it, so how do I manage that? I didn’t answer your question at all, I think. But I think the reason I can’t answer it is because this is still an ongoing journey for me. I’m still trying to figure out what my identity is and who I want to be represented as. And am I a woman of color first? Am I a startup founder or am I an engineer? What label do I want to put on myself? Because although labels suck, our culture at large is very obsessed with them and everyone needs to have a tag on them for you to be understood.

+

JASMINE:  I myself also struggle with that. And for the first time, I listened to somebody who pretty much drew their line on the sand when it came to that. So, I was listening to a podcast and Neil deGrass Tyson was on it. And the interviewer pretty much asked him, “How do you feel about being one of the very few people of color in astrophysics?” And it sounded like he was frustrated. It sound like the question’s been asked a lot. And he sounded frustrated. And from what I understand, I think he said something along the lines that, “At the end of the day, I’m a scientist. And that’s what I want to be remembered and known as. And my knowledge is there for everybody. And I want to influence everybody.” And I had some feelings about that but for me it was just not my place to judge because like you said, everyone’s on their own journey. everyone’s still trying to figure it out.

+

And personally, I think that there’s so much value in conferences where yes, they might be reaching out because they see that you’re somebody in their… let’s just be honest about it, there’s space, who was different. And the fact that they find having that representation is… I guess in my opinion, is valuable, but also is valuable to you, like you’re saying. It’s a career booster. It opens you up to different audiences. And also, it opens you up to, just your presence in general, that somebody who is interested in maybe your technologies or somebody who maybe also identifies as a person of color, a woman of color, wants to explore something that you’re talking about and they’re excited about it. So, just being present can be just as important as a career booster. It can influence other people.

+

SAFIA:  Yeah. And I think, I talked a little bit about how it’s an emotional and intellectual burden for me personally to navigate the world as an underrepresented minority. I’ve also tried to manage the chaos that comes into my head when I address those topics by just having a mindful approach to living. And this is for my personal life and for my career as well. Starting to be really introspective about my own goals. And am I doing something because I think it’ll align with the status quo or it’ll make me look more normal in this industry where I’m not normal? Am I doing something for me or am I doing it as a representative of a larger identity or group? And just sitting down and having really honest and sometimes hard to have conversations with myself about why I’m doing what I do and what part of it is for me and what part of it is for people who are like me who will follow me in the future. And what part of it is just to conform and to not feel like I’m different all the time. I’ve been trying to work on that a little bit more and I’ve developed techniques for just existing in this industry, this chaotic, always moving, always busy industry, in a more mindful way.

+

JASMINE:  Do you have any tips for us that you’re willing to share?

+

SAFIA:  For those of you who follow me on Twitter, you probably know that I am totally obsessed with notebooks and paper and writing things down. And that’s just because I think, especially for us as technologists, we’re so busy just clackety-clacking away on a keyboard and regurgitating a lot of our thoughts very quickly to a machine, which is great in some cases. But sometimes I think it’s good to grab a pen and paper and just slowly write out your ideas. And I find that it’s been very therapeutic, because that kind of buffer or that lag between you having an idea and you writing it down on paper slows down your mind a little bit and helps organize information. So usually, I say that as a precursor, that a lot of my tips will involve writing things  down, just because I find that it helps slow my mind down and clear my thinking as opposed to typing things in an email or notepad or something like that.

+

And I would say one of the first things that I’ve started to do recently,, and this is when it comes to big career decisions, for me a big career decision is like I’m invited to give a keynote talk at a really interesting conference or I’m invited to a residency program for my startup or I’m given a job offer, the one thing I like to sit and do is sit down and draw a quad diagram. And it’ll have two columns. And the columns will be me and others. For me, ‘others’ is the people that I prioritize in my life. So, it’s my family, It’s my immediate circle of friends. My immediate circle of mentors and associates. And then me is just, what is this, it’s me. And then I’ll have multiple rows and the rows will be 6 months, 1 year, 1 and a half years, and 2 years. So, just time. And I’ll write out, in six months, assuming that I take this offer or I do the best I can at this job or I speak at this conference and it turns out lending itself lots of other opportunities, what will this do to make me happy and what will this do to make others happy?

+

And I’ve found that this is a great way for me to balance prioritizing my own feelings versus the feelings of others, because one of the big things that I struggle with especially as a young person is I have a lot of mentors and friends and family who want me to do things that I don’t want to do. So, physically writing down how something will make me happy versus how it’ll make others happy helps me manage those distinctions. And then I’ll go through and I’ll fill out that chart and I’ll think about the total value of my own happiness and success versus the happiness and success that others might derive from my actions. And I’ll just have a conversation with myself. Do I care about the fact that if I do this, other people will be happy but I won’t? Do I care about the fact that I’ll be happy but others will be maybe a little bit upset? And  just sit down and have that conversation about how my choice affects not just me but others long-term. So, that’s one of the techniques that I utilize especially when I’m faced with decisions. Things like referrals where somebody referred me to a position or things like a job offer where my entire family wants me to take it but I don’t want to take it. Or things where my friends really want me to do something that I don’t want to do and vice versa where I can be very stubborn and headstrong and want to do something that other people don’t necessarily support or totally believe in, and just managing those distinct things.

+

So yeah, that’s one technique I utilize. And that’s more structured and chart-based. Others, I think it’s just really useful to write out your feelings sometimes. And I think that’s advice that’s been given a lot to a lot of people. And I think it’s because it genuinely works. Just grabbing a pen and paper and writing it all out. And if it helps, if it’s something negative that you want to take it out of your mind or your head space, just burn it at the end. But just trying as much as I can to take a lot of the conversations that I have about myself and my career, where I want to go, from my head to a physical medium like paper.

+

JASMINE:  That’s a great perspective. I just recently started my first journal ever. And it’s really been a great exploration into the things that I’m feeling. And for a bit it was a little bit scary to write those things down, because I’m like, “This is me. This is mine. Why do I want to put this in this book?” But it’s really just therapeutic and it just feels really good to just get it out and get it there on paper and just being honest with myself. And that’s a great, great tip.

+

CORALINE:  I did journaling a lot when I was younger. And when I wanted to start again, I found writing on paper very frustrating because I was thinking much faster than I could write. Plus my handwriting is super bad. So, I actually did video journaling for a while. I would just literally open up Photo Booth and start recording and take 5 or 10 minutes to express what I was going through and what had happened. And I found I could discover more things that were actually on my mind that way, because I didn’t feel like I had to have a narrative flow. I had random access as opposed to sequential access to memories. And get it out really quickly and skim over details if I wanted to without feeling the need to explain them. So, I think that’s an alternative, too. But I definitely see the value of putting things down on paper, too.

+

SAFIA:  I can really relate to the taking video journals. I think it’s a really great alternative to people who think writing is too slow. One of the things that I actually did when I was working on building out the product for my startup, Zarf, was do a weekly podcast where it was kind of like an audio journal of what I’d worked on that week and what was on my mind. And I would just sit down in my bedroom, usually, at 10pm on a Friday, and I would just record what was going on, what I’d done, what was on my mind. And I would share it out with everyone on the internet. And there were quite a few people who were listening. There was that intimidating component that I was actually being heard when I spoke, that it wasn’t just this direct contact between myself. But I agree that audio and video are great ways if you want to just dump and not necessarily have to structure.

+

And I think sometimes, that’s another thing you have to be mindful about is, do I want to structure and take things slow and really think slowly about what’s going on in my head? Or do I want to release? That’s a choice that we have to make. So yeah, I think that video journal idea is really good. And I should probably start it up again. I’ll definitely try that.

+

JESSICA:  You mentioned the very conscious definition of success. And you defined it as you being happy and others being happy in the medium and long-term. How do you define happy? Is it like warm, fuzzy feelings? What does success mean beyond feelings of “woo!”?

+

SAFIA:  So, I might get really dark here, but I don’t think true internal happiness exists, that there will ever be a case where you’re just satisfied with everything in your life. I think what I strive for is general ‘contentness’ in the things that matter to me. And I have some big life priorities that I want to accomplish. Some of them are personal so I can’t share them here, but some of them are career-oriented. Like I want to one day run a small tech company that has a diverse, dedicated, inclusive, and empathetic staff of engineers, designers, managers, et cetera. And that’s just a personal goal for me. And ‘contentness’ in that goal is once I’ve achieved it and just checked off all of the boxes in that goal. And then there are some things that are a bit less defined, like not very specific vision that I just laid out. But maybe I want to grow my technical skills in a particular language or framework.

+

And for me, ‘contentness’ is just, it’s so hard to explain because it’s, I would say it’s a deep sense of self-satisfaction, of being okay with yourself. And that’s such a hard thing I think for a lot of people to get or to achieve. It’s just being okay with who you are as things are and not striving for more. One of the things that I struggle with when I think about success and my vision of being content with the way things are is I’m a bit of a perfectionist. And I’m the kind of person who will check off one thing and immediately want to do the next. And I have this to-do list mentality that most people I think glamorize and think is the pinnacle of productivity. But for me, I’m just never going to be happy with what I’ve done. I’m always going to want to do more. So, success for me along that dimension is just getting to a point where I don’t feel like I need to do more, where I’ve conquered the intellectual and mental tick that I have that is always wanting to do something else.

+

JESSICA:  But, would you even be you if you didn’t want to do more?

+

SAFIA:  Oh my goodness. That’s a great question, because I struggle with this all the time. Like, “But wait. Is this aspect of my identity where I’m always a do more kind of person, is it me? Is it all I am? Am I going to eventually just hurt myself with my obsession of always doing more?” And it’s so difficult because I think with something like my need to always check things off a list and to always do the next thing, it’s great. Because I can be really productive. I can accomplish a lot. I can be a very dedicated and motivated person. But I can also just be consistently deeply unsatisfied with the way things are. And it’s this double-edged sword that I have to navigate. And like I was saying earlier,  this is another thing that I’m working through in my journey of mindfulness. It’s just figuring out, am I this to-do list checker always doing the next thing kind of person? Or is there going to be a point where I can say, “Safia, enough. Be happy. Be content with what you’ve done.” And yes, it’s [Laughs] so difficult to figure out. But I’m working on it.

+

JESSICA:  Gosh, I can’t imagine being content with what I’ve done. But I do find myself content in the doing.

+

SAFIA:  Yeah, I can relate to that. I’m definitely the kind of person who is most  satisfied when I’m intellectually, physically, and mentally busy or occupied. But I can’t spend the rest of my life like that. Or can I? I have no idea. I’m also only 21 years old. So, I’m sure I’ve got several [Laughs] more years to figure this out. And I think one of the tough things is I do have that part of my personality that is very motivated and checklist-oriented and wants to make lists for everything and do the next thing. And I think the hard thing is I have that personality on my own but I also exist in an industry that ‘fetishizes’ it and treats it as this holy grail of productivity and success, is you’re just the person  who always make lists and wants to do the next thing. I don’t know, Jessica. Do you feel like you are also… it seems like we’re the same kind of person where we’re always looking to do the next thing. Can you relate to that?

+

JESSICA:  Yes, yes. And it’s never done. And yeah, I work at a startup now and I’ve just come to realize that there are many things that are not okay. This piece of documentation, not okay. This particular bug, not okay. This missing feature. It’s just, how can we even? But now, it is okay. We can’t do everything at once. The fact is we’re doing it and we’re looking around for information on which particular piece is affecting people and is most important right now. And so, I can be happy within the process. But I really have to be content with, “we are working on making the important things okay,” because it’s never going to be totally okay. It’s never going to be up to my standards. And if it ever is, I better raise my standards.

+

SAFIA:  Yeah. And I really like the point that you made there, that I think ‘contentness’ is far more elusive than happiness to find. Being content is for me personally far more satisfying than being happy.

+

JESSICA:  Yeah, happiness is like a fleeting feeling of ‘woo!’. It’s supposed to come and go.

+

SAFIA:  Yeah. That’s a great way to put it.

+

JESSICA:  Yeah. And one reason that I can never be content with the software that we have is because we don’t yet know what’s the most useful thing for it to do. And if we knew that, then we would already have written it. And then if I wanted to get it actually right, I would have to go back and write it again.

+

SAFIA:  Yeah, I agree. And this is something that I had a really extensive experience with when I was working on launching my startup product. And I actually ended up building it in four iterations before it officially launched the beta. And as of this recording, I’m working on doing yet another rebuild of the product. And I kind of tweeted a little bit about this before that I think it’s very healthy to rebuild things. And there is a part of me that from a philosophical and emotional perspective is really into destroying things I make and making them again. I don’t know what that says about me. But I’m definitely gone to a point where I’m comfortable building an entire app, deleting everything (don’t worry it’s backed up on GitHub) and then starting to build it again.

+

This has two effects for me. The first is I don’t become obsessed with the code. I think it’s more important when you’re building a product to become obsessed with what it means for your users and how it’s going to solve a particular problem than the actual characters that you write in a text file and execute or run. And that helps me be the kind of engineer who’s more focused on the problem than the particular solution they’ve crafted. And another thing I think it’s helped me do is the process of rewriting something helps me get a better sense of the problem with each iteration. Like in the destruction of the first iteration of an app or the first build, there is this process of learning that you can bring into the next version.

+

I know I’m kind of presenting this really huge scary situation where I build an entire app and then I start over again. But I also try and do it in small iterations. And this is something that was inspired by my friend Corey Haines, who’s on Twitter @CoreyHaines. And he talked a little bit to me about one of the development philosophies that his startup uses, which is they have feature branches that only last for a day. So, you have a day to get the code in for the particular feature or fix that you’re looking to implement and then it’s cleared out at the end of the day. And the effect is that A, you get to iteratively learn and be able to start from scratch every day and not have this branch that hangs around for three weeks that you’re working on (which I think we’ve all had experiences with). And the next is you start to think more about building things smaller and smaller. And eventually getting into a big feature or a big fix. And I think that’s the holy grail for me as an engineer is getting to a point where I can look at a problem and break it down to the smallest possible parts it can be and then work on those independently.

+

CORALINE:  That’s so important. And I’ve been in this industry for over 20 years now and when I started we did a lot of prototyping. And the rule with the prototype is that you would write it and throw it away. The prototype was your learning exercise and it allowed you to explore different options for how to solve a given problem. And when you were done with it you literally threw it away. And we did it. And I think that with Agile, that’s something we’ve lost. Because we’re constantly thinking in two-week iterations. And you can’t spend the next sprint rebuilding what you did last sprint because that has to be done. It has to be cumulative, right? And I love the idea of throwing code away. It’s so freeing. And knowing that it’s okay to experiment and knowing that it’s okay to get it wrong because this isn’t what the code’s going to look like in its final form, I think that is so valuable. I wish we were more free in this industry to do things like that. Partly I think we don’t do it because we’re afraid. Partly because we get attached to the things that we create. And partly because our development methodologies don’t support it.

+

SAFIA:  Yeah. I think you just did a great job laying out all of the reasons that I think this happens. And I’m hoping that at some point I’ll have the chance to write a little bit more about my, let’s call it destruction-focused development. [Chuckles] But just the idea of being comfortable deleting things and not being attached to code is really difficult to manage, especially when your label is software engineer and that is what you do. And maybe not the ‘summarity’ of your existence as job but a big part of it.

+

CORALINE:  So Safia, when you destroy a branch, when you destroy the app and build it again, how tempted are you to hold onto precious parts of the code where you’re like, “This was really, really hard. I don’t want to have to write that again. I’ll just copy that one piece over.”

+

SAFIA:  Oh, I actually do that quite a bit, I’ll admit. So, it’s not completely destructive. But I would say it’s largely for things that are boilerplate or just logic that I know I’m going to need elsewhere that I can just copy over, which I’m comfortable with. But there are definitely times when I’ve had to write a lot of logic for something and then copy it over. And there are cases where it worked out well, where I was able to progress successfully with the new iteration of the app. And then there were cases where by bringing along that code, it actually brought all of the baggage that was needed to make it possible.

+

And I think that’s one thing I try to be mindful of, is every line of code has baggage no matter how insignificant. And when you bring it into a codebase, you’re bringing all of its baggage. Sometimes baggage is okay and sometimes it’s not. And I’ve definitely shot myself in the foot sometimes when I’ve brought a piece of code over and then I had to bring in the database migration and bring in this configuration and bring in all of this other stuff. It was just like, “Oh, come on. I could have just written this in a different way or taken this opportunity to think a little bit more about it.” But I would say in general I try to make sure that whenever I rewrite something, at least 80% of it is new, whether it’s using a different framework or focusing on different feature sets or fixing different bugs and letting other things slide. So yes, you caught me, Coraline. I am definitely guilty.

+

CORALINE:  [Laughs]

+

SAFIA:  Of copying things over. [Laughs]

+

CORALINE:  I am reminded of part of the process that I use when I’m writing music. Sometimes a song will get to a point where I don’t like it anymore. There’s something fundamental that isn’t working about the way it’s been structured or the way the parts are coming together. So, I’ll start over. And there’s a lot of temptation to say, “That guitar part was so hard to play. I’ll just bring over that one guitar part.” And I don’t do it typically. And what I try to tell myself is that the important parts of the song are the ones that I’m going to remember. And if I remember them, I can do them again. And if I don’t remember them, they weren’t important.

+

SAFIA:  That was so profound. I might need a couple of minutes to process it.

+

[Laughter]

+

JASMINE:  So, in the beginning when we just started to chat, you mentioned that you had some shenanigans back when you started coding. Can you explain or tell us about one of those shenanigans?

+

SAFIA:  Yeah. Coraline mentioned during my intro that I started to code when I was 11 years old. And I think one of the big things for me in my journey as a young technologist, young being tween to teenager, is just I had this moment where I realized I could control the machine. The machine wasn’t controlling me. And it was a huge transition in the way that I approached software because I now saw the computer as this thing that would respond to what I told it to do, not just where I would go to play Neopets and Miniclip games and whatever it is I was doing when I was 11. And you know, I miss those days so much because I was just gleefully hacking and I wasn’t doing it for work or to close issues or anything like that. One of the stories that I tell a lot and I think about it because it’s very funny is I kind of taught myself HTML. And my goal there was to make my Neopets page super awesome and glittery and the best thing ever. So, I picked up HTML and CSS. And I tinkered a lot with the visual elements of software. I did some stuff in Photoshop and InDesign and a lot of digital media type stuff.

+

But it was the summer before I started high school, I was watching a documentary series about the history of computers and it talked about Charles Babbage’s analytical engine and the ENIAC and early IBM computers, and just the entire history of the field. And the last episode talked about Larry Page and Sergey Brin and how they build Google and what that experience was like for them. And mind you, at this point I could write HTML and CSS. I was familiar with Photoshop. I knew that you could code computers or write software for them but I’ve never actually written a computer program. So, after watching that episode about Google and Larry and Sergey I thought, “I’m going to build a search engine,” because at that point in time I thought this was a trivial thing to do. So, I spent a lot of high school just in my spare time after school, on the weekends, during breaks, learning about search engines and machine learning and AI and how we manage information.

+

In this age, I built a silly toy search engine. I did a lot of machine learning related projects. I read a lot of books. And those were the best times in my career as a person in tech because I didn’t really have a goal. I wasn’t looking to be hired by a company. I wasn’t looking to get an offer to speak somewhere or to contribute to a project. I was just doing it because I thought it was fun and it made me happy. And I call those kinds of things shenanigans because there was no point to them. They were just fun and joyful. And I feel like I have lost a little bit of that sense of joy and play around what I build and how I build it that I’m kind of trying to bring back into the way I write software. But yeah, it’s been a while since I’ve been able to just have fun and do something pointless on a computer.

+

CORALINE:  It’s amazing what you can accomplish when you don’t know what the impossible is.

+

SAFIA:  Yeah. That’s a great way to phrase it. That was definitely my head space at the time.

+

JESSICA:  And you said there was no point to them, but didn’t we already establish that the whole point was making ourselves and others happy? [Laughs]

+

SAFIA:  Oh, yeah. I would say [inaudible]

+

JESSICA:  So in a way that it was direct. [Laughs]

+

SAFIA:  I would say this was… So, all of this was before I really started to think seriously about my life. I was doing this stuff when I was 14 and 15. And I was just a very self-centered teenager. [Laughs] So, the point for me was just to sit at a computer and do fun things and build cool things and not think a lot about why I was doing it or if I was going to make money off of it or if anyone was going to hire me. And I think as much as it is sometimes good to find things that make you happy or content, sometimes it’s good just to do things for the heck of it and for no reason at all other than it brings you joy at the time, as temporary as that time is.

+

CORALINE:  That’s so wonderful, Safia. We like to end every show with reflections, thinking back on the conversation we’ve had and picking out certain points or topics or ideas that were really meaningful to us. A couple of things that struck me about our conversation today Safia is first of all, the grid you described where you laid out these quadrants of what’s going to make you happy, what’s going to make someone else happy, and being really thoughtful about planning your finite energy and labor around those sorts of goals. I often find that I feel like I’m not doing enough and I haven’t defined what enough is. And I haven’t defined why I do the things that I do. So, I’d like to try that approach and see if that makes me more mindful about what my own success criteria are.

+

The other thing that struck me is the idea of being content versus being happy. And I don’t have an opinion on whether I think it’s more important to be content or to be happy. I’m actually afraid of being happy. I don’t know how I feel about being content. [Chuckles] So, that’s definitely something I want to think about some more. So, thank you for that.

+

SAFIA:  Awesome.

+

JASMINE:  I want to thank you for diving into your feelings around representation, specifically in public events like conferences and speaking and things like that. It’s something also that I’ve struggled with when an organizer reaches out to me and asks, “Hey, can you do this? Because we need more women,” or they’ll explicitly say that. And I’m like, “I understand but it also feels almost like,” you were mentioning ‘ingenuine’ in a way. And it’s really great to know that that’s not… that’s a common feeling and that I feel like I can really explore those thoughts without feeling… that’s not unique. It’s something that we all struggle with. And so, thank you for that.

+

JESSICA:  For the record, I don’t have any problem when conferences ask me, and I know they’re asking me because I’m a woman. Because I’m like, “I’m glad that y’all noticed that you needed more women speakers. And I’m glad conferences do this.” But I also don’t feel bad at all if I’m like, “No, sorry. Busy.” But my reflection from this episode goes back to something you said pretty early. You said that when you came to the US at 7 you learned to conform to standards and that now you’re returning to a more international focus. You’re able to, your phrase I think was go back and widen. You’re able to broaden your perspective because you remember reaching the perspective that most of us were born into. And that’s wonderful. That’s its own power that you came by through a lot of effort and continued effort. And the rest of us can gain that breadth too of both being able to meet American standards and understand and work with people outside of the US. We have to put in a lot of effort for that and I hope we do.

+

SAFIA:  So, I guess in chronological order, I think it was really great that we had the chance to talk a little bit about the fact that the Silicon Valley mono-culture doesn’t capture everything. And as connected as we think we are with the internet and social media and all that, there are still experiences that we don’t capture, even within our own borders in the states, that we need to think about. I also like Coraline thought our discussion about content versus happy was really great. And Jessica, you did a great job of just making me feel better about what I was going through and showing me that I was not alone and just expressing some of the ideas that I had in different and interesting ways. And finally, I thought our discussion about tokenism was really great and addressed the difficulty of the conversation for underrepresented individuals. And that it’s an ongoing journey for me and I’m sure many others. So yeah, thank you for an awesome conversation, everybody.

+

CORALINE:  Thank you, Safia. It was so wonderful to have you on the show today.

+

JESSICA:  Thank you, Safia.

+

JASMINE:  Thank you.

+

CORALINE:  I want to remind our listeners that we are listener-supported. And if you want to support conversations like the one we’ve had today with Safia, go to Patreon.com/GreaterThanCode, pledge at any level, and get access to our exclusive patron-only Slack community, which is a wonderful, wonderful, wonderful place to continue conversations and have conversations like this. So, please think about supporting this. If your company wants to support us, we have a prospectus for sponsorship on our website at GreaterThanCode.com. And thank you all and we will talk to you again very soon.

+

 

+

This episode was brought to you by @therubyrep of DevReps, LLC. To pledge your support and to join our awesome Slack community, visit patreon.com/greaterthancode.

+

To make a one-time donation so that we can continue to bring you more content like this, please do so at paypal.me/devreps. You will also get an invitation to our Slack community this way as well.

+

Amazon links may be affiliate links, which means you’re supporting the show when you purchase our recommendations. Thanks!

+]]> + Panelists:

+

Jasmine Greenaway | Jessica Kerr | Coraline Ada Ehmke

+

Guest Starring:

+

Safia Abdalla: @captainsafia | safia.rocks | Zarf | Tanmu Labs

+

Join Our Slack Channel!
+
Support us via Patreon!

+

Are you Greater Than Code?
+
Submit guest blog posts to mandy@greaterthancode.com

+

Show Notes:

+

00:53 – Safia’s Superpower: Sight

+

03:04 – Learning Languages — Both Human and Programming

+

The Sapir Whorf Hypothesis

+

07:56 – Being Empathetic in an International Perspective and Building Universal and Approachable Tech

+

11:19 – What does success look like for minorities in the Silicon Valley monoculture?; Being Tokenized

+

Admiral Grace Hopper

+

21:59 – Accepting Speaking Engagements Because of Who You Are (i.e. as a woman, minority, etc.)

+

24:07 – Writing Things Down to Balance Prioritizing Decisions

+

30:46 – Defining “Happy” and Always Feeling the Need to Do More

+

37:02 – Destruction-Focused Development

+ +

+

43:58 – Safia’s Early Coding “Shenanigans”

+

Reflections:

+

Coraline: Being thoughtful about planning finite energy and labor. Also being content vs being happy.

+