18 Folgen

Paul and Nick discuss weekly topics about Technology, IoT, software design and applications.

Tech_Uncensored Podcast Paul Sherer and Nick Kaufmann

    • Technologie

Paul and Nick discuss weekly topics about Technology, IoT, software design and applications.

    Tech_News (6-10) E3 is HERE

    Tech_News (6-10) E3 is HERE

    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/

    Tech News (WEEKLY 6-4-2018)

    Tech News (WEEKLY 6-4-2018)

    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/

    Webpack 4 NodeJS

    Webpack 4 NodeJS

    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" // }) ] }

    Tech News (May-17)

    Tech News (May-17)

    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/

    Tech News (May 10th)

    Tech News (May 10th)

    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 (May 9th)

    Tech News (May 9th)

    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

Top‑Podcasts in Technologie

Passwort - der Podcast von heise security
Dr. Christopher Kunz, Sylvester Tremmel
13 Minutes to the Moon
BBC World Service
Acquired
Ben Gilbert and David Rosenthal
Lex Fridman Podcast
Lex Fridman
c’t uplink - der IT-Podcast aus Nerdistan
c’t Magazin
Mac & i - der Apple-Podcast
Mac & i