Player FM - Internet Radio Done Right
Checked 2y ago
Agregado hace siete años
Contenido proporcionado por Paul Sherer and Nick Kaufmann, Paul Sherer, and Nick Kaufmann. Todo el contenido del podcast, incluidos episodios, gráficos y descripciones de podcast, lo carga y proporciona directamente Paul Sherer and Nick Kaufmann, Paul Sherer, and Nick Kaufmann o su socio de plataforma de podcast. Si cree que alguien está utilizando su trabajo protegido por derechos de autor sin su permiso, puede seguir el proceso descrito aquí https://es.player.fm/legal.
Player FM : aplicación de podcast
¡Desconecta con la aplicación Player FM !
¡Desconecta con la aplicación Player FM !
Podcasts que vale la pena escuchar
PATROCINADO
Learn about the differences between Alzheimer's and dementia, and how Alzheimer's disease progresses. We talk about why catching the disease early can make a big difference. Dr. Sharon Cohen and Dr. Yaakov Stern walk us through the stages of Alzheimer's disease, from when there are no symptoms to when memory issues start to show. They explain the stages of Alzheimer’s and how it develops over time. We also hear from Kelly, who explains her personal experiences and concerns about developing Alzheimer’s, and what she does about it. For links to resources and information covered in this series, visit our website at HealthUnmuted.com/resources What did you think of this episode? We’d love to hear from you. Please visit healthunmuted.com/feedback to let us know! Rethinking Alzheimer’s Disease was made possible with support from Eisai Inc. [00:00:00] Introduction [00:03:10] What's the difference between Alzheimer's disease and dementia? [00:07:04] When does Alzheimer’s begin to develop? [00:09:08] What is Mild Cognitive Impairment (MCI)? [00:10:36] What is subjective cognitive decline? [00:11:59] What is preclinical Alzheimer's disease? [00:13:13] Why is it important to detect Alzheimer’s disease early? Disclaimer: The content provided in this podcast is intended for informational purposes only. It is not a substitute for professional medical advice, diagnosis, or treatment. Always seek the advice of your physician or other qualified healthcare provider with any questions you may have regarding a medical condition. Never disregard professional medical advice or delay in seeking it because of something you have heard on this podcast. Reliance on any information provided by this podcast or its guests is solely at your own risk. ©2024 Mission Based Media Ltd • April 2024 • AD-M2059…
Tech_Uncensored Podcast explicit
Marcar todo como (no) reproducido ...
Manage series 2291908
Contenido proporcionado por Paul Sherer and Nick Kaufmann, Paul Sherer, and Nick Kaufmann. Todo el contenido del podcast, incluidos episodios, gráficos y descripciones de podcast, lo carga y proporciona directamente Paul Sherer and Nick Kaufmann, Paul Sherer, and Nick Kaufmann o su socio de plataforma de podcast. Si cree que alguien está utilizando su trabajo protegido por derechos de autor sin su permiso, puede seguir el proceso descrito aquí https://es.player.fm/legal.
Paul and Nick discuss weekly topics about Technology, IoT, software design and applications.
…
continue reading
18 episodios
Marcar todo como (no) reproducido ...
Manage series 2291908
Contenido proporcionado por Paul Sherer and Nick Kaufmann, Paul Sherer, and Nick Kaufmann. Todo el contenido del podcast, incluidos episodios, gráficos y descripciones de podcast, lo carga y proporciona directamente Paul Sherer and Nick Kaufmann, Paul Sherer, and Nick Kaufmann o su socio de plataforma de podcast. Si cree que alguien está utilizando su trabajo protegido por derechos de autor sin su permiso, puede seguir el proceso descrito aquí https://es.player.fm/legal.
Paul and Nick discuss weekly topics about Technology, IoT, software design and applications.
…
continue reading
18 episodios
Todos los episodios
×E3 starts today, Sunday! goto youtube and watch it LIVE Links to topics below... Be sure to subscribe and follow on social! IG: tech_uncensored Twitter: tech_uncensored FB: /techuncensored Tech_Uncensored Notes: redux observable https://dev.to/papaponmx/a-quick-explanation-to-redux-observable--16b5 Spray Bottle design: https://alexanderellis.github.io/blog/posts/check-valve/ Open source BOON for underprivileged https://www.amasad.me/github E3 LIVE https://www.youtube.com/watch?v=1JfohG5a8y8 LEMON CSS framework https://appalaszynski.github.io/lemon/…
Please follow Tech_Uncensored: IG: tech_uncensored Twitter: tech_uncensored FB: /techuncensored Now ONE new episode every week! Topics in this week's episode (copy/paste links) Microsoft buys Github for 7.5B https://blogs.microsoft.com/blog/2018/06/04/microsoft-github-empowering-developers/ GitLAB isn't really "open source" https://akr.am/blog/posts/gitlab-isnt-really-open-source Gitlab explains it's business model: https://about.gitlab.com/2016/07/20/gitlab-is-open-core-github-is-closed-source/ New CEO of Github https://natfriedman.github.io/hello/ Roblox education https://blog.roblox.com/2018/05/inspiring-new-generation-creators-roblox-education/ Global search of repos with Bit Hub Lab https://bithublab.org/ Kill ZONE (Big Corp eats all contenders) https://www.economist.com/business/2018/06/02/american-tech-giants-are-making-life-tough-for-startups How IG algorithm works https://techcrunch.com/2018/06/01/how-instagram-feed-works/…
This weeks episode dives in to Webpack 4 release, how EASY it is, and what you can do to get started. https://github.com/webpack/webpack example: const path = require (' path ') const webpack = require (' webpack ') const HtmlWebpackPlugin = require (' html-webpack-plugin ') const CompressionPlugin = require (' compression-webpack-plugin ') const ExtractTextPlugin = require (' extract-text-webpack-plugin ') const CleanWebpackPlugin = require (' clean-webpack-plugin ') const PATHS = { app : path. join (__dirname, ' src '), dist : path. join (__dirname, ' dist '), }; mode: "production", module.exports = { devtool : " source-map ", entry : { app : PATHS . app }, output : { path : PATHS . dist , filename : " [name].js ", publicPath : " / " }, devServer : { open : true , compress : true , historyApiFallback : true , contentBase : " dist " }, module : { rules : [ { test : / \.jsx ? $ /, exclude : / node_modules /, use : [" babel-loader "] }, { test : / \.css $ /, exclude : / node_modules /, use : ExtractTextPlugin . extract ({ fallback : " style-loader ", // Could also be write as follow: // use: 'css-loader?modules&localIdentName=[name]__[local]___[hash:base64:5]!postcss-loader' use : [ { loader : " css-loader ", query : { modules : true , localIdentName : " [name]__[local]___[hash:base64:5] " } }, " postcss-loader " ] }) }, { test : / \.scss $ /, use : ExtractTextPlugin . extract ({ fallback : " style-loader ", use : [" css-loader ", " sass-loader "] }) }, { test : / \.(png | jpe ? g | gif | svg | ttf | eot | woff | woff2) $ /, use : [ { loader : " file-loader ", options : { // path where the images will be saved name : " assets/[name].[ext] " } }, { loader : " image-webpack-loader ", options : { mozjpeg : { quality : 65 }, pngquant : { quality : " 10-20 ", speed : 4 }, svgo : { plugins : [ { removeViewBox : false }, { removeEmptyAttrs : false } ] }, gifsicle : { optimizationLevel : 7 , interlaced : false }, optipng : { optimizationLevel : 7 , interlaced : false } } } ] } ] }, plugins : [ new CleanWebpackPlugin([PATHS.dist]), new HtmlWebpackPlugin ({ template : path. resolve (__dirname, " src/public ", " index.html "), favicon : " src/public/images/fav.png ", minify : { collapseWhitespace : true , collapseInlineTagWhitespace : true , removeComments : true , removeRedundantAttributes : true } }), new ExtractTextPlugin ({ filename : " [name].css ", disable : false , allChunks : true }), new UglifyJSPlugin ({ uglifyOptions : { ie8 : false , ecma : 8 , compress : { warnings : false , drop_console : true }, output : { comments : false , beautify : false }, warnings : false } }), new webpack.optimize. AggressiveMergingPlugin (), //Merge chunks new CompressionPlugin ({ asset : " [path].gz[query] ", algorithm : " gzip ", test : / \.js $ | \.css $ | \.html $ /, threshold : 10240 , minRatio : 0.8 }), new CopyWebpackPlugin ([ { from : PATHS . app + " /public/static ", to : PATHS . dist }, // Copy everything from src/public/static to dist folder // { from: require.resolve("workbox-sw"), to: "workbox-sw.prod.js" } ]), // new WorkboxPlugin({ // globDirectory: "./dist/", // globPatterns: ["**/*.{html,js,css,png,jpg}"], // swSrc: "./src/client/sw.js", // swDest: "./dist/service-worker.js" // }) ] }…
Gary Vee aquires 50% stake http://www.latimes.com/style/la-marijuana-updates-20170822-gary-vaynerchuk-acquires-50-stake-in-1526426489-htmlstory.html Youtube Music https://www.theverge.com/2018/5/17/17364056/youtube-music-premium-google-launch Xbox controller https://news.xbox.com/en-us/2018/05/16/xbox-adaptive-controller/…
Gary Vee BOOK GIVEAWAY : https://www.instagram.com/p/Bim6cqfB_iN/?taken-by=nicholasjkaufmann http://bit.ly/technewspodcast-5-10 Nick talks about the difference between domain name extensions and covers some news: Also special mention to https://www.Fueledleads.org -- Check them out for your social media leads Apple credit card: https://www.wsj.com/articles/goldman-sachs-apple-team-up-on-new-credit-card-1525966214 Ubuntu 18.04: https://arstechnica.com/information-technology/2018/05/ubuntu-18-04-the-return-of-a-familiar-interface-marks-the-best-ubuntu-in-years/…
Tech News for May 9th COPY AND PASTE LINKS IF NEEDED! ENJOY! Google I/O: https://techcrunch.com/2018/05/08/8-big-announcements-from-google-i-o-2018/ codelabs: https://codelabs.developers.google.com/io2018 BitCoin HOARDERS: https://www.bloomberg.com/news/articles/2018-05-09/bunkers-for-the-wealthy-are-said-to-hoard-10-billion-of-bitcoin google AI Blog: https://ai.googleblog.com/ GlassDoor aqcuired: https://www.recode.net/2018/5/8/17333912/glassdoor-acquisiton-recruit-holdings-1-2-billion Android P: https://blog.google/products/android/android-p/ Berlin says GO HOME GOOGLE: https://www.theguardian.com/cities/2018/may/09/fuck-off-google-the-berlin-neighbourhood-fighting-off-a-tech-giant-kreuzberg Economics of writing a tech book: https://medium.com/@rothgar/the-economics-of-writing-a-technical-book-689d0c12fe39 Run Linux on Chrome OS: https://techcrunch.com/2018/05/08/you-can-now-run-linux-apps-on-chrome-os/ email me with any questions: nick@uncensored.tech || uncensored.tech…
Show Notes: Virtlet: https://www.mirantis.com/blog/virtlet-run-vms-as-kubernetes-pods/ growing up poor: https://www.economist.com/news/united-states/21741586-team-scientists-undertakes-ambitious-experiment-which-could-change-thinking-about OpenBenches twitter account suspended: http://www.openbenches.org/blog/2018/05/twitter-suspended-our-account-and-wiped-all-our-followers/ Microsoft Azure launches CDN: https://azure.microsoft.com/en-us/services/cdn/ Microsoft "Your Phone" : https://www.theverge.com/2018/5/7/17325452/microsoft-windows-10-laptop-phone-mirror-ios-iphone-android-build-2018 Google's IoT platform open to public: https://www.engadget.com/2018/05/07/googles-iot-platform-android-things-is-open-to-all-developers/…
Face Book news by TRUST? Facebook CLEAR HISTORY (Post at bottom) Facebook Dating APP? Youtube getting $$ for ads that promote kids to cheat in school?? Jupyter receives ACM award! Jupyter site ivelope GraphQL learning with JSON GCC 8.1 released! gVisor released from Google Digital Ocean introduces Kubernetes product Learn how to stand out as a web-dev Mysterious CABINETS? Tech_Uncensored now on iTunes! (From FB Mark Zuckerberg...) --Today at our F8 conference I'm going to discuss a new privacy control we're building called "Clear History". In your web browser, you have a simple way to clear your cookies and history. The idea is a lot of sites need cookies to work, but you should still be able to flush your history whenever you want. We're building a version of this for Facebook too. It will be a simple control to clear your browsing history on Facebook -- what you've clicked on, websites you've visited, and so on. We're starting with something a lot of people have asked about recently: the information we see from websites and apps that use Facebook's ads and analytics tools. Once we roll out this update, you'll be able to see information about the apps and websites you've interacted with, and you'll be able to clear this information from your account. You'll even be able to turn off having this information stored with your account. To be clear, when you clear your cookies in your browser, it can make parts of your experience worse. You may have to sign back in to every website, and you may have to reconfigure things. The same will be true here. Your Facebook won't be as good while it relearns your preferences. But after going through our systems, this is an example of the kind of control we think you should have. It's something privacy advocates have been asking for -- and we will work with them to make sure we get it right. One thing I learned from my experience testifying in Congress is that I didn't have clear enough answers to some of the questions about data. We're working to make sure these controls are clear, and we will have more to come soon.--…
idempotent? how Will Purse build a garage door opener with wemos Longest straight path on water and land Salsify Cali Supreme court employee public domain infusioin part 2 public domaion story Void Linux serious issues Mediuim tries to prevent people from reading deleted articleso n WayBack Machine Invisible Fire about hydroflouric acid artice…
France.com seized by...FRANCE DIY microchip story GOOGLE co-founder warns of AI Google median pay 200k?? HOw to get better sleep? Lessons from building static analyisis tools at Google Life...FAKER only 9,096 stars in sky???
NPR RETRACTED ARTICLE TESLA MODEL-3 stripped Seattle city laws and the guy who is fighting how you can change world by learning algo's Movie Pass drowning restrictions Java Eclipse fallen French govt upgrading security with Matrix Millionaire's buried treasure Illegal PRIME Square buying Weebly
Belgium declares LOOT BOXES GAMBLING/Illegal EC2 T2 explained Bubble Drew Cloud === PHONY Traffic and WAZE DRUPAL exploit MICROSOFT repair cds === JAIL
Medicare will require hospitals to post prices online TC39 PROPSAL for pattern matching Go statement considered harmful Felon seeking help? NySQL Release 8.0 FREE public courses for AI from Microsoft NGINX release 1.14 How To Become A Bank
NODE.JS 10.x released google geolocating FREE WeWork buying JUNK BONDS Javascript V8 improved code-caching Jenkins for Kubernetes
Links from the show: Stripe Billing Spectrum.chat Payment Request API for Apple Pay Facebook QandA JSONBIN.io why one click checkouts are here please subsacribe to us on google play music podcasts and/or here
T
Tech_Uncensored Podcast

Tech News from Tech_Uncensored http://sample.com/podcasts/unknown/index.html en-us ℗ 2018 Tech_Uncensored Going through technology news in a few minutes News for the software developers uncensored@uncensored.tech Episode 2 Tech_Uncensored News for all the Software Developers News for all the software developers Episode 2 hard link Todays episode links for more info google stopping url service Facebook thieves IOS PWA's cloudflare 1111…
T
Tech_Uncensored Podcast

View this episode HERE Tech_News Tech_Uncensored News about tech and software dewvelopment en-us http://techuncensoredpodcast.blogspot.com/2018/02/episode-1.html AMD and INTEL collab, amoung other stuff Top stories so far this week in the web dev world
T
Tech_Uncensored Podcast

This is a podcast that fills the mistake I made when setting up this podcast. Paul and Nick are 2 software devs that talk about tech news for software developers. Hope you enjoy.
Bienvenido a Player FM!
Player FM está escaneando la web en busca de podcasts de alta calidad para que los disfrutes en este momento. Es la mejor aplicación de podcast y funciona en Android, iPhone y la web. Regístrate para sincronizar suscripciones a través de dispositivos.