Nokia E serisi Telefonların Telefon Rehberlerini Google İle Senkronize Etmek

Arkadaşlar burada anlatacağım metot ile nokia telefonlarınızın (özellikle E serisi) senkronize ayarlarını herhangi üçüncü parti yazılım kullanmadan güncelleyebilir, telefon rehberinizi google ile senkronize edebil,r yani google a yedekleyebilir, dilediğinizde bilşgisayarıdnızdan veya başka bir yerden erişebilir, ya da diğer telefonunuza aktaraibilirsiniz

Yapmanız gerekenler:

READ THE FULL ARTICLE >>

VN:F [1.8.1_1037]
Rating: 10.0/10 (2 votes cast)
VN:F [1.8.1_1037]
Rating: +2 (from 2 votes)

PHP Fusion Türkiye Resmi Destek Sitesi Adresi Değişti

Arkadşlar, twitter, facebook, ve de ana siteden anlattık, fakat sanırım halen haberi olmayanlar var, bu sebeple buradan blog girdisi olarak da yazmak istedim.

Birtakım sebeplerden dolayı eski resmi destek sitemiz artık resmi değil, ve de takım olarak yeni resmi destek sitesine taşınmış bulunmaktayız.

Yeni sitemizin adresi www.phpfusionturkiye.com dur.

Eski içeriklerimizin bir kısmını takım olarak oraya taşıdık, ve de artık desteğe oradan devam edeceğiz. Destek alabilmeniz için oraya üye olmalısınız. Ayrıca lütfen tüm PHP-Fusion severleri bu olaydan haberdar edin.

VN:F [1.8.1_1037]
Rating: 9.5/10 (6 votes cast)
VN:F [1.8.1_1037]
Rating: +1 (from 1 vote)

Spotify mobile “Installing necessary libraries Please wait” Sorunu Çözümü

Spotify adlı programı bilirsiniz, online müzik dinlemek için muhteşem bir program. Neredeyse tüm sanatçıların albümleri dijital ortamda dinlenebilir olarak hizmetinizde. Türkiyede ücretsiz sürümü bazı yasal sebeplerden dolayı kullanılamasa da, premium üyelikleri yasal olarak alabilirsiniz, ücretli sürümündeki bedel ve ücretsiz sürümündeki reklam gelirleri direkt sanatçıya gitmekte sonuçta. (lady gaga sadece spotify reklamlarından 167 milyon dolar kazanmış Haberi buradan okuyabilirsiniz)

Her neyse, bende de bu programa ait premium hesap var, bu da symbian işletim sistemine sahip nokia telefonumda bu programı kullanıp internet erişimi olan her yerde online istediğim müziği dinlemem olanak sağlıyor. Yalnız spotify ı kurarken başıma bir sorun geldi. Kurduktan sonra açarken şöyle bir mesaj verdi bana:

  • Installing necessary libraries. Please wait…

ve de 10 15 saniye sonra mesaj gitti, ama ortada kurulan bir şey yoktu. Biraz araştırınca programın pips_nokia_1_3_SS.sis ve ssl.sis adlı dosyaları kurmak istediğini öğrendim. Paket veri bağlantısı ve şifrelenmiş verileri yollamak için lazım olan dosyalar olmalı bunlar.

Her neyse, bu dosyayı indirip telefonunuza kurarsanız sorununuz gidecek, ve de premium spotify hesabınıza symbian işletim sistemine sahip nokia marka cep telefonunuzdan erişebileceksiniz:
İndirme Linkleri: pips_nokia_1_3_SS.sis , ssl.sis
Umarım birilerinin işine yarar

VN:F [1.8.1_1037]
Rating: 7.6/10 (12 votes cast)
VN:F [1.8.1_1037]
Rating: +3 (from 3 votes)

Google Arama Motoru Yeni Arayüzüne Geçiş

Son zamanlarda hayatımın yoÄŸunluÄŸundan dolayı pek bir ÅŸey yazamadım bloguma, ama bunu yazmak istedim. umarım hoÅŸunuza gider. Arayüz gittikçe Google Wave’e benzetilmiÅŸ.

Google ın arayüzünü şu şekle dönüştürmek ister miydiniz?

