Akademik 101

Yazının amacı akademik alanda kullanılacak bilgileri bir noktada toplamaktır. Araştırma Bu başlık altında literatür taraması nasıl verimli yapılır, incelenecektir. Akademik Arama Motorları Popüler bir çok arma motorları mevcuttur. Scholar: Google’ın akademik araştırma motoru scholar bir çok veritabanında arama yapar. Scholar scholar.google.com IEEE Xplore : Elektrik Elektronik alanında makaleler yoğunlukla burada yayınlanır IEEXplore Arama Nasıl Yapılır? Her iki motorda da geçerli operatörler mevcuttur. "Tırnak İşareti": Tırnak işareti içindeki ifadeyi birebir arar. En önemli ve sık kullanılan operatördür....

October 12, 2025

Güvenli Linux

Bu yazıda kullanılan işletim sistemleri Taraf İşletim Sistemi Kullanıcı Windows 11 Home 24H2 Sunucu Linux-Ubuntu 24.04 LTS (Focal Fossa) SSH nedir? Güvenli SSH Bağlantısı Nasıl Yapılır ? (Sıfırdan) host firmasından sunucu kiraladığınız zaman size, sunucuya ait ip adresi, kullanıcı adı ve parola verir. (Genellikle root kullanıcısı verilir [Root kullanıcısı sunucunun bütün kaynaklarına erişimi olan kullanıcıdır]) Powershell’e ssh kullanici_adi@sunucu_ip yazıp girdikten sonra sunucu sizden parola ister, doğru parola ardından sunucunuza bağlanmış olursunuz....

March 30, 2025

Linux_basics

Change Default Text Editor : sudo update-alternatives --config editor Get current active proccess : top or htop Folder Operations Command : ‘mv’ mv have 2 abilitiy Rename file mv folder1 folder1_copied Move file mv how to get it move or rename ? (source) mv /test1 /test2 if /test2 parameter is a folder path (not a file) AND exists then always do ‘move’ (test2/test1) else if /test2 parameter doesnt exists, then always do ‘rename’ (’test1’ name to ’test2’)...

March 26, 2025

Daily_important

Extended dork search https://ewasion.github.io/opendirectory-finder/ –> go Look at your pc wake up devices powercfg /devicequery wake_armed clean pc reasult is C:\Windows\System32>powercfg /devicequery wake_armed HID Klavye Aygıtı HID uyumlu fare

March 15, 2025

Appwrite Android (Kotlin)

Login Function in AppWrite suspend fun login(email: String, password: String): User<Map<String, Any>>? { return try { account.createEmailPasswordSession(email, password) getLoggedIn() } catch (e: AppwriteException) { null } } Register Function suspend fun register(email: String, password: String): User<Map<String, Any>>? { return try { account.create(ID.unique(), email, password) login(email, password) } catch (e: AppwriteException) { null } } Keep Login Function suspend fun getLoggedIn(): User<Map<String, Any>>? { return try { account.get() } catch (e: AppwriteException) { null } } Logout Function suspend fun logout() { account....

November 20, 2024

RabbitMQ_Basics

Publish / Subscribe Based Topics Exchanges > ex.events > Bindings To Routing key q.events.client1 *.sport.* q.events.client2 *.sport.# q.events.client2 *.weather.london.* client#1 client#2 event.sport ❌ ✅ event.sport.rugby.news ❌ ✅ event.sport.footbal ✅ ✅ event.sport.today-news ✅ ✅ Fanout Exchange Without route key publish message to queues Direct Exchange must be declared route key to publish messages (news type)

October 24, 2024

AndroidBasics

Examle Flow Variable // ViewModel private val _strings = MutableStateFlow<List<String, Any>>(emptyList()) val strings: StateFlow<List<String, Any>> get() = _strings // Screen val listedReports = exploreListViewModel.reports.collectAsState() Example Of IO Thread Function for ViewModel fun fetchSomething() { viewModelScope.launch (Dispatchers.IO){ // Fetching... on IO Thread (Faster and relase ui thread) } } Example of reusable variable inside of screen var loginButActive by remember { mutableStateOf(true) } var nameText by remember { mutableStateOf("") } ?: - Elvis Operator if variable goes null then give it default value and makes more tuf programs...

October 13, 2024

KotlinMain

Video Source Variables // Changable variables var [varaible name]: [variable type] = [value of variable] var [varaible name]: [variable type]? = null // consts val [name]: [Type] = [value] // vals doesnt changing in future Workflows // out of main function val name: String = "Selcuk" var greeting: String? = null If Control Block // inside of main func // greeting = "Alright, Welcome!!!" if (greeting != null) { println(greeting) } else { println("Hi") } println(name) When Control Block // inside of main func // greeting = "Alright, Welcome!...

October 4, 2024

Python-Scrapy

Course Video - (Youtube link) Scrape Free Website My OS is windows 11 home, course shots macos.Inside the code some points differences. Step 0 Install Enviroments write space : visual studio code ide https://visualstudio.microsoft.com 1 : Install python https://www.python.org/downloads/ 2 : Install pip as package manager https://pip.pypa.io/en/stable/installation/ 3 : Install Virtual Enviroment ~~~~ python -m pip install --user virtualenv https://virtualenv.pypa.io/en/latest/installation.html 4 : Install Scrapy using with pip Inside the virtual enviroment ~~~~~~~~~~ pip install scrapy https://scrapy....

August 24, 2024

Diskpart

This page shows windows 11 disk apperance change things Change Disk Status Offline to Online Win + R > open “run” > [write] diskpart and hit enter [write] list disk Agree offline disk name, in my case is disk 1 select the disk, [write] select disk 1 then change the status to online, [write] online disk and TA DA! Disk will be show in your computerr

August 15, 2024