Skip to content

Instantly share code, notes, and snippets.

View armandolazarte's full-sized avatar

Armando Lazarte armandolazarte

View GitHub Profile
@armandolazarte
armandolazarte / bill.html
Created January 15, 2025 15:11 — forked from AfipSDK/bill.html
Factura de ejemplo
<!DOCTYPE html>
<html>
<head>
<title>Factura</title>
<style type="text/css">
*{
box-sizing: border-box;
-webkit-user-select: none; /* Chrome, Opera, Safari */
-moz-user-select: none; /* Firefox 2+ */
-ms-user-select: none; /* IE 10+ */
@armandolazarte
armandolazarte / settings.json
Last active March 5, 2025 13:00
Configuracion de Terminal Windows
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions": [
{
"command": {
"action": "copy",
"singleLine": false
},
"id": "User.copy.644BA8F2",
@armandolazarte
armandolazarte / git-prompt.sh
Created March 5, 2025 13:07
Configuración del pront de bash de git
PS1='\[\033]0;\u@\w\007\]' # set window title
PS1="$PS1"'\[\033[31m\]' # change to red
PS1="$PS1"'❯❯ '
PS1="$PS1"'\[\033[33m\]' # change to yellow
PS1="$PS1"'\A '
PS1="$PS1"'\[\033[32m\]' # change to green
PS1="$PS1"'\w' # current basename working directory
if test -z "$WINELOADERNOEXEC"
then
GIT_EXEC_PATH="$(git --exec-path 2>/dev/null)"
@armandolazarte
armandolazarte / .bashrc
Last active March 5, 2025 13:19
Alias para el bash de git
alias php="php.bat"
alias herd="herd.bat"
alias laravel="laravel.bat"
alias composer="composer.bat"
# Laravel aliases
alias art="php artisan"
alias artisan="php artisan"
alias tinker="php artisan tinker"
# generated by Git for Windows
test -f ~/.profile && . ~/.profile
test -f ~/.bashrc && . ~/.bashrc