Bu Blogda Ara

28 Haziran 2017 Çarşamba

Mediatomb'da türkçe karakter sorununun çözümü

Mediatomb basit ve etkili bir UPnP / DLNA sunucu. Kurulum aşamalarını hatırlamıyorum, belki sonra tekrar kurmak zorunda kalırsam onu da yazarım. Bir şekilde kurmuştum aylar önce fakat etkin kullanmaya şimdi başladım. Başlar başlamaz da sunduğu medyaların dosya isimlerini gerek web arayüzünde gerekse getirdiği medya listelerinde düzgün göstermediğini gördüm. Biraz araştırdıktan sonra çözümü buldum. Buyurun...

Multilingual Karakter Desteği

Mediatomb'da Multilingual karakterler aşağıdaki ayarlamalar sayesinde kullanılabilir:
/etc/mediatomb/config.xml dosyasını açıp içerisine aşağıdaki eklemeleri yapıyoruz. Muhtemelen mavi ile işaretli kısımlar dosyada olmayacak, onları ekliyoruz.

 <import hidden-files="no">
    <filesystem-charset>UTF-8</filesystem-charset>
    <metadata-charset>UTF-8</metadata-charset>
    <playlist-charset>UTF-8</playlist-charset>
    <scripting script-charset=”UTF-8″>
Konfigürasyon dosyasını değiştirdikten sonra MediaTomb'u (servis) yeniden başlatıyoruz. Sonrasında web arayüzünden önceden indekslenmiş dosya ve klasörleri kaldırıp düzgün dosya isimlerini görebilmek için yeniden ekliyoruz. Hepsi bu.

12 Haziran 2017 Pazartesi

Thinkpad G40 için linux modem sürücüsü hakkında

Thinkpad G40 için linux modem sürücüsü hakkında bulduğum bir yazı. Denemedim gerçi... Deneyince durumu yine buraya yazarım. Hatta deneyip çalıştıran olursa da yorumlara ekleyebilir. Buyurun...

Modem Daughter Card (MDC)

Modem Daughter Card (MDC)

This is a AC97 Modem Adapter that is installed in a CDC slot.

Features

  • Chipset: Ambit (formerly Lucent Microelectronics)

IBM Partnumbers

IBM FRU PN: 91P7657, 26P8477, 26P8256

Also known (in IBM literature) as....

  • CDC Modem Card
  • V.90 Modem Daughter Card (MDC)
  • Modem Card, Ambit
  • Ambit Modem Daughter Card

Linux driver

The Linux driver from SmartLink supports this device.
Latest version of this driver is 2.9.11.
The ALSA AC'97 modem driver (snd_intel8x0m) should be used instead of the proprietary kernel module from SmartLink (see README ALSA mode), as it avoids tainting your kernel, and does not require a recompile each time you update your kernel version.
For Debian there is a sl-modem-daemon deb.

Fedora

There is a slmodem rpm in the RPM-Fusion nonfree repository. Once you have installed the package, you need to edit /etc/sysconfig/slmodem and set INTERFACE=alsa and ALSA_DEVICE=modem:1
NOTE!
If ALSA_DEVICE=modem:1 does not work, run cat /proc/asound/cards and use the number before the Modem line
In addition you can set the country for the correct recognition of dialling and busy tones, and to adhere to any local (possibly legal) requirements. If you do not set the country, it will default to USA.
You can then start the service, and set it to autostart on boot
service slmodem start
chkconfig slmodem on
After this you should have a /dev/ttySL0 device

Kaynak:  http://www.thinkwiki.org/wiki/Modem_Daughter_Card_(MDC)

8 Haziran 2017 Perşembe

Excel'de her satırsan sonra bir boş satır ekleme



Sub Makro1()
'
' Makro1 Makro
'

'
Dim i As Integer
Dim crange As String


For i = 2 To 4000 Step 2
  
    Rows(CStr(i) & ":" & CStr(i)).Select
    Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
   
Next i

End Sub