Тёмный

Bard vs ChatGPT: Cual es mejor para PROGRAMAR? 

The Coder Cave esp
Подписаться 71 тыс.
Просмотров 3,4 тыс.
50% 1

Comparamos Chat GPT y Bard, las nuevas IA de las que todos están hablando, como tus asistentes para PROGRAMAR.
¿Quieres saber cual es la mejor herramienta? Acá te lo cuento.
#bard #chatgpt
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Suscribite a mi Newsletter ► thecodercave.com/
💥ME ENCUENTRAS TAMBIÉN AQUÍ 👇
Sitio Web ►thecodercave.com/
Twitter ► / cavecoder
Discord ► / discord
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
💻 CURSOS PREMIUM 👇
🚀Curso Completo de C# desde Cero ► bit.ly/3jLyIv4
🚀Curso de C# Práctico en 15 Proyectos ► bit.ly/3uUqCaR
🚀Curso de C# en el Backend - API Mastery ► bit.ly/3LL3CEM
🔥 Curso Completo de Blazor desde Cero ► bit.ly/38DtZXz
🔥 Blazor Ultimate: Domina Blazor en 4 Proyectos ► bit.ly/3xbAtbA
👉Curso Práctico de SQL para principiantes ►bit.ly/2R6KVOX
📚 Curso de GIT y Github para Principiantes ► bit.ly/30Fbhz4
Descuento del 60% en todos mis cursos 👉 thecodercave.com/descuento/
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
📚 RECURSOS RECOMENDADOS 👇
¿Quieres aprender Inglés? ► Italki 👉 go.italki.com/TheCoderCaveesp
¿Donde compro mis dominios? ► Namecheap 👉 bit.ly/3YofMGK
¿Que hosting uso para mis sitios? ► Hostinger 👉 www.hostg.xyz/SHCoJ
Nota: Los links en la descripción son links de afiliado, lo que significa que recibiré una pequeña comisión si te registras usando esos links sin ningún costo extra para ti. Todos los links de afiliados son productos o servicios en los que creo y uso personalmente.

Наука

Опубликовано:

 

