Category Archives: Genel
Android Align Fab in ConstraintLayout
The FloatingActionButton can be aligned to all corners of the parent ConstraintLayout: FAB constraint relation XML markup top & start app:layout_constraintTop_toTopOf=”parent”app:layout_constraintStart_toStartOf=”parent” top & end app:layout_constraintTop_toTopOf=”parent”app:layout_constraintEnd_toEndOf=”parent” bottom & start app:layout_constraintBottom_toBottomOf=”parent”app:layout_constraintStart_toStartOf=”parent” bottom & end app:layout_constraintBottom_toBottomOf=”parent”app:layout_constraintEnd_toEndOf=”parent” To evenly position it, use layout_margin: android:layout_margin=”24dp”…
Volvox fiyatgör sql
Akınsoft volvox için fiyat listesi sqli…
Windows 10 aynı birden fazla uzak masaüstü bağlantısı
Windows 10 işletim sisteminde aynı anda birden fazla uzak masaüstü kullanabilmek için Rdp Wrapper adlı programı kullanabilirsiniz. Aynı anda 3 kullanıcıya kadar destekliyor. Rdp Wrapper Program setup -> https://github.com/stascorp/rdpwrap/releases msi dosyasını kurarken bazen hata verebiliyor. zip dosyasını indirmenizi tavsiye ederim. Zip dosya içeriğini bilgisayarınızda herhangi bir dizine çıkardıktan sonra install.bat dosyasını çalıştırın. Program kurulduktan sonra RDPConf.exe…
Mssql Tablo boyutlarını listeleme
;with SpaceInfo(ObjectId, IndexId, TableName, IndexName ,Rows, TotalSpaceMB, UsedSpaceMB) as ( select t.object_id as [ObjectId] ,i.index_id as [IndexId] ,s.name + ‘.’ + t.Name as [TableName] ,i.name as [Index Name] ,sum(p.[Rows]) as [Rows] ,sum(au.total_pages) * 8 / 1024 as [Total Space MB] ,sum(au.used_pages) * 8 / 1024 as [Used Space MB] from sys.tables t with (nolock) join…
SQL Update with row_number()
UPDATE x SET x.CODE_DEST = x.New_CODE_DEST FROM ( SELECT CODE_DEST, ROW_NUMBER() OVER (ORDER BY [RS_NOM]) AS New_CODE_DEST FROM DESTINATAIRE_TEMP ) x Kaynak: https://stackoverflow.com/a/13653680…
Ssh tunneling ile mysql bağlantısı
ssh -L 3333:localhost:3306 username@hostname…
Azure Linux vm pureftpd ayarları
echo “40110 40210” > /etc/pure-ftpd/conf/PassivePortRange sudo service pure-ftpd restart daha sonra da sanal makinenin ağ güvenlik kuralları -> gelen kuralları bölümünden 40110-40210 port aralığı için izin ver…
Linux paylaşım oluşturma
/etc/samba/smb.conf dosyasına; [Linux D] //paylaşım adı path = /media/sercan/Backup //paylaşım yolu public = yes guest ok = yes writable = yes force user = sercan dosyayı kaydettikten sonra servisi restart : service smbd restart…
Hp Server get serial number from command prompt
Cmd konsol üzerinden hp server seri numarasını öğrenmek için:…