
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/
Jun 10, 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/
Jun 4, 2018

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" // }) ] }
May 23, 2018

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/
May 17, 2018

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/
May 11, 2018

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: [email protected] || uncensored.tech
May 9, 2018

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/
May 7, 2018

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.--
May 2, 2018

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
May 1, 2018

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???
Apr 30, 2018
Load more
