- Various jQuery tutorials ported to CS
- CoffeeScript basics
- Cool colours, not the least of features :)
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
<property name="ffi.gem" value="ffi-0.6.0-java.gem"/> | |
<property name="ffi-java.gem" value="ffi-0.6.0-java.gem"/> | |
<property name="nice-ffi.gem" value="nice-ffi-0.3.gem"/> | |
<property name="chipmunk-ffi.gem" value="chipmunk-ffi-1.0.0.gem"/> | |
<arg value="${build.lib.dir}/${ffi.gem}"/> | |
<arg value="${build.lib.dir}/${ffi-java.gem}"/> | |
<arg value="${build.lib.dir}/${nice-ffi.gem}"/> | |
<arg value="${build.lib.dir}/${chipmunk-ffi.gem}"/> |
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
require 'bio' | |
reg= Bio::Registry.new | |
genbank = reg.get_database('genbank') | |
entry = genbank.get_by_id('AA2CG') | |
print entry | |
ff = Bio::FlatFile.new(Bio::GenBank, File.open("/home/etsvigun/devenv/biotech/seq/gbhtg86.seq", 'r')) |
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
%%% File : ahocorasik.erl | |
%%% Author : Fyodor Ustinov <[email protected]> | |
%%% Descrip.: Multiple search based on Aho-Corasick string matching algorithm | |
%%% | |
%%% License : GPL | |
%%% | |
%%% Usage: | |
%%% ahocorasik:match(["pat1", "pat2"], "pat1 pat2 pat1") | |
%%% or | |
%%% Tree = ahocorasick:tree(["pat1", "pat2"]) |
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
-module(ring_benchmark). | |
-export([new/2]). | |
new(N, M) -> | |
spawn(fun() -> spawn_ring(N, M) end). | |
spawn_ring(N, M) -> | |
io:format("First process: ~p~n", [self()]), | |
NextPid = spawn_rest(self(), N), |
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
major, minor = `bison --version`.scan(/bison \(GNU Bison\) (\d+)\.(\d+)/)[0].map(&:to_i) | |
$?.exitstatus == 0 && ([major, minor] <=> [2,4]) >=0 |
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 $j instead of just $ to be more specific | |
$j = jQuery | |
#Storing page elements to local variables | |
clickme = $j '#ani1_clickme' | |
restore = $j '#ani1_restore' | |
bar1 = $j '#ani1_bar1' | |
bar2 = $j '#ani1_bar2' | |
#Cool shortcut, instead of $j(document).ready(function(){ |
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
<div id="palette" style="width: 510px; height: 80px;"> | |
</div> | |
<script type="text/coffeescript"> | |
colors = ['#CCDDBB', '#99CC66', '#88AA66', '#AADDCC', '#66AAAA', '#559999', '#FFFFDD', '#FF9922', '#DD8822', '#AACCDD', '#5599CC', '#4477AA'] | |
next_square_html = (color) -> | |
""" | |
<div style="background: #{color}; | |
border: 1px solid grey; | |
height: 30px; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>jQuery + CoffeeScript tutorial: animation stacking</title> | |
<style> | |
div.tree-frog {font-size: 12pt; border: 1px solid white; height: 38px; width: 38px; position: absolute} | |
</style> | |
<script src="coffee-script.js"></script> | |
<script src="jquery-1.7.1.js"></script> | |
</head> |
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
$j = jQuery | |
$j('#ani2_btn1').click -> | |
$j('#ani2_worm_bar') | |
.animate(width:78).animate(left:'+=40',width:38) |
OlderNewer