Skip to content Skip to sidebar Skip to footer
Showing posts with the label Ruby

Recursive Web Download Following Links According To Dom Criteria

MSDN is a huge hierarchical doc site. To be more precise, the content is organized in a hierarchica… Read more Recursive Web Download Following Links According To Dom Criteria

Python Equivalent Of Ruby's .select

I have an list/array, lets call it x, and I want to create a new list/array, lets call this one z, … Read more Python Equivalent Of Ruby's .select

Python To Ruby Conversion, Stuck On The Equivalent

I currently have this string that hashes the password to connect to the server properly. It works f… Read more Python To Ruby Conversion, Stuck On The Equivalent

Aes Python Encryption And Ruby Encryption - Different Behaviour?

From this site I have this code snippet: >>> from Crypto.Cipher import AES >>> ob… Read more Aes Python Encryption And Ruby Encryption - Different Behaviour?

Does Ruby Have Something Like Python's List Comprehensions?

Python has a nice feature: print([j**2 for j in [2, 3, 4, 5]]) # => [4, 9, 16, 25] In Ruby it&#… Read more Does Ruby Have Something Like Python's List Comprehensions?

What Programming Language Features Are Well Suited For Developing A Live Coding Framework?

I would like to build a 'live coding framework'. I should explain what is meant by 'liv… Read more What Programming Language Features Are Well Suited For Developing A Live Coding Framework?