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
04e5def6d96d1e70789dac8d786d56b4d77cca986282047684bf52669738f668c59b7f9802a5ee2eae5ed4b2bb8795eb4fee0016e25a5d20e9b790c2fb34031337 |
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
var button = $('.send-invite'); | |
$(button).each(function() { | |
window.open($(this).attr("data-href"), '_blank'); | |
}); |
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
#!/usr/bin/env xdg-open | |
[Desktop Entry] | |
Version=1.0 | |
Type=Application | |
Terminal=false | |
StartupNotify=true | |
Name=SmartGit/Hg | |
Exec=env SMARTGIT_JAVA_HOME=/opt/apps/jre7/ /opt/smartgithg/bin/smartgithg.sh | |
Icon=/opt/smartgithg/bin/smartgithg-64.png |
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
class Integer | |
def factorial | |
result = 0 | |
self.downto(1) { |number| result == 0 ? result = number : result *= number } | |
return result | |
end | |
end |