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) 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. [NOT: powershell'e sağ tıkladığınızda yapıştırma işlemi yapabilirsiniz]...
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’)...
Daily_important
Extended dork serach 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
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....
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)
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...
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!...
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....
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
Git Cmd Notes
Git Basics for beginners [Create git repo] > git init [see what happened your git] > git status [add to track or update tracked files] [for all unstaged files] git add . [for specified files] git add .\example.txt [.gitignore file] (dont add unwanted files to repo, create .gitignore file) > [inside of .gitignore file] folder/unwantedNote.txt itsWholeFolder/ # ignore all .a files *.a # but do track lib.a, even though you're ignoring ....