Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
<!DOCTYPE html> | |
<html> | |
<body> | |
<script> | |
//================== | |
//all possible valid symbols lol | |
let strAll = |
/* | |
* This will keep the element's font size between 24px and 42px. | |
* The middle value automatically calculates the font size between | |
* the Min and Max, using the browser window viewport width. | |
*/ | |
.archive-title { | |
font-size: clamp(24px, calc(3vw + 1rem), 42px); | |
} |
.zsh/main.zsh:3 | |
.tmux/plugins/tmux-fzf/scripts/session.sh:8 | |
.tmux/plugins/tmux-fzf/scripts/command.sh:2 | |
.tmux/plugins/tmux-fzf/scripts/window.sh:12 | |
.tmux/plugins/tmux-fzf/scripts/keybinding.sh:2 | |
.tmux/plugins/tmux-fzf/scripts/clipboard.sh:2 | |
.tmux/plugins/tmux-fzf/scripts/process.sh:4 | |
.tmux/plugins/tmux-fzf/scripts/.fzf-tmux:5 | |
.tmux/plugins/tmux-fzf/scripts/pane.sh:16 | |
Downloads/Temp/_local---custom/custom.plugin.zsh:1 |
/*-----------------------------------*\ | |
Written with 💖 by @Xhynk | |
Donate: | |
https://xhynk.com/#donate | |
\*-----------------------------------*/ | |
// Example Google Sheets Timesheet: https://docs.google.com/spreadsheets/d/1D-YWjt_Zl8WrAuicmUKZsMzSpEOwv1vYL06dBdObyb4/ | |
function submitTimesheet(e){ |
let verts = new Float32Array( [ 0, 2, 0, -1, 0.2, 0, 1, 0.2, 0 ] ); | |
let v = base64_test( verts ); | |
function base64_test( fary ){ | |
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
// ENCODING TEST | |
console.log("Origin Data", fary ); | |
let uint = new Uint8Array( fary.buffer ); | |
console.log( "Convert F32 to Uint8 : Byte Length Test", fary.length * 4, uint.length ); |
@file:Suppress("NOTHING_TO_INLINE") | |
import android.content.Context | |
import androidx.annotation.StringRes | |
import androidx.fragment.app.Fragment | |
import androidx.preference.* | |
/** | |
* DSL marker for restricting access scope when [PreferencesBuilder.preference] is nested. | |
*/ |
#!/bin/bash | |
# Your system should be 64 bits and check if the last version at https://github.com/danielchatfield/trello-desktop/ is 0.19 | |
# If the current version is not 0.19 change the file name below accordingly | |
wget https://github.com/Racle/trello-desktop/releases/download/v0.2.0/Trello-linux-0.2.0.zip -O trello.zip | |
sudo mkdir /opt/trello | |
sudo unzip trello.zip -d /opt/trello/ | |
sudo ln -sf /opt/trello/Trello /usr/bin/trello | |
echo -e '[Desktop Entry]\n Version=1.0\n Name=Trello Desktop\n Exec=/usr/bin/trello\n Icon=/opt/trello/resources/app/static/Icon.png\n Type=Application\n Categories=Application' | sudo tee /usr/share/applications/trello.desktop |
package app | |
import kotlinx.coroutines.experimental.await | |
import org.w3c.fetch.* | |
import kotlin.browser.window | |
import kotlin.js.json | |
class FetchError(message: String, status: Number, response: dynamic) : Error(message) | |
suspend fun makeError(res: Response): FetchError { |
alias l='exa -1a' # Lists in one column, hidden files. | |
alias ll='exa -l' # Lists human readable sizes. | |
alias lr='ll -R' # Lists human readable sizes, recursively. | |
alias la='ll -a' # Lists human readable sizes, hidden files. | |
alias lm='la | "$PAGER"' # Lists human readable sizes, hidden files through pager. | |
alias lx='ll --sort=Extension' # Lists sorted by extension (GNU only). | |
alias lk='ll --sort=size -r' # Lists sorted by size, largest last. | |
alias lt='ll --sort=modified -r' # Lists sorted by date, most recent last. | |
alias lc='lt -m' # Lists sorted by date, most recent last, shows change time. | |
alias lu='lt -u' # Lists sorted by date, most recent last, shows access time. |