• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "IT - Too easy these days."

Collapse

  • MGM
    replied
    From the school of Oric-1 urban terrorism, (Currys, with TV sound turned up to max)

    10 WAIT 60
    20 PRINT "MGM WAS HERE";
    30 PING
    40 ZAP
    50 EXPLODE
    60 GOTO 20

    This also locked up the keyboard and left many a red-faced shop assistant running around trying to stop the noise!!!

    Leave a comment:


  • VectraMan
    replied
    Originally posted by suityou01 View Post
    Is true. However take a look at GTK+

    It's a C based framework for windows GUI building. I had a play around over christmas when I was benched. Fracking loved it.
    C based was the problem. That's why the Petzold program started with this sort of thing:

    Code:
    		WNDCLASSEXW wndclass;
    		wndclass.cbSize = sizeof(wndclass);
    		wndclass.style = CS_GLOBALCLASS | CS_HREDRAW | CS_VREDRAW;
    		wndclass.lpfnWndProc = WndProc;
    		wndclass.cbClsExtra = 0;
    		wndclass.cbWndExtra = 0;
    		wndclass.hInstance = hInstance;
    		wndclass.hIcon = NULL;
    		wndclass.hCursor = NULL;
    		wndclass.hbrBackground = NULL;
    		wndclass.lpszMenuName = NULL;
    		wndclass.lpszClassName = L"Wibble";
    		wndclass.hIconSm = 0;
    		result = ::RegisterClassExW(&wndclass) != 0;
    If the Windows API had been based around OOP langauges (i.e. C++), it would have all been a lot simpler and better.

    Leave a comment:


  • suityou01
    replied
    Originally posted by expat View Post
    ISTR that he did point out reasonably that
    Code:
    printf("Hello, World");
    will not do all that the Windows program does, until you write your window manager too.
    Is true. However take a look at GTK+

    It's a C based framework for windows GUI building. I had a play around over christmas when I was benched. Fracking loved it.

    Leave a comment:


  • bobhope
    replied
    I was in the last year that assembly language was mandatory (early 90s) in computer science at University.

    Not quite sure how you can get a degree in CS without learning assembler.

    Leave a comment:


  • ace00
    replied
    Originally posted by DimPrawn View Post
    In the old days, to get anything to work you had to resort to low level tulip like C and assembler.............
    When I were a lad we had to stick wires on t' chip's pin connectors to activate the logic gates. Then we had to work out how the logic function would affect each bit. And convert that to Hex.

    Leave a comment:


  • DimPrawn
    replied
    http://www.charlespetzold.com/etc/Do...otTheMind.html

    Yes.

    Leave a comment:


  • expat
    replied
    Originally posted by VectraMan View Post
    Funnily enough Petzold popped into my head this morning for no apparent reason. I was thinking of that first chapter in the Programming Windows book where he showed the typical one line C command line "Hello World" program, followed by the two page listing that was required to do the same in Windows.
    ISTR that he did point out reasonably that
    Code:
    printf("Hello, World");
    will not do all that the Windows program does, until you write your window manager too.

    Leave a comment:


  • DimPrawn
    replied
    Nah, I'll stick with the drag n drop, have another sip of coffee and a biscuit, enterprise integration stuff.

    Leave a comment:


  • snaw
    replied
    Originally posted by DimPrawn View Post
    In the old days, to get anything to work you had to resort to low level tulip like C and assembler, now you just open your favourite design surface and drag and drop coloured shapes and lines, click deploy and carry on posting on CUK.

    If it gets any easier I'm not sure I'm going to be able to cope.
    Fack off. Try doing multicast over MPLS if you seriously want your brain twisted ...

    Leave a comment:


  • VectraMan
    replied
    Originally posted by BrilloPad View Post
    Ah yes. Petzold. Those were the days.
    Funnily enough Petzold popped into my head this morning for no apparent reason. I was thinking of that first chapter in the Programming Windows book where he showed the typical one line C command line "Hello World" program, followed by the two page listing that was required to do the same in Windows.

    Leave a comment:


  • EternalOptimist
    replied
    Originally posted by DimPrawn View Post
    In the old days, to get anything to work you had to resort to low level tulip like C and assembler, now you just open your favourite design surface and drag and drop coloured shapes and lines, click deploy and carry on posting on CUK.

    If it gets any easier I'm not sure I'm going to be able to cope.
    whats never ceased to amaze me, is that if you know one single atom-sized miniscule tenny-weeny useless bit of stuff that the permies dont know, they think the sun shines out of your flipping @rse



    Leave a comment:


  • Moscow Mule
    replied
    Is it bollocks.

    I've yet to find a design framework that will write legible RPGILE code for me.

    I've also yet to find an off-shore coding team that can write legible RPGILE code, but that's a different pot of fish altogether.

    Leave a comment:


  • BrilloPad
    replied
    Ah yes. Petzold. Those were the days.

    Leave a comment:


  • DimPrawn
    started a topic IT - Too easy these days.

    IT - Too easy these days.

    In the old days, to get anything to work you had to resort to low level tulip like C and assembler, now you just open your favourite design surface and drag and drop coloured shapes and lines, click deploy and carry on posting on CUK.

    If it gets any easier I'm not sure I'm going to be able to cope.

Working...
X