Search:

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

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: Photo storage and MySQL with web interface

    Hello, Wim



    That's correct.



    I was talking about any of them. Probably the server, as this would reduce bandwidth. But I'll probably store resized versions, anyway.
  2. Re: Photo storage and MySQL with web interface

    Hello, smartbei

    There will likely be thousands of unique pictures (that is, not counting the resized versions). They will be requested quite often.

    So maybe the best way is to keep the filename...
  3. Photo storage and MySQL with web interface

    Hello, everyone

    I am currently developing a system that enables users to upload photos. I'd have a way for them to view the photos too.

    I'm using MySQL as the database and a web-based...
  4. Replies
    6
    Views
    2,882

    [gnome] Re: Ubuntu maximize like OS X zoom

    Indeed... (bump)



    AFAIK yes, but I don't have any access to Mac OS X right now, this is from memory.

    Does anyone knows if this has been discussed already?
  5. Replies
    6
    Views
    2,882

    [gnome] Ubuntu maximize like OS X zoom

    I've been using Linux for quite a few years now, and recently I became aware of an implementation difference of windows' behavior on GNOME/KDE/Windows and OS X.

    The point is that when you maximize...
  6. Re: Ubuntu should stop experiementing and focus on stability

    Simply couldn't agree more.
  7. Replies
    1
    Views
    260

    Buying mew Digital Camera

    Don't know if the place is right for this, but...


    I'm looking foward to buy a new Digital Camera, in the 250€ (+/- 370 US$) range.


    I don't have much knowledge with Digital Cameras, so I'd...
  8. Re: How can I check to see if a file exisits ? in python

    Posted while I was writing. You used "F_OK" or "os.F_OK"?
  9. Re: How can I check to see if a file exisits ? in python

    You could use


    import os

    # ...

    if os.access(Filename, os.F_OK):
    #Do something
    else:
  10. Poll: Re: How many languages do you speak? (not programming languages)

    Portuguese and French as 'native tongues'.

    Apart from that, English and Esperanto.

    I can maintain a conversation in Spanish quite easily.

    So I voted 5.
  11. Re: netwroking problem on client server program

    The loopback interface is at 127.0.0.1, not at 127.0.0.0. The 127.0.0.0 is the loopback address.

    Try changing 127.0.0.0 to 127.0.0.1.

    More info at...
  12. Replies
    6
    Views
    3,105

    Re: Portable and easy GUI with Python

    As som already said, every Python install comes with Tkinter, including Mac OS X.

    As for .app bundles for Mac OS X, this link might be of help:
    ...
  13. Replies
    11
    Views
    951

    Re: Float to String

    Try setting the precision at 4 :-)

    Greetings
  14. Replies
    12
    Views
    3,023

    Re: Python based alarm clock

    I changed the Window.load_settings() and the Window.save_settings() functions.

    Here it goes:



    def load_settings(self):
    """Loads the settings of the Alarm from a predefined file. Default:...
  15. Replies
    12
    Views
    3,023

    Re: Python based alarm clock

    I merged all the files and the MyWindow and BaseWindow classes into a class named Window.

    Here's the source code:




    #!/usr/bin/env python
    # --- File pyAlarmClock.py
  16. Replies
    12
    Views
    3,023

    Re: Python based alarm clock

    The removal of the ID caused a bug with the Remove button:



    Traceback (most recent call last):
    File "/home/elros/Programming/Python/pyAlarmClock (2)/basewindow.py", line 254, in btnDel_click...
  17. Replies
    12
    Views
    3,023

    Re: Python based alarm clock

    Wow, THAT was fast!
  18. Replies
    12
    Views
    3,023

    Re: Python based alarm clock

    Why is your code divided in BaseWindow and MyWindow?
  19. Replies
    12
    Views
    3,023

    Re: Python based alarm clock

    I was about to start one project of a PyGTK-based alarm. Thanks for sharing it!

    However, there are some problems:

    ― I can't chose the command that'll be executed.
    ― The ID gets wrong after a...
  20. Replies
    53
    Views
    2,079

    Re: Writes to flash drive upon "unmount" only

    I think there's a rather simple solution, which will please most of us.

    Enforcing one of the two solutions is not good; it will necessarily bother someone.

    So, what we have to do is maintaining...
  21. Replies
    32
    Views
    2,052

    Re: linux v xp for programming

    I've read the whole topic... These are my thoughts:

    1. There are basically two ways to install software in Ubuntu:
    a. Go on Add/Remove or Synaptic or apt-get or aptitude and install.
    b....
  22. Replies
    12
    Views
    778

    Re: Compiling init sequence

    Thanks for the attention, and for the comprehensive explanation.

    I see now that it would be a little-to-no benefit thing, compiling the crpits in the init sequence.

    About Upstart, does it still...
  23. Replies
    12
    Views
    778

    Re: Compiling init sequence

    I understand (most of) how the init process works.

    When I say compile, I mean using some sort of program that would transform the bash script in some kind of language than can be compiled (like C...
  24. Replies
    12
    Views
    778

    Re: Compiling init sequence

    I though about that...

    And what if the system was automatic? I though about it this way: Instead of being a folder (/etc/init.d) it could be a tar file, such as (/etc/init.d.tar). This way, you...
  25. Replies
    12
    Views
    778

    Compiling init sequence

    I don't know if the right place to say his is here, but anyway; you can just move the thread if you feel I misposted it...

    The thing is: I was wondering, the init scripts that boot up the computer...
Results 1 to 25 of 27
Page 1 of 2 1 2