def to_bits(number):
  bit = 1
  bits = []
...

Python On extract bits from number

by Shay Erlichmen, June 09, 2011 11:49
B5b3262f246b9c41f5298adc62747d52 Talk
def to_bits(number):
  bit = 1
  bits = []
...

Python extract bits from number

by Shay Erlichmen, June 09, 2011 10:48, 3 refactorings, tagged with python, bitwise

extract the bits components...

B5b3262f246b9c41f5298adc62747d52 Talk
public static class Hebrew
{
    static Dictionary<char, char> mapper = CombineMappers(
...

C# Toggle Hebrew Chars

by Shay Erlichmen, March 21, 2010 15:39, No refactoring, tagged with text, Hebrew, User input

Many times when having a He...

B5b3262f246b9c41f5298adc62747d52 Talk