Eğer istiyorsanız sıkı durun, anlatmaya başlıyorum :) READ THE FULL ARTICLE >>

VN:F [1.8.1_1037]
Rating: 8.2/10 (5 votes cast)
VN:F [1.8.1_1037]
Rating: +1 (from 1 vote)

PHP Fusion ve Diğer İçerik Yönetim Scriptleri İçin Flash Chat Kurulumu Resimli Anlatım

Arkadaşlar, söz verdiğim gibi, size blogumda PHP-Fusion üzerinden FlashChat Kurulumunu Anlatacağım. Resimlerle kendimce anlatmaya çalıştım. Umarım başarılı olmuşumdur.

Öncelikle Tufat.com‘un sayfasından FlashChat’i indirmeliyiz: AÅŸama aÅŸama anlatıyorum. READ THE FULL ARTICLE >>

VN:F [1.8.1_1037]
Rating: 7.2/10 (25 votes cast)
VN:F [1.8.1_1037]
Rating: +3 (from 5 votes)

Get Recent Tracks Info From Last.fm With PHP

Last.fm is a Music community which has infos and sample tracks of nearly all of the artists. Last.fm members can scrobble their listened tracks into their database. So the users can generate a chart for their loved tracks, recent listened tracks, and know about similar artists/songs.
Last.fm also has a nice radio system (which is only unlimited to their subscribed users), which can be started on any kind. Like global tags (like death metal, pop, dance, classical, r&b etc.), Artists (like metallica, opeth, inna, bach, jay-z etc.) or any other methods.

Since last.fm provides a good api and ready-to-use dynamic signature pictures, I needed a code for last.fm recent tracks for my personal need. PHP Api was needlessly heavy, and the image wouldn’t suit my need, and there was no other working code online, so I’ve made a code for myself. Usage is plain simple. You just have to call the function like this:

$thelist=lastfm_recenttracks("lastfm_username",5);
foreach ($thelist as $eachsong) {
	echo "Timestamp: ".$eachsong[0]."<br>";
	echo "Artist: ".$eachsong[1]."<br>";
	echo "Title: ".$eachsong[2]."<hr>";
}

5 is the limiter. You can’t get more than 10 recent tracks with this method because of the last.fm’s limitations.

Easy, isn’t it?

Here’s the whole code with function and example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php 
//PHP Last Fm Recent Tracks Script 1.0
//Author: SoulSmasher ©2009
//web: http://www.soulsmasher.net
 
//Enter your last.fm username 
$username="your_lastfm_user";
//Amount of data to be shown (not more than 10)
$amount=5;
 
 
// Do not edit anything below unless you know what you're doing
function lastfm_recenttracks($lastfm_username,$amount=5) {
	$list=file("http://ws.audioscrobbler.com/1.0/user/$lastfm_username/recenttracks.txt"); 
	$i=0;
	$pieces=array();
	$temp=array();
	while ($i<$amount) {
		//each piece's pieces array structure: 0=>$timestamp, 1=>$artist, 2=>$title
		$pieces[$i]=explode(",",$list[$i]);
		//now $pieces[$i][0] is our timestamp of current song, $pieces[$i][1] are other parts of the song info
		$temp[$i][0]=$pieces[$i][1];
		//I saved the other part of the track info (track, artist) to $temp[$i][0] for later to use substr. Because some songs may have " - " someting like "Oh God - Please Help me!"
		$temp[$i][1]=explode("---",preg_replace('/[^0-9a-z\s\`\~\!\@\#\$\%\^\*\(\)\; \,\.\'\/\_\-]/i', '-',$pieces[$i][1])); //file() messes up with the " - ", don't know. Tried on 2 different servers, both same. it changes it to some special char which hardens the job. Instead, I changed them to - char and join them to use with explode
		$pieces[$i][1]=trim($temp[$i][1][0]);
		//now $pieces[$i][1] is artist
		$pieces[$i][2]=substr($temp[$i][0],(strlen($pieces[$i][1])+4)); //4 , because " - " this makes 3 chars, and a file() shows - as a false character, and it makes one extra character, that's why it's 3+1=4
		//$pieces[$i][2] is now title
 
		//echo "timestamp: ".$pieces[$i][0]."<br>";
		//echo "artist: ".$pieces[$i][1]."<br>";
		//echo "title: ".$pieces[$i][2]."<hr>";
		$i++;
	}
 
for($j=0;$j<$i;$j++) { unset($temp[$j][0],$temp[$j][1]); } //for memory cleanup
 
return $pieces; //either returns the array, or uncomment echo statements and change this to return true; for echoing. I prefer returning the array
}
 
