Skip to content

Instantly share code, notes, and snippets.

View recepdmr's full-sized avatar
🏠
Working from home

. recepdmr

🏠
Working from home
View GitHub Profile
@wattanar
wattanar / mailkit_example.cs
Last active January 3, 2023 13:53
C# Send Email With MailKit
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
var message = new MimeMessage();
var bodyBuilder = new BodyBuilder();
// from
@eburhan
eburhan / tcno_dogrula.js
Last active October 23, 2025 15:47
javascript ile TC Kimlik Numarası doğrulama (1 döngü kullanılarak)
/* tc kimlik numarasının geçerli olup olmadığını kontrol eder
* 2015 Erhan BURHAN
*--------------------------------------------------------------------*/
function tcno_dogrula(tcno)
{
// geleni her zaman String'e çevirelim!
tcno = String(tcno);
// tcno '0' karakteri ile başlayamaz!
if (tcno.substring(0, 1) === '0') {