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
| gifify() { | |
| if [[ -n "$1" ]]; then | |
| if [[ $2 == '--good' ]]; then | |
| ffmpeg -i $1 -r 10 -vcodec png out-static-%05d.png | |
| time convert -verbose +dither -layers Optimize -resize 600x600\> out-static*.png GIF:- | gifsicle --colors 128 --delay=5 --loop --optimize=3 --multifile - > $1.gif | |
| rm out-static*.png | |
| else | |
| ffmpeg -i $1 -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $1.gif | |
| fi | |
| else |
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
| // Yes there is no template | |
| App.RadioButtonComponent = Ember.Component.extend({ | |
| tagName: 'input', | |
| type: 'radio', | |
| value: null, | |
| attributeBindings: [ 'checked', 'name', 'type', 'value' ], | |
| checked: function () { | |
| return JSON.parse(JSON.stringify(this.get('value'))) == JSON.parse(JSON.stringify(this.get('groupValue'))); | |
| }.property('value', 'groupValue').readOnly(), |
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
| import java.io.*; | |
| import java.util.*; | |
| public class Main { | |
| private static Stack[] Blocks; | |
| private static PrintWriter out; | |
| public static void main(String[] args) throws Exception { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <div id="ex"></div> | |
| <script id="jsbin-javascript"> | |
| function qsort(ls){ |
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
| import java.io.*; | |
| import java.util.*; | |
| public class Main { | |
| private static Stack[] Blocks; | |
| private static PrintWriter out; | |
| public static void main(String[] args) throws Exception { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> | |
| function quickSort(array, start, end) { |
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 sort(array) { | |
| var len = array.length; | |
| var middle = Math.floor(len*0.5); | |
| var left = array.slice(0,middle); | |
| var right = array.slice(middle, len); | |
| if (len == 1) { | |
| return array; | |
| } else { | |
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 sort(array) { | |
| var len = array.length; | |
| if (len <= 1) { | |
| return array; | |
| } | |
| var middle = Math.floor(len*0.5); | |
| var left = array.slice(0,middle); | |
| var right = array.slice(middle, len); |
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 main() | |
| % LOAD IRIS | |
| % dataset was modified by changing the class name from string to a | |
| % number | |
| iris = load('iris.csv', ','); | |
| % LOAD SONAR | |
| sonar = load('sonar.csv', ','); |
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[r,l] = kmyself(dataSet, k) | |
| % Determine the size of dataSet | |
| [nRow, nCol] = size(dataSet); | |
| % Empty array for cluster assesment | |
| clusterAssment = zeros(nRow,2); | |
| % Setup centroid and choose on to start of with | |
| centroids = zeros(k,nCol); |