$lastsongs=lastfm_recenttracks($username,$amount);
foreach ($lastsongs as $thesongs) {
	echo "Timestamp: ".$thesongs[0]."<br>";
	echo "Artist: ".$thesongs[1]."<br>";
	echo "Title: ".$thesongs[2]."<hr>";
}
?>

Enjoy ;)

VN:F [1.8.1_1037]
Rating: 6.0/10 (9 votes cast)
VN:F [1.8.1_1037]
Rating: -1 (from 3 votes)

Ubuntuda Terminale Google Translate Eklemek

Google’da python vs ile yazılmış GUI biçiminde google translate motorunu kullanan, kısaca online google apisini kullanan bir program arıyordum. arama sırasında ilginç bir ÅŸeye rastladım. Ubuntuforums’da unutbu adlı bir üye ÅŸu baÅŸlıkta terminal altından çalışan bir program yazmış. Bu program curl ile veriyi çekip json olan veriyi decode ediyor. bu nedenle python-json paketine ihtiyaç duyulacak (150 kb gibi bir ÅŸey boyutu). eÄŸer illa ki json istemem diyorsanız alternatif versiyonu da linkteki baÅŸlıkta mevcut

kullanımı ve görünümü aşağıdaki ekran görüntüsü şeklinde:
terminal google translate

kurmak için yapacaklarınız:
terminali açıp şu kodları satır satır girin:

sudo apt-get update
sudo apt-get install python-json
sudo gedit /bin/translate

gedit yerine başka bir metin editörü yazabilirsiniz, GUI kullandığımdan gedit dedim. terminale sadık kalacaksanız nano ya da vim i de kullanabilirsiniz.

açılan boş sayfaya şu kodu girin:

?View Code PYTHON
#!/usr/bin/env python
from urllib2 import urlopen
from urllib import urlencode
import sys
try:
    import json
except ImportError:
    print('You need to install the python-json package')
    sys.exit(1)
 
# The google translate API can be found here: 
# http://code.google.com/apis/ajaxlanguage/documentation/#Examples
 
lang1=sys.argv[1]
lang2=sys.argv[2]
langpair='%s|%s'%(lang1,lang2)
text=' '.join(sys.argv[3:])
base_url='http://ajax.googleapis.com/ajax/services/language/translate?'
params=urlencode( (('v',1.0),
                   ('q',text),
                   ('langpair',langpair),) )
url=base_url+params
content=urlopen(url).read()
try:
    trans_dict=json.loads(content)
except AttributeError:
    trans_dict=json.read(content)
print(trans_dict['responseData']['translatedText'])

Daha sonra kaydedip kapatın. Şimdi terminale geri dönüyoruz:

sudo chmod +x /bin/translate

bu komutla da çalıştırılabilir yaptık

dipnot: kelimede veya cümlede ‘ iÅŸareti varsa \’ ÅŸekline dönüştürülmeli ya da ‘ iÅŸaretinini olduÄŸu kelime çift tırnaklar arasına alınmalı

örnek: jai n’est pas yerine jai n\’est pas ya da jai “n’est” pas yazmalısınız (Fransızca anlamsız olabilir bu laf :D )

Kodu buradan download edebilirsiniz

Düzenleme: Python ile yazılmış yeni bir yazılım buldum. Adı pyGtranslator.
pyGtranslator
Görüldüğü gibi, terminale gerek kalmadan direkt olarak translate edebilirsiniz
indirme linki: Ubuntu için debian binary paketlerini Getdeb’in sitesinden, ya da ana sayfalarından indirebilirsiniz

afiyet olsun ;)

VN:F [1.8.1_1037]
Rating: 4.6/10 (5 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 2 votes)

