Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
J

JohnNawrocki

@JohnNawrocki
About
Posts
10
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Your first job
    J JohnNawrocki

    Computer operator; RL Polk; IBM 7074. Programmer IBM 1401 autocoder, 7074 autocoder, 360 assembler. Education 3-day IBM assembler coding workshop.

    John Nawrocki Chief Technical Advisor Custom Molded Products

    The Lounge question career

  • please send explaination
    J JohnNawrocki

    // not code void lxt971reset() { int temp2,temp1; pioreset1=pioreset1 | 0x0010; // hex 10 = binary 10000; | is Bitwise OR; sets the 5th position from the right in pioreset1 to a one. Probably turning on some kind of switch *pioaddr_ptr=9<<24; // Not sure why one would do this but this shifts 9 (binary 1001) 24 bits to the left ( also multiplies 9 times (2 to the 24th power) which equals Binary 10010000000000000000000000000 and stores it *piowrdata_ptr=pioreset1; // sets a pointer to the value from setp 1 wait(10); // I geuss a delay to let the previous action to take effect *piowr=1; // Turn something on *piowr=0; // Turn it off wait(1000); // Another delay pioreset1=pioreset1 & (~0x0010); // (~0x0010) = 01111 bacically the complement of 10000 from step 1 "piorset1 & 01111" turns off the switch truned on in step 1 *pioaddr_ptr=9<<24; // Same as step 2 but with switch off *piowrdata_ptr=pioreset1; // Same as step 3 wait(10); // more delay for timing I suppose *piowr=1; *piowr=0; // The old On/Off again } // never did use temp1 or temp 2;

    John Nawrocki Chief Technical Advisor Custom Molded Products

    C / C++ / MFC

  • Is there any function that can convert text representation"ABCDEF" back to int ?
    J JohnNawrocki

    I assume you are talking about converting character hexadecimal representation to an integer. Look at: http://www.dreamincode.net/code/snippet805.htm[^]

    John Nawrocki Chief Technical Advisor Custom Molded Products

    C / C++ / MFC help question

  • Add .c file
    J JohnNawrocki

    Post the code.

    John Nawrocki Chief Technical Advisor Custom Molded Products

    C / C++ / MFC c++ help

  • How to change the Vista boot logo ?
    J JohnNawrocki

    Forgot the link: http://www.stardock.com/products/logonstudio/[^]

    John Nawrocki Chief Technical Advisor Custom Molded Products

    C / C++ / MFC c++ windows-admin linux tutorial question

  • How to change the Vista boot logo ?
    J JohnNawrocki

    LogonStudio is a free program that allows users to change their Windows 7, Vista and XP logon screens. It comes with several logon screens to choose from, along with thousands that are available online from Web sites such as WinCustomize.com. Hope this helps.

    John Nawrocki Chief Technical Advisor Custom Molded Products

    C / C++ / MFC c++ windows-admin linux tutorial question

  • Disabling the 'Alt' key
    J JohnNawrocki

    You might need a kernel-mode device driver. http://technet.microsoft.com/en-us/sysinternals/bb897578.aspx[^]

    John Nawrocki Chief Technical Advisor Custom Molded Products

    C / C++ / MFC com windows-admin hardware json question

  • Boot CD that can copy an HD from an unbootable system?
    J JohnNawrocki

    Not free but I have two items that are invaluable in retriving data from dead hard drives. One is an ide/sata to usb adapter. Remove the drive and plug it into the adapter and power supply and then into any usb port on another computer. www.microbarn.com The next is a very powerful piece of software - spotmau power suite. It will boot most any computer, actually puts you in a windows environment, better tham linux (just my opinion). I have used it to even recover data from a reformatted hard drive. www.spotmau.com

    John Nawrocki Chief Technical Advisor Custom Molded Products

    The Lounge com sysadmin question

  • Being bad at math
    J JohnNawrocki

    We just see indexing in different ways. You think about rows and columns. I think, about indexing thru an array. Before starting, I have gone no where in the array and therefore are at location zero. One thing I'll agree with, the fact that anything to the zero power equals one really has nothing to do with indexing; then there is 0 to the 0 power... Zero to any power is zero, yet anything to the zero power is one. A conundrum pondered by many.

    John Nawrocki Chief Technical Advisor Custom Molded Products

    The Lounge question csharp database wpf com

  • Being bad at math
    J JohnNawrocki

    Having grown up in the IBM assembler world I actually have trouble with 1 based indices. But if we take any number, say 25, and examine the set {1,25,625,390625} we know that member is the next power of 25 starting with, not 1, but 0. So I thing that says something for 0(zero) based indices.

    John Nawrocki Chief Technical Advisor Custom Molded Products

    The Lounge question csharp database wpf com
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups