Tag : Deep

Title User Language Tags Description Date
Jquery Simply Deep Linking with BBQ (Back Button & Query Library) Meander365 jQuery

This is a cut down example using custom tabs (you can easily add a custom ajax event to load in content - just follow Ben Alman's example).

November 9, 2010
swf address necnova ActionScript 3

How to use SWFAddress within AS3

September 18, 2010
How do I copy an object in Python? magicrebirth Python September 16, 2010
Deep Copy of any Table athlon32 Lua By defualt Lua makes shallow copies when one variable is assigned to another. That is, its variables act like pointers, and changes to one are reflected in all others pointing to the same thing. This function makes a deep copy (it actually assigns the values of one table to another). It is recursive too, so even tables containing tables will be handled properly. May 29, 2010
DeepCode Hong Pham C# Use to deep clone an object September 30, 2008
DeepZoom: MultiScaleImage with panning and zooming Simon Kendall C# How to use the DeepZoom feature of Silverlight and the MultiScaleImage control to create an image that can be panned and zoomed. August 5, 2008
stripslashes_deep xuanyan Other June 1, 2008
DeepCopy Filip K C# deep copy an object February 7, 2008
Deep Clone mit den BinaryFormatter Alexander Burck VB.NET Deep Clone mit den BinaryFormatter December 21, 2007
Shallow and Deep Cloning Adam Emrick C# Easy implementation. October 2, 2007
Deeply applying str() across a data structure Danny Yoo python

The str() in the standard library behaves in a slightly weird way when applied against lists: on each element of the list, the repr() is appended. In contrast, this module provides a deep_str() that deeply applies str() across lists.

November 10, 2006
Using reduce to access deeply nested dictionaries Robin Bryce python

Sometimes, especialy if you are working with database object mappers, you encounter deeply nested dictionaries. You want to access a particular leaf item and you have in your hand the long, decorated, name. reduce can be your friend!

March 20, 2006
Linking to Images from Deep Pages William Lorenz ASP.NET When using a PageBase file like Header or Footer, it is possible to lose a path to the images in a folder under the root (like root/images). Use this code to overcome such problems. December 7, 2005
Alternative Deep Copy Clone technique Maruis Marais C# An alternative Deep Copy Clone technique using Serialization instead of Reflection November 28, 2005
Create Deep Copy of an Object Dave Donaldson C# This snippet shows how to implement the Clone method on the ICloneable interface to create a deep-copy of a given object. It simply serializes the object to a MemoryStream using a BinaryFormatter, and then deserializes the MemoryStream back out. August 30, 2005