Skip to main content

Home/ .Net Developers/ Group items tagged programming

Rss Feed Group items tagged

Tarik Guney

Hidden Features of JavaScript? - Stack Overflow - 0 views

  •  
    Hidden features of Javascript, the popular client side programming language.
Tarik Guney

Great programming quotes - Stack Overflow - 0 views

  • Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.
  • Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live
  • It works on my machine.
  •  
    The best code QA method.
Tarik Guney

Lazy Initialization - 0 views

  • Basic) methods for lazy init
  •  
    Lazy initialization is primarily used to improve performance, avoid wasteful computation, and reduce program memory requirements
Tarik Guney

Hidden Features of C# - 0 views

  •  
    The hidden features of C# Programming language. These tips and features are making our job easier most of times.
Tarik Guney

lock Statement (C# Reference) - 0 views

  • The lock keyword marks a statement block as a critical section by obtaining the mutual-exclusion lock for a given object, executing a statement, and then releasing the lock
  • The expression reference type in lock(expression) should not be null.
  •  
    The lock keyword ensures that one thread does not enter a critical section of code while another thread is in the critical section. If another thread tries to enter a locked code, it will wait, block, until the object is released. The section Threading (C# Programming Guide) discusses threading. The lock keyword calls Enter at the start of the block and Exit at the end of the block.
Tarik Guney

Lazy loading - Wikipedia, the free encyclopedia - 0 views

  • Lazy loading is a design pattern commonly used in computer programming to defer initialization of an object until the point at which it is needed. It can contribute to efficiency in the program's operation if properly and appropriately used. The opposite of lazy loading is Eager Loading.
Tarik Guney

CodeProject: Windows 7 : New Features Explained Using .NET. Free source code and progra... - 0 views

  •  
    Working with the new features of Windows 7 with C#.
Tarik Guney

ASP.NET 2.0 Page LifeCycle - 2 views

  •  
    Asp.NET Page Life Cycle Diagram.
Tarik Guney

JavaScript Kit- Ajax Reference (XMLHttpRequest object) - 0 views

  • Ajax is a popular term used to describe asynchronous (versus synchronous) requests made from the client to the server. In JavaScript, Ajax requests are handled using the XMLHttpRequest object, which lets you open a connection, send the request, then handle the data returned by the server seamlessly in the background.
  •  
    Complete XMLHttpRequest reference.
  •  
    Complete XMLHttpRequest reference.
Tarik Guney

Anonymous Methods (C# Programming Guide) - 0 views

  • Creating anonymous methods is essentially a way to pass a code block as a delegate parameter
  •  
    How to pass anon methods via Delegate. This article shows this in an easy way.
Tarik Guney

Dealing with REST Web Services « Aspguy's Weblog - 0 views

  • The XElement class (declared in System.Linq.XML) provides a Load method that can retrieve an XML data from a url with GET  method:
  •  
    Consuming REST Web Services in C# .NET Platform
Tarik Guney

Binary tree - Wikipedia, the free encyclopedia - 0 views

  • Not to be confused with B-tree.
  •  
    In computer science, a binary tree is a tree data structure in which each node has at most two children. Typically the first node is known as the parent and the child nodes are called left and right. In type theory, a binary tree with nodes of type A is defined inductively as TA = μα. 1 + A × α × α. Binary trees are commonly used to implement binary search trees and binary heaps.
Tarik Guney

Closure Compiler - Google Code - 1 views

  • The Closure Compiler is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls.
1 - 13 of 13
Showing 20 items per page