I hereby claim:
- I am cesasol on github.
- I am cesasol (https://keybase.io/cesasol) on keybase.
- I have a public key ASDy8BNN376NjlycgF6XNPL9jTxAgOZtTaqpQmNsByj85Qo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| # Dependencies: | |
| # gh - GitHub CLI, authenticated with: gh auth login | |
| # glab - GitLab CLI, authenticated with: glab auth login | |
| # tea - Gitea/Forgejo CLI, configured for Codeberg | |
| # jq | |
| # fzf - only required for interactive selection | |
| # git-grab - provides: git grab |
| #!/usr/bin/env zsh | |
| # Hyprland script | |
| # Swaps all windows from one monitor with the relative next | |
| monitors=("${(@f)$(hyprctl monitors -j | jq -r '.[].name')}") | |
| count=${#monitors} | |
| ((count < 2)) && { | |
| echo "Only one monitor detected." >&2 | |
| exit 1 |
| #!/bin/zsh | |
| skip_global_compinit=1 | |
| # XDG data dirs | |
| if [[ $OSTYPE =~ "linux" ]]; then | |
| export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}" | |
| export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" | |
| export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}" | |
| export XDG_STATE_HOME="${XDG_DATA_HOME:-$HOME/.local/state}" | |
| elif [[ $OSTYPE =~ "darwin" ]]; then |
I hereby claim:
To claim this, I am signing this object:
| --- | |
| 0 debug pnpm:scope: | |
| selected: 1 | |
| workspacePrefix: null | |
| 1 error pnpm: | |
| message: | |
| code: "ERR_PNPM_REGISTRY_META_RESPONSE_404" | |
| uri: "https://registry.npmjs.org/@fortawesome%2Fpro-solid-svg-icons" | |
| response: | |
| size: 0 |
| {"lastUpload":"2019-03-05T17:20:43.076Z","extensionVersion":"v3.2.5"} |
| {"lastUpload":"2019-02-20T19:36:31.753Z","extensionVersion":"v3.2.5"} |
| module.exports = { | |
| root: true, | |
| env: { | |
| browser: true, | |
| node: true, | |
| es6: true | |
| }, | |
| parserOptions: { | |
| parser: 'babel-eslint', | |
| ecmaVersion: 2018, |
| #!/bin/sh | |
| # This is a simple hack to fix the pnpm module resolution, if you encounter "Module not found" in some deep dependency of your | |
| # project, then use this script to add those not founded dependencies as a direct dev dependency. | |
| # All credit goes to flaviut https://github.com/pnpm/pnpm/issues/1261 | |
| while true; do pnpm install -D $(pnpm start 2>&1 | grep 'Error: Cannot find module' | sed "s/Error: Cannot find module '\([a-z.-]\+\)'/\1/g"); done |
| /** | |
| * This is a plugin for nuxtjs to import only what you need from buefy | |
| * works on nuxt 2.1.0 and buefy 0.7.0 | |
| */ | |
| import Vue from 'vue' | |
| import Autocomplete from '~/libs/buefy/components/autocomplete/Autocomplete.vue' | |
| import Checkbox from '~/libs/buefy/components/checkbox/Checkbox.vue' | |
| import CheckboxButton from '~/libs/buefy/components/checkbox/CheckboxButton.vue' |