Skip to content

Instantly share code, notes, and snippets.

View tahmasebi's full-sized avatar
🎯
Focusing

Foad Tahmasebi tahmasebi

🎯
Focusing
View GitHub Profile
@tahmasebi
tahmasebi / Highlightjs-line-color-hover.css
Last active March 12, 2018 00:09
Highlightjs line numbers: adding line numbers to highlightjs and style it for line color (no table)
ul.code-lines {
list-style : decimal;
padding : 0;
}
li.line {
display : block;
padding : 0;
}
@tahmasebi
tahmasebi / Byte-to-Integer
Last active August 29, 2015 14:13
How to convert bytes to integer in python
# bytes variable is your byte array
int_number = int.from_bytes(bytes, byteorder="big", signed=False)