developer etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
developer etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

9 Ocak 2009 Cuma

mailservice adding

vs command prompt tan project folder a going

C:\Documents and Settings\erdem.tomus\My Documents\Visual Studio 2008\Projects\Q2STerakkiWorkflows\Q2S.MailService\bin>


yüklemek için installutil q2s.mailservice.exe

silmek için installutil q2s.mailservice.exe /u

16 Temmuz 2008 Çarşamba

cv

Erdem TOMUŞ
erdemtomus@gmail.com

EDUCATION:
2007-… Marmara University, Istanbul
• Master on Information Systems (Scholarship)
Language of Instruction: Turkish Overall GPA: 3.48 Thesis: Business Workflow Processes (just started)
2002-2006 Yeditepe University, Istanbul
• B.S. in Management Information Systems (Scholarship)
Language of Instruction: English Overall GPA: 3.34

1999-2002 Denizli Er-Bakır Science High School, Denizli

EXPERIENCE:
04/07-present ENOVA: Advanced Engineering and Information Technologies
(MS Gold Partner) – Software Developer

• Software Team member in Various Information Systems for commercial firms in Turkey. Responsibilities included:
 Analyzing information systems prerequisites ( system requirements specification)
 Developing web, workflow and portal applications.
 Implementation and deployment of projects on site.
 Some Projects : “Avea Travel & Expense Workflows(WWF based) “ , “Sabancı Satın Alma Talebi” (SAP web service integrated .Net based),Silkar Document Sharing (ASP.Net Website),Arçelik Buhar Oyun(Flash Xml&.Net based) , ”Aygaz Bayi Destek” (ASP.NET&C# based portal), “Borusan Workflows” (WWF based)

04/05 – 04/07 Elit Software Company – Accounting and Educational Softwares
Part-time Employee
• Software Developer of the Firm
 MS-Access & Access Basic (Vb.Net) based Accounting Software Development for small firms in Turkey.
 Internal ASP.Net based Sales Tracking Software development.

06/04 – 08/04 Esit Electronics - Manufacturing
• Internship at IT Department
 Backing up servers, maintenance of company network

ACTIVITIES:
• January 2008 MOSS Implementation Education, Arı Bilişim
• August 2007-August 2008 Certificates of Microsoft Exams (MCAD) (70-528, 70-526, 70-529, 70-536)
• August 2008 Internal Workflow Education and Workshop given by me
• May 2006 TOEFL – 218
• September 2003- June 2004 Participated in the science magazine publishment of the Yeditepe Science Club


SKILLS:
English: Fluent
German: Beginner
ASP.NET, C#, Html, JS, Ajax,VB.Net
MOSS
MS Operation Systems, MS Access


PERSONAL INFORMATION:
Birth: 01-06-1984 Denizli TURKEY
Single, Male
Nationality: TC
Driving License: B Class
No Military Obligations till 10/2011 because of master education
Hobbies: Cranberries, Cinema, Fenerbahçe

27 Mayıs 2008 Salı

microSoft certificates till today...

70-526
70-528
70-536
70-529

24 Nisan 2008 Perşembe

asp.net email validator

asp: TextBox ID="email" runat="server" >
asp: RequiredFieldValidator ID="reqEmail" runat="server" ControlToValidate="email" ErrorMessage=""/>
asp: RegularExpressionValidator ID="reqAuthEmail" runat="server" ControlToValidate="email" ValidationExpression="^[\w-\.]+@([\w-]+\.)+[\w-]{2,3}$" ErrorMessage="" />

16 Nisan 2008 Çarşamba

avea dePLoy

aspnet_compiler -v / -p "C:\Inetpub\wwwroot\Q2SINTRAVEAWorkflowEngine" -f -u C:\Q2SDeployWF\Engine\

aspnet_compiler -v / -p "C:\Inetpub\wwwroot\Q2SINTRAVEAWorkflowForm" -f -u C:\Q2SDeployWF\Form\

29 Mart 2008 Cumartesi

requestten türkçe değer dönmüyorsa...

CodePage="65001" Culture="tr-TR"

25 Mart 2008 Salı

WCF servisi register etmek

WCF Servisi call ederken muhtemelen ilk karşılaşacağınız hata bu olacaktır.

system.serviceModel/client configuration section cannot be created..

command promp tan
C:\WINDOWS\Microsoft.NET\Framework\v3.0\Windows Communication Foundation
dizinine gidiyoruz ve ServiceModelReg.exe -i -x yazıp çalıştırıyoruz.

17 Mart 2008 Pazartesi

random number,string yaratma

Random rand = new Random((int)DateTime.Now.Ticks);
int RandomNumber;
RandomNumber = rand.Next(100000, 999999);

int CharCode = rand.Next(Convert.ToInt32('a'), Convert.ToInt32('z'));
char RandomChar = Convert.ToChar(CharCode);

14 Şubat 2008 Perşembe

install/uninstall windows services..

INSTALL

To install your Windows service, you must first add a Setup project. With your service project loaded in Visual Studio .NET, select File > Add Project > New Project. From the list of project types, select Setup and Deployment Projects. From the list of templates, select Setup wizard. Set the location appropriate for your situation and click on OK to create the project. In the Setup wizard, skip page 1. On page 2 (of 5) select "Create a Setup for a Windows application." On page 3, select "Primary output from ." On page 4, click on Finish. The final step (a crucial one) is to add a custom action to run the code in the installer class you added to your project (as part of reading the MSDN article). To do that, select View > Editor > Custom Actions. Right-click on the Install node in the Custom Actions treeview. In the Select Item in Project dialog, make sure Application Folder is selected, and click on OK. Click on OK again to select the "Primary output from " option. You should now see this as a child node of the Install node. That's all you have to do. Rebuild both the project and the setup project, run the installation, and the service should be installed as a Windows service.


UNINSTALL

1) Make code changes using VS.NET
2) Uninstall the service using InstallUtil /u PathToSerive.exe
3) At this point the service status is disabled and I have to reboot.

