This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' Izgara çizen AutoCAD VBA kodları-2 | |
' ---------------------------------- | |
' Mesut Akcan | |
' 23/7/2025 | |
' [email protected] | |
' mesutakcan.blogspot.com | |
' youtube.com/mesutakcan | |
' Kodların kullanıldığı video: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' Izgara çizen AutoCAD VBA kodları | |
' -------------------------------- | |
' Mesut Akcan | |
' 30/6/2025 | |
' [email protected] | |
' mesutakcan.blogspot.com | |
' youtube.com/mesutakcan | |
Option Explicit | |
Sub izgara_ciz_1() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
CLS | |
:: Ensure running as administrator | |
net session >nul 2>&1 | |
if %errorLevel% NEQ 0 ( | |
echo This script must be run as administrator. | |
pause | |
exit /b | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Ethernet bağlantısını açıp kapatmayı sağlayan grafik arayüzlü uygulama. | |
Ping ile internet bağlantısını kontrol eder. | |
Yeşil/kırmızı renk ile bağlantı durumunu gösterir. | |
Tek tuşla bağlantıyı açıp kapatmayı sağlar. | |
============================= | |
Mesut Akcan | |
[email protected] | |
youtube.com/mesutakcan | |
mesutakcan.blogspot.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Mesut Akcan | |
26/12/2024 | |
[email protected] | |
mesutakcan.blogspot.com | |
youtube.com/mesutakcan | |
--> | |
<!DOCTYPE html> | |
<html lang="tr"> | |
<head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Setup] | |
ImDisk - Kurulum | |
ImDisk Toolkit yükleyicisine hoş geldiniz. | |
Bu, ImDisk Toolkit'i (derleme %S) yükleyecektir. | |
Kurulum klasörü: | |
Bileşenler | |
ImDisk Sanal Disk Sürücüsü (gerekli) | |
DiscUtils kütüphanesi (.NET Framework 4.8 kullanır) | |
RamDisk Yapılandırma Aracı | |
Seçenekler |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Sub Worksheet_SelectionChange(ByVal Target As Range) | |
'Mesut Akcan | |
'[email protected] | |
'https://youtube.com/mesutakcan | |
'ilgili video: https://youtu.be/iq1jmVE0UHU | |
'Geri Al (Ctrl + Z) çalışmaz | |
Static oncekiHucre As Range, zeminRengi As Long |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Belirtilen klasörde içeriği aynı klasörleri bulup bildirir. | |
# Windows PowerShell script | |
# Mesut Akcan | |
# [email protected] | |
# [email protected] | |
# 19/08/2024 | |
# aranacak klasör: | |
$folderPath = "C:\MESUT\" | |
$hashTable = @{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Çizim dosyasındaki bloklari blok adlarıyla ayrı dosyalara kaydeder | |
; Mesut Akcan | |
; 09/08/2024 | |
; [email protected] | |
; https://mesutakcan.blogspot.com | |
(vl-load-com) | |
(defun c:BLOKKAYDET (/ blokadi bloksayisi dosyaadi kbs klasor uzanti) | |
(setvar 'cmdecho 0) | |
(setq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; AutoHotkey kodlarıyla fare tuşlarına basıldığında tıklama sesi | |
; 28/06/2024 | |
; Mesut Akcan | |
; [email protected] | |
; youtube.com/mesutakcan | |
#Requires AutoHotkey v2.0 | |
; Fare ile tıklandığında tıklama sesi |
NewerOlder