1. Project Management Survey

    Date: 09/14/09     Keywords: asp

    Dear Colleague,

    Would you be willing to participate in the survey about the role of personality in a project team? I am conducting the survey as a part of the research thesis “Discovering Intertype Relations in a Project Team” for New York University. The study is interested to find out the correlation between personality type and how different personality types influence each other while working together in a project team. Participants must be willing to answer an online questionnaire which consists of two parts: the first part of the questionnaire measures your personality type, and the second part reveals your communication choices. It will take approximately 20 minutes to complete the survey.

    If you are interested in participating in the survey, upon completion of the research you will receive a summary report and a brief profile of your personality type.

    If you are interested and willing to volunteer, but have questions please contact me by email address listed below, otherwise you can access the survey at
    http://www.surveymonkey.com/s.aspx?sm=OWlLnklfDAoWRwu0L2XHkQ_3d_3d

    Thank you for your consideration of this request.

    email: nvk214@nyu.edu
    Link to the survey: http://www.surveymonkey.com/s.aspx?sm=OWlLnklfDAoWRwu0L2XHkQ_3d_3d

    Source: http://itprofessionals.livejournal.com/86617.html

  2. Project Management Survey

    Date: 09/14/09     Keywords: asp

    Dear Colleague,

    Would you be willing to participate in the survey about the role of personality in a project team? I am conducting the survey as a part of the research thesis “Discovering Intertype Relations in a Project Team” for New York University. The study is interested to find out the correlation between personality type and how different personality types influence each other while working together in a project team. Participants must be willing to answer an online questionnaire which consists of two parts: the first part of the questionnaire measures your personality type, and the second part reveals your communication choices. It will take approximately 20 minutes to complete the survey.

    If you are interested in participating in the survey, upon completion of the research you will receive a summary report and a brief profile of your personality type.

    If you are interested and willing to volunteer, but have questions please contact me by email address listed below, otherwise you can access the survey at
    http://www.surveymonkey.com/s.aspx?sm=OWlLnklfDAoWRwu0L2XHkQ_3d_3d

    Thank you for your consideration of this request.

    email: nvk214@nyu.edu
    Link to the survey: http://www.surveymonkey.com/s.aspx?sm=OWlLnklfDAoWRwu0L2XHkQ_3d_3d

    Source: https://itprofessionals.livejournal.com/86617.html

  3. Looking for collaborators

    Date: 08/29/09     Keywords: xml, java

    Does anyone here use jEdit, Perl, and Moose.pm?

    I'm trying to work on a Moose project, and while jEdit's builtin Perl edit mode and Perl Sidekick are both more than adequate for normal Perl use, the lack of Moose support is starting to get on my nerves. I'm getting closer and closer to breaking down and taking on the workload of making a Moose mode and a Moose Sidekick.

    The edit mode should be a simple matter of hacking the extra keywords into a copy of the XML file used for the Perl mode, and I think I'm up to that task all by myself, but the Sidekick is going to take some Java knowhow, and some jEdit API knowhow. Being the lazy layabout that I am, I'm looking for someone to help out.

    Any takers?

    Source: http://itprofessionals.livejournal.com/86315.html

  4. Looking for collaborators

    Date: 08/29/09     Keywords: xml, java

    Does anyone here use jEdit, Perl, and Moose.pm?

    I'm trying to work on a Moose project, and while jEdit's builtin Perl edit mode and Perl Sidekick are both more than adequate for normal Perl use, the lack of Moose support is starting to get on my nerves. I'm getting closer and closer to breaking down and taking on the workload of making a Moose mode and a Moose Sidekick.

    The edit mode should be a simple matter of hacking the extra keywords into a copy of the XML file used for the Perl mode, and I think I'm up to that task all by myself, but the Sidekick is going to take some Java knowhow, and some jEdit API knowhow. Being the lazy layabout that I am, I'm looking for someone to help out.

    Any takers?

    Source: https://itprofessionals.livejournal.com/86315.html

  5. PERL: Numbering a grid any repetitive way you need

    Date: 08/19/09     Keywords: php

    I'm working on some Perl code (might get moved to PHP) which will be the basis for displaying server racks - and blade servers (blade servers, in the big picture, really are just mini-racks).

    The trick is, racks can be of different U heights, and blade servers could be numbered however the OEM wants (you'd /think/ horizontally, starting in the upper left).

    The parameters of the 'racks' will be stored in a db (ldap in this case), and I wanted the parameters to be human readable.

    So, I've written the following Perl code. There's testing output included, and for what this is, I don't see any need to remove it.

    Here's some sample output:


    TLV: 20 VI: -1
    PriOrder: Vertical
    PriOrderStart: Bottom
    SecOrderStart: Right
    U_Horz: 5
    U_Vert: 4
    
    HorzInc: -4
    VertInc: -1
    TopLeftVal: 20
    
    20      16      12      8       4
    19      15      11      7       3
    18      14      10      6       2
    17      13      9       5       1
    

    I'd /love/ to hear thoughts on optimizing (especially the large 'if' section) it.

    - chris


    $PriOrder="Horizontal";
    $PriOrderStart="Left";
    $SecOrderStart="Bottom";
    $U_Horz=5;
    $U_Vert=4;
    
    if ( $PriOrder eq "Horizontal" ) {
      if ( $PriOrderStart eq "Left" ) {
        $HorzInc=1;
        if ( $SecOrderStart eq "Top" ) {
          $TopLeftVal=1;
          $VertInc=$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $SecOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Horz * ( $U_Vert - 1 ) + 1;
          $VertInc=-$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
      if ( $PriOrderStart eq "Right" ) {
        $HorzInc=-1;
        if ( $SecOrderStart eq "Top" ) {
          $TopLeftVal=$U_Horz;
          $VertInc=$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $SecOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Horz * $U_Vert;
          $VertInc=-$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
    }
    
    if ( $PriOrder eq "Vertical" ) {
      if ( $SecOrderStart eq "Left" ) {
        $HorzInc=$U_Vert;
        if ( $PriOrderStart eq "Top" ) {
          $TopLeftVal=1;
          $VertInc=1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $PriOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Vert;
          $VertInc=-1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
      if ( $SecOrderStart eq "Right" ) {
        $HorzInc=-$U_Vert;
        if ( $PriOrderStart eq "Top" ) {
          $TopLeftVal=$U_Vert * ( $U_Horz - 1 ) + 1;
          $VertInc=1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $PriOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Vert * $U_Horz;
          $VertInc=-1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
    }
    
    print "PriOrder: $PriOrder\n";
    print "PriOrderStart: $PriOrderStart\n";
    print "SecOrderStart: $SecOrderStart\n";
    print "U_Horz: $U_Horz\n";
    print "U_Vert: $U_Vert\n";
    print "\n";
    print "HorzInc: $HorzInc\n";
    print "VertInc: $VertInc\n";
    print "TopLeftVal: $TopLeftVal\n\n";
    
    for ($VertLoop = 0; $VertLoop < $U_Vert; $VertLoop++) {
      $RowStart = $TopLeftVal+($VertLoop*$VertInc);
      $RowEnd   = $RowStart+$HorzInc*($U_Horz-1);
    
      for ($HorzLoop = $RowStart; $HorzLoop != $RowEnd+$HorzInc; $HorzLoop+=$HorzInc) {
        print "$HorzLoop\t";
      }
      print "\n";
    }
    

    Source: http://itprofessionals.livejournal.com/86255.html

  6. PERL: Numbering a grid any repetitive way you need

    Date: 08/19/09     Keywords: php

    I'm working on some Perl code (might get moved to PHP) which will be the basis for displaying server racks - and blade servers (blade servers, in the big picture, really are just mini-racks).

    The trick is, racks can be of different U heights, and blade servers could be numbered however the OEM wants (you'd /think/ horizontally, starting in the upper left).

    The parameters of the 'racks' will be stored in a db (ldap in this case), and I wanted the parameters to be human readable.

    So, I've written the following Perl code. There's testing output included, and for what this is, I don't see any need to remove it.

    Here's some sample output:


    TLV: 20 VI: -1
    PriOrder: Vertical
    PriOrderStart: Bottom
    SecOrderStart: Right
    U_Horz: 5
    U_Vert: 4
    
    HorzInc: -4
    VertInc: -1
    TopLeftVal: 20
    
    20      16      12      8       4
    19      15      11      7       3
    18      14      10      6       2
    17      13      9       5       1
    

    I'd /love/ to hear thoughts on optimizing (especially the large 'if' section) it.

    - chris


    $PriOrder="Horizontal";
    $PriOrderStart="Left";
    $SecOrderStart="Bottom";
    $U_Horz=5;
    $U_Vert=4;
    
    if ( $PriOrder eq "Horizontal" ) {
      if ( $PriOrderStart eq "Left" ) {
        $HorzInc=1;
        if ( $SecOrderStart eq "Top" ) {
          $TopLeftVal=1;
          $VertInc=$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $SecOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Horz * ( $U_Vert - 1 ) + 1;
          $VertInc=-$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
      if ( $PriOrderStart eq "Right" ) {
        $HorzInc=-1;
        if ( $SecOrderStart eq "Top" ) {
          $TopLeftVal=$U_Horz;
          $VertInc=$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $SecOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Horz * $U_Vert;
          $VertInc=-$U_Horz;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
    }
    
    if ( $PriOrder eq "Vertical" ) {
      if ( $SecOrderStart eq "Left" ) {
        $HorzInc=$U_Vert;
        if ( $PriOrderStart eq "Top" ) {
          $TopLeftVal=1;
          $VertInc=1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $PriOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Vert;
          $VertInc=-1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
      if ( $SecOrderStart eq "Right" ) {
        $HorzInc=-$U_Vert;
        if ( $PriOrderStart eq "Top" ) {
          $TopLeftVal=$U_Vert * ( $U_Horz - 1 ) + 1;
          $VertInc=1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
        if ( $PriOrderStart eq "Bottom" ) {
          $TopLeftVal=$U_Vert * $U_Horz;
          $VertInc=-1;
          print "TLV: $TopLeftVal\tVI: $VertInc\n";
        }
      }
    }
    
    print "PriOrder: $PriOrder\n";
    print "PriOrderStart: $PriOrderStart\n";
    print "SecOrderStart: $SecOrderStart\n";
    print "U_Horz: $U_Horz\n";
    print "U_Vert: $U_Vert\n";
    print "\n";
    print "HorzInc: $HorzInc\n";
    print "VertInc: $VertInc\n";
    print "TopLeftVal: $TopLeftVal\n\n";
    
    for ($VertLoop = 0; $VertLoop < $U_Vert; $VertLoop++) {
      $RowStart = $TopLeftVal+($VertLoop*$VertInc);
      $RowEnd   = $RowStart+$HorzInc*($U_Horz-1);
    
      for ($HorzLoop = $RowStart; $HorzLoop != $RowEnd+$HorzInc; $HorzLoop+=$HorzInc) {
        print "$HorzLoop\t";
      }
      print "\n";
    }
    

    Source: https://itprofessionals.livejournal.com/86255.html

  7. Mailbagging / email store and forward / backup smtp service

    Date: 03/11/09     Keywords: no keywords

    Does anyone have a mailbagging service provider to recommend ? I just need around 1 day of service due to office relocation.

    or is there anyway to configure gmail to absorb all mail to a domain for a day? (I'll manually forward subsequently)

    Source: http://community.livejournal.com/itprofessionals/82969.html

  8. permissions to a folder

    Date: 03/06/09     Keywords: no keywords

    Here is the deal, we use a lot of space here at my job about 5TB or so. Today a group lost their permissions to a shared folder. This folder is huge and to re-add their permissions takes FOREVER. I'm sure there is an easier way to do this. Is there an easier way for folders that are huge in size? Thanks a lot!

    I'm running windows server 2003 btw.

    Source: http://community.livejournal.com/itprofessionals/82881.html

  9. western scientific

    Date: 02/20/09     Keywords: technology, web

    Does anyone know whether Western Scientific has gone out of business?? I've been emailing and calling them for weeks now and no word from them. Today I went to a technology meeting and they said that there is a rumor that they are out of business. Is there a way to find out if a business no longer exist anymore? I went to their website but nothing is on it about them not existing anymore.

    Source: http://community.livejournal.com/itprofessionals/82649.html

  10. Oracle ebusiness suite 12 issues! Please help

    Date: 02/19/09     Keywords: database

    I know this is a long shot but I'm throwing it out here. I'm having an issue with installing Oracle ebusiness suite 12. The issues we are currently having are (there are multiple ones):

    OS User and Group Check

    Domain=domainname
    ,Username=administrator
    ,PC-Name=pcname
    RW-20016: Warning: - Please verify the user belongs to the administrators group.
    ___________________________________________________________________________________

    I feel like that is the main cause of a lot of the issues. The rest are as follows:

    E:\OracleEbiz\StageR12\startCD\Disk1\rapidwiz>echo off
    /cygdrive/c/WINDOWS/system32/cmd
    'which' command is available.
    /usr/bin/gnumake
    'gnumake' is available.
    /cygdrive/c/WINDOWS/system32/cl
    'cc' is available.
    /usr/bin/link
    'link' is available.
    ERRORCODE = 0 ERRORCODE_ENDThe system cannot find the path specified.
    ___________________________________________________________________________________

    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\1>S:\oracle\VIS\db\tech_st\10.2.0\bin\oradim.exe -NEW -SID VIS

    Instance created.

    DIM-00019: create service error

    O/S-Error: (OS 3) The system cannot find the path specified.

    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\1>if 14 == 0 goto :INSTSRV_OK

    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\1>echo "Cannot install service for database ORACLE_HOME\n";

    "Cannot install service for database ORACLE_HOME\n";
    RW-50010: Error: - script has returned an error: 14
    ___________________________________________________________________________________



    If anybody has any idea's or any insight what so ever, I would greatly appreciate it this...

    Source: http://community.livejournal.com/itprofessionals/82255.html

  11. Need Report Developer

    Date: 02/17/09     Keywords: sql

    SSRS.
    Bank in Pleasanton, CA.
    Now.
    Must pass a 30-minute SQL test.
    Must be willing to put up with me for a boss.
    No sponsorship.
    Details on request.

    Source: http://community.livejournal.com/itprofessionals/82126.html

  12. Bash script to jail users using OpenSSH built-in chroot

    Date: 02/06/09     Keywords: no keywords

    I've created a script to setup users (new or existing) to be jailed and only allow for SFTP access. It requires OpenSSH 4.9 (with internal chroot and sftp functionality) or greater and Bash 3 or greater. I made sure to make it generic enough so that it can be tweaked easily with variables at the top for whatever environment people happen to be using.

    Features:
    *) Can take existing users and jail them (with or without their current home contents)
    *) Can be setup so that specific users can have access to a shared location outside their chroot (via mount) (optional per user basis)
    *) Has internal support for creating symlinks to mimic a previous sftp environment - to keep existing user put/get scripts working (optional per user basis)
    *) Password can be specified, generated or kept (for existing users)

    Before creating this, I did quite a bit of googling and failed to locate a script that does the basics (using OpenSSH internal chroot functionality - tons otherwise), let alone the extra stuff.

    I'd like to share this with others but I don't know where to post it.

    Any suggestions?

    PS: I've just recently made the script 'generic' for use on systems other than the environment it was written for and have yet to test it. I'll be doing that in my environment using the customization variables. I won't be handing the script out until I've done that basic testing to make sure I haven't borked the script in that process.

    Source: http://community.livejournal.com/itprofessionals/81898.html

  13. Offline MBSA scan on Windows Server 2008

    Date: 12/20/08     Keywords: no keywords

    How do I run an offline MBSA 2.1 scan on Windows Server 2008?

    I need to plant the offline scan file in the default location, and try as I might to create a C:\Documents and Users\ folder, Windows 2008 Server puts it right into C:\Users

    It worked perfectly in Server 2003 though.

    Thanks in advance!

    Source: http://community.livejournal.com/itprofessionals/81265.html

  14. Chinese/Unicode support in windows batch files or workaround

    Date: 10/23/08     Keywords: no keywords

    In my network logon script, I need to copy certain files to the users desktop.

    however, some machines are chinese windows, so they don't seem to support chinese
    .bat files saved as unicode doesn't even work

    eg:
    english version
    copy /y "\\mypdc\netlogon\backupdoc.bat" "%userprofile%\Desktop"

    and the chinese version
    copy /y "\\mypdc\netlogon\backupdoc.bat" "%userprofile%\桌面"

    the chinese version will never work in a batch file.

    any idea how to get around this.

    Source: http://community.livejournal.com/itprofessionals/80922.html

  15. high level blocking of remote mousing etc.. (vnc, gotoassist, logmein, etc)

    Date: 10/07/08     Keywords: software

    So I'm looking for a way to block any type of remote access type programs from my windows machines - VNC, gotoassist.. the like. Sure, I could block the standard ports for VNC, deny access to the gotomypc/gotoassist network ranges.. etc.. But I'm sure there are 100s of other products that do the same thing and I can't possibly keep up with blocking specific things for each one.

    I'd think there'd be SOMETHING.. Somewhere.. that says "If the mouse/keyboard isnt plugged into this computer.. don't give access to it.."

    Reason for this is now there are a number of software that require no admin access, run over standard https ports via outbound connections, that I just can't find any sane way to block. I'd bet that maybe 10% of my users could be social engineered into running one of these and allowing some random fool into the network.

    Any thoughts would be great.

    Thanks

    Source: http://community.livejournal.com/itprofessionals/80722.html

  16. Sysprep / Mini-Setup

    Date: 09/30/08     Keywords: hosting, microsoft

    Does anybody have experience configuring computers and then using the Sysprep tool for automating a bit of the Ghosting process?

    What things should I be looking out for while doing this? Anything special I should keep in mind? I've got some articles off of Microsoft.com bookmarked so later I can do more than just skim them, but I wanted opinions from people who actually have experience with it.

    Thanks!
    --Lisa

    Source: http://community.livejournal.com/itprofessionals/80554.html

  17. Videoconferencing

    Date: 09/26/08     Keywords: no keywords

    I have what I suspect is a relatively stupid question to those who know, but this is outside my areas of expertise, so...

    I have a client that is interested in having a small conference room setup for video conferencing. I'm "familiar" with systems from LifeSize, Tandberg, Polycom, etc in that I've used them a couple times, but they were already setup and it was literally a matter of using the remote to select "Satellite Office A". Always in environments where the setups at each end were identical brands and usually over VPNs.

    My question is, if you have one office with say LifeSize, will that system be able to communicate with any other office using Tandberg, Polycom, etc, and over public IP (assuming proper bandwidth of course)? Are they compatible, and all that's needed is a public IP? Or do all endpoints really need to be identical? Are one-time video conferences difficult to setup?

    Thanks for the primer! I suspect that once the "obvious" is out of the way the rest is relatively easy to figure out, for an IT pro.

    P.S. If anyone has suggestions for a 4-6 person conference room, and ballpark cost figure, that'd be useful too.

    Source: http://community.livejournal.com/itprofessionals/80346.html

  18. Authentication Error from Hell

    Date: 09/11/08     Keywords: no keywords

    "An untrusted certificate authority was detected while processing the smartcard certificate used for authentication".

    If anybody, has any slight clue as how to rectify this issue... please contact me ASAP.

    Im going to cross post this on my blogs.

    So for those of you reading this on, livejournal, shoot me an e-mail or a comment.
    For those of you reading this on exphyl.com, shoot me an e-mail.
    For those of you reading this on mayonnaisecat.com, leave a comment!

    Source: http://community.livejournal.com/itprofessionals/79919.html

  19. SharePoint 2007

    Date: 08/29/08     Keywords: web

    I will delete these questions if they are inappropriate. It's about SharePoint 2007.



    I am working with SharePoint 2007 to build the portal for the company I am working for. I am currently redesigning their sites to meet their requirements.

    Corporate has limited my ability to choose a different layout for the default main pages that appear when you create a site. I want to know if there is a way I can override (i.e. make go away) the left hand "View All Site Content" menu.



    I'm also working with web part pages and I liked it until I noticed the breadcrumbs. I want to get rid of them (or at least the lower level ones that redirect them to the old site). I cannot figure out how to do it and I am becoming frustrating. Anyone know how to do it?



    Note: I do not have SharePoint Designer

    Source: http://community.livejournal.com/itprofessionals/79612.html

  20. Weird WinPE BSOD

    Date: 08/27/08     Keywords: google

    I am trying to use Windows Deployment Services to handle desktop imaging. I have several d530 SFFs that I am trying to do this with along with some other HPs (including some d530 CMTs).

    Every system I use except my SFFs can load into WinPE just fine. However, when I try to load into WinPE to capture the image I have created, it loads the files onto the RamDisk from the server and then tries to load the system. It gets so far and then I get a BSOD.

    STOP: c00000021a {Fatal System Error}
    The initial session process or system process terminated unexpectedly with a status of 0x00000000 (0xc0000017 0x0010034c).
    The system has been shut down.

    My googlefu has failed me the last few days and so I am asking if maybe someone has seen this before.

    [cross posted to '[info]'tech_support]

    Source: http://community.livejournal.com/itprofessionals/79146.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home