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
| // Strict mode and non-strict mode | |
| (function () { | |
| "use strict"; | |
| function Foo(a, b, c) { | |
| if (!this instanceof Foo) { | |
| return new Foo(a, b, c); | |
| } | |
| this.a = a; | |
| this.b = b; |
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
| #Stack Overfow build script | |
| import codecs | |
| import os | |
| import re | |
| import json | |
| from nltk.tokenize import TreebankWordTokenizer | |
| from bs4 import BeautifulSoup | |
| from build import create_dirs_and_open | |
| from topic_modeling import anyjson |
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 () { | |
| "use strict"; | |
| var curlString = "", | |
| cookieHeader = ' --header \"Cookie:'+ document.cookie + '\" '; | |
| $('li.item_row > a.lecture-link').each(function (index) { | |
| var $lectureLink, | |
| videoLink, | |
| videoName, | |
| subtitleLink, | |
| subtitleName; |
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
| # I am a scientist who has been using R for about 2 years. Today I achieved a measure of enlightenment into | |
| # the zen of R, and I want to share it with you. | |
| # I was simulating a set of independent random walks, which are formed by a multiplicative process. Here is | |
| # the code I had built up over a few months of working on it and modifying it on and off as research | |
| # questions changed: | |
| TimeSteps <- 1000 | |
| Walks <- 100 | |
| ErrorMagnitude <- 0.03 |
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
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
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 () { | |
| "use strict"; | |
| function doSomething(cb) { | |
| console.log('do something!'); | |
| cb(); | |
| } | |
| doSomething(function hurp() { console.log('hurp!'); }); | |
| // prints out: | |
| // do something! |
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 () { | |
| "use strict"; | |
| /* | |
| * An example of making a categorical distribution out of some data, | |
| * and then sampling from it randomly. | |
| * See http://en.wikipedia.org/wiki/Categorical_distribution | |
| * for more information on categorical distributions. | |
| */ | |
| var distribution |
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 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
| destroy: function() { | |
| this.$el.remove() | |
| this.off() | |
| // destroy any children | |
| for (var selector in this.autoChildren) | |
| this.destroyChild(selector) | |
| this.autoChildren = null | |
| } |
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
| define( [ 'views/SearchView' ], function( SearchView ){ | |
| describe('SearchView', function() { | |
| var searchView, spy | |
| beforeEach(function() { | |
| setFixtures( $( "<input type='search' id='search'/>" ) ) | |
| searchView = new SearchView() | |
| searchView.render() | |
| spy = jasmine.createSpyObj( 'event', [ 'handler' ] ) | |
| }) |