This file has been truncated, but you can view the full file.
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
//ActionScript 3.0 | |
// package dm | |
// package songsterr | |
// package guitartuner | |
// class ClosestNoteFinder | |
package dm.songsterr.guitartuner | |
{ | |
import __AS3__.vec.*; | |
public class ClosestNoteFinder extends Object |
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
#!/bin/bash | |
DIR=$1; | |
DIR=`echo $1 |sed -e 's,\(.\)/$,\1,'` | |
back() { | |
mkdir "$DIR.old"; | |
for i in `ls $DIR`; | |
do | |
cp -r $DIR/$i $DIR.old; |
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
<?php | |
/** | |
* Преобразование в xml строку | |
* @param array $array | |
* @param string $tag | |
* @return string | |
*/ | |
function array2xml($array = array(), $tag = "nodef") | |
{ |
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
http://jsfiddle.net/CKbuD/1/ |
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
/* | |
* This is an example build file that demonstrates how to use the build system for | |
* require.js. | |
* | |
* THIS BUILD FILE WILL NOT WORK. It is referencing paths that probably | |
* do not exist on your machine. Just use it as a guide. | |
* | |
* | |
*/ |