Author Topic: Help with a project..  (Read 4021 times)

0 Members and 1 Guest are viewing this topic.

Offline Ersan

  • Full Member
  • ***
  • Posts: 143
  • Hi! I'm new here!
    • View Profile
Help with a project..
« on: May 23, 2006, 04:12:22 pm »
Does anyone want to help my team work on a private bittorrent tracker project?

http://stdev.cvs.sourceforge.net/stdev/0.1/

Uses PHP4 OOP and (eventually) XML-RPC - Am looking for someone to work on more modules, suggestions to enhance security and lightweightedness, and possibly a C-based tracker that conforms to STDev's SQL structure - AIM me Ersan181
« Last Edit: May 23, 2006, 04:22:35 pm by Ersan »

Offline Warrior

  • supreme mac daddy of trolls
  • Hero Member
  • *****
  • Posts: 7503
  • One for a Dime two for a Quarter!
    • View Profile
Re: Help with a project..
« Reply #1 on: May 23, 2006, 04:29:26 pm »
I can't be of a bigtime help but if you have any questions design wise we could share notes sometime.
One must ask oneself: "do I will trolling to become a universal law?" And then when one realizes "yes, I do will it to be such," one feels completely justified.
-- from Groundwork for the Metaphysics of Trolling

Offline Ersan

  • Full Member
  • ***
  • Posts: 143
  • Hi! I'm new here!
    • View Profile
Re: Help with a project..
« Reply #2 on: May 23, 2006, 04:35:27 pm »
Need to establish some sort of flexible CSS structure to be used for themes.

Offline Warrior

  • supreme mac daddy of trolls
  • Hero Member
  • *****
  • Posts: 7503
  • One for a Dime two for a Quarter!
    • View Profile
Re: Help with a project..
« Reply #3 on: May 23, 2006, 05:06:17 pm »
Why not use smarty for theming? It allows you to seperate program code from design code and you wouldn't be limited to a potentially strict structure.
One must ask oneself: "do I will trolling to become a universal law?" And then when one realizes "yes, I do will it to be such," one feels completely justified.
-- from Groundwork for the Metaphysics of Trolling

Offline Ersan

  • Full Member
  • ***
  • Posts: 143
  • Hi! I'm new here!
    • View Profile
Re: Help with a project..
« Reply #4 on: May 23, 2006, 05:33:47 pm »
Smarty uses WAY too many resources.

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Help with a project..
« Reply #5 on: May 23, 2006, 08:47:30 pm »
Smarty uses WAY too many resources.

Provide figures.  I stand unconvinced that Smarty uses way too "many" resources. ;)

Offline Newby

  • Moderator
  • Hero Member
  • *****
  • Posts: 10877
  • Thrash!
    • View Profile
Re: Help with a project..
« Reply #6 on: May 23, 2006, 09:07:02 pm »
Quote
* Now talking on #stdev
* reliant.p2p-irc.net sets mode +n #stdev
* reliant.p2p-irc.net sets mode +t #stdev

I am disappointed. :(

I frequent P2P-IRC (#linux, #rockbox, #kerrazy-torrents) and I haven't even heard of you guys. :(
« Last Edit: May 23, 2006, 10:44:13 pm by Newby »
- Newby
http://www.x86labs.org

Quote
[17:32:45] * xar sets mode: -oooooooooo algorithm ban chris cipher newby stdio TehUser tnarongi|away vursed warz
[17:32:54] * xar sets mode: +o newby
[17:32:58] <xar> new rule
[17:33:02] <xar> me and newby rule all

I'd bet that you're currently bloated like a water ballon on a hot summer's day.

That analogy doesn't even make sense.  Why would a water balloon be especially bloated on a hot summer's day? For your sake, I hope there wasn't too much logic testing on your LSAT. 

Offline Ersan

  • Full Member
  • ***
  • Posts: 143
  • Hi! I'm new here!
    • View Profile
Re: Help with a project..
« Reply #7 on: May 24, 2006, 02:12:46 am »
Try #supertorrents

Provide figures.  I stand unconvinced that Smarty uses way too "many" resources. ;)

I couldn't find any studies or whatnot done on it but as far as theory goes, caching the smarty requests to the harddrive (as smarty does) makes the application more IO dependant, which is one of the bigger problems with the current system.

I'm trying to make it as lightweight (but feature-rich) as possible.

Maybe it's all in my head, smarty = rails, and I hate rails.  I also don't see the need for a ginormous chunk of code devoted to aspects of templating that I'll never need.
« Last Edit: May 24, 2006, 02:17:01 am by Ersan »

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Help with a project..
« Reply #8 on: May 25, 2006, 01:23:58 am »
Caching the compiled templates greatly reduces execution time, from what I understand.  If smarty didn't do that, it would take much longer per request to do the same thing.