Tagged Questions
-4
votes
0answers
24 views
Ruby or Python DWR client
Would anyone please share how to write DWR client in either Ruby or Python? I need a Ruby or Python client to interface with the DWR Java Servlet.
Many thanks in advance
UPDATE:
I am trying to ...
-6
votes
0answers
60 views
Ruby equivalent of python [on hold]
I am trying to get SiriProxy plugin send IR codes to USB IRToy. I have a working python example, but need to get this done in ruby. Pls. tell equivalent code to this python code to send and receive ...
-4
votes
2answers
73 views
CSV parsing ( it can be done with ruby,c#, java, python or any other language) [on hold]
I have to add all the values from all the colums of a CSV file. This is the CSV file I am using:
1,2,3
4,5,6
1,8,9
12,2
Here is the code ( I am using ruby but I am open to opinions ) :
require ...
1
vote
3answers
66 views
Run bash script on `cd` command
I'm python developer and most frequently I use buildout for managing my projects. In this case I dont ever need to run any command to activate my dependencies environment.
However, sometime I use ...
1
vote
1answer
47 views
Dealing with large json file
I have a large json file from a web scraping project I've been doing for a while. Now I'm trying to build a web frontend using the JSON data. I'm having a hard time figuring out the best way to go ...
-3
votes
1answer
31 views
How to iterate through a directory of XML files POSTing each one to a URL and recording the response? [closed]
I have a folder of XML's requests that have been created, I need to post them to an endpoint and record the response, same filename different folder. It is also important that I can control the speed ...
-2
votes
1answer
38 views
PyPy vs Cpython, will either one drop GIL and support POSIX Threads? [closed]
Given that the GIL limits pythons ability to support true threads, is it possible to strip it out of current python implementations so that the language can finally support true multithreading. ...
1
vote
2answers
81 views
Python append or overwrite list element
How do you alternatively append or overwrite a list element in python?
I am currently trying to translate a function I have working in ruby to python, my ruby code looks like such:
def ...
-1
votes
1answer
33 views
Equivalent of time.sleep from python in ruby [duplicate]
I am trying to write program in ruby which needs to make a pause before returning text.
In python you can do this by importing time and then using time.sleep(x). How would one go about doing this in ...
0
votes
0answers
40 views
Need advice on implementing an ERP system using Ruby or Python [closed]
I'm familiar with Ruby or Python so I try to limit my options to these languages.
My client currently uses ProcessMaker (http://www.processmaker.com/) but he would like to switch to local and cheaper ...
0
votes
1answer
49 views
Languages compiling/interpreting to Javascript (such as Ruby/Python/Coffescript) [closed]
Newbie self-learner diving into web development here. My goal is to learn how to build web-apps. Three quick questions:
Ruby and Python seem to have offshoots that compile their respective code ...
-1
votes
1answer
44 views
Python WebApp for a Chef [closed]
So I know this is an odd question but I am having issues finding examples of a online cookbook. To explain more I wanted to create a web app either in ruby or python that is a recipe database for my ...
-2
votes
1answer
60 views
Strange output in a script converted from Python to Ruby, why? [closed]
have tried to convert this gist in ruby, this is my code:
$char_map = ('!.' + '0123456789' + 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' + 'abcdefghijklmnopqrstuvwxyz').scan(/./)
$int_map = Hash.new
...
0
votes
1answer
45 views
Getting Started with Programming/scripting [closed]
I am really hoping that someone can answer some questions for me. I am trying to start learning to programming and don't exactly know where to start. I have narrowed down my choices for ...
10
votes
5answers
3k views
What is Ruby's equivalent of Python's fabric?
What is the Ruby equivalent of something like fabric? (light weight)