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

Extracting Visual Event 2 Output Into Script

In the Visual Event description, it says that it extracts 'which elements have events attached … Read more Extracting Visual Event 2 Output Into Script

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?

Is String Interning Really Useful?

I was having a conversation about strings and various languages a while back, and the topic of stri… Read more Is String Interning Really Useful?

Script-driven Automation Of Google Refine With Ruby Python Perl Java Or Otherwise

BACKGROUND: Co-worker Adam has been using Google refine to process database downloads with much suc… Read more Script-driven Automation Of Google Refine With Ruby Python Perl Java Or Otherwise

Implementing Server Push

Read about Server push here. I want to push data to client from my web application in real time. I … Read more Implementing Server Push

Python Assignment Quirk W/ List Index Assign, Dict Index Assign, And Dict.get

In ruby 2.4: x = ['a'] y = {} x[0] = y[x[0]] = y.fetch(x[0], y.length) puts y #=> {'… Read more Python Assignment Quirk W/ List Index Assign, Dict Index Assign, And Dict.get

Learning Ruby From Python; Differences And Similarities

Inspired by Learning Python from Ruby; Differences and Similarities. I'm in the exact opposite … Read more Learning Ruby From Python; Differences And Similarities

Rally Apis: How To Copy Test Folder And Member Test Cases

This question was asked by a different user earlier: Copying Test Cases and Test Folder using Rally… Read more Rally Apis: How To Copy Test Folder And Member Test Cases