Best of R2022

  1. 1
    Article
    Avatar of pointerPointer·4y

    A Visual Guide to SSH Tunnels (with labs)

    SSH is yet another example of an ancient technology that is still in wide use today. With nothing but standard tools, you can achieve the following: Access internal VPC endpoints through a public-facing EC2 instance. Expose any local server from a home/private network to the outside First, we need to prepare the server - a machine with the SSH daemon and a simple web service listening on 127.0.1:80. The web service is a simple online service.

  2. 2
    Article
    Avatar of kdnuggetsKDnuggets·3y

    Markdown Cheatsheet

    Markdown Cheatsheet is a lightweight markup language for creating formatted text using a plain-text editor. Markdown is widely-used in blogging, documentation, collaboration. It is heavily-relied upon in the R programming language ecosystem to create reproducible documents, provide a notebook interface, and format output.

  3. 3
    Article
    Avatar of pointerPointer·4y

    mikeroyal/Self-Hosting-Guide: Self-Hosting Guide. Learn all about locally hosting(on premises & private web servers) and managing software applications by yourself or your organization.

    Most self-hosted software can be installed using Docker, a packaging system which allows software to bundle their configuration and dependencies. Shipwright is a WebUI to generate templates for Yacht, Portainer, Docker-Compose, and Unraid. Dozzle is a small lightweight application with a web based interface to monitor Docker logs. Diun is a tool that receive notifications when a Docker image is updated.

  4. 4
    Article
    Avatar of quastorQuastor Daily·4y

    The Architecture of Facebook's Distributed Message Queue

    Facebook Ordered Queue Service (FOQS) is an internal Facebook tool that fills that role. FOQS provides an API that consists of the following operations - Enqueue - Add an item Dequeue The dequeue API accepts a collection of (topic, count) pairs where count represents the number of items to return from the topic.

  5. 5
    Article
    Avatar of kdnuggetsKDnuggets·4y

    12 Essential VSCode Extensions for Data Science

    Visual Studio Code (VSCode) is a free integrated development environment (IDE) It is popular among developers and data practitioners. The VSCode provides rich functionalities, extensions ( plugins), built-in Git, ability to run and debug code, and complete customization for the workspace.

  6. 6
    Article
    Avatar of logrocketLogRocket·4y

    The guide to conditional types in TypeScript

    Since version 2.8, TypeScript has introduced support for conditional types. Conditional types let us deterministically define type transformations depending on a condition. In brief, they are a ternary conditional operator applied at the type level rather than at the value level.

  7. 7
    Article
    Avatar of hnHacker News·4y

    How I cut GTA Online loading times by 70%

    GTA Online has been criticized for its slow loading times. The game takes a minute to load the common resources used for both story and online modes. GTA decides to max out a single core on my machine for four minutes and do nothing else. I was expecting vast amounts of disk reads loading up resources. But this? This is probably a bug.

  8. 8
    Article
    Avatar of css_tricksCSS-Tricks·3y

    CSS Infinite and Circular Rotating Image Slider | CSS-Tricks

    CSS Infinite and Circular Rotating Image Slider Image sliders are everywhere. There are a lot of CSS tricks to create the common slider where the images slide from left to right (or the opposite) It's the same deal with the many JavaScript libraries out there that create fancy sliders with complex animations.

  9. 9
    Article
    Avatar of tdsTowards Data Science·4y

    VSCode vs RStudio Worth the switch?

    VSCode has rapidly become one of the most popular code editors for a huge number of other languages. This writeup is for people who are very familiar with RStudio and want to see how the two compare. I decided to try VSCode for R because I wanted to see if I could use a single code editor for everything I do.

  10. 10
    Article
    Avatar of hashnodeHashnode·4y

    JavaScript Module Bundlers Demystified

    JavaScript Module bundlers are somewhat of a black box for most web developers. They are the cornerstones of building modern web applications. There are many of them out there these days, being the most popular ones Webpack, Rollup, Parcel, Snowpack and now Vite.

  11. 11
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Bash Command Line Tips to Help You Work Faster

    The Bash shell is popular in Unix-like operating systems like Mac and Linux. Use Control + L to clear the screen and Control + D to exit. Use the nohup command to spawn processes that don't end with the terminal session. Use pkill to kill processes by typing in only a part of the name.

  12. 12
    Article
    Avatar of hackernoonHacker Noon·3y

    The Best Programming Languages for Working with AI

    The most well-liked programming language for AI is Python, which is also one of the trendiest languages right now. Python is a general-purpose, dynamically semantic, interpreted programming language. Julia is a relatively new (it was released in 2012), brilliant, very fast, and flexible programming languages for technical computing.

  13. 13
    Article
    Avatar of prettierPrettier·4y

    Prettier 2.8: improve --cache CLI option and TypeScript 4.9 satisfies operator! · Prettier

    Prettier 2.8: improve --cache option and TypeScript 4.9 satisfies operator! This release includes improvements to the option added in 2.7.8. A new option has been added, and a bug that saved the cache even when wasn't specified has been fixed.

  14. 14
    Article
    Avatar of geekflareGeekflare·4y

    7 Programming Languages to Use in Data Science

    Python is one of the most powerful and flexible languages out there, and it’s also vastly used in data science. R is an interpreted language, so you can run your code without the need for any compiler. Julia takes the best from languages like Python, Ruby, Lisp, and R, combines it with the speed of C, and includes familiar mathematical notation.

  15. 15
    Article
    Avatar of rbloggersR-bloggers·4y

    Animated population tree maps

    The global population hit 8 billion today. To mark the passing an absolute population total I created some animated tree map plots in R to visualize relative past and future population totals for all countries.