Page 11 of 53 FirstFirst ... 91011121321 ... LastLast
Results 101 to 110 of 527

Thread: Account Lease time / Content filtering

  1. #101
    Join Date
    Jun 2007
    Location
    Charlotte, NC, USA
    Beans
    3,135
    Distro
    Ubuntu Development Release

    Account Lease time - Timekeeper Developement

    Tonight was the acid test at my house. The wife called me while I was at work and wanted to extend the time allowed for one of the kids. I walked her through the "Disable Limits Today" use from the desktop launcher and it was perfect.

    She was very pleased. Tomorrow will be a good day
    Last edited by crjackson; October 1st, 2008 at 11:11 PM.
    Mac Pro 5,1 6-Core 3.33GHz, 48GB, Sapphire RX580
    Optical -- Apple Super Drive & MCE Internal Blu-ray
    512GB SM 970 Pro NVMe/HighPoint 7101A/10.14.5
    SonnetAllegro Pro USB 3/ 4TB WD/4TB - Barracuda

  2. #102
    Join Date
    Jun 2007
    Location
    Charlotte, NC, USA
    Beans
    3,135
    Distro
    Ubuntu Development Release

    Account Lease time - Timekeeper Developement

    I spoke too soon. There was confusion over the way the buttons work and she ended up clicking Apply which gave him unlimited use. See what you think about this idea:

    1. Change the "Reward" button to read "Apply Reward"
    2. Change the "Disable limits today" button to "Release Boundaries"
    3. Change the "Quit" button to read "Exit"
    4. Change the "Apply" button to read "Apply Limits/Boundaries"


    Or some similar wording. If it's able to load the previous settings for each user as you mentioned, that would prevent someone from accidently granting unlimited access by in inadvertently clicking the Apply button too.
    Last edited by crjackson; October 1st, 2008 at 11:12 PM.
    Mac Pro 5,1 6-Core 3.33GHz, 48GB, Sapphire RX580
    Optical -- Apple Super Drive & MCE Internal Blu-ray
    512GB SM 970 Pro NVMe/HighPoint 7101A/10.14.5
    SonnetAllegro Pro USB 3/ 4TB WD/4TB - Barracuda

  3. #103
    Join Date
    Nov 2006
    Location
    Norway
    Beans
    795
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: Account Lease time / Content filtering

    The "Wife test" is a though one. I think we did well!

    I will have a look at changing the wording on the buttons. 1. and 2. is easy and good ideas, 3. and 4, I don't know. Those are GTK standard buttons and can have the icons. Reading the settings is probably a better idea. I will have a look at it!

    On the subject of wording: Is limits/boundaries good words to use? As I am not a native English/American speaker I think you might come up with a better solution than me.
    Open mind, open source!
    Keep control of computer usage with timekpr
    Screensaver for Amarok? AmarokScreenSaver
    My (Norwegian) blog about motorcycles and MotoGP

  4. #104
    Join Date
    Jun 2007
    Location
    Charlotte, NC, USA
    Beans
    3,135
    Distro
    Ubuntu Development Release

    Account Lease time - Timekeeper Developement

    Quote Originally Posted by .nedberg View Post
    The "Wife test" is a though one. I think we did well!

    I will have a look at changing the wording on the buttons. 1. and 2. is easy and good ideas, 3. and 4, I don't know. Those are GTK standard buttons and can have the icons. Reading the settings is probably a better idea. I will have a look at it!

    On the subject of wording: Is limits/boundaries good words to use? As I am not a native English/American speaker I think you might come up with a better solution than me.
    Don't bother with 3 / 4 then. Wording of Limits / Boundaries... Seems that Boundaries might be polished up a bit, but I'll have to think on that one.
    Last edited by crjackson; October 1st, 2008 at 11:13 PM.
    Mac Pro 5,1 6-Core 3.33GHz, 48GB, Sapphire RX580
    Optical -- Apple Super Drive & MCE Internal Blu-ray
    512GB SM 970 Pro NVMe/HighPoint 7101A/10.14.5
    SonnetAllegro Pro USB 3/ 4TB WD/4TB - Barracuda

  5. #105
    Join Date
    Oct 2006
    Location
    Belgrade, Serbia
    Beans
    1,321
    Distro
    Ubuntu

    Re: Account Lease time / Content filtering

    Could anyone debianize this and upload it at launchpad? I think this could be the next great addition for ubuntu (9.04) jaunty jackalope
    Last edited by forger; September 15th, 2008 at 02:34 PM.

  6. #106
    Join Date
    Nov 2006
    Location
    Norway
    Beans
    795
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: Account Lease time / Content filtering

    Quote Originally Posted by forger View Post
    Could debianize this and upload it at launchpad? I think this could be the next great addition for ubuntu (9.04) jaunty jackalope
    Oh my! That would be cool! But I do not think it is ready for prime time yet. It is still a bit rough around the edges and things will probably change a lot.

    That said, inclusion in Ubuntu would be great!
    Open mind, open source!
    Keep control of computer usage with timekpr
    Screensaver for Amarok? AmarokScreenSaver
    My (Norwegian) blog about motorcycles and MotoGP

  7. #107
    Join Date
    Oct 2006
    Location
    Belgrade, Serbia
    Beans
    1,321
    Distro
    Ubuntu

    Re: Account Lease time / Content filtering

    It would be better in launchpad, in case a lot of developers take interest in this, you could see who's adding what part of code:
    https://code.launchpad.net/

    Bazaar (the version control system) has a 5-minute-tutorial to get you started
    http://doc.bazaar-vcs.org/bzr.dev/en...ial/index.html

    I've looked at the script & GUI, it's great!

    By the way, you have the path "/usr/bin/" in the GUI's .py file for the other "parts" of timekpr - remove them, that way it will read the script in the current directory

    Also, you look in /home/ for users. You could make something in python out of this bash script:
    Code:
    cat /etc/passwd | cut -d: -f 1,3,6 | grep '1[0-9][0-9][0-9]\|5[0-9][0-9]' | grep "/home" | cut -d: -f1
    (It creates a user list of UserIDs 1000+, default for Ubuntu, or 500+,default for Fedora)

    I guess you could also use:
    Code:
    cat /etc/passwd | cut -d: -f 1,3,6 | grep "/home" | cut -d: -f1
    ..to get all users with "home", but that can include users created by the system, like syslog
    Last edited by forger; September 15th, 2008 at 03:33 PM.

  8. #108
    Join Date
    Oct 2006
    Location
    Belgrade, Serbia
    Beans
    1,321
    Distro
    Ubuntu

    Re: Account Lease time / Content filtering

    Also, can you set in the notification message the time left to be in minutes instead of seconds?

  9. #109
    Join Date
    Nov 2006
    Location
    40.31996,-80.607213
    Beans
    Hidden!
    Distro
    Ubuntu

    Re: Account Lease time / Content filtering

    Quote Originally Posted by forger View Post
    It would be better in launchpad, in case a lot of developers take interest in this, you could see who's adding what part of code:
    https://code.launchpad.net/

    Bazaar (the version control system) has a 5-minute-tutorial to get you started
    http://doc.bazaar-vcs.org/bzr.dev/en...ial/index.html
    I have also written a guide for Bazaar, here at the forums. It may be useful:
    http://ubuntuforums.org/showthread.php?t=916132

    Start a new project at Launchpad and then you can use bazaar for uploading the source. Then the community can maintain it, and eventually it may get in a version of ubuntu
    "Security lies within the user of who runs the system. Think smart, live safe." - Dr Small
    Linux User #441960 | Wiki: DrSmall

  10. #110
    Join Date
    Nov 2006
    Location
    Norway
    Beans
    795
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: Account Lease time / Content filtering

    OK

    Launchpad project is found at https://launchpad.net/timekpr.

    I never used bazaar before so I might have done something wrong, but I think I got it! At least the code is in launchpad. Also I never used launchpad for a project before so this is all new to me.

    I will try to make some updates soon.
    Open mind, open source!
    Keep control of computer usage with timekpr
    Screensaver for Amarok? AmarokScreenSaver
    My (Norwegian) blog about motorcycles and MotoGP

Page 11 of 53 FirstFirst ... 91011121321 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •