This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ npm ls | |
client@0.1.0 ... | |
├── @fortawesome/fontawesome-svg-core@1.2.32 | |
├── @fortawesome/free-regular-svg-icons@5.15.1 | |
├── @fortawesome/free-solid-svg-icons@5.15.1 | |
├── @fortawesome/react-fontawesome@0.1.12 | |
├── antd@4.8.4 | |
├── autoprefixer@10.3.7 | |
├── axios@0.21.0 | |
├── history@4.10.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# A script to generate a list of tests within a rails project and output it as a csv | |
# | |
# Usage: ruby list_rails_tests.rb [output_file_path] | |
# Author: Matt Decuir | |
# Last Updated: 8/24/2021 | |
# | |
# This scrips assumes you're running it from the project root | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This script takes an iTerm Color Profile as an argument and translates it for use with Visual Studio Code's built-in terminal. | |
// | |
// usage: `node iterm-colors-to-vscode.js [path-to-iterm-profile.json] | |
// | |
// To export an iTerm Color Profile: | |
// 1) Open iTerm | |
// 2) Go to Preferences -> Profiles -> Colors | |
// 3) Other Actions -> Save Profile as JSON | |
// | |
// To generate the applicable color settings and use them in VS Code: |