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
/** | |
* Created by Usuario on 03/10/2015. | |
*/ | |
var available_characters = ["a","b"]; | |
console.log(combinations(available_characters,5)); | |
function combinations(available_characters,count_char) | |
{ | |
var acum_results = {combs : []}; |
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
[{"fechas":{"anyo":"2012","semestre":"2"},"asignaturas":[{"asignatura":{"nombre":"simulacion","id":"1"},"grupos":[{"grupo":"5t2","idgrupos":"1"},{"grupo":"5t1","idgrupos":"2"}]},{"asignatura":{"nombre":"inteligencia artifucal","id":"4"},"grupos":[{"grupo":"5c1","idgrupos":"4"},{"grupo":"5c2","idgrupos":"5"}]}]}] |
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
public Dictionary<String, String[]> WhiteListTagStyle = new Dictionary<string, String[]>() | |
{ | |
{"p",new String[]{""}}, | |
{"a",new String[]{"href"}}, | |
{"img",new String[]{"src","alt","width","height"}} | |
}; |
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
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript" src="jquery.js"></script> | |
<script type="text/javascript" src="jquery.tablesorter.js"></script> | |
<script type="text/javascript"> | |
var stripExtraTags = function(ObjCollection) { | |
ObjCollection.each(function () { | |
$(this).html($(this).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
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript" src="jquery.js"></script> | |
<script type="text/javascript" src="jquery.tablesorter.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function () { | |
// body... | |
$.tablesorter.addWidget({ | |
id:"transformer", |