13 Şubat 2008 Çarşamba

popup js'i

script language="JavaScript">
function openWindow() {
popupWin = window.open('http://www.daffodillament.com', 'remote', 'width=577,height=382')
}

/script>

onload="openWindow();"

< başa ve sona bunu ekleyin tabi...

yeni dataset / new dataset()

DataSet dsReportForExcel = new DataSet();

dsReportForExcel.Tables.Add();
dsReportForExcel.Tables[0].Columns.Add("PERSONNEL");
dsReportForExcel.Tables[0].Columns.Add("HARCAMA YTL");
dsReportForExcel.Tables[0].Columns.Add("HARCAMA EUR");
dsReportForExcel.Tables[0].Columns.Add("HARCAMA USD");
dsReportForExcel.Tables[0].Columns.Add("TOPLAMA HARCAMA YTL");
dsReportForExcel.Tables[0].Columns.Add("TOPLAMA HARCAMA EUR");
dsReportForExcel.Tables[0].Columns.Add("TOPLAMA HARCAMA USD");
dsReportForExcel.Tables[0].Columns.Add("AVANS YTL");
dsReportForExcel.Tables[0].Columns.Add("AVANS EUR");
dsReportForExcel.Tables[0].Columns.Add("AVANS USD");
dsReportForExcel.Tables[0].Columns.Add("TOPLAM AVANS YTL");
dsReportForExcel.Tables[0].Columns.Add("TOPLAM AVANS EUR");
dsReportForExcel.Tables[0].Columns.Add("TOPLAM AVANS USD");
dsReportForExcel.Tables[0].Columns.Add("TARIH");

dsReportForExcel.Tables[0].Rows.Add(personnel, travelTotalYtl,travelTotalEur,travelTotalUsd,
expenseTotalYtl, expenseTotalEur, expenseTotalUsd, grandTotalYtl, grandTotalEur, grandTotalUsd,
grandExpenseTotalYtl, grandExpenseTotalEur, grandExpenseTotalUsd,date);

6 Şubat 2008 Çarşamba

deployment komutu

aspnet_compiler -v / -p "C:\aygazbayidestek" -f -u "C:\AygazBayiDesteKDeploy"

mesela....
of len aygaz of... :)

7 Ocak 2008 Pazartesi

Ajax Request'den aynı değerler dönüyorsa sürekli :)

Avoid the cache effect in Internet Explorer

evet bilin ki cache sorununuz var i.e bunu keşliyor demektir,ne keş bi program bu ehe ehe.şaka bi yana epey bir uğraştırdı beni :)

işte bir dünyalının çözümü
bunun yerine
var url = 'GetCustomers.aspx?country=ireland'
bunu kullanın efem
var url = 'GetCustomers.aspx?country=ireland' + "&dummy=" + new Date().getTime();

sahibinin de linkini verelim ayıp olmasın...
işte burdaaa

4 Ocak 2008 Cuma

DB RESTORE geçmiş tarihli SQL

RESTORE DATABASE [AYGAZPORTAL] FROM DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\DatabaseYedek' WITH FILE = 1, RECOVERY, NOUNLOAD, REPLACE, STATS = 10
GO


çalışmazsa önüne bu..

ALTER DATABASE [AYGAZPORTAL] SET SINGLE_USER WITH ROLLBACK IMMEDIATE


sonra iş bitince geri almak için bu..

ALTER DATABASE [AYGAZPORTAL] SET MULTI_USER

4 Aralık 2007 Salı

1234-hashli

7110EDA4D09E062AA5E4A390B0A572AC0D2C0220


lazım oluyor arada

3 Aralık 2007 Pazartesi

js’de 2 tarih arasındaki gün farkını bulma

JavaScript'te 2 tarihin farkını bulmak için gayet sade bir kod parçacığı.

//

// Any source code blocks look like this

//

t1="10/10/2006" ;


t2="15/10/2006";

//Total time for one day

var one_day=1000*60*60*24;

//Here we need to split the inputed dates to convert them into standard format for furter execution

var x=t1.split("/");

var y=t2.split("/");

//date format(Fullyear,month,date)


var date1=new Date(x[2],(x[1]-1),x[0]);


var date2=new Date(y[2],(y[1]-1),y[0])

var month1=x[1]-1;

var month2=y[1]-1;


//Calculate difference between the two dates, and convert to days


var _Diff=Math.ceil((date2.getTime()-date1.getTime())/(one_day));

//_Diff gives the diffrence between the two dates.