osman hömek / not defteri

February 16, 2010

3 items, killer add-on for developer for ie

Filed under: development — osman @ 12:59 pm

 ie developer toolkitie7 PRO : http://www.ie7pro.com/fiddler2 : http://www.fiddler2.com

July 29, 2009

arcgis desktop sdk for the Microsoft .Net Framework

Filed under: development — osman @ 5:29 pm

if you install the sdk for .net

you must install .Net framework support

which you can find under the add&remove programs ArcGis Desktop -> Modify Installation screen

April 25, 2009

CultureInfo

Filed under: development — osman @ 10:11 am

System.Globalization.
CultureInfo culture = new CultureInfo(”en-US”, false);
culture.NumberFormat.NumberDecimalSeparator =
“,”;
culture.NumberFormat.NumberGroupSeparator =
“”;
Thread.CurrentThread.CurrentCulture = culture;

April 13, 2009

open layers

Filed under: development — osman @ 10:37 am

http://www.openlayers.org/

 map js kütüphanesi, google veya esri js api benzeri, free

March 2, 2009

Async Calls using ASP.NET 2.0 Client Callback won’t work properly if the OnComplete function makes another Client Callback

Filed under: development — osman @ 1:03 pm

<script type=”text/javascript”>
function WebForm_CallbackComplete_SyncFixed() {
        // SyncFix: the original version uses “i”
        // as global thereby resulting in
        // javascript errors when “i” is used
        // elsewhere in consuming pages

for (var i = 0; i < __pendingCallbacks.length; i++) {
callbackObject = __pendingCallbacks[ i ];
if (callbackObject && callbackObject.xmlRequest && (callbackObject.xmlRequest.readyState == 4)) {
// the callback should be executed after releasing all resources
// associated with this request.
// Originally if the callback gets executed here and the callback
// routine makes another ASP.NET ajax request then the pending slots and
// pending callbacks array gets messed up since the slot is not released
// before the next ASP.NET request comes.
// FIX: This statement has been moved below
// WebForm_ExecuteCallback(callbackObject);
if (!__pendingCallbacks[ i ].async) {
__synchronousCallBackIndex = -1;
}
__pendingCallbacks[i] = null;

var callbackFrameID = “__CALLBACKFRAME” + i;
var xmlRequestFrame = document.getElementById(callbackFrameID);
if (xmlRequestFrame) {
xmlRequestFrame.parentNode.removeChild(xmlRequestFrame);
}

// SyncFix: the following statement has been moved down from above;
WebForm_ExecuteCallback(callbackObject);
}
}
}
window.onload = function Onload(){
if (typeof (WebForm_CallbackComplete) == “function”) {
// set the original version with fixed version
WebForm_CallbackComplete = WebForm_CallbackComplete_SyncFixed;
}
}
</script>

http://social.msdn.microsoft.com/forums/en-US/netfxjscript/thread/6c4db554-539a-4b5e-9c0c-e1c41eed4fbb/

http://forums.esri.com/Thread.asp?c=158&f=2276&t=249996

February 19, 2009

proje yönetimi ve bedavaları

Filed under: development, programlama — osman @ 2:18 pm

http://www.tigris.org/

adresini bir kenara yazalım. kendi ağızları ile “Open Source Software Engineering Tools” işi ile meşguller.

Birçok aracı kendi bünyelerinde barındırıyorlar. kesinlikle takip edilmeli.

 visual source safe tarzı bir yazılım olarak msdn in bloglarından birinde yapılan ankette subversion birinci sırada idi.

burada onu da anmadan geçmeyelim. http://subversion.tigris.org/

 Öte yandan server ı için visual svn yi öneririm. http://www.visualsvn.com/server/

client olaraksa iki tercihim var visual studio için paralı visualvsn veya http://ankhsvn.open.collab.net/servlets/ProjectProcess?pageID=3797 adresindeki ankhSVN

mutlaka atlanmadan geçilmemesi gereken SVN client ı ise : http://tortoisesvn.net/

komple proje yönetimi falan işleri için incelenmesi gereken bir ürün : http://www.open.collab.net/

 öte yandan kullandığım http://www.16bugs.com/ sitesini müşteri ilişkileri açısından çok yalın ve işgörür bulduğumu belirtmeden geçemeyeceğim. kendileri bug tracink olarak geçerler.

February 16, 2009

en ucuz cinsinden harita component i asp.net için

Filed under: development — osman @ 4:10 pm

http://www.vdstech.com/index.htm

 birçok belediye tarafından kullanıldığı kulağıma geldi.

aklımızda olsun…

November 18, 2008

ajaxtan geriye nesne döndürmek için

Filed under: arcobjects, development — osman @ 5:03 pm

Label1.Text = objectid.ToString() + ” : “ + il_adi;string lbl1BackString = “”;

using (System.IO.StringWriter sw = new System.IO.StringWriter()){

HtmlTextWriter htw = new HtmlTextWriter(sw);Label1.RenderControl(htw);

lbl1BackString = sw.ToString();

}

CallbackResult CallBackLabel1 = new CallbackResult(“span”, “Label1″, “innercontent”, lbl1BackString);map1.CallbackResults.Add(CallBackLabel1);

March 31, 2008

google maps için sıkı kaynak

Filed under: development, programlama — osman @ 10:39 am

http://econym.googlepages.com/index.htm

November 16, 2007

oracle kill session

Filed under: development — osman @ 3:15 pm

SELECT o.object_id,s.sid,s.serial#,o.object_type,o.object_name,
l.oracle_username,os_user_name,locked_mode,s.program
FROM v$locked_object l,dba_objects o,v$session s
WHERE l.object_id = o.object_id AND l.session_id=s.sid

ALTER SYSTEM KILL SESSION ’sid,serial’

 kaynak:http://blog.harunpeksen.net/2007/07/oracleda-kill-process-ilemi.html

Next Page »

Powered by WordPress