Getting Started With Superset: Airbnb’s data exploration platform
These instructions are for Amazon Linux Version 2
sudo yum update -y
sudo yum install python3 -yThese instructions are for Amazon Linux Version 2
sudo yum update -y
sudo yum install python3 -y| /// merges an array with ordinal numbers into a string | |
| extern crate itertools; | |
| use itertools::Itertools; | |
| fn join_int_slice(slice:&[u8]) -> String { | |
| slice.iter().map(|&a| a as char).join("") | |
| } |
| use std::fmt; | |
| pub trait Join { | |
| fn join(&self) -> String; | |
| } | |
| impl<T: fmt::Display> Join for [T] { | |
| fn join(&self) -> String { | |
| self.iter() | |
| .map(|a| format!("{}", a)) |
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>Easy access for Umlauts</name> | |
| <identifier>private.easy_umlaut_access</identifier> | |
| <autogen> | |
| --KeyToKey-- | |
| KeyCode::A, ModifierFlag::OPTION_L | ModifierFlag::SHIFT_L, | |
| KeyCode::U, ModifierFlag::OPTION_L, KeyCode::A, ModifierFlag::SHIFT_L | |
| </autogen> |
| module.exports = -> | |
| @initConfig | |
| watch: | |
| sourceFiles: | |
| options: | |
| livereload: true | |
| files: ['themes/**','scaffolds/**','scripts/**','source/**','!source/**/site.coffee','app.js'] | |
| tasks: ['shell:hexoGen'] |