lunes, 24 de julio de 2023

English practice with Chatgpt in Platzi

Chatgpt english practice


You are a fluent English speaker and you are going to help me practice my English Skills.

1-test my knowledge on common idioms from North American work culture with a multiple choice short quiz.

2-Create a short, creative and fiction story about two friends who go on vacation to another planet.

  The story shouldn't have more than 250 words.

 -Ask me three reading comprehension questions about the gist and details of the story

 -Ask me three reading comprehension questions about the gist and details of the story with a multiple choice short quiz

3-I want to have a casual conversation with you. I want you to use phrasal verbs and idioms in 

every question you ask me and in every response. This is a dialogue so you start with the 

first question only and then you wait for my response before asking me another question. 

 - Show me the phrasal verbs in this convesration so far:

4- create a conversation about a couple who are doing grocery shopping but are unsure about 

what to buy.

 - choose 3 words realted to food and ask me vocabulary questions to see if i know the

meaning in english.

5-From the following text, replace 10 words whit their synonyms.

  ...your text here

-Tell me which words you replaced.

-Rewrite the same story replacing the previous words with their antonyms.

6- Check this text and give me feedback on speeling and grammar. Show me the mistakes and tell me why they are incorrect.

   ....your  text here

7-  Gime me 5 sentences with common prepositions:

 -Give me 5 sentences with uncommon prepositions:

8-I want to practice the present perfect structure, I am having problems whit the past 

participle. Can you gime 5 gap fill sentences for me practice. Don’t show me the answers until 

I ask you and show me the corresponding verbs in brackets.

-Show me the answers

viernes, 16 de junio de 2023

Tips de Debugging al momento de programar


Reglas generales


-No te molestes con el debugger. Aprende a utilizar el print statement.

-Estudia los datos disponibles.

-Utiliza los datos para crear hipótesis y experimentos.


Método científico

-Ten una mente abierta. Si entendieras el programa, probablemente no habría bugs.

-Lleva un registro de lo que has tratado, preferentemente en la forma de tests.


Diseño de experimentos

-Debuger es un proceso de búsqueda. Cada prueba debe acotar el espacio de búsqueda.

-Búsqueda binaria con print statements.


Errores comunes

-Encuentra a los sospechosos comunes.

-En lugar de preguntarte por qué un programa no funciona, pregúntate por qué está funcionando de esta manera.

-Es posible que el bug no se encuentre donde crees que está-

-Explícale el problema a otra persona. De preferencia que no tenga contexto.

-Lleva un registro de lo que has tratado, preferentemente en la forma de tests.

-Vete a dormir.

-No te rindas, no te frustres.

viernes, 10 de marzo de 2023

Actualizar paquetes para poder crear un proyecto en Laravel 10

Actualizar paquetes para poder crear un proyecto en Laravel 10 💡 :


1. Ejecutar composer clearcache

2. Ejecutar composer selfupdate




martes, 3 de enero de 2023

Pasos para crear hipótesis antes de iniciar el proceso de validación.

 Escribe en una frase el problema

"El problema que estoy intentando solucionar es …X…" (Escribe la lista de aspectos que conforman el problema que crees que existe.)


++Define el usuario al que quieres llegar: ++

“Mi cliente es …X…” (Describe todo lo que imaginas de esa persona que crees que tiene el problema)


++Escribe la solución que tienes en mente: ++

“Mi solución es X” (Todo lo que piensas que el cliente va a valorar acerca de tu solución)


Si no escribes tus hipótesis no tienes una casilla de salida clara.


Basado en el curso de Platzi

viernes, 30 de diciembre de 2022

Reglas del Mom test para hablar con los usuarios

 Reglas del Mom Test para hablar con tus usuarios:

  1. No hables de tu idea, habla acerca de sus vidas y sus problemas (de tus usuarios)
  2. No formules preguntas genéricas o pidas hipótesis sobre el futuro. Habla de situaciones reales del pasado.
  3. Habla menos y no intentes convencer. Estás para escuchar y aprender.

viernes, 4 de noviembre de 2022

Cómo colocar el child en la categoría de usuario de subcategoría y subcategoría en JSON Laravel

$parents = Category::where('parent_id', 0)->where('status', 1)->orderBy('sort_order', 'asc')->get();
        foreach ($parents as $parent) {
            $childs = Category::where('parent_id', $parent->id)->where('status', 1)->orderBy('sort_order', 'asc')->get();
            if (count($childs) > 0) {
                $subCat = array();
                $players = array();
                $roster[$parent->name] = $players;
                        foreach ($childs as $i => $child) {
                            $subchilds = Category::where('parent_id', $child->id)->where('status', 1)->orderBy('sort_order', 'asc')->get();
                            if (count($subchilds) > 0) {

                                $roster[$parent->name][$child->name] = $subCat;
                                foreach ($subchilds as $subchild) {

                                    $roster[$parent->name][$child->name][$subchild->id] = $subchild->name;
                                }

                            }else{
                                $roster[$parent->name][$child->name] = $players;
                            }
                        }

            }
        }
        return $roster;

Fuente https://stackoverflow.com/questions/59577909/how-to-get-child-under-sub-category-and-sub-category-user-category-in-json-larav

Blogs Colombia