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”…

Devamını oku

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…

Devamını oku

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…

Devamını oku

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…

Devamını oku