This guide will show step-by-step how to Install Arch Linux on UEFI mode.
- Bootable Flash Drive
- BIOS
- Pre installation
- Set Keyboard Layout
- Check boot mode
- Update System Clock
| # /Users/xxx/Library/Application Support/k9s/hotkey.yml | |
| hotKey: | |
| # Hitting Shift-0 navigates to your CNPG clusters | |
| shift-Q: | |
| shortCut: Shift-Q | |
| description: Viewing CNPG clusters | |
| command: postgresql.cnpg.io/v1/clusters |
| # Use Gensim's NMF to get the best num of topics via coherence score | |
| texts = df['processed_text'] | |
| # Create a dictionary | |
| # In gensim a dictionary is a mapping between words and their integer id | |
| dictionary = Dictionary(texts) | |
| # Filter out extremes to limit the number of features | |
| dictionary.filter_extremes( | |
| no_below=3, |
| #!/bin/bash | |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # kevin gallagher (@ageis) <kevingallagher@gmail.com> | |
| # normally I divide this into separate files: .bashrc, .bash_profile, .bash_aliases and .bash_functions (also .bash_logout), but it's all concatenated here. | |
| ulimit -s unlimited | |
| export MYUID=$(id -u) | |
| export USER="$(id -un)" | |
| if [[ "$TILIX_ID" ]] || [[ "$VTE_VERSION" ]]; then |
| # ------------------------------------------------------------------------------ | |
| # tlp - Parameters for power saving | |
| # See full explanation: http://linrunner.de/en/tlp/docs/tlp-configuration.html | |
| # dir: /etc/default/tlp | |
| # Hint: some features are disabled by default, remove the leading # to enable | |
| # them. | |
| # Set to 0 to disable, 1 to enable TLP. |
Intro
| yum list installed | grep -i "graphite\|carbon\|whisper" | |
| graphite-web.noarch 0.9.12-5.el6 @epel | |
| graphite-web-selinux.noarch 0.9.12-5.el6 @epel | |
| python-carbon.noarch 0.9.12-3.el6.1 @epel | |
| python-whisper.noarch 0.9.12-1.el6 @epel | |
| Graphite Install | |
| 1. Install dependencies | |
| ansible-playbook -i hosts update_yum.yml |
| import * as models from "models"; | |
| import fs from "fs"; | |
| for(let model in models) { | |
| let attributes = models[model].attributes; | |
| for(let column in attributes) { | |
| delete attributes[column].Model; | |
| delete attributes[column].fieldName; |