Hangi platform

27. Mar 2011 Comments 0 comments

Yazilim ile ugrasanlarin muhabbetlerinden eksik olmaz – java daha iyi, platform bagimsiz. – olur mu C# icinde mono var. Bir platforma bagli kalma fikri. Yillar icinde onemini pek yitirmedi. Son kullanici acisindan ise mobil ( gezici ) olmali. Son 3-4 yildan beri mini dizustu ( notebook) lerin, tabletlerin ve gelismis cep telefonlari ile her yerde [...]

The Joel Test

02. Oct 2010 Comments 1 comment

Are you aware of this? The Joel Test Do you use source control? Can you make a build in one step? Do you make daily builds? Do you have a bug database? Do you fix bugs before writing new code? Do you have an up-to-date schedule? Do you have a spec? Do programmers have quiet [...]

Convert javascript ticks to .net ticks

01. Jun 2010 Comments 10 comments

js.getTime() returns ticks since 1.1.1970 however .net ticks since 1.1.2000. I had a case where every clicks is recorded on client and processed on the server. Here is how i convert js ticks to c# ticks. Js Code tracking.StartTime = new Date().getTime() – new Date().getTimezoneOffset() * 60 * 1000; C# Code const long ticks1970 = [...]

Sql serverda kolum isimlerini almak

08. May 2010 Comments 1 comment

SELECT table_name=sysobjects.name, column_name=syscolumns.name, datatype=systypes.name, length=syscolumns.length FROM sysobjects JOIN syscolumns ON sysobjects.id = syscolumns.id JOIN systypes ON syscolumns.xtype=systypes.xtype WHERE sysobjects.xtype=’U’ ORDER BY sysobjects.name,syscolumns.colid yada select Table_Name, Column_Name,DATA_TYPE from Information_schema.Columns with (nolock) order by Table_Name

Resetting Nokia N810 lock code

19. Mar 2010 Comments 36 comments

Resetting Nokia N810 lock code 1- download getlockcode 2- login as root on console 3- copy it somewhere other than mmc 4- chmod +x getlockcode 5- execute getlockcode Thats it

where is SQL Server Management Studio?

14. Feb 2010 Comments 226 comments

i could not install SQL Server Management Studio. The solution Microsoft offers is here , probably it takes one too many hours My own solution is install Visual Studio 2008 Sp 1 , completely uninstall Visual Studio 2008. never ever use/install for home environment again. install Sql Server 2008 Sp 1, reinstall it using original [...]

Restore Sql Database from only bak file

21. Jan 2010 Comments 10 comments

RESTORE DATABASE [Device] FROM DISK = ‘d:\Dbs\tlnsDevice.BAK’ WITH REPLACE

Garanti Bonus Kart Web Sitesi

13. Dec 2009 Comments 27 comments

Çok basit bir ayar sorunu yüzünden hala websiteleri açılmıyor. Teknik olarak basit ama işlev büyük. Adres Bonus www siz  adres http://bonus.com.tr/ Bonus www li adres http://www.bonus.com.tr/ Deneyin, farkı gorun.

Sql Server Express’de Performans Artirma

13. Dec 2009 Comments 16 comments

Daha onceki islerimde Sql Server Enterprise yada Oracle ile clustur serverlar uzerinde 400gb – 2 tb calisiyordum. Bu durumlarda sql server performans islemleri sandigimdan daha kolay oluyordu. Simdi ise elimde bir adet Sql Express surumu ve 2.5 gb veritabani var. Bunun performans arastirmasini yapmak kolay olmuyor. Buraya ilerde de referans olsun diye adim adim yapacagim/okuyacagim [...]