Ubuntu İçin Yeni Bir Twitter Programı – HechteTwitter

hechtetwitter
Daha önce burada Ubuntu için güzel bir Twitter arayüzü olan mitter‘i anlatmıştım. Åžimdi ise HechteTwitter adlı yeni bir arayüz buldum. Bu program ilk izlenimlerime göre adobe air ile yapılmış programları saymazsak mitter ile yarışacakmış gibi gözüküyor. Daha ilk sürümü olmasına raÄŸmen felsefesi kaliteli bir twitter arayüzü yazmak olan program GTK+ ve Ruby ile yazılmış

Ubuntu için binary (ikilik setup kurma dosyası)nı getdeb’den download edebilir, diÄŸer distrolar için de sitesinden indirebilirsiniz

Bence denemekte fayda var

VN:F [1.8.1_1037]
Rating: 4.6/10 (5 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 2 votes)

Google XML Sitemap For PHP Fusion

Google XML Sitemap Infusion
For PHP Fusion 7.x
Version: 2.60 (2009.10.18)
Author: Arda (SoulSmasher)
Web: http://www.soulsmasher.net
 
Within this infusion, you can generate Google XML sitemaps instantly for your PHP-Fusion based website
 
Features:
---------------------
1-Generating a sitemap within one click
2-If the panel is activated, the sitemap.xml file is generated automatically (default: each 24 hours)
3-Force Generating option for admins
4-Because sitemap.xml will be a static content, when google pings your sitemap, it won't exhaust your sql
5-Submitting your sitemap instantly with one click to popular search engines
6-Quick navigation on sitemapxml_panel for admins
7-There's also a file called sitemap.php in root if you want the xml to generate dynamically on each request (deleting that file doesn't affect the sitemap.xml)
 
Current Translations:
--------------------
Danish (Thanks, Helmuth)
English
Turkish
Russian (Thanks, sbr80)
German (Thanks, slaughter)
Hungarian (Thanks, Rottenbacher Tamás ( sYska/!/ ))
Spanish (Thanks, NobNob)
Dutch (Thanks, Martijn78)
Polish
 
Installation:
--------------------
1-Upload everything under the folder "files" to your PHP-Fusion's base folder
2-After the upload, chmod the sitemap.xml file to 777
3-Go to admin panel/system administration/infusions and activate "Google Sitemap"
4-Go to admin panel/system administration/panels and activate and enable "sitemapxml_panel"
 
From the admin interface, you can see the last time that sitemap is generated, and re-generate instantly anytime you want. You can also submit your sitemap to popular search engines via one click
 
 
FAQ:
--------------------
*So many users have this similar issue:
	Error loading stylesheet: A network error occured loading an XSLT stylesheet:http://www.site.com/infusions/sitemapxml/sitemap.xsl
	Actually, this isn't an issue, just a simple misconfiguation error by admins:
	Because you submitted your website as http://www.yoursite.com/sitemap.xml, and the website setting at admin panel is: http://yoursite.com/ (or opposite)
	To fix this: Go to admin panel/infusions/google sitemap, and change http:// part (add www, or delete it, same as your submission url)
 
 
Tips:
--------------------
If you disabled your left or right panels on your website, for sitemap xml recreating cronjob, i suggest you to add the sitemapxml_panel as l-ctr and make it show on all pages
Update interval's value is set as 86400 (secs), which is equal to 1 day time period. You can easily increase or decrease the setting via admin panel
 
 
Update:
--------------------
Firstly, upload all new files to the server, then follow the instructions below:
 
*From 2.51
Just go to admin panel/system administration/infusions and update the google sitemap xml
Then click www.yoursite.com/infusions/sitemapxml/update-251-260.php
If it says this with green colors: "Update Done, now please delete this file", everything went well, now you can delete the file.
 
*From 2.50 (if you made a clean installation)
then click www.yoursite.com/infusions/sitemapxml/update-clean250-260.php
If it says this with green colors: "Update Done, now please delete this file", everything went well, now you can delete the file.
 
*From 2.50 (if you updated to 2.50 from previous versions)
Go to admin panel/system administration/infusions and update the google sitemap xml
 
