RUBY Programming - Help? [closed] - ruby

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I'm following a guide to Ruby programming, which requires me to create a new folder to use as my main programming library.
I ran into the problem where the Guide requires right-clicking in the folder and select NEW and from the NEW drop window choose an option to a new Ruby program.
The thing is, after installing Ruby and looking all over the net for answers, I cannot for the life of me figure out why that option does NOT APPEAR in the NEW section when right clicking to create documents etc. Can anyone help me get it to appear in the NEW menu?

Just create a new text file, and make it end in .rb. You can write your ruby code in that file.

Related

How to use Ruby to download multiple files from a webpage? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to download all of the excel files (.xls) linked on this page.
Is there a Ruby gem which can do this for me? If not, how do I go about writing a Ruby script which will download each of the excel files into a designated folder?
Spreadsheets
To download all Historical Tables in XLS format as a single ZIP file,
click here (788 KB)
As stated right on their web page. Please do read the page you are on to save some programming, as everyone knows the best programmers are especially lazy!

Options to learn in Ruby besides IRB and FXRI [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I Was wondering if anyone had some suggestions to quickly test their coding lines in windows. Right now, I am currently using repl.it
I used to use fxri, but it doesn't work in later versions and I feel that irb lacks a lot of the useful tools that fxri has (example:built in, easily accessible library with descriptions of commands)
Any help would be much appreciated.
The Pry tool is a great learning resource. You can view source code and documentation on demand, and trivially explore a library or program using an intuitive file system metaphor.

How to break the .exe application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have requirment to create application based on exiting application.But we don't any document or source code of that exiting application.So, i would like to know how that application is working.For that is there any way to break .exe application ? looks like its created by VB.
Just i would like to see the program , Please advise is there any way to break .exe application and see the program ?
What you are looking for is basically a decompiler. Depending upon how the program was compiled, you can recover various pieces, but not necessarily everything.
More details in the answers to this question.

How to create a Hello world extension in Magento? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would like to create my first Magento extension, is there any tutorial about "Creating simple Hello world extension" for Magento. In mean time if i find any such tutorial in Google, I will post in this.
Here is a simple Hello World module creation tutorial:- http://magento4u.wordpress.com/2009/06/08/create-new-module-helloworld-in-magento/
Furthermore, you can use module creator for easy and initial module setup:- http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/custom_module_with_custom_database_table
For beginners the best one out there, is this article from Smashing Magazine: http://coding.smashingmagazine.com/2012/03/01/basics-creating-magento-module/
Declare your extension in app/etc/modules
Put PHP code in app/code. which directory you can declare in your Company_Module
Create layout in app/design/frontend/default/default.

Writing TextMate bundle [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to write a bundle for TextMate, where to start?
When writing the FileMaker TextMate Bundle, I found TextMate: Power Editing for the Mac quite helpful. Other than that, take a look at one of the simpler existing bundles. How you go about writing your bundle depends on if it's for a language that doesn't yet have a bundle (so that you need to define the language syntax) or if you just want to add functionality to TextMate, in which case you'll probably be writing commands and snippets. Commands are fairly simple, since they're just scripts, and you can use whatever language works for you (Ruby, PHP, Perl, etc.).

Resources