May 2012
7 posts
Building a mobile app. Do it step by step....
marisantons:
This thought has been brewing in my mind for a while. Reason is that lately there are more and more businesses that have decided that they should deliver on mobile as well. That’s cool. I completely support that and urge others to think about this. The better you will cater to your customers, the more returning business you’ll have.
Problem: Mobile apps are clumsy, ugly and...
Mooege (Diablo 3 Server Emulation) Diablo 3 →
Deneme fırsatım olmadı ne kadar doğru bilmiyorum. Deneyeceğim.
Bazı Şeyleri Gözünüzün Önünden Kaldırın
Facebook hesabında şu aralar halk arasında virüs gözüyle bakılan bir takım uygulamalar tarafından otomatik atılan paylaşımların hayatımızda epey bir yer tuttuğunu görüyoruz. Şimdi bu paylaşımlardan rahat ve hızlı bir şekilde nasıl kurtuluruz bir bakalım.
Bu paylaşımlar sizin hesabınızda da olabilir. Yine aynı adımları izleyerek bunu kontrol edebilirsiniz.
İlk olarak uygulamaların kaynağını...
How to use Twitter Streaming API (Site Streams?)... →
"Apple Push Notification" için notlar
Belki de ios uygulamaları için bildirim yapabilmek için araştırma yaparken herkesin karşısına gelmiş olan şu site ile işe başladım.
http://mobiforge.com/developing/story/programming-apple-push-notification-services
Adımları tek tek uygularken, Provisioning Portal üzerinden uygulama oluşturma adımlarını tekrar yapmamı istediğini farkettim ama ben tabi akıllılık yapacağım ya. Kim uğraşacak o kadar...
tagging →
How to post on Facebook wall through an iOS app →
April 2012
12 posts
When I overhear some random person talking about...
runningastartup:
When an employee accidentally CC's someone, I'm...
runningastartup:
11 tags
Haxe
IF YOU COULD ONLY LEARN ONE PROGRAMMING LANGUAGE, HAXE WOULD BE IT.
IT’S UNIVERSAL. IT’S POWERFUL. IT’S EASY-TO-USE.
WebSockets: A Guide
Efficient, realtime data transfer for modern web games
WebSockets provide two-way realtime communication between a client and server, and thus are exceedingly useful in building modern web games. Browser-based games can profit from an always-on, low-latency connection by enabling the rapid transmission of information about player and global game state previously emulated by methods such as Ajax...
CronJob
Ubuntu server’da cronjob nasıl oluşturulur ve PHP dosyaları bu nasıl çalıştırılır.
İlk olarak php dosyamızı hazırlıyoruz ve tam dizinini bir kenara not alıyoruz. Örneğin “/var/www/file.php”.
Daha sonrasında komut satırında “crontab -u user -e” komutu ile cronjob oluşturulacak kullanıcı için cronjob oluşturma işlemine başlıyoruz. Bu aşamada işletim sistemi bize bir...
Regex Obj-c
Bir yerlerde bir şekilde işimizin düştüğü regular expression konusunda acaba daha önceden neler yapılmış diye merak edip biraz gezindim. Elime geçenleri de burda bir not alayım dedim.
DHValidation makes validating forms in cocoa super-duper easy - https://github.com/benofsky/DHValidation
Lightweight Objective-C Regular Expressions for Mac OS X using the ICU Library...
ASIHTTPRequest Reachability How to
You need to set up a notification handler for this:
Reachability *reach = [Reachability reachabilityWithHostName:@"http://google.com"]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil]; [reach startNotifier];
Then, implement the...
OpenPanel Upgrade Error
Source : https://bugs.launchpad.net/ubuntu/+source/courier-authlib/+bug/64615
PDF & Javascript
PDF reader in Javascript and HTML5 (This project is no longer actively developed. I’ve joined the Mozilla team and I am now working full time on pdf.js) - http://code.google.com/p/trapeze-reader/
PdfViewer.js - This file is from Mozilla pdf.js project - https://code.google.com/p/share-extras/source/browse/trunk/Viewer+Extension/source/web/components/preview/pdfviewer.js?r=895
...
PHP & SSH
Ssh’a php ile bağlanmak istiyorsanız ve bunun için güzel bir tool arıyorsanız size uygun toolar’dan birisi http://phpseclib.sourceforge.net/.
Karşımıza gelen engeller:
Bağlandıktan sonra dizin değiştirmek için $ssh->exec('cd htdocs'); yazdıktan sonra bir alt satıra $ssh->exec('pwd'); yazdığınızda halen ana dizinde olduğunuzu görüp aa cd komutu çalışmıyor demeyin. Bunun için...
Git untracked File
There may be times when you want to edit some variables in for example a database connection file, to run an application right from within your GIT repo. Of course you don’t wont those changes to be commited, so you add the file the .gitignore. However adding tracked files to .gitignore won’t work because GIT will still track the changes and commit the file if you use the-aparameter.
...
March 2012
5 posts
Ubuntu Server .htaccess sorunu
Q : How do you enable mod_rewrite with Apache in Ubuntu 10.04?
I tried copying rewrite.load from /etc/apache2/mods-available to etc/apache2/mods-enabled but that didn’t work.
A : Try following command `sudo a2enmod rewrite` then restart apache
http://serverfault.com/questions/139791/how-can-i-enable-mod-rewrite-in-apache-on-ubuntu
Dumply Blog: Why node.js streams are awesome →
dumply0:
tl;dr: You should compose your web app with IO streams
On dump.ly, one of our most loved features is the download button, which creates a zip file with all the original images in an album.
The original solution was hacked up very quickly (ie was pretty ghetto). It simply downloaded each file…
PHP 5.3 ile gelen bazı hataların çözümleri
http://blog.ownhost.net/2011/09/15/php-5-3-safemod-hatasi/ adresinde açıklanan safe mod hatasından küçük bir alıntı verelim.
Sırasıyla Aşağıdaki Komutları uygulamanız yeterli olacaktır
mv /etc/php.ini /etc/php.ini_old mv /etc/php.ini.rpmnew /etc/php.ini
Dropdown List on iOS
Some links about dropdown list how to implement on iOS.
http://ameyashetti.wordpress.com/2010/09/26/drop-down-demo/
http://iphone-rahulvarma.blogspot.in/2011/06/customized-drop-down-list-in-iphone.html
http://cocoacontrols.com/platforms/ios/controls/vppdropdown
http://cocoacontrols.com/platforms/ios/controls/ajcombobox—2
…
Antipodean: A simple chat server in Node.js →
I had a quick go at writing a little chat server using Node.js.
I really like Node’s style. I’ve got to say that Javascript suits the evented / non-blocking model really well. Javascript is actually a pretty cool little language.
Getting started with Node.js was really easy. For me it was as…
February 2012
14 posts
SQL Saçmalamaca
Bir field’daki değerleri baş harfleri büyük geri kalanları küçük olacak şekilde geri kaydetmece.
UPDATE `table` SET `field`= CONCAT(UPPER(SUBSTRING(`field `, 1, 1)), LOWER(SUBSTRING(`field ` FROM 2))) WHERE ID = 1 LIMIT 1
Auto-increment etmeyi unuttuktan sonra tabloya bir ton veri insert ettikten sonra aşağıdaki satırlar ile ID’leri artan sırayla update edebiliriz. Daha farklı...
Git
Git için de çokça girip baktığım ya da sonradan hatırlayamadığımı düşündüğüm bir kaç linki buradan paylaşayım. Linkler her zamanki gibi bazı sorunları çözerken ya da sorun bile olmayan bazı şeyleri hatırlamaya çalışırken kullandığım sayfalara ait. Saygılar vesselam.
$ cheat git - http://cheat.errtheblog.com/s/git
http://blog.pagebakers.nl/2009/01/29/git-ignoring-changes-in-tracked-files/
...
Server Management And Some Tools
Some links about server management command line.. Server links are about centos, plesk and ssh, generally.
Add custom FTP user on Plesk via command line (SSH) - http://gpiot.com/add-custom-ftp-user-on-plesk-via-command-line-ssh/
Using Plesk and vhost.conf - http://www.gadberry.com/aaron/2006/02/09/plesk_vhost/
CentOS Server Git Setup...
3 tags
REST API
Şimdi diyelim ki siz kendi uygulamanız için bir api oluşturmak istiyorsunuz.
http://blog.steveklabnik.com/2011/07/03/nobody-understands-rest-or-http.html
http://blog.steveklabnik.com/2011/08/07/some-people-understand-rest-and-http.html
http://getcloudkit.com/rest-api.html
http://oauth.net/code/
Codeigniter RestServer - A fully RESTful server implementation for CodeIgniter using one library,...
Number_format
PHP Number Format - http://www.elated.com/articles/php-number-format/
How to Format Numbers in PHP - http://www.toknowmore.net/e/1/php/how-to-format-numbers-in-php.php
Number Format - http://php.net/number_format
How do I format a number to a dollar amount in PHP - http://stackoverflow.com/questions/294865/how-do-i-format-a-number-to-a-dollar-amount-in-php
CocoaHeads: Objective-C literals for NSDictionary,... →
cocoaheads:
Objective-C literals: one can now create literals for NSArray, NSDictionary, and NSNumber (just like one can create literals for NSString)
NSArray Literals
Previously:
array = [NSArray arrayWithObjects:a, b, c, nil];
Now:
array = @[ a, b, c ];
NSDictionary Literals
Previously:
...
Hmm Game Ranking
Önce biraz link toplayalım sonra belki birşeyler yazarız iki satır.
How to Get Rank Usign Mysql Query - http://thinkdiff.net/mysql/how-to-get-rank-using-mysql-query/
How to Optimize Rank Data in MySQL - http://onlamp.com/pub/a/mysql/2007/03/01/optimize-mysql-rank-data.html
Aklıma gelmişken not alayım
http://stackoverflow.com/questions/2163332/nstimer-with-delegate-method
adresinde de söylediği gibi “unrecognized selector sent to instance” hatası alıyorsanız. Hata ya @selector’u yazdığınız kısımda “:” iki noktayı unuttuğunuzdandır. (ki zaten yukarıdaki linkte söylüyor adam.) Ya da hakkaten oöyle bir method yoktur. Yazmayı unutmuşsunuzdur. Başka bir sunufun...
Delphi →
Yine Ikea Yollarında
Ikea bu ay da yaktın beni hadi hayırlısı bakalım.
3 tags
iOS - NavigationController için Notlar
In App Purchases: A Full Walkthrough →
At first glance, adding in-app purchases seems like it would be a walk in the park. Apple provides plenty of documentation that should get developers up and running in no time …
Kendime not olması açısından
Bazı yararlı olabilecek küçük uygulama ve komutları buraya not etmeyi amaçlıyorum. Umarım tüm camiaya yararlı olur.
which command usage: which [-as] program … Example : # which php # /usr/bin/php
The Best of edw519 →
January 2012
7 posts
#etohum
Bir Tweetsozluk ve Viveka üyesi olarak etohum’a katıldım ve güzel bir etkinlik oldu. Yazımın amacı eTohum’un bu etkinliği hakkında bilgi vermek değil zaten bu bilgileri etohum’un sitesinden ya da çeşitli görsel mecralardan elde edebiliyorsunuz. Tweetsozluk ekibi olarak yaptığımız bir araştırmadan bahsedeceğim.
#etohum hashtag’ı hakkında :
#etohum hashtagı o gün...
A Collection of Printable Sketch Templates and... →
Zach Waugh: How to use JSON in Cocoa/Objective-C →
Using JSON in Cocoa is simple thanks to an excellent open-source JSON Framework by Stig Brautaset. The framework will decode a JSON string into native Objective-C objects, and vice versa . The project includes a packaged Framework, Mac and iPhone SDKs, as well as the source code. The easiest…
iOS Development için bazı linkler
Başvuru aşamasında karşılaşılacak işlemler için bir kaç yazı payalşımını buradan yapacağım. Daha sonradan arama yapma zahmetine girmemek için birebir.
Apple iOS Development Process Summary / Explanation - http://swfhead.com/blog/?p=1185
Getting your Apple Developer Certification – part 2 - http://brentsampson.com/2011/05/28/getting-your-apple-developer-certification-part-3/
Geç olsun güç...
Google Translate'in paralı bir servis haline...
Oturduk bir kaç arama yaptık ve http://detectlanguage.com/ adlı bedava bir tool ile karşılaştık. En azından dili detect edebiliyoruz : )
Picplum + ifttt = Happiness
picplum:
Want to automatically add photos to your Picplum account when you post photos to other services? You can use the service ifttt (short for if this then that). It lets you create triggers and then do something when that happens. We have started seeing Picplum users making ifttt “recipes” for Picplum and other services like Flickr, Tumblr and Instagram.
For more explanation about what...
Arasta
Merzifon’da ayakkabıcılar arastası vardır, Paşa camisinini hemen altında. Arastanın aşağı ucu ayrı bir şenlik yukarı ucu ayrı bir şenlik. Arastanın kendisi ayrı bir şenlik. Herkes birbirini tanır.
Pazartesi günleri ne kalabalık olur buralar. Bütün Merzifon halkı pazara koşturur. Sabah erkenden gelir taze taze sebze meyve almak için. Sonra peynir de var yoğurt da pazar yerinin alt katında....
December 2011
8 posts
Eric Bidelman: Introducing filer.js →
ericbidelman:
Some 1300+ lines of code, 106 tests, and a year after I first started it, I’m happy to officially unleash filer.js (https://github.com/ebidel/filer.js); a wrapper library for the HTML5 Filesystem API.
Unlike other libraries [1, 2], filer.js takes a different approach and incorporates…
Some tools and Articles
it is time for some technical information
Optimize your system’s memory usage when using real mode drivers http://www.techrepublic.com/article/optimize-your-systems-memory-usage-when-using-real-mode-drivers/1055156
Get IT Done: Troubleshooting real mode and protected mode drivers http://www.techrepublic.com/article/get-it-done-troubleshooting-real-mode-and-protected-mode-drivers/1047056
...
clear DNS cache on mac
DNS request are usually cached, that’s good as it help to speeds up the lookups within the same host but sometimes we will want to clear the cache so it don’t hold the values that are no longer valid. To clear DNS cache in Mac OSX, we can do it with the help of Terminal.
dscacheutil -flushcache
Denys Mishunov: "Add" menu like in the Path... →
mishunov:
Yesterday I have installed the Path app on my iPhone. I was really pleased with how slick the application is. Not functionally, because it doesn’t do anything special — yet another way of “socializing”, but how the app has been built and even tiny details are thought through. Really good…