This file contains hidden or 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
$("htmltag[data-field='" + current +"']"); | |
$("[data-api='Foobar'][data-field='name']").text(); |
This file contains hidden or 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
snail = function(array) { | |
var result = []; | |
var n=array.length; | |
var x=n; | |
var y=n; | |
if(n==1){ | |
return array[0]; | |
} | |
while(y>1){ | |
for(j=0;j<y;j++){ |
This file contains hidden or 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
function SortedList() { | |
this.length = 0; | |
this.list = []; | |
} | |
SortedList.prototype.add = function(val) { | |
this.list.splice(findSpot(this.list,val,this.length)+1,0,val); | |
this.length++; | |
} | |
SortedList.prototype.get = function(i) { |
This file contains hidden or 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
[<#Tvdbr::Episode absolute_number=nil airsafter_season=nil airsbefore_episode="6" airsbefore_season="1" combined_episodenumber="0" combined_season="0" director=nil dvd_chapter=nil dvd_discid=nil dvd_episodenumber=nil dvd_season=nil ep_img_flag=nil episode_name="Contingency Plan. Complete Summary One Piece" episode_number="0" filename=nil first_aired="1999-12-22" guest_stars=nil id="1711991" imdb_id=nil language="en" lastupdated="1319395933" overview=nil production_code=nil rating="7.0" rating_count="1" season_number="0" seasonid="31892" seriesid="81797" writer=nil>, <#Tvdbr::Episode absolute_number=nil airsafter_season=nil airsbefore_episode="1" airsbefore_season="2" combined_episodenumber="1" combined_season="0" director="Goro Taniguchi" dvd_chapter=nil dvd_discid=nil dvd_episodenumber=nil dvd_season=nil ep_img_flag="2" episode_name="One Piece: Defeat the Pirate Ganzack! (OVA 1)" episode_number="1" filename="episodes/81797/619671.jpg" first_aired="1998-07-26" guest_stars="Ikuya Sawaki|Jun Tanaka|Norio Wakamo |
NewerOlder