This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class clone{ | |
private int id; | |
public clone next; | |
public clone previous; | |
private boolean deleted = false; | |
public String value; | |
public int getId(){ | |
return this.id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//just wrote this code for a project. how cool is that? | |
var reqURL = (function loopRegExps (url, regExps) { | |
for(var i in regExps){ | |
if(url.match(regExps[i][0])){ return (regExps[i][1] + "url=" + encodeURIcomponent(url))} | |
} | |
})(url, collectionA); | |
/*just some thoughts: | |
I would always use a named function, so it can call itself if needed. It's just a good practice. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<table xmlns="http://query.yahooapis.com/v1/schema/table.xsd"> | |
<meta> | |
<author>Felix Boehm</author> | |
<documentationURL>http://feedic.com/</documentationURL> | |
<sampleQuery>select * from t where url="feedic.com"</sampleQuery> | |
</meta> | |
<bindings> | |
<select itemPath="" produces="XML"> | |
<urls> |
NewerOlder