I hereby claim:
- I am rjmunhoz on github.
- I am rjmunhoz (https://keybase.io/rjmunhoz) on keybase.
- I have a public key ASDarSAtuZhNxewvU7V_X4WzEErg-49yv_9r_xsMAeI_LQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
export const fromCToK = (value: number) => value * 1.8 + 32 | |
export const fromCToF = (value: number) => value + 273.15 | |
export const fromFToC = (value: number) => (value - 32) / 1.8 | |
export const fromFToK = (value: number) => fromFToK(value) + 273.15 | |
export const fromKToC = (value: number) => value - 273.15 | |
export const fromKToF = (value: number) => (value * 1.8) - 459.67 | |
export const convert = (value: number) => ({ |
I hereby claim:
To claim this, I am signing this object:
" Disable compatibility with vi which can cause unexpected issues. | |
set nocompatible | |
" Enable type file detection. Vim will be able to try to detect the type of file in use. | |
filetype on | |
" Enable plugins and load plugin for the detected file type. | |
filetype plugin on | |
" Load an indent file for the detected file type. | |
filetype indent on | |
" Enable syntax highlighting | |
syntax enable |
#! /usr/bin/env zsh | |
realpath=${1:-$2} | |
batcommand=$(if type batcat > /dev/null; then echo 'batcat'; else echo 'bat'; fi) | |
if [[ ! -r $realpath ]]; then | |
where $realpath; | |
elif [[ -d $realpath ]]; then | |
exa -1 -lah --git --icons --color=always --octal-permissions --no-time --no-permissions --group-directories-first -s name $realpath; | |
elif [[ $realpath:t:e = "png" || $realpath:t:e = "jpg" ]]; then |
"$schema" = 'https://starship.rs/config-schema.json' | |
add_newline = false | |
username.show_always = true | |
format = """ | |
$os\ | |
$hostname\ | |
$localip\ |