Any one know any good tutorials for basic application creation in linux

any one know of good tutorials where i can learn to make terminal based application or even more advanced i know how to do this in windows and i used microsoft basic and learn quite alot with that but now i have switched over too Ubuntu 14.04 with default Unity ....but i have themed it to make it look nice :) any thing helps and thanks !

Sounds like Gambas could be the right tool for you: http://gambas.sourceforge.net/en/main.html.
It's somewhat similar to Visual Basic(It's also a Basic dialect, also designed to be easy, also for GUI stuff, ...). Also, you can install it easily:

sudo add-apt-repository ppa:gambas-team/gambas3
sudo apt-get update
sudo apt-get install gambas3

If you're looking for a more generic programming language, most people would suggest python.
I'd suggest Lua, but I guess that's a matter of personal preference.

ok thanks !