18 май 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 10   
@rafaelrojasd
@rafaelrojasd Год назад
Sería genial ver un GPT-3.5 vs GPT-4
@mipelirroja
@mipelirroja Год назад
Genial!
@Peferreyra
@Peferreyra Год назад
ahi acabo de probar lo de los principios SOLID, y si le pedis por separado te los da, se ve que todavia esta un poco verde, pero tambien entiende bastante
@federicorios1582
@federicorios1582 8 месяцев назад
Deberias de hacer la misma comparacion con la nueva version de Google Bard. No solo esta mejorado con mas idiomas disponibles, en mi experiencia personal tiene mejor creatividad al hacer un codigo nuevo y solucionar problemas.
@risingforce9648
@risingforce9648 Год назад
en mi humilde opinion , Para mi tiende a picar codigo mas que nada chat gpt ... ambas, no me creo experto...pero creo que cada tanto necesita feedback y empieza a picar codigo de la forma mas explicita para que puedas corregirlo. no resiste inyeccion de depencia y nose creo que puede servir igual ,pero no es algo que sea el 50% de la fuerza que uno pueda hacerlo de forma humana.
@tecnoideas7436
@tecnoideas7436 Год назад
Le hice a Bard la pregunta de los pricipios solidos y a la primera genero esta respuesta (pego solo una, no los otros 2 drafts) - Pegunta: Could you please provide an example of at least 2 solid principles in C#? I need code + explanation View other drafts. Respuesta: - Sure, here are two examples of SOLID principles in C#, with code and explanation: Single Responsibility Principle (SRP) The Single Responsibility Principle (SRP) states that a class should have only one responsibility. This means that a class should only be responsible for one thing, and it should not be responsible for anything else. Here is an example of a class that violates the SRP: C# public class Car { public void Start() { // Start the car engine. } public void Drive() { // Drive the car. } public void Stop() { // Stop the car engine. } } Use code with caution. Learn more This class violates the SRP because it is responsible for three things: starting the car, driving the car, and stopping the car. It would be better to split this class into three separate classes, one for each responsibility. Here is an example of a class that follows the SRP: C# public class CarEngine { public void Start() { // Start the car engine. } public void Stop() { // Stop the car engine. } } public class CarController { public void Drive() { // Drive the car. } } public class Car { private CarEngine engine; private CarController controller; public Car() { engine = new CarEngine(); controller = new CarController(); } public void Start() { engine.Start(); } public void Drive() { controller.Drive(); } public void Stop() { engine.Stop(); } } Use code with caution. Learn more This class follows the SRP because each class is responsible for one thing. The CarEngine class is responsible for starting and stopping the car engine. The CarController class is responsible for driving the car. And the Car class is responsible for assembling the other two classes and providing a way to start, drive, and stop the car. Open/Closed Principle (OCP) The Open/Closed Principle (OCP) states that software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification. This means that software should be designed in such a way that new features can be added without having to change existing code. Here is an example of a class that violates the OCP: C# public class Car { public void Drive() { // Drive the car. } } Use code with caution. Learn more This class violates the OCP because it is not open for extension. If we want to add a new feature to the car, such as the ability to drive in reverse, we will have to modify the Car class. Here is an example of a class that follows the OCP: C# public abstract class Car { public abstract void Drive(); } public class Sedan : Car { public override void Drive() { // Drive the sedan. } } public class Truck : Car { public override void Drive() { // Drive the truck. } } Use code with caution. Learn more This class follows the OCP because it is open for extension. We can add new types of cars by creating new classes that inherit from the Car class. This way, we can add new features to the cars without having to modify the Car class. These are just two examples of SOLID principles in C#. There are many other principles that can be applied to object-oriented programming. By following these principles, you can write better, more maintainable code. Sources github.com/psahni/TAA www.linkedin.com/pulse/solid-principles-c-ottorino-bruni www.quabr.com/65942370/open-closed-pri
@jaimebonilla9209
@jaimebonilla9209 Год назад
Que pasa con la privacidad del código que compartimos con CHATGPT y BARD?
@guillermovargas6257
@guillermovargas6257 10 месяцев назад
Lo ideal es para consultar conceptos o ver ejemplos si estas haciendo cosas delicadas como proyectos que estan ligados a contratos. Ya para aprender, o realizando cursos, creo que no importa la privacidad del codigo, al final de cuenta ese codigo lo encontrarias en stackoverflow xd
@GT-io4sz
@GT-io4sz 10 месяцев назад
Los marcianos reciben igualmente la informacion y se la filtran a los masones, que venden tus conversaciones con la IA a la CIA, ahora en serio, no sufras por eso y usa el que prefieras, tu privacidad de datos se prostituyó el dia que compraste un movil.
@msnotif294
@msnotif294 Год назад
Por los ejemplos, Bard todavía no sirve de mucho salvo que dicen que tiene la data actualizada.
Далее
GitLab CI CD Tutorial for Beginners [Crash Course]
1:09:00
Cuộc đua tại Premier League mùa này kiểu:
00:20
Creepy Teacher Kidnapped My Girlfriend?!
00:42
Просмотров 10 млн
Puse a prueba ChatGPT y Google Bard, ¿cuál es mejor?
22:34
¿Qué es una API?
14:30
Просмотров 50 тыс.
PRINCIPIOS SOLID En Menos de 10 MINUTOS
8:45
Просмотров 4,3 тыс.
The Truth about Rust/WebAssembly Performance
29:47
Просмотров 170 тыс.
No sirvo para programar - #EDvlog 17
17:55
Просмотров 415 тыс.
Google Colab en 15 minutos - ¿Porqué se usa tanto?
20:02
😱НОУТБУК СОСЕДКИ😱
0:30
Просмотров 3,3 млн