Skip to content

Instantly share code, notes, and snippets.

View osoda's full-sized avatar
💻
Developing

osoda osoda

💻
Developing
View GitHub Profile
@osoda
osoda / solution-queo-backend-challenge.sql
Last active December 10, 2024 06:50
Solution to the Queo Backend Challenge
# NOTE: We need disable the ONLY_FULL_GROUP_BY mode
SET SESSION sql_mode=(SELECT replace(REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''),'NO_ENGINE_SUBSTITUTION',''));
select count(1) cant from (
SELECT e.*, s.name , s2.code, group_concat(s2.code) codeVal, COUNT(s.name) cant
from enrollment e
inner join student s on e.student_id =s.id
inner join `group` g on e.group_id = g.id
left join subject s2 on g.subject_id =s2.id and right(s2.code,1) = '1'
@osoda
osoda / Shortcuts VSCode.md
Last active May 3, 2023 17:43
Shortcuts VSCode Para trabajar en la terminall

Proyecto

  • Navegar entre proyectos:

    Ctrl+r

Terminal

  • Cambiar de terminal. Focus en terminal
@osoda
osoda / xDebug en Cpanel-Whm.md
Last active August 30, 2022 07:54
instalaccion y configuracion de xDebug en Cpanel con PHP

En este ejemplo se muestra la Configuracion con Vscode xDebug, sobre PHP 7 en entorno Cpanel/WHM

1) Instalamos el xDebug en Whm, desde.

  • En Module Installer > PHP PECL .
  • Se escoje la version de PHP sobre la que se va a installar y se presiona Aplly.
  • Se busca xDebug
  • Se instala,
  • Cuando termine de instalar saldra algo asi. image
  • Y el modulo quedara instalado image
@osoda
osoda / Alarma_Sound.js
Created July 18, 2022 15:06
Alarma JS con sonido, Se puede ejecutar en consola
function play() {
var audio = new Audio('https://interactive-examples.mdn.mozilla.net/media/cc0-audio/t-rex-roar.mp3');
audio.play();
}
function bucleReproductor(){
if(stopPlay == 1){
clearInterval(downloadTimer);
return
}
@osoda
osoda / Crear conexion con git para hacer Push.MD
Last active February 14, 2025 17:59
Crear conexion con git para hacer Push

En terminal:

  • Iniciar el agente ssh:

    eval `ssh-agent -s`

  • Adiccionar el archivo con la llave privada creada en el paso [1.1]

    ssh-add ~/.ssh/github_osoda

Note: Desde Putty. Despues de generado el Archivo ppk o cargado.

@osoda
osoda / db-far.php
Last active February 14, 2022 19:09 — forked from KLicheR/db-far.php
PHP script that perform a find and replace in a database dump (tested with MySQL) with adjustments of the PHP serialize founded.
<?php
/**
* PHP script that perform a find and replace in a database dump (tested with
* MySQL) with adjustments of the PHP serialize founded.
*
* Don't forget to escape your "special characters":
* "a$b" -> "a\$b"
* "a"b" -> "a\"b"
* "a`b" -> "a\`b"
@osoda
osoda / Import_dbs_mysql_from_list.py
Created November 8, 2018 11:48
Import multiples dbs mysql that are listed in a file and this have in a dir
#!/usr/bin/python
# If you have a dir whithout list, just whit all sql dump, you can use next script,
# that list all the files in a dir, into a file or multiples files:
# https://gist.github.com/osoda/69f21664352a55540ec18781c0ab7119
import re
from subprocess import call
mysql="/usr/bin/mysql"
archivo = raw_input('Escriba el nombre del archivo que tiene las db: ')
@osoda
osoda / list_files_in_output_file.py
Created November 8, 2018 11:34
Give a multiple lists in ouput file, whit the files in a dir; every list have a static amount files
#!/usr/bin/python
import os, math
for root, dirs, files in os.walk("./manual"):
n = int(input(raw_input("Ingrese el numero de archivos en el que se particionara: ")))
dbs = ''
length =len(files)
cantArchives = int(math.ceil(float(length)/n))
print(str(length)+' nombres de db seran guardadas en '+str(cantArchives)+' archivos')
for i,filename in enumerate(files, start=1):
@osoda
osoda / get_user_permissions_mysql.sh
Created November 8, 2018 11:23
Give all user and privileges ready to execute in a query sql. To migrate mysql users
mysql -e "select concat('show grants for ','\'',user,'\'@\'',host,'\'') from mysql.user" > user_list_with_header.txt
sed '1d' user_list_with_header.txt > ./user.txt
while read user; do mysql -e"$user" > user_grant.txt; sed '1d' user_grant.txt >> user_privileges.txt; echo "flush privileges" >> user_privileges.txt; done < user.txt
awk '{print $0";"}' user_privileges.txt >user_privileges_final.sql
rm user.txt user_list_with_header.txt user_grant.txt user_privileges.txt
@osoda
osoda / Result select To JSON.js
Last active August 29, 2018 16:00
Transform the result select sql that show the GUI (MySQL Workbench)
String.prototype.SelectToJSON = function(){
var str = '['+this.split('\n').map((el)=>{return '{'+el.split(', ').
map((e,i)=>{return `"${i}": ${e.replace(/'/gi, '"')}`})+'},'}).join('\n').slice(0,-1)+']'
return JSON.parse(str)
}
// Result shown by Gui And Copy whit the option 'Copy Row'
var result = `'6', 'PAULA ', '2018-01-30', ' KEVIN', '', '0', '', '', 'SASA1', '2'
'7', 'BRANDON ', '2018-01-30', 'ALBLO', '', '0', '', '', 'SASA1', '3'
'8', 'PILAR', '2018-01-30', 'CACERES', '', '0', '', '', 'SASA1', '4'`