*From 2.14 and 2.13
then click www.yoursite.com/infusions/sitemapxml/update-214-260.php
If it says this with green colors: "Update Done, now please delete this file", everything went well, now you can delete the file.
Then go to admin panel/system administration/infusions and update the google sitemap xml
 
 
*From <= 2.12:
Firstly defuse the old infusion, then upload new files and infuse again
 
Version History:
--------------------
2.60 - Sitemap Submission page is now internal
	   A tiny bug is fixed for pro_download_panel
	   A tiny locale error is fixed in admin panel
2.51 - A tiny bug fixed in infusion.php and a typo fixed in locales(Thanks Sharky!)
	   Custom website url now gets / at the end of value
	   Sitemap xml generator function make_sitemapxml() improved a bit for fclose() function.
2.50 - Custom URL Inclusion to XML file is now available
	   Now admins can set website's url from the sitemap administration (advanced setting for domain redirections etc.)
	   Dutch Locale Includes (Thanks, Martijn78)
2.14 - Ti Blog System URL Structure Fixed
	   Spanish Locale Included (Thanks, NobNob!)
	   Articles now go to articles.php instead of readarticle.php
2.13 - Member profiles are now supported
	   Hungarian Locales Included (Thanks, Rottenbacher Tamás ( sYska/!/ ))
	   A Tiny bug on articles priority is fixed
2.12 - A tiny bug is fixed in admin panel that prevented to save settings in some browsers
	   Ti Blog System and Kroax Categories enabled
	   Some minor code cleanup and fix in sitemap_functions.php
2.11 - A tiny locale fix on admin page (thanks sbr80 for reporting)
	   Tiny code cleanups in sitemap_functions.php
	   Added Russian Locale (Thanks sbr80 :))
	   Added German Locale (Thanks slaughter :))
2.10 - Sitemap update interval can now be selected via admin area
	   Photogallery System is now supported
	   Pro Download Panel, Kroax and Varcade systems are now supported
	   Admin can enable/disable each section in sitemap now
	   a tiny bug on weblink categories is fixed
	   Access controls of weblinks added in queries
	   Articles query improved
2.01 - Threads limiter fixed
	   Downloads xml parsing fixed
2.00 - Fixed Date Issue on old PHP versions
	   Dropped Weblinks And Forum Cats (i think weblinks are bad for seo, also forum cats are not required when they're forums)
	   Added News Cats
	   All Priorpty and Frequency Values Can Be Set Via Admin Panel
	   Added Dynamic Version Of Sitemap (sitemap.php at root folder)
1.05 - Output handling issue fixed at admin panel for adding text to title
	   XML sitemap now has a better interface
1.04 - File generation date showing fixed
1.03 - Weblink cat bug fixed
1.02 - Threads bug fixed
1.01 - Weblink bug fixed
 
Enjoy ;)

sample admin panel screenshot: (from 2.01)
sample screenshot

Download Link: Here

VN:F [1.8.1_1037]
Rating: 7.2/10 (16 votes cast)
VN:F [1.8.1_1037]
Rating: -1 (from 3 votes)

Linuxta müzik formatları arasında dönüştürme yapma

Linuxta, özellikle kullandığım dağıtım ubuntu’da müzik formatları arasında dönüştürme yapma bazen çok canımı sıkmaktaydı. Özellikle wav formatından FLAC, ya da ogg formatına geçerken çok zorlanıyordum. Codecler kurulu olsa bile dönüştürme için terminal dışında adam gibi yazılım kullanamıyordum. Toplu dönüşümlerde batch kod yazana kadar windows arayüzüne geçiyor, ya da wine ile dbpoweramp’ı çalıştırıyordum, çünkü bu daha hızlı idi Artık keÅŸfettiÄŸim bu program ile bunlara gerek kalmadı :)

Soundconverter adı bu program ile artık windows programları ile cebelleşmeme gerek kalmadı :) READ THE FULL ARTICLE >>

VN:F [1.8.1_1037]
Rating: 4.6/10 (5 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 2 votes)
Page 1 of 1212345»10...Last »
Copy Protected by Chetan's WP-CopyProtect.