Hadoop version
Hadoop fs -mkdir path
Hadoop fs -ls path
Hadoop fs -put source path
Hadoop fs -cat file.txt
Hadoop fs -touchz file.txt
Hadoop fsck path
Hadoop fs -df path
This file contains hidden or 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
| vo=gpu | |
| gpu-api=metal | |
| gpu-context=auto | |
| hwdec=videotoolbox | |
| tone-mapping=reinhard | |
| tone-mapping-param1=0.3 | |
| tone-mapping-desaturate=0.1 | |
| interpolation=yes |
This file contains hidden or 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 bun | |
| import { stat, readdir } from "fs/promises"; | |
| import { join } from "path"; | |
| const root = process.cwd(); | |
| async function html(target, baseDir) { | |
| const entries = await readdir(target); | |
| return new Response( |
This file contains hidden or 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
| /* ~/.config/gtk-3.0/gtk.css */ | |
| @import 'colors.css'; | |
| .xfce4-panel { | |
| background: rgba(255, 255, 255, 0.1); | |
| border: none; | |
| border-radius: 4px; | |
| } | |
| .tasklist button { |
This file contains hidden or 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
| { | |
| "features": { | |
| "inline_completion_provider": "none" | |
| }, | |
| "theme": "One Dark", | |
| "telemetry": { | |
| "diagnostics": false, | |
| "metrics": false | |
| }, | |
| "ui_font_size": 16, |
This file contains hidden or 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
| set number | |
| syntax on | |
| set showmode | |
| set nobackup | |
| set noswapfile | |
| set noundofile | |
| set nowrap | |
| set encoding=utf-8 | |
| set tabstop=4 softtabstop=4 | |
| set shiftwidth=4 |