Programming skills

Started by Jubal, January 04, 2009, 08:10:50 PM

Previous topic - Next topic

Darkstar707

B-b-ut they tastes so gooooood.

My preeecious....

kt0

These aren't the brains you're looking for.  Move along.

Marcus

I've been getting into working with PyGtk, a GTK library for python. Quite interesting, and easier to create a GUI python program than TKinter.
"So if you meet me, have some courtesy, have some sympathy, and some taste. Use all your well learned politesse, or I'll lay your soul to waste."

Goromous

I dabble in a bit of HTML. I also started using c for dark pro a bit. But that never went anywhere. I messed around with game creator, which is terrible. So terrible, in fact, that... Well.. I don't know.. But it's terrible..

Son of the King

Does anyone here have experience of using VB6 to read/write XML files?

Darwin

i started to learn c++ and php

cdvader

#36
I know the basics of HTML, C++, and Python. However, I guess I can say I'm pretty good at scripting M&B. (Although nearly not as good as some masterminds like kt0 :P)

My plan currently is this: Finish high-school, go to a "vocational school" and take Programming as my profession, after that I'll go to a college where I'll learn Programming even further.

That all is, of course, when fate shines on me.

Jubal

Programming is a good thing to do. Really skilled programmers will always be in demand in the computer age.

I'm really a lightweight programming-wise, just a web scripter. But hey.
The duke, the wanderer, the philosopher, the mariner, the warrior, the strategist, the storyteller, the wizard, the wayfarer...

lordryan756

I have a basic idea of HTML (thanks to Jubal) and that's it.

Calisthenis of Green Day

Basic HTML.
Started when I was messing around with BBCode in the phpBB test board. Then I got Notepad ++ and started making pages of an imaginary website.

Phoenixguard09

Bit of HTML.  Only what my ICT teacher managed to hammer into my head.  

Decent with Python.
The Norbayne Campaign Instagram page. Give us a cheeky follow if you like. :)
By the power of Ga'haarr I command you to vanish! VANISH!
I CANNOT BE KILLED BUT WITH FIRE!
(\__/)
(='.'=) This is Bunny. Copy and paste bunny into your
(")_(") signature to help him gain world domination

Crazier than a crack-head cat and here to make sticky treats out of your vital organs.

Jubal

You were lucky, our ICT teachers here rarely seem to know HTML.

I really should learn python or another real programming language... I doubt I will for some time yet though 'cos it would take too long.
The duke, the wanderer, the philosopher, the mariner, the warrior, the strategist, the storyteller, the wizard, the wayfarer...

therix

:knight: I'm working on C++, but can't get software compatible to allow me to write, compile, then link it all together. I can get all of it, but I can't get it to work with c++ or with each other.
On other things, I know a bit on making cutscenes and game graphics.
Apart from that nothing digital.
There are many shades of skin, many colours of personality, yet when you look deep inside a person, he is just like anyone else; red and squelchy.

I enjoy negotiation, all that hacking and slashing and biting and- wait, you do it PEACEFULLY?

When the rich go to war, it's the poor who die.

     <img src="http://www.stopp-acta.info/files/microact-en.png" height="15" width="80">

Jubal

If you haven't programmed much before learn a scripting language first - much simpler usually but you learn the principles and techniques. Or try python, which is apparently insanely simple by comparison and pretty easy to get open-source stuff for.
The duke, the wanderer, the philosopher, the mariner, the warrior, the strategist, the storyteller, the wizard, the wayfarer...

Son of the King

Python is a great language to learn the basics of programming with. It's simple enough that it can easily be understood by someone new to programming who just wants to learn the basics, and yet is still powerful enough for more complex programs (albeit a bit slow). For example, to print a string onto the console:
Code: Python
 
print("this is a string")

Code: C++
 
#include <iostream>
using namespace std;

int main()
   {
       cout << "this is a string";
       return 0;
   }