Page 1 of 4 123 ... LastLast
Results 1 to 10 of 36

Thread: Programming skills

  1. #1
    Join Date
    Jul 2002
    Posts
    5,446
    Rep Power
    10

    Default Programming skills

    I would like to have an idea of the programming skillsets that you guys have. Can you please indicate the programming language(s)/environment(s) that you have a fair amount of experience in. This is NOT a poll to determine the most popular programming language/environment! Thanks ;D

  2. #2
    Join Date
    Aug 2002
    Posts
    1,257
    Rep Power
    0

    Default Re:Programming skills

    I have written quite a few apps in MS Visual Basic......Mostly database applications using MS SQL ....I also work with FOXPRO

  3. #3
    Join Date
    Jul 2002
    Posts
    818
    Rep Power
    0

    Default Re:Programming skills

    PHP, C, VB, ASP (don't use it that much though), client side scripting languages, Pascal and some other stuff that I can't remember....

    oh yea, I write a mean .BAT file.

  4. #4
    Join Date
    Aug 2002
    Posts
    1,236
    Rep Power
    0

    Default Re:Programming skills

    mostly PHP and Zope/Python/DTML.
    used to use Basic but that was years ago
    I know a bit of Java and a tiny bit of C++
    as a general rule I can learn any other language as the need arises.
    SQL f or database stuff (mostly MySQL)


  5. #5
    Guest

    Default Re:Programming skills

    Scripting Languages:
    JSP
    ASP
    Servlets
    Programming Languages:
    C
    C++
    VB/A
    Java
    Environments:
    Windows 9X/XP
    Unix

  6. #6
    Join Date
    Jul 2002
    Posts
    170
    Rep Power
    0

    Default Re:Programming skills

    ASP/PHP/C/Foxpro/VB/Pascal
    - Batch files creation and conversion to .com - etc...


    Environments:
    Microsoft Windows 2K/XP/9x
    IBM AS/400
    Novell - if it counts :P
    Linux Mandrake & Suse - its been a while


    :P
    Other stuff...

  7. #7
    Guest

    Default Re:Programming skills

    C
    C++ (Win32 API, SOCKETS, MFC, ATL)
    SQL
    JAVA
    PASCAL (SO OLD)

    go to http://www.utasce.com so preview some programs i've written..

  8. #8
    Guest

    Default Re:Programming skills

    I've programmed under the following environments also:

    . Windows (All Versions)
    . Linux
    . UNIX (i not good in this..but wrote a dbms appl for it)
    . DOS (every basic programmer can program for this environment)

    I've seen you guys saying you are using SQL for MS Access (i'm sorry to say its not really a programming language..just a query language)..

    Does anybody in here knows how to program in windows (Win32 API), not console.. I would really be interested in your skills.. email me at littleshotta@utasce.com (only serious programmers reply back) I would appreciate if u guys can program in c, c++ for win32 API..(no VB)..

    Just need your help to finish some dynamic libraries i'm writing..

  9. #9
    Join Date
    Feb 2003
    Posts
    3,184
    Rep Power
    0

    Default Re:Programming skills

    I wrote my first big program in pascal (and I'm still not finished yet) 10,000 lines and counting. pascal rocks. I don't like the win32 api, much. Ever since I saw the Win32 "hello world" program, it's like 400+ lines. I like pascal.
    Last edited by recursion; Oct 7, 2009 at 01:04 PM. Reason: Replaced " codes

  10. #10
    Guest

    Default Re:Programming skills

    A win32 "hello world"; program aint 400+ lines of codes..that goes to show u know nothing about programming... most applications in windows environment are win32..most programs today are witten in c++ (win32 API)..stop talking none-sense..

    This is a program that displays a Message Box that says hello world

    #include <windows.h>

    INT WINAPI WinMain (HINSTANCE hInst, HINSTANCE PrevInst, LPSTR Argument, int Show)
    {
    MessageBox(NULL, "Hello World", "To The Non Programmers:", 0x0);
    }

    was that simple or what...know your stuff before u say a word.. Pascal aint used today to do anything...
    Last edited by recursion; Oct 7, 2009 at 01:05 PM. Reason: Replaced html codes

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •