Skip to content

Instantly share code, notes, and snippets.

View tecnologer's full-sized avatar
👨‍💻
Focusing

Rey David Dominguez Soto tecnologer

👨‍💻
Focusing
View GitHub Profile
@tecnologer
tecnologer / release_name_generator.sh
Created September 24, 2021 19:44 — forked from levhita/release_name_generator.sh
Name generator that matchs an uncommon adjective with a common animal.
#!/bin/bash
adjectives=('Adamant' 'Adroit' 'Amatory' 'Animistic' 'Antic' 'Arcadian' 'Baleful'
'Bellicose' 'Bilious' 'Boorish' 'Calamitous' 'Caustic' 'Cerulean' 'Comely'
'Concomitant' 'Contumacious' 'Corpulent' 'Crapulous' 'Defamatory' 'Didactic'
'Dilatory' 'Dowdy' 'Efficacious' 'Effulgent' 'Egregious' 'Endemic' 'Equanimous'
'Execrable' 'Fastidious' 'Feckless' 'Fecund' 'Friable' 'Functional' 'Fulsome'
'Garrulous' 'Guileless' 'Gustatory' 'Heuristic' 'Histrionic' 'Hubristic'
'Incendiary' 'Insidious' 'Insolent' 'Intransigent' 'Inveterate' 'Invidious'
'Irksome' 'Jejune' 'Jocular' 'Judicious' 'Lachrymose' 'Limpid' 'Loquacious'
'Luminous' 'Mannered' 'Mendacious' 'Meretricious' 'Minatory' 'Mordant'
@tecnologer
tecnologer / go-installer.sh
Last active December 14, 2024 17:01
Bash script to install/update Go on Linux, Dependencies: curl and tar
#!/bin/bash
# Exit on any error
set -e
# Determine which shell the user is using and select the appropriate profile file
if [[ "$SHELL" == */zsh ]]; then
PROFILE_FILE="$HOME/.zshrc"
elif [[ "$SHELL" == */bash ]]; then
PROFILE_FILE="$HOME/.bashrc"
@tecnologer
tecnologer / flag_example.go
Created June 16, 2019 20:27
Ejemplo de uso de `flag` para parsear parametros de un string
package main
import (
"flag"
"fmt"
"strings"
)
type flagT string
@tecnologer
tecnologer / README
Created February 25, 2016 05:06 — forked from emad-elsaid/README
Simple fuzzy search algorithm similar to sublimeText
Simple fuzzy search algorithm similar to sublimeText
this is a simple algorithm to give a similar result
as SublimeText search feature, if you don't use sublimeText
i think you should just give it a shot from here :
http://www.sublimetext.com
to know more about fuzzy search you should check this wiki page:
http://en.wikipedia.org/wiki/Fuzzy_string_searching