This script saves GitHub issues in TSV format
The script has two software dependancies:
- GitHub CLI for querying GitHub API
jq
for transforming the output of the above to TSV format
This script saves GitHub issues in TSV format
The script has two software dependancies:
jq
for transforming the output of the above to TSV formatDescargar las hojas de atajos recomendadas:
Since the introduction of the append
built-in, most of the functionality of the container/vector
package, which was removed in Go 1, can be replicated using append
and copy
.
Here are the vector methods and their slice-manipulation analogues:
This script saves GitHub issues in TSV format
The script has two software dependancies:
jq
for transforming the output of the above to TSV format#!/bin/sh | |
set -uex | |
install_path="${XDG_DATA_HOME:-$HOME/.local/share}/fonts/material-design-icons" | |
url_prefix="https://raw.githubusercontent.com/google/material-design-icons/master/font" | |
fonts="MaterialIcons-Regular.ttf MaterialIconsOutlined-Regular.otf MaterialIconsRound-Regular.otf" | |
fonts="$fonts MaterialIconsSharp-Regular.otf MaterialIconsTwoTone-Regular.otf" | |
for font in $fonts |
# KEYCLOAK BASE URL | |
KEYCLOAK_BASE_URL= | |
# KEYCLOAK CLIENT SECRET | |
KEYCLOAK_CLIENT_SECRET= | |
# KEYCLOAK CLIENT ID | |
KEYCLOAK_CLIENT_ID= | |
# BASE URL FOR NEXT AUTH |
<?php | |
namespace App\Http\Livewire; | |
use App\Models\Account; | |
use Livewire\Component; | |
class AccountAutocomplete extends Component | |
{ | |
public $query= ''; |