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
| { | |
| "npc_dota_hero_antimage": { | |
| "abilities": { | |
| "1": { | |
| "cooldown": "21.0 18.0 15.0 12.0", | |
| "damage": null, | |
| "damage_type": "", | |
| "description": null, | |
| "mana_cost": "60 60 60 60", | |
| "name": 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
| app.service("$socket", ['$timeout',function($timeout) { | |
| var host = window.location.hostname; | |
| var protocol = window.location.protocol; | |
| var socket = io.connect(protocol + '//' + host); | |
| this.on = function(event, callback) { | |
| socket.on(event, function(data){ | |
| $timeout(function(){ | |
| callback.call(socket, data); |
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
| library TriggeredAura | |
| struct TriggeredAura | |
| private static thistype array stack | |
| private static integer count = 0 | |
| private static timer t = CreateTimer() | |
| private static thistype active | |
| private integer index |
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
| library DamageExtension requires Damage | |
| // percent from 0 to 100 | |
| function Damage_BlockPercent takes real percent returns nothing | |
| call Damage_Block( GetEventDamage() * percent/100) | |
| endfunction | |
| endlibrary |
- Several CRASH issues due to map boundaries has been fixed
- Neji permanent stun has been fixed
- Mega creeps don't spawn
- Kyuubi doesn't respawn / Respawn at the wrong place, etc
- Kisame Samehada Feasts on Kyuubi
- Kisames ultimate is only 10 seconds not 20 seconds.
- Pein/Anko/range hero with blink (all on kyuubi)
- Ino + Shino Crash
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
| var app = angular.module("Projects", ["ngRoute"]); | |
| app.config(function($routeProvider, $locationProvider) { | |
| $locationProvider.html5Mode(true); | |
| $routeProvider | |
| .when("/projects", { templateUrl: "<%= asset_path('projects/index.html') %> ", controller: "ProjectsIndexCtrl" }) | |
| .when("/projects/:id", { templateUrl: "<%= asset_path('projects/show.html') %> ", controller: "ProjectsShowCtrl" }) | |
| .otherwise({ redirectTo: "/projects" }); | |
| }); |
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
| var sad = (function(){ | |
| var areYouSad = true; | |
| Boolean.prototype.stop = function(){ | |
| areYouSad = false; | |
| } | |
| return function(){ | |
| return areYouSad; |
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
| module SpreadsheetReader | |
| =begin | |
| class Base | |
| def self.attr_accessor(*vars) | |
| @attributes ||= [] | |
| @attributes.concat vars | |
| super(*vars) | |
| 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
| require 'csv' | |
| CSV.foreach 'data/ratings.csv' do |row| | |
| puts row | |
| end |