Search:

Type: Posts; User: brentoboy; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    4
    Views
    855

    [SOLVED] Re: Differences between kernels

    when I looked, the only significant difference I could find was that they give a longer timeslice to processes before switching processes.

    This has the effect of spending more time overall getting...
  2. Replies
    10
    Views
    910

    [ubuntu] Re: Blank Screen on Install

    sudo apt-get update

    sudo apt-get install ubuntu-desktop
  3. Replies
    34
    Views
    7,546

    Re: Career advice for a programming job

    go to dice.com and hotjobs.com

    Do a search for Java in an area you want to live in, change the experience level to "1-2 years" because that is what you are going to be able to claim on your...
  4. Re: MySQL query - multiple COUNT's from a child table

    Use subqueries instead of grouping.



    select eventID
    , (select count(*)
    from eventattendance a
    where a.eventId = e.eventId
    and a.response = 'Yes'
    ) as...
  5. Re: MySQL query - multiple COUNT's from a child table

    Use subqueries instead of grouping.



    select eventID
    , (select count(*)
    from eventattendance a
    where a.eventId = e.eventId
    and a.response = 'Yes'
    ) as...
  6. Replies
    31
    Views
    1,946

    Re: help me choose between php, python, perl!

    Another "vote" for Python / Django. Go to djangoproject.com and spend an afternoon doing their demo/walkthrough. Django absolutely rocks.

    Perl can do lots of cool stuff, but has a reputation for...
  7. Re: [Windows question!] Gui programming withouth installing something

    You should seriously consider vbscript.

    Java requires the runtime.
    VB6 requires its own runtime (3 MB of DLLs)
    C/C++ will get really hairy if they decide to add any features down the road -...
  8. Replies
    12
    Views
    818

    Re: PHP and database programming

    Do you intend to distribute the "Code" to anyone else? or just give them access to the site?

    GPL only requires that you be willing to provide source code if you distribute the product to someone...
  9. Replies
    6
    Views
    451

    Re: Is Python for me?

    Python is a fun language (I speak C++, assembly, .net, and a little ATL). I would definitely play with it. But you will probably want to start off with command line apps.

    I find python a breath...
  10. Replies
    10
    Views
    2,917

    Re: Beginner, doing some cool things with html?

    Check out this site...

    http://www.dynamicdrive.com/

    I recommend the content slider add-in. It lets you rotate content on a timer. So, you can have a slideshow, but it works with entire div's...
  11. Re: SQL Questions - Index question and trigger/stored proc question (MySQL)

    create *_old tables

    don't mark a record as inactive.

    keeping historical changes is often important to the integrity of a database, so I agree that you shouldn't just delete old data, or update...
  12. Re: SQL: How do you deal with "sometimes" relationships

    I would, as already suggested, allow the enforcement to lie in the business application logic layer.

    But, I might add that you could have a series of joins that you could run on a regular basis...
  13. [ubuntu] Re: Copying Windows files from USB hard drive with 8.04.1 Live CD

    In my experience, no. You dont need to be concerned. NTFS has been quite stable in linux for a few years now. I use it for serious operations all the time (because vista has that blasted indexing...
  14. Replies
    10
    Views
    1,178

    [ubuntu] Re: SATA II drive not detected on install

    1st thing: Check the BIOS to see if the drive is recognized by the system at all. If BIOS doesn't see it, it is not going to work with any operating system. You can get into the BIOS by hitting F2...
  15. [ubuntu] Re: Finally Divorcing Ubuntu - Which distro should i choose?

    Linux Distros are like cola beverages, sure, there is a difference, but its a personal taste thing.

    maybe you would get more feedback if you explained several things about ubuntu that arent your...
  16. Replies
    2
    Views
    351

    [ubuntu] Re: Opening a Program

    these are windows programs
    sorry, but you cant use them here.

    But, the good news is, you dont need to.
    Open nautilus (the file navigator) to the iso file you want to burn. right click it, and...
  17. Replies
    4
    Views
    407

    [ubuntu] Re: Nvidia > ATI?

    4 years ago I wold have said "absolutely nvidia>ati"

    now, not sure. I still only buy nvidia, but since ati merged with amd, they have opened up a bit. Make sure you have the proprietary drivers...
  18. Replies
    20
    Views
    3,351

    [ubuntu] Re: How Do you unlock a folder???

    unmount it (by right clicking the icon on the desktop) but dont unplug it.

    then, open a terminal and mount it manually like so:

    sudo mount -o rw -t vfat /dev/? /media/disk/EURES

    the /dev/?...
  19. Replies
    9
    Views
    492

    Re: Web Admin - Become Root

    I'm happy with sudo, simply becuase it is already installed and supported. I was hoping to find a lib or an object that lets me switch users for a moment. But that doesnt seem likely.

    I also...
  20. Replies
    20
    Views
    3,351

    [ubuntu] Re: How Do you unlock a folder???

    gedit /etc/fstab

    and post the contents of the file.
  21. Replies
    7
    Views
    576

    [ubuntu] Re: Xubuntu using Live CD?

    If you just want to avoid downloading the entire cd, try getting the mini cd https://help.ubuntu.com/community/Installation/MinimalCD

    it is only like 9 mb.
    when you install it, choose the cli...
  22. Replies
    9
    Views
    492

    Re: Web Admin - Become Root

    that sounds like a reasonable approach. I'll play with that and post up the results after I get it working (or hit rock bottom) whichever comes first. I'll let you know if that does the trick.
  23. Replies
    20
    Views
    3,351

    [ubuntu] Re: How Do you unlock a folder???

    your memory stick is mounted as read only (hence the "read only file system" complaint in your output.)

    do you know if the stick is formatted with a fat32 file system or an ntfs file system?
    ...
  24. [ubuntu] Re: Brand new to Linux, minor display problem :)

    to fix this, (if a proprietary driver doesnt work) you will have to hand edit your /etc/X11/xorg.conf file, which is potentially dangerous. The problem is that it didnt detect your monitor's...
  25. Replies
    6
    Views
    443

    [kubuntu] Re: install new software

    if you install the package ubuntu-restricted-extras
    you will get most of that stuff and other thigns you might not even realize you would like to have.
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4