Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
Upvote number | |
Comments recieved for a link | |
Share count | |
user rank | |
Recency | |
Follower count of category (eg: gaming) | |
Visiter - Upvote ratio (later) | |
a) | |
1.upto(n).each do |num| | |
if num % 3 == 0 | |
puts 'Hip' | |
next | |
elsif num % 5 == 0 | |
puts 'Hop' | |
next | |
elsif (num % 3 == 0) && ( num % 5 == 0) | |
puts 'Whazaa' |
[aji](https://www.codesavvy.com) | |
<a href='google.com'>Here</a> |
Hi cmar, | |
I've stuck with an empty cart bug while developing a spree based application.seems like the reason behind the bug is a method which written by you.The details are here -> https://github.com/spree/spree/issues/2966 . Can you have a look and reply the intension for the method?? I am not able to track. | |
Thanks in advance | |
Abdul Shajin |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
Ctrl+C | copy current line (if no selection) |
Ctrl+X | cut current line (if no selection) |
Ctrl+⇧+K | delete line |
Ctrl+↩ | insert line after |
$(".stream-cell").click(function(e) { | |
$(this).parent().find(".stream-cell").children(".more_content").slideDown("slow"); | |
$(this).parent().find(".stream-cell").addClass("open_content"); | |
}); | |
I want to check e is coming from <a> tag or <div> | |
If e is from anchor tag, I want to call some ajax requests, or else, I want to call the existing lines. |
Venice Canals | |
Jungfraujoch - Switzerland | |
Himalaya |
http://howtonode.org/grasshopper-shoutbox - Nodejs | |
http://stackoverflow.com/questions/3527482/ruby-on-rails-and-node-js | |
http://jeffkreeftmeijer.com/2010/experimenting-with-node-js/ | |
http://geddyjs.org/ - frameword | |
https://github.com/mde/geddy/wiki/the-two-minute-geddy-app - 2 minute geddy app | |
http://stackoverflow.com/questions/5062614/how-to-decide-when-to-use-nodejs - nice explaining nodejs |
#puts nothing. |
class User | |
bang :calculate_score => :score | |
def calculate_score | |
100 # Removed fancy logic for presentational purposes | |
end | |
end |