Skip to content

Instantly share code, notes, and snippets.

View felix-orduz's full-sized avatar

Felix Ernesto Orduz Grimaldo felix-orduz

View GitHub Profile
@felix-orduz
felix-orduz / README.md
Last active August 20, 2024 11:04
README.md

Hi, I'm Félix Orduz 👋

LinkedIn GitHub Followers

👨‍💻 About Me

I'm a passionate Software Engineer and DevOps professional with a strong background in designing, building, and maintaining scalable and efficient systems. I have a deep understanding of cloud technologies, continuous integration/continuous deployment (CI/CD) pipelines, and infrastructure as code (IaC).

My work is driven by a love for problem-solving and the challenge of creating robust, maintainable solutions that make a real impact. I believe in continuous learning and staying updated with the latest trends and best practices in the industry.

@felix-orduz
felix-orduz / autoconfigure_hadoop_feud.sh
Created May 14, 2019 12:37
Archivo temporal para la autoconfiguracion del cluster de hadoo de la FEUD
#!/bin/bash
# run as root
#Variables por ambiente
nodo1="nodo1"
nodo2="nodo2"
nodo3="nodo3"
ip1="10.0.2.15"
ip2=""
ip3=""
{
"extensions":
[
"md",
"mdown"
],
"color_scheme": "Packages/User/ME-MonokaiC.tmTheme",
"tab_size": 4,
"translate_tabs_to_spaces": true,
#!/bin/bash
find -name "* *" -type d | rename 's/ /_/g'
for d in */; do
echo "Procesar" $d;
cd $d
cur=$(pwd)
#!/bin/bash
for d in */; do
echo "Procesar" $d;
cd $d
cantidad=$(find ./ -type f -name "*.mkv" | wc -l)
let cantidad=$cantidad
if [ "$cantidad" -gt 0 ]; then
mkdir tmp
mv *.mkv tmp
@felix-orduz
felix-orduz / generate_random_files.sh
Created January 20, 2016 19:33
Generate Random Files in Linux
#!/bin/bash
number_files=0;
size_per_file='';
level_log=3;
name_file='log';
###########
# Options #
###########
@felix-orduz
felix-orduz / split.sh
Created January 11, 2016 22:52
Split a string without ‘cut’ or ‘awk’
#!/bin/bash
line=’this “is” a command;this “is” a pattern’
COMMAND=${line%;*}
PATTERN=${line#*;}
echo $COMMAND
echo $PATTERN
@felix-orduz
felix-orduz / Partial Backup Mysql
Created May 28, 2015 19:58
Script para realizar backups parciales de mysql
#!/bin/bash
source ~/.bashrc
shopt -s expand_aliases
#Variables
databases=()
command=''
current_logbin=''
indices=''
namebin=''
pass_mysql=''
@felix-orduz
felix-orduz / gist:43277c9be445bed02743
Created May 25, 2015 15:49
Generar Archivo de cache para apache
#/bin/bash
#$1 directorio a leer
#$2 directorio conf apache
if [ -d $1 ]; then
cd $1;
find $PWD -type f > $2/cachefileall.conf;
cd $2;
sed -i -e 's/^/CacheFile /' ./cachefileall.conf
else
echo "Directorio no existe";
#!/bin/bash
#
## @file rgb-colored-echo.sh
## @author Amber Jain
## @section DESCRIPTION A bash pretty print script which provides red/green/blue colored echo functions
## @section LICENSE ISC
#################
# Documentation #