随笔分类 - Tools
摘要:Flowchart.js is a great tool for creating quick, simple flowcharts in a way that keeps you out of a WYSIWYG, and keeps your productive. No more drawin
阅读全文
摘要:@Directive({ // tslint:disable-next-line:directive-selector selector: '[scrollable]' })
阅读全文
摘要:If you try to use CSS Modules in TypeScript the same way you would use them in JavaScript, with webpack’s css-loader, you’ll see an error: ”TS2307: Ca
阅读全文
摘要:Quickly get up and running with sensible automated testing scenarios written in ES6. Installing and creating your first automated tests with TestCafe
阅读全文
摘要:Configuring Google Fonts can be quite an annoying process to setup. Using Font Magician with PostCSS allows you simply generate proper @font-face decl
阅读全文
摘要:This lesson walks through setting up a Poi project using PostCSS and the popular Tailwind library for building out your styles. Poi supports PostCSS o
阅读全文
摘要:Ever wonder where those extra KB in your bundle are coming from? This lesson walks you through running Poi's build process. Then we'll add a bundle an
阅读全文
摘要:Poi ships with many webpack loaders included, but you may run into scenarios where you'll need to customize and add your own. This lesson covers addin
阅读全文
摘要:Poi uses the Vue babel presets by default, so there is no additional install required to get up-and-running. You can even use the .vue file format wit
阅读全文
摘要:Developing React with Poi is as easy as adding the babel-preset-react-appto a .babelrc and installing React. This lesson will walk you through that qu
阅读全文
摘要:Poi can easily launch an index.js file simply by running the poi command. This will launch a dev-server and automatically reload whenever you make cha
阅读全文
摘要:In this lesson we'll use prettier and lint-staged to run prettier only on files that have been changed and committed to git. This will allow you to pr
阅读全文
摘要:Do you have a standard workflow that involves setting up a specific tmux layout, or running certain commands? By writing tmux scripts, you can automat
阅读全文
摘要:In this lesson, we'll look at how to manage your history between tmux sessions, and ensure that your setup preserves your bash history between multipl
阅读全文
摘要:By using ssh, you can share a tmux session, making pair programming much easier. We'll learn how to share a tmux session with another user. For one de
阅读全文
摘要:We'll learn how to use mouse mode in tmux, including enable mouse control for resizing, scrolling and selecting panes. We'll also set keybindings in o
阅读全文
摘要:One non-obvious, but extremely useful, feature in tmux is copy-pasting text between panes. This also allows you to scroll back in a tmux sessoin. We'l
阅读全文
摘要:You can modify tmux's behavior with your tmux configuration file, .tmux.conf. You can use your tmux config to change color schemes, set custom keybind
阅读全文
摘要:Sometimes you'll want to zoom in on a specific pane within a tmux window. We'll learn to use C-b z to temporarily zoom in on one pane, as well as how
阅读全文
摘要:It's a lot easier to manage your tmux session when they have sensible names. We'll cover: How to create a new, named tmux session with tmux new -s Ren
阅读全文