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
window.log = (obj) -> if window.console then window.console.log(obj) | |
// usage | |
// var x = 42; | |
// var map = function (x) { return eval(x); }; | |
// alert(f("x $x", map)); | |
window.f = function (s, map) { | |
return s.replace(/\$(\w+)/g, function (dummy, v) { return map(v);} ); | |
}; |
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
search = () -> | |
textboxs = $(".live_filter").add $("[data-live-cnt]") | |
textboxs.keyup -> | |
textbox = $(this) | |
cnt = textbox.attr("data-live-cnt") | |
cnt = "" unless cnt? | |
pattern = $.trim textbox.val() |
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
/** | |
* jQuery.fn.sortElements | |
* -------------- | |
* @author James Padolsey (http://james.padolsey.com) | |
* @version 0.11 | |
* @updated 18-MAR-2010 | |
* -------------- | |
* @param Function comparator: | |
* Exactly the same behaviour as [1,2,3].sort(comparator) | |
* |
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
public static class StringExtentions | |
{ | |
// example "Controls_Admin_AdminDocument_EditDocumentList load IsPostBack={0}".debug(IsPostBack); | |
public static void debug(this string str, params object[] args) | |
{ | |
var args_json = args.Select(a => a.json()).ToArray(); | |
Console.WriteLine("********************************"); | |
Console.WriteLine(str.f(args_json)); | |
Console.WriteLine("********************************"); |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Web.Mvc; | |
using System.Web.Mvc.Html; | |
using System.Web; | |
using System.IO; | |
namespace Msa.Common |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using NUnit.Framework; | |
using MongoDB.Driver; | |
using System.Web.Mvc; | |
using System.IO; | |
using MongoDB.Driver.GridFS; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Net; | |
using System.Text; | |
using System.IO; | |
namespace Website.Model | |
{ |
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
def iis | |
path = File.absolute_path "website" | |
path = path.gsub('/', '\\') | |
sh "\"c:/Program Files (x86)/IIS Express/iisexpress\" /path:#{path} /port:9090" | |
end | |
def build | |
cd ".." | |
sln = FileList["*.sln"][0] | |
sh "c:/Windows/Microsoft.NET/Framework64/v4.0.30319/MSBuild.exe #{sln}" |
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
log = function(mes){ | |
if (console){ | |
console.log(mes); | |
} | |
} | |
jQuery.fn.rank = function(min, max) { | |
var result = $.grep(this, function(shop){ | |
return min <= shop.rank && shop.rank <= max | |
}); |
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
#include <SPI.h> | |
#include <Ethernet.h> | |
byte mac[] = { 0x00, 0xAB, 0xCB, 0xCD, 0xDE, 0x02 }; | |
IPAddress ip(192,168,0,140); | |
IPAddress server(173,194,70,103); | |
EthernetClient client; |
OlderNewer