New video. Whisper only made 3 word mistake while transpiring the video : https://www.youtube.com/wa
New video. Whisper only made 3 word mistake while transpiring the video : https://www.youtube.com/watch?v=W2-SeLW_Mko
Software Engineering Courses - SE Courses
YouTube
HyperX QuadCast HX MICQC BK Gaming & Streaming Mic Review/Test & Hy...
Please support us on Patreon for more quality and more frequent new videos: https://www.patreon.com/SECourses
In this video, I am doing a box opening of my new HyperX QuadCast HX-MICQC-BK gaming & streaming mic that I have purchased to improve my sound quality in my programming / lecture videos.
I have used my Phone Poco X3 Pro and Boya BY M1...
10 Replies
look at the length and the details of this article fully generated by AI. it even generates source code examples https://www.wordpedia.net/2022/12/CSharp-Programming-For-Beginners-Lecture-4-Multi-Dimensional-Arrays-String-Join-Sorting-Iterations.html
this new gpt is incredible
the command i have provided
Write me the necessary code in c# to get weather data and send it to a telegram chat group
the output
i am working a on a video for gptchat
using System;
using System.Data.SqlClient;
using System.Windows;
namespace WpfApp
{
public partial class MainWindow : Window
{
// SQL bağlantısı için gerekli bilgiler
private static string connectionString = "Server=localhost;Database=mydatabase;Trusted_Connection=True;";
private SqlConnection connection;
public MainWindow()
{
InitializeComponent();
connection = new SqlConnection(connectionString);
}
private void ButtonSignUp_Click(object sender, RoutedEventArgs e)
{
// Kullanıcı adı ve parola girildi mi kontrol edelim
if (string.IsNullOrEmpty(TextBoxUsername.Text) || string.IsNullOrEmpty(PasswordBox.Password))
{
MessageBox.Show("Lütfen kullanıcı adı ve parolayı boş bırakmayınız!");
return;
}
try
{
// Veritabanına bağlanalım
connection.Open();
// Kullanıcı adı daha önceden kaydedilmiş mi kontrol edelim
string query = "SELECT COUNT(*) FROM users WHERE username = @username";
SqlCommand command = new SqlCommand(query, connection);
command.Parameters.AddWithValue("@username", TextBoxUsername.Text);
int count = (int)command.ExecuteScalar();
if (count > 0)
{
MessageBox.Show("Bu kullanıcı adı daha önceden alınmış. Lütfen başka bir kullanıcı adı seçiniz.");
return;
}
// Kullanı

MessageBox.Show("Kullanıcı kaydı başarıyla tamamlandı!");
}
catch (SqlException ex)
{
MessageBox.Show(ex.Message);
}
finally
{
// Her durumda bağlantıyı kapatalım
connection.Close();
}
}
private void ButtonLogin_Click(object sender, RoutedEventArgs e)
{
// Kullanıcı adı ve parola girildi mi kontrol edelim
if (string.IsNullOrEmpty(TextBoxUsername.Text) || string.IsNullOrEmpty(PasswordBox.Password))
{
MessageBox.Show("Lütfen kullanıcı adı ve parolayı boş bırakmayınız!");
return;
}
try
{
// Veritabanına bağlanalım
connection.Open();
// Girilen kullanıcı adı ve parolayı kontrol edelim
string query = "SELECT COUNT(*) FROM users WHERE username = @username AND password = @password";
SqlCommand command = new SqlCommand(query, connection);
command.Parameters.AddWithValue("@username", TextBoxUsername.Text);
command.Parameters.AddWithValue("@password", PasswordBox.Password);
int count = (int)command.ExecuteScalar();
if (count == 0)
{
MessageBox.Show("Kullanıcı adı veya parola hatalı. Lütfen tekrar deneyiniz.");
return;
}
MessageBox.Show("Başarıyla giriş yaptınız!");
}
catch (SqlException ex)
{
MessageBox.Show(ex.Message);
}
finally
{
// Her durumda bağlantıyı kapatalım
connection.Close();
}
}
}
yapay zeka ile yazılan bir kod 😄this AI is impressive. I asked a software how to read data from Excel into datatable 🙂
using System;
using System.Data;
using System.IO;
using System.Linq;
using System.Reflection;
using OfficeOpenXml;
namespace ExcelReader
{
class Program
{
static void Main(string[] args)
{
// Open the Excel file and get the first worksheet
var excelFile = new FileInfo("data.xlsx");
using var package = new ExcelPackage(excelFile);
var worksheet = package.Workbook.Worksheets.FirstOrDefault();
// Create a DataTable to hold the data from the worksheet
var table = new DataTable();
// Add columns to the DataTable
foreach (var column in worksheet.Cells[1, 1, 1, worksheet.Dimension.End.Column])
{
table.Columns.Add(column.Text);
}
// Add rows to the DataTable
for (int row = 2; row <= worksheet.Dimension.End.Row; row++)
{
var values = worksheet.Cells[row, 1, row, worksheet.Dimension.End.Column]
.Select(cell => cell.Value);
table.Rows.Add(values);
}
// Print the data from the DataTable to the console
foreach (DataRow row in table.Rows)
{
foreach (var value in row.ItemArray)
{
Console.Write($"{value}\t");
}
Console.WriteLine();
}
}
}
}
hocam aynı yapay zekayı mı kullanıyoruz bilmiyorum ama sanki kelime limiti az gibi
evet max 500 kelime civarı
paralı yapacaklar zaten
şu anda paralı olan gpt 3.5 var onda max 4000 token
yani yaklaşık 16000 karakter
10 larca soru hazırladım video için
işimizden olacağız gibi 😄