<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 15:08:33 +0000</lastBuildDate>
    <item>
      <title>(SQL) Object Dependencies TSQL - joachimpr</title>
      <link>https://snipplr.com/view/305378/object-dependencies-tsql</link>
      <description>&lt;p&gt;Get all SQL Server object dependencies&lt;/p&gt;</description>
      <pubDate>Thu, 16 Feb 2017 17:35:06 UTC</pubDate>
      <guid>https://snipplr.com/view/305378/object-dependencies-tsql</guid>
    </item>
    <item>
      <title>(C#) How to Add Rectangle or Line Object to An Existing PDF File using .NET - sherazam</title>
      <link>https://snipplr.com/view/147619/how-to-add-rectangle-or-line-object-to-an-existing-pdf-file-using-net</link>
      <description>&lt;p&gt;This technical tip shows how .NET developers can add line object to an Existing PDF File inside their .NET applications. Aspose.Pdf for .NET supports the feature to add graph objects (for example graph, line, rectangle etc.) to PDF documents. You also get the leverage to add Line object where you can also specify the dash pattern, color and other formatting for Line element. The legacy Aspose.Pdf.Generator provides the feature to set DashLengthInBlack and DashLengthInWhite properties where dash pattern for line object can be defined. Similar features can be accomplished while using DOM approach.&lt;/p&gt;</description>
      <pubDate>Wed, 20 Jul 2016 19:02:40 UTC</pubDate>
      <guid>https://snipplr.com/view/147619/how-to-add-rectangle-or-line-object-to-an-existing-pdf-file-using-net</guid>
    </item>
    <item>
      <title>(JavaScript) Remove an item from array using UnderscoreJS - Balamir</title>
      <link>https://snipplr.com/view/109564/remove-an-item-from-array-using-underscorejs</link>
      <description>&lt;p&gt;Using underscore.js, you could combine .findWhere with .without&#13;
&#13;
Although, since you are creating a new array in this case anyway, you could simply use _.filter or the native Array.prototype.filter function (just like shown in the other question). Then you would only iterate over array once instead of potentially twice like here.&#13;
&#13;
If you want to modify the array in-place, you have to use .splice. This is also shown in the other question and undescore doesn't seem to provide any useful function for that.&lt;/p&gt;</description>
      <pubDate>Mon, 14 Sep 2015 19:58:50 UTC</pubDate>
      <guid>https://snipplr.com/view/109564/remove-an-item-from-array-using-underscorejs</guid>
    </item>
    <item>
      <title>(JavaScript) Copy object by value instead of by reference - BrentS</title>
      <link>https://snipplr.com/view/102473/copy-object-by-value-instead-of-by-reference</link>
      <description>&lt;p&gt;To do this for any object in JavaScript will not be simple or straightforward. You will run into the problem of erroneously picking up attributes from the object's prototype that should be left in the prototype and not copied to the new instance. If, for instance, you are adding a clone method to Object.prototype, as some answers depict, you will need to explicitly skip that attribute. But what if there are other additional methods added to Object.prototype, or other intermediate prototypes, that you don't know about? In that case, you will copy attributes you shouldn't, so you need to detect unforeseen, non-local attributes with the hasOwnProperty method.&#13;
&#13;
In addition to non-enumerable attributes, you'll encounter a tougher problem when you try to copy objects that have hidden properties. For example, prototype is a hidden property of a function. Also, an object's prototype is referenced with the attribute __proto__, which is also hidden, and will not be copied by a for/in loop iterating over the source object's attributes. I think __proto__ might be specific to Firefox's JavaScript interpreter and it may be something different in other browsers, but you get the picture. Not everything is enumerable. You can copy a hidden attribute if you know its name, but I don't know of any way to discover it automatically.&#13;
&#13;
Yet another snag in the quest for an elegant solution is the problem of setting up the prototype inheritance correctly. If your source object's prototype is Object, then simply creating a new general object with {} will work, but if the source's prototype is some descendant of Object, then you are going to be missing the additional members from that prototype which you skipped using the hasOwnProperty filter, or which were in the prototype, but weren't enumerable in the first place. One solution might be to call the source object's constructor property to get the initial copy object and then copy over the attributes, but then you still will not get non-enumerable attributes. For example, a Date object stores its data as a hidden member:&#13;
&#13;
The date string for d1 will be 5 seconds behind that of d2. A way to make one Date the same as another is by calling the setTime method, but that is specific to the Date class. I don't think there is a bullet-proof general solution to this problem, though I would be happy to be wrong!&#13;
&#13;
When I had to implement general deep copying I ended up compromising by assuming that I would only need to copy a plain Object, Array, Date, String, Number, or Boolean. The last 3 types are immutable, so I could perform a shallow copy and not worry about it changing. I further assumed that any elements contained in Object or Array would also be one of the 6 simple types in that list. This can be accomplished with code like the following:&#13;
&#13;
The above function will work adequately for the 6 simple types I mentioned, as long as the data in the objects and arrays form a tree structure. That is, there isn't more than one reference to the same data in the object. For example:&lt;/p&gt;</description>
      <pubDate>Fri, 12 Jun 2015 23:14:40 UTC</pubDate>
      <guid>https://snipplr.com/view/102473/copy-object-by-value-instead-of-by-reference</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript object template - rickygri</title>
      <link>https://snipplr.com/view/75379/javascript-object-template</link>
      <description>&lt;p&gt;A template for a javascript object with a object.create shiv to condense into object prototypes&lt;/p&gt;</description>
      <pubDate>Sun, 20 Jul 2014 04:15:47 UTC</pubDate>
      <guid>https://snipplr.com/view/75379/javascript-object-template</guid>
    </item>
    <item>
      <title>(JavaScript) Create new Object From Variable in JavaScript - apphp-snippets</title>
      <link>https://snipplr.com/view/75020/create-new-object-from-variable-in-javascript</link>
      <description>&lt;p&gt;This example of code allows you to create a new object in javascript (using simple inheritance) such that the class of the object is defined from a variable. After creating the object you may use it for your purposes.&lt;/p&gt;</description>
      <pubDate>Wed, 02 Jul 2014 18:06:43 UTC</pubDate>
      <guid>https://snipplr.com/view/75020/create-new-object-from-variable-in-javascript</guid>
    </item>
    <item>
      <title>(Objective C) Simple Spritesheet - sidneydekoning</title>
      <link>https://snipplr.com/view/74374/simple-spritesheet</link>
      <description>&lt;p&gt;Very simple use of an non-animating spritesheet for iOS&lt;/p&gt;</description>
      <pubDate>Wed, 30 Apr 2014 18:06:53 UTC</pubDate>
      <guid>https://snipplr.com/view/74374/simple-spritesheet</guid>
    </item>
    <item>
      <title>(JavaScript) OOP Javascript Template with constructor and inheritance - rickygri</title>
      <link>https://snipplr.com/view/74307/oop-javascript-template-with-constructor-and-inheritance</link>
      <description>&lt;p&gt;From @blixt http://stackoverflow.com/users/119081/blixt&#13;
&#13;
As you can see, the classes correctly interact with each other (they share the static id from MyClass, the announce method uses the correct get_name method, etc.)&#13;
&#13;
One thing to note is the need to shadow instance properties. You can actually make the inherit function go through all instance properties (using hasOwnProperty) that are functions, and automagically add a super_&lt;method&gt; property. This would let you call this.super_get_name() instead of storing it in a temporary value and calling it bound using call.&#13;
&#13;
For methods on the prototype you don't need to worry about the above though, if you want to access the super class' prototype methods, you can just call this.constructor.super.prototype.methodName. If you want to make it less verbose you can of course add convenience properties. :)&lt;/p&gt;</description>
      <pubDate>Wed, 23 Apr 2014 19:01:55 UTC</pubDate>
      <guid>https://snipplr.com/view/74307/oop-javascript-template-with-constructor-and-inheritance</guid>
    </item>
    <item>
      <title>(PHP) Convert PDF from Remote Server to other Format using Aspose.Pdf for Cloud API in PHP - johansonkatherine</title>
      <link>https://snipplr.com/view/74182/convert-pdf-from-remote-server-to-other-format-using-asposepdf-for-cloud-api-in-php</link>
      <description>&lt;p&gt;Aspose.PDF for Cloud API has released PHP SDK which allows PHP developers to convert PDF files uploaded to a remote server to other formats. You can pass URL and format parameters to specify the PDFâ€™s URL and output format and use the PUT method of the convert resource to convert remote PDF files. You can download Aspose Cloud PHP SDK from the link given below:&#13;
&#13;
https://github.com/asposeforcloud/Aspose_Cloud_SDK_For_Php&#13;
&#13;
The following code sample shows how you can use Aspose Cloud PHP SDK to convert PDF from remote server to TIFF image. You can define any format you want your PDF to convert to in â€œconvertByUrl methodâ€.  You can view code for other languages on this page given below.&#13;
&#13;
&#13;
http://www.aspose.com/docs/display/pdfcloud/Convert+PDF+from+Remote+Server+to+other+Formats&lt;/p&gt;</description>
      <pubDate>Fri, 11 Apr 2014 18:31:54 UTC</pubDate>
      <guid>https://snipplr.com/view/74182/convert-pdf-from-remote-server-to-other-format-using-asposepdf-for-cloud-api-in-php</guid>
    </item>
    <item>
      <title>(C#) C#/.NET  Code Samples to Save Microsoft OneNote (.one) file as an image (.PNG, .BMP, .JPEG, .GIF) file - johansonkatherine</title>
      <link>https://snipplr.com/view/73837/cnet--code-samples-to-save-microsoft-onenote-one-file-as-an-image-png-bmp-jpeg-gif-file</link>
      <description>&lt;p&gt;The Aspose.Note for .NET API allows developers to open files &amp; manipulate elements of OneNote books &amp; export them to PNG, GIF, JPEG, BMP and PDF formats. The following code sample shows developers how to save OneNote File as an image in C#/.NET&lt;/p&gt;</description>
      <pubDate>Tue, 11 Mar 2014 20:54:07 UTC</pubDate>
      <guid>https://snipplr.com/view/73837/cnet--code-samples-to-save-microsoft-onenote-one-file-as-an-image-png-bmp-jpeg-gif-file</guid>
    </item>
    <item>
      <title>(SQL) List locked object Oracle Database - ceduard0</title>
      <link>https://snipplr.com/view/72043/list-locked-object-oracle-database</link>
      <description>&lt;p&gt;List locked object Oracle Database using V$LOCKED_OBJECT view&lt;/p&gt;</description>
      <pubDate>Tue, 06 Aug 2013 02:51:29 UTC</pubDate>
      <guid>https://snipplr.com/view/72043/list-locked-object-oracle-database</guid>
    </item>
    <item>
      <title>(JavaScript) Template for a Javascript function with optional and mandatory arguments passed as an object collection - davidwaterston</title>
      <link>https://snipplr.com/view/68920/template-for-a-javascript-function-with-optional-and-mandatory-arguments-passed-as-an-object-collection</link>
      <description>&lt;p&gt;A simple template for a JavaScript function which allows for an arbitrary number of named arguments to be passed in. This is achieved by passing a single object as an argument with each of the 'real' arguments being a key/value pair. In this way arguments can be passed in any order and we can easily add in new arguments.&#13;
&#13;
To call, simply pass in an object with the required arguments:&#13;
    myFunction ({opt1: 'cat', opt4: 'dog', opt2: 'monkey'})&#13;
&#13;
Validates clean in jsLint.&lt;/p&gt;</description>
      <pubDate>Mon, 03 Dec 2012 07:48:27 UTC</pubDate>
      <guid>https://snipplr.com/view/68920/template-for-a-javascript-function-with-optional-and-mandatory-arguments-passed-as-an-object-collection</guid>
    </item>
    <item>
      <title>(Objective C) xcode Objective C - build class / objects - kutyadog</title>
      <link>https://snipplr.com/view/67791/xcode-objective-c--build-class--objects</link>
      <description>&lt;p&gt;Example of how to build and call a class or object&lt;/p&gt;</description>
      <pubDate>Thu, 18 Oct 2012 07:40:34 UTC</pubDate>
      <guid>https://snipplr.com/view/67791/xcode-objective-c--build-class--objects</guid>
    </item>
    <item>
      <title>(JavaScript) JSON Tree(1 function 15 lines)Nested Ul from single or multidimensional json object - halk</title>
      <link>https://snipplr.com/view/67767/json-tree1-function-15-linesnested-ul-from-single-or-multidimensional-json-object</link>
      <description>&lt;p&gt;Any valid json object will be recursively traversed building a nested unordered list of its properties and their values.  This example parses the json entered in the text area into an object that is passed to the json_tree() function.  I use the twitter bootstrap to make collapsible trees.  That is the purpose of thee css and the random string i generate.  I left it in as an example of how you might style the returned list.  This is very much a work in progress so if you have any suggestions please post a comment.  I have posted the entire html for a working example page just create the file and open it in your browser.(make sure your json validates - http://jsonlint.com - only valid json will produce a tree)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Oct 2012 04:48:13 UTC</pubDate>
      <guid>https://snipplr.com/view/67767/json-tree1-function-15-linesnested-ul-from-single-or-multidimensional-json-object</guid>
    </item>
    <item>
      <title>(PHP) objectToArray Part 2 - jgomez</title>
      <link>https://snipplr.com/view/64196/objecttoarray-part-2</link>
      <description>&lt;p&gt;If you want to use this in a class, change the last line to:&#13;
&#13;
` return array_map(array($this, __FUNCTION__), $object ); `&lt;/p&gt;</description>
      <pubDate>Wed, 28 Mar 2012 20:02:52 UTC</pubDate>
      <guid>https://snipplr.com/view/64196/objecttoarray-part-2</guid>
    </item>
    <item>
      <title>(PHP) PHP - Convert an object to an associative array - satie83</title>
      <link>https://snipplr.com/view/64104/php--convert-an-object-to-an-associative-array</link>
      <description>&lt;p&gt;Converts a php object to an associative array&lt;/p&gt;</description>
      <pubDate>Thu, 22 Mar 2012 22:25:56 UTC</pubDate>
      <guid>https://snipplr.com/view/64104/php--convert-an-object-to-an-associative-array</guid>
    </item>
    <item>
      <title>(JavaScript) Make an empty object in JavaScript - EvanHahn</title>
      <link>https://snipplr.com/view/63892/make-an-empty-object-in-javascript</link>
      <description>&lt;p&gt;`Object.create(null)` is a more memory-efficient way to make objects, but it's not supported in all versions of JavaScript, so you can do the "old-fashioned" `{}` if that function isn't available.&lt;/p&gt;</description>
      <pubDate>Mon, 12 Mar 2012 09:59:34 UTC</pubDate>
      <guid>https://snipplr.com/view/63892/make-an-empty-object-in-javascript</guid>
    </item>
    <item>
      <title>(ActionScript 3) Sort a object array - Narayon</title>
      <link>https://snipplr.com/view/63712/sort-a-object-array</link>
      <description>&lt;p&gt;Sorts an array of objects using the native sortOn method&lt;/p&gt;</description>
      <pubDate>Mon, 05 Mar 2012 13:23:33 UTC</pubDate>
      <guid>https://snipplr.com/view/63712/sort-a-object-array</guid>
    </item>
    <item>
      <title>(JavaScript) Get Object Size in JS - reverend</title>
      <link>https://snipplr.com/view/63681/get-object-size-in-js</link>
      <description>&lt;p&gt;Function to validate the existence of each key in the object to get the number of valid key/value pairs.&lt;/p&gt;</description>
      <pubDate>Fri, 02 Mar 2012 10:45:09 UTC</pubDate>
      <guid>https://snipplr.com/view/63681/get-object-size-in-js</guid>
    </item>
    <item>
      <title>(PHP) concept: php multidimentional methods - Knarf</title>
      <link>https://snipplr.com/view/62598/concept-php-multidimentional-methods</link>
      <description>&lt;p&gt;A class i started to implement, which ended up in a working concept&#13;
However I'm not sure if it's a legal way of programming since I unnessesery&#13;
changes the structure of php without some real value except nicer structure&#13;
&#13;
For now it remain a concept&#13;
&#13;
Usage:&#13;
&#13;
	concept::create()-&gt;create1();&#13;
	concept::create()-&gt;create2();&#13;
	concept::test()-&gt;test1();&#13;
	concept::test()-&gt;test2();&lt;/p&gt;</description>
      <pubDate>Tue, 17 Jan 2012 19:55:11 UTC</pubDate>
      <guid>https://snipplr.com/view/62598/concept-php-multidimentional-methods</guid>
    </item>
    <item>
      <title>(JavaScript) Optional function arguments/parameters by using associative array - coprolit</title>
      <link>https://snipplr.com/view/62307/optional-function-argumentsparameters-by-using-associative-array</link>
      <description>&lt;p&gt;By not being limited to provide certain arguments/parameters in right order when calling a function, makes the function more versatile and easier to extend without breaking old code (e.g. calls to the function). &#13;
One solution is to pass an associative array holding the parameters. &#13;
Advantage: argument order is unnecessary, each argument have a label - easier to remember.&lt;/p&gt;</description>
      <pubDate>Thu, 05 Jan 2012 00:13:08 UTC</pubDate>
      <guid>https://snipplr.com/view/62307/optional-function-argumentsparameters-by-using-associative-array</guid>
    </item>
    <item>
      <title>(JavaScript) JavaScript Object Prototypal inheritance - luizlopes</title>
      <link>https://snipplr.com/view/60905/javascript-object-prototypal-inheritance</link>
      <description>&lt;p&gt;an operator that implements true prototypal Object inheritance in JavaScript&lt;/p&gt;</description>
      <pubDate>Thu, 17 Nov 2011 05:10:33 UTC</pubDate>
      <guid>https://snipplr.com/view/60905/javascript-object-prototypal-inheritance</guid>
    </item>
    <item>
      <title>(JavaScript) get RGBA values as an object - claudiowebdesign</title>
      <link>https://snipplr.com/view/60570/get-rgba-values-as-an-object</link>
      <description>&lt;p&gt;this function gets a parameter like an hex color (es: "#ffffff"), an abbreviated hex color (es: "#fff"), an rgb color (es: "rgb(255,255,255)") or an rgba color (es: "rgba(255,255,255,1)"), and returns an object containing the rgba values, like { red:x, green:y, blue:z, alpha:k  }.&lt;/p&gt;</description>
      <pubDate>Sun, 06 Nov 2011 05:13:03 UTC</pubDate>
      <guid>https://snipplr.com/view/60570/get-rgba-values-as-an-object</guid>
    </item>
    <item>
      <title>(PHP) Sort array of objects by object\'s property - Rain</title>
      <link>https://snipplr.com/view/60321/sort-array-of-objects-by-objects-property</link>
      <description>&lt;p&gt;Used to sort array of objects by it's property&#13;
&#13;
Note: Anonymous functions are available since PHP 5.3.0.&lt;/p&gt;</description>
      <pubDate>Sat, 29 Oct 2011 00:34:46 UTC</pubDate>
      <guid>https://snipplr.com/view/60321/sort-array-of-objects-by-objects-property</guid>
    </item>
    <item>
      <title>(PHP) [WordPress] Get Posts By Term and Sort Them - kingkool68</title>
      <link>https://snipplr.com/view/59755/wordpress-get-posts-by-term-and-sort-them</link>
      <description>&lt;p&gt;1. Get Posts however you see fit&#13;
2. Loop through the posts getting the terms from taxonomies and add them to the Post object&#13;
3. Sort the Array of Post Objects by the property you want them sorted by using sort_on_field()&lt;/p&gt;</description>
      <pubDate>Fri, 14 Oct 2011 11:47:44 UTC</pubDate>
      <guid>https://snipplr.com/view/59755/wordpress-get-posts-by-term-and-sort-them</guid>
    </item>
    <item>
      <title>(ActionScript 3) removeAllChildren - okhy</title>
      <link>https://snipplr.com/view/58670/removeallchildren</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 14 Sep 2011 16:28:59 UTC</pubDate>
      <guid>https://snipplr.com/view/58670/removeallchildren</guid>
    </item>
    <item>
      <title>(ActionScript 3) Remove and null all children of a display object container - radykal</title>
      <link>https://snipplr.com/view/58071/remove-and-null-all-children-of-a-display-object-container</link>
      <description>&lt;p&gt;I create this recursive function to remove and null all children inside a display object container.&lt;/p&gt;</description>
      <pubDate>Sun, 21 Aug 2011 23:52:08 UTC</pubDate>
      <guid>https://snipplr.com/view/58071/remove-and-null-all-children-of-a-display-object-container</guid>
    </item>
    <item>
      <title>(PHP) multidimensional array to multidimensional object - freezy</title>
      <link>https://snipplr.com/view/57155/multidimensional-array-to-multidimensional-object</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 26 Jul 2011 21:32:20 UTC</pubDate>
      <guid>https://snipplr.com/view/57155/multidimensional-array-to-multidimensional-object</guid>
    </item>
    <item>
      <title>(HTML) New Object Embed for SWF - digitalzoomstudio</title>
      <link>https://snipplr.com/view/57017/new-object-embed-for-swf</link>
      <description>&lt;p&gt;Hey guys, I struggled a little to find a crossbrowser, non repetitive params way to embed swfs; this object embed works flawlessly for me in all browsers - ie7, ie8, safari, chrome, firefox. Why is swfobject and YouTube using this format - http://code.google.com/p/swfobject/wiki/documentation ( scroll to static embed ) ? The flaw with that is that you have to change width/height/flashvars 2 times rather then my method where it's only one ... &#13;
&#13;
So anybody knows why they are using that ? Does it work in IE6 ( I can't test this .. ) ? If that's the case - I don't care about ie6:D&lt;/p&gt;</description>
      <pubDate>Fri, 22 Jul 2011 05:16:36 UTC</pubDate>
      <guid>https://snipplr.com/view/57017/new-object-embed-for-swf</guid>
    </item>
    <item>
      <title>(ActionScript 3) AS3 Load and access JSON data example - adrianparr</title>
      <link>https://snipplr.com/view/56283/as3-load-and-access-json-data-example</link>
      <description>&lt;p&gt;For this to work you need the as3corelib classes from here ... https://github.com/mikechambers/as3corelib&lt;/p&gt;</description>
      <pubDate>Fri, 08 Jul 2011 05:33:20 UTC</pubDate>
      <guid>https://snipplr.com/view/56283/as3-load-and-access-json-data-example</guid>
    </item>
    <item>
      <title>(JavaScript) Classes objects  prototype and static - devnull69</title>
      <link>https://snipplr.com/view/56009/classes-objects--prototype-and-static</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Jul 2011 22:32:55 UTC</pubDate>
      <guid>https://snipplr.com/view/56009/classes-objects--prototype-and-static</guid>
    </item>
    <item>
      <title>(JavaScript) Iterate through keys in an object literal and return the key name. - supermauerbros</title>
      <link>https://snipplr.com/view/55628/iterate-through-keys-in-an-object-literal-and-return-the-key-name</link>
      <description>&lt;p&gt;Returns the key name in mainObject if it's a key, and hasOwnProperty of key (to rule out the prototype object. Then it also checks if the key is listed in an array using a jquery function and also tests if it's null.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Jun 2011 15:34:47 UTC</pubDate>
      <guid>https://snipplr.com/view/55628/iterate-through-keys-in-an-object-literal-and-return-the-key-name</guid>
    </item>
    <item>
      <title>(JavaScript) Switch using an Object - 1man</title>
      <link>https://snipplr.com/view/52613/switch-using-an-object</link>
      <description>&lt;p&gt;Using an object as a simple switch.&lt;/p&gt;</description>
      <pubDate>Wed, 27 Apr 2011 01:17:46 UTC</pubDate>
      <guid>https://snipplr.com/view/52613/switch-using-an-object</guid>
    </item>
    <item>
      <title>(JavaScript) Cross-browser javascript event capture - onblur</title>
      <link>https://snipplr.com/view/52304/crossbrowser-javascript-event-capture</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 19 Apr 2011 18:57:31 UTC</pubDate>
      <guid>https://snipplr.com/view/52304/crossbrowser-javascript-event-capture</guid>
    </item>
    <item>
      <title>(PHP) PHP - Convert Array to Object with stdClass - realpeterz</title>
      <link>https://snipplr.com/view/51825/php--convert-array-to-object-with-stdclass</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 09 Apr 2011 18:38:08 UTC</pubDate>
      <guid>https://snipplr.com/view/51825/php--convert-array-to-object-with-stdclass</guid>
    </item>
    <item>
      <title>(ActionScript 3) ActionScript 3 Delete an Object Function - scottwatkins</title>
      <link>https://snipplr.com/view/51667/actionscript-3-delete-an-object-function</link>
      <description>&lt;p&gt;This function will delete and object and mark it for deletion with gc.&lt;/p&gt;</description>
      <pubDate>Thu, 07 Apr 2011 01:54:26 UTC</pubDate>
      <guid>https://snipplr.com/view/51667/actionscript-3-delete-an-object-function</guid>
    </item>
    <item>
      <title>(JavaScript) Extjs - A smart registry to find objects easy - jvandemerwe</title>
      <link>https://snipplr.com/view/51453/extjs--a-smart-registry-to-find-objects-easy</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 02 Apr 2011 07:11:30 UTC</pubDate>
      <guid>https://snipplr.com/view/51453/extjs--a-smart-registry-to-find-objects-easy</guid>
    </item>
    <item>
      <title>(PHP) Object to Array - frederichoule</title>
      <link>https://snipplr.com/view/51420/object-to-array</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Apr 2011 13:30:51 UTC</pubDate>
      <guid>https://snipplr.com/view/51420/object-to-array</guid>
    </item>
    <item>
      <title>(JavaScript) OOJS - Compare Execution Time of Both Approaches - reelfernandes</title>
      <link>https://snipplr.com/view/50872/oojs--compare-execution-time-of-both-approaches</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 20 Mar 2011 08:37:38 UTC</pubDate>
      <guid>https://snipplr.com/view/50872/oojs--compare-execution-time-of-both-approaches</guid>
    </item>
    <item>
      <title>(JavaScript) OOJS - Object Oriented Javascript pt 2 - reelfernandes</title>
      <link>https://snipplr.com/view/50870/oojs--object-oriented-javascript-pt-2</link>
      <description>&lt;p&gt;using prototype to add instance methods to a Class&lt;/p&gt;</description>
      <pubDate>Sun, 20 Mar 2011 08:23:58 UTC</pubDate>
      <guid>https://snipplr.com/view/50870/oojs--object-oriented-javascript-pt-2</guid>
    </item>
    <item>
      <title>(JavaScript) OOJS - Object Oriented Javascript - reelfernandes</title>
      <link>https://snipplr.com/view/50868/oojs--object-oriented-javascript</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 20 Mar 2011 07:21:41 UTC</pubDate>
      <guid>https://snipplr.com/view/50868/oojs--object-oriented-javascript</guid>
    </item>
    <item>
      <title>(JavaScript) Javascript revealing module pattern template - coprolit</title>
      <link>https://snipplr.com/view/50765/javascript-revealing-module-pattern-template</link>
      <description>&lt;p&gt;"Javascript module pattern emulates the concept of classes in such a way that we're able to include both public/private methods and variables inside a single object, thus shielding/namespacing particular parts from the global scope."&#13;
When inheritance is not needed and a only few instances is needed (Keep in mind that each instance places a new copy of each function in memory!)&lt;/p&gt;</description>
      <pubDate>Thu, 17 Mar 2011 08:40:45 UTC</pubDate>
      <guid>https://snipplr.com/view/50765/javascript-revealing-module-pattern-template</guid>
    </item>
    <item>
      <title>(JavaScript) Checking Object Properties - ramonlechuga</title>
      <link>https://snipplr.com/view/50276/checking-object-properties</link>
      <description>&lt;p&gt;http://blog.ramonlechuga.com/2010/10/20/checking-object-structure/&#13;
&#13;
The Array&lt;/p&gt;</description>
      <pubDate>Tue, 08 Mar 2011 07:25:55 UTC</pubDate>
      <guid>https://snipplr.com/view/50276/checking-object-properties</guid>
    </item>
    <item>
      <title>(ActionScript 3) Convert ArrayCollection or Object to XML - msdevweb</title>
      <link>https://snipplr.com/view/49957/convert-arraycollection-or-object-to-xml</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 03 Mar 2011 06:08:58 UTC</pubDate>
      <guid>https://snipplr.com/view/49957/convert-arraycollection-or-object-to-xml</guid>
    </item>
    <item>
      <title>(JavaScript) JS Object Tmplate - loric</title>
      <link>https://snipplr.com/view/49288/js-object-tmplate</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 20 Feb 2011 18:59:03 UTC</pubDate>
      <guid>https://snipplr.com/view/49288/js-object-tmplate</guid>
    </item>
    <item>
      <title>(JavaScript) SimpleAjax Object - freelancephp</title>
      <link>https://snipplr.com/view/49002/simpleajax-object</link>
      <description>&lt;p&gt;Simple ajax object for creating ajax calls.&#13;
&#13;
Why use SimpleAjax?&#13;
 - Very small, only 2kb minified&#13;
 - Make a asynchrone or synchrone ajax call ( AJAX / SJAX )&#13;
 - Use quick methods get() and post() for GET and POST calls&#13;
 - Use load() method for loading html content and set to given element&#13;
 - Set general settings that will be used by default for every ajax call&lt;/p&gt;</description>
      <pubDate>Mon, 14 Feb 2011 22:38:51 UTC</pubDate>
      <guid>https://snipplr.com/view/49002/simpleajax-object</guid>
    </item>
    <item>
      <title>(JavaScript) getting an objects key values - iroybot</title>
      <link>https://snipplr.com/view/48653/getting-an-objects-key-values</link>
      <description>&lt;p&gt;I wanted to pass a form submission (array) as a JSON object to another function.&#13;
Some form field were created with JS, to identify them their names have been concatenated with unique IDs, etc.&#13;
In order to access values of that JSON obj I needed to find out the key names in order to get data out of it.&lt;/p&gt;</description>
      <pubDate>Wed, 09 Feb 2011 10:29:19 UTC</pubDate>
      <guid>https://snipplr.com/view/48653/getting-an-objects-key-values</guid>
    </item>
    <item>
      <title>(JavaScript) getting an objects key values - iroybot</title>
      <link>https://snipplr.com/view/48652/getting-an-objects-key-values</link>
      <description>&lt;p&gt;I wanted to pass a form submission (array) as a JSON object to another function.&#13;
Some form field were created with JS, to identify them their names have been concatenated with unique IDs, etc.&#13;
In order to access values of that JSON obj I needed to find out the key names in order to get data out of it.&lt;/p&gt;</description>
      <pubDate>Wed, 09 Feb 2011 10:28:28 UTC</pubDate>
      <guid>https://snipplr.com/view/48652/getting-an-objects-key-values</guid>
    </item>
    <item>
      <title>(ActionScript 3) Returns a new object of the same Class - JaaQ</title>
      <link>https://snipplr.com/view/48288/returns-a-new-object-of-the-same-class</link>
      <description>&lt;p&gt;This function returns a new instance of the class it receives.&lt;/p&gt;</description>
      <pubDate>Thu, 03 Feb 2011 00:38:24 UTC</pubDate>
      <guid>https://snipplr.com/view/48288/returns-a-new-object-of-the-same-class</guid>
    </item>
    <item>
      <title>(JavaScript) Object Literal Architecture Template - athanassiadis</title>
      <link>https://snipplr.com/view/48086/object-literal-architecture-template</link>
      <description>&lt;p&gt;Template for a Object Literal Architecture in javascript, in this case jQuery&lt;/p&gt;</description>
      <pubDate>Sun, 30 Jan 2011 00:02:43 UTC</pubDate>
      <guid>https://snipplr.com/view/48086/object-literal-architecture-template</guid>
    </item>
  </channel>
</rss>
