Skip to content

Instantly share code, notes, and snippets.

View vaporic's full-sized avatar
🏠
Working from home

Hugo Epinosa vaporic

🏠
Working from home
View GitHub Profile
@vaporic
vaporic / README.md
Created June 26, 2024 20:04 — forked from stolarczyk/README.md
Save GitHub issues as TSV

Save GitHub issues as TSV

This script saves GitHub issues in TSV format

Installation

The script has two software dependancies:

  1. GitHub CLI for querying GitHub API
  2. jq for transforming the output of the above to TSV format
@wildonion
wildonion / deploy.md
Last active October 22, 2024 18:28
Laravel Deployment using Sail

🎈 Usage

Install Docker then deploy the project as the following.

🚀 Deployment

install requirements.

sudo apt install composer && sudo apt install php-xml && composer update
@Klerith
Klerith / flutter-instalaciones.md
Last active April 7, 2025 13:57
Instalaciones del curso de Flutter - Móvil de cero a experto
@zeroidentidad
zeroidentidad / go.SliceTricks.md
Last active January 18, 2023 03:06
Go Slice Tricks Cheat Sheet

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:

AppendVector

@stolarczyk
stolarczyk / README.md
Last active March 27, 2025 09:24
Save GitHub issues as TSV

Save GitHub issues as TSV

This script saves GitHub issues in TSV format

Installation

The script has two software dependancies:

  1. GitHub CLI for querying GitHub API
  2. jq for transforming the output of the above to TSV format
@rany2
rany2 / install-material-design-icons.sh
Created July 17, 2021 13:47
Install Material Design Icons to user font directory on Linux
#!/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
@degitgitagitya
degitgitagitya / .env
Last active March 17, 2025 09:27
Next JS + Next Auth + Keycloak + AutoRefreshToken
# KEYCLOAK BASE URL
KEYCLOAK_BASE_URL=
# KEYCLOAK CLIENT SECRET
KEYCLOAK_CLIENT_SECRET=
# KEYCLOAK CLIENT ID
KEYCLOAK_CLIENT_ID=
# BASE URL FOR NEXT AUTH
@guiliredu
guiliredu / 0_NestJS-Cheatsheet.md
Last active February 24, 2025 00:04
Nest.js Cheatsheet

Nest.js Cheatsheet

Nest CLI

  • npm i -g @nestjs/cli

Packages

  • yarn add class-validator class-transformer
  • yarn add @nestjs/mapped-types

Cool Code Names

Cool Names List

  • 007
  • Advantage
  • Alert
  • Backhander
  • Badass
  • Blade
  • Blaze
@jackabox
jackabox / AutoComplete.php
Last active October 10, 2024 14:44
Livewire Autocomplete Component
<?php
namespace App\Http\Livewire;
use App\Models\Account;
use Livewire\Component;
class AccountAutocomplete extends Component
{
public $query= '';