Skip to content

Instantly share code, notes, and snippets.

View lytithwyn's full-sized avatar
💭
Closing dumb notifications that say I can set my status

Matthew Morgan lytithwyn

💭
Closing dumb notifications that say I can set my status
View GitHub Profile
require 'coderay'
language = "auto";
if(ARGV.length > 0)
language = ARGV[0];
end
codeToHighlight = `xsel --clipboard`
highlightedCode = CodeRay.scan(codeToHighlight, language.intern()).div