Can someone help me write a program?

Started by
9 comments, last by Tutorial Doctor 9 years, 9 months ago

I'm very new to programming; I basically understand the concepts of how it works, but don't know the methods or the languages.

I'm wondering how advanced I would have to become at programming to create a program which could read text files, but display letters in defined colours. For example: The program would load a text file that says "Hello world" and display the words "Hello world" with every letter 'o' being blue, and every letter 'l' being red. I picked those colours at random for the example, but the idea would be that the program would allow you to select the colour to letter relationships yourself. Having to actually edit the code to change those relationships wouldn't bother me if I knew how to do it though.

From what I've read about programming, I can't imagine this would be an incredibly complex task.

Any advice on the subject? Know of an existing program that does this already? I need your help!

Advertisement

You wouldn't need to be very advanced to do this.

But no-one here will write it for you. You need to put in the effort.

Let's start with a few basics. What are you going to run this on (windows, linux, mac, etc)? Do you want a command line program or a GUI? How are you going to store the users letter/colour choices?

Once you decided what you want, break the problem down into steps. At each step, google will be your friend.

As a starter, the first thing you need to do is read your text file. Google "how to read a text file in your-language-choice-here".

This might sound a little bit callous, but learning how to break a problem down into manageable chunks and then research solutions is pretty the core skill of programming.

If you're looking for advice on languages, etc, I would recommend Python as a good place to start.

if you think programming is like sex, you probably haven't done much of either.-------------- - capn_midnight

If you use Python and the terminal you can use the colorama library for coloring the different letters, which also happens to be cross-platform. For C# this functionality is built into the Console class, for C and C++ you can use rlutil, there's probably a library for it in Java, etc... if using a graphical window, color should be something very easy to add. Hopefully this helps you set up a prototype, remember to start small: first hardcode the colors for each letter, then think on how you could make them editable, and keep iterating.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”

I have a friend helping me too, so I should be fine to work on it myself.

I would like to run it on Windows. The display format of the text output doesn't matter as long as it can be read, and that the colour relationships can be editied.

Well, here are what I think would be the steps:

The relationships between colours and letters are defined

A process is written for outputting a coloured version of the input letter

The program scans the full text input letter by letter

The program outputs the the new text, letter by letter.



** As I wrote the above, my friend actually just offered to write the program quickly and leave comments that would help me understand it. I appreciate your help, and I still intend to follow up on what you said though. That 'core skill of programming part' actually makes a lot of sense.

Thanks!

Thanks Bacterius!

I should say go with Python to. It's not that hard to learn for a beginner, if you just go for it and you can do many thinks with it.

If you ever want to learn the basics and make some simple games on the way there's a really good tutorial: http://inventwithpython.com/

It's free and a very good book.

I hope it helped some and good luck with your program!


If you ever want to learn the basics and make some simple games on the way there's a really good tutorial:


Thanks for the help. It seems like you tried to post a link to this tutorial, but it's not displaying (at least for me).

Yeah i see it to, i edited it sorry btw :)

There is an app (which is quickly becoming my favorite app ever) called Editorial.

It's for ipad and iPhone.

I made an extension to this app which does the very thing you are describing.

I had to learn about regular expressions. And I used a bit of HTML and CSS also.

For any type of complex searching, regular expressions are very useful.

I attached a photo.

I'm not too advanced myself, and have made a small tutorial on regular expressions also.

It's a great app for learning python also, as well as UI design, HTML, CSS, and JavaScript.

They call me the Tutorial Doctor.

Something that's portable and cross-platform is good ol' Javascript and HTML. It's more complicated than using the command line and a Python library, but anyone with a web browser could load it without having to install anything. Just another suggestion.

This topic is closed to new replies.

Advertisement