= Development projects = We need volunteers to help with software testing and development. If you have one or more of the relevant technical skills (C++ system programming, PHP/MySQL Web development, wxWidgets programming, autoconf/automake expertise, etc.) you may be able to help us maintain and enhance BOINC. The University of California holds the copyright on all BOINC source code. By submitting contributions to the BOINC code, you irrevocably assign all right, title, and interest, including copyright and all copyright rights, in such contributions to The Regents of the University of California, who may then use the code for any purpose that it desires. To get started, read about the [SoftwareDevelopment BOINC software development process]. Find a small bug fix or enhancement to do (look at the [/trac/query BOINC bug database], the [/email_lists.php email lists], or [/dev/ message boards] for ideas). Look at the source code and think about how you would implement it. Then communicate with the [ProjectPeople area owner], sketching what you want to do and how. Work with the the area owner to carry out and check in the work. The following development projects are available: == Web Interface == === Back-end === Requires advanced knowledge of PHP and MySQL. Easy: * Convert PHP code to use [PhpDb the new database abstraction layer]. * Combine user page and profile * Change the ops/ web pages to require login by a user with admin privileges. * Change default Q&A page to refer BOINC-specific questions to BOINC web site * As much as possible; separate back-end and front-end code, to enable front-end specialists to edit front-end code without having to know about, or deal with back-end code. Medium: * Add a mechanism where team members can be designated as ‘admins’, and have some of the powers of the founder. * Add a mechanism where joining a team or group requires approval of an admin. * Groups (sub-teams). New DB table with name, description, team ID, flags, forum ID. Group membership table. Difficult/Complex: * Propagate profiles between projects. When create or edit profile, if attached to other projects, show ‘propagate changes’ page, with checkboxes for other projects (must have same password on other projects). Add web RPCs for updating profile (args: user ID, profile, password hash). Implement this so that page doesn't block waiting for replies from RPCs. NOTE: this may not be a good idea — spammers could exploit it. * Same for forum preferences * Add new profile features: * ‘Buddy lists’ * list of recent posts and threads this person created, on this and other projects * other features from social networking sites? * Add ‘referral’ mechanism: new user creates account, enters email of ‘referrer’ (or goes to URL that has it embedded). Give referrer a fraction of credit (or a 1-time bonus). List referrals on user page (show only those still active). Add new referral table to DB. * Make it easy for teams to offer a client download that features their skin, and pre-register the user on that team for any projects he attaches to. === Front-end === Requires front-end specialists with detailed knowledge and experience of markup and styling. Requires colaboration between front-end specialists and back-end developers when changes to back-end/features affect front-end behaviour (to ensure correct front-end code). Medium: * All styling declarations to be contained in external files * Separation of structure/content and presentation — removal of deprecated presentational markup elements (that's what CSS is for). * Typography corrections/improvements * Quality copy-writing to enhance readability and clarity of content Difficult/Complex: * Information Architecture — eg creating a appropriate, stable URL structure, allowing for future expansion and change (eg use of HTTP default documents rather than current practice). * Any changes to URL structure require (permanent) redirects from all previous locations to all new locations. * Valid Markup & style declarations * Should aim for HTML v4.01 Strict (XHTML served with the correct MIME-type/content-type doesn't have sufficient support, modern HTML authoring techniques are perfectly capable, adequate, suitable, and appropriate). * If Strict isn't reasonably attainable (very few reasons why apart from time constraints to correct poor design/implementation), then aim for Transitional as an intermediate step, so that the code will at least be valid. * Closing tags * Correct nesting of elements: closing tags in the opposite order to opening, eg closing the most recently opened first: {{{<1><2><3>}}} * Semantic Markup — marking-up things based on what they are, not the default appearence of certain elements. For example: using {{{
…“quoted” text…
}}} for indentation is inappropriate. Block-quotes should be marked as {{{

…actual block-quote…

}}} and nothing else. In this example, if indentation is required then CSS should be used to apply styling to an appropriate element (a regular paragraph ({{{

…Paragraph text…

}}}) would probably be suitable unless the element isn't actually a paragraph. * Accessibility * Replacing table-based layouts with CSS positioning * More semantic mark-up (see semantic markup item) * Using appropriate units in style declarations to enable resizing of text based on user's preferences in browser. * Unobtrusive, accessible use of ECMAScript (!JavaScript), implemented via progressive enhancement and DOM Scripting methods. [http://www.456bereastreet.com/archive/200612/you_cannot_rely_on_javascript_being_available_period/ Scripting is not always available and can not be relied upon] (for many reasons, the majority being outside the user's control), and the back-end needs to be able to provide same functionality (albeit less elegent/sophisticated) when scripting isn't available for whatever reason. A simple example would be back-end form input validation when scripting isn't available to protect against garbage/bogus form data and provide feedback to user. * Usability * Including error-messages and similar * Proper navigation model * Navigation bar/panel on common pages (rather than always having to (or only being able to) go back to “Home” and then navigate to desired section from there). * Interface designer to establish the appropriate navigation options for each page. * HTTP efficiency * Content-Encoding * Providing correct Last-Modified and ETag headers to enable conditional GET requests. * Back-end support to enable “HTTP 304 Not Modified” reponses to be sent when content hasn't changed based on conditional GET request(s). * More ‘agressive’ caching for content who's frequency of change is predictable (such as images). == Applications == Easy: * Create Makefiles and project files to build the sample applications using MinGW and DevC++. Medium: * Write example FORTRAN application and Makefiles/ project files Difficult/Complex: * Write an example compound application (and suggest API revisions to make this easier). * Investigate the crlibm library for generating identical results across processors (or at least reducing the number of cases for HR). * Java support: core client checks for the existence of JVM, reports version to scheduler. Write Java wrapper (runs JVM, gives it jar files). Note: Sztaki has already done some part of this. * Same, .NET * Distributed Python: Borrow or invent a notation for master/slave execution in Python. Develop a system that implements this on BOINC, i.e., creates WUs and applications, and harvests the results. == Core client == (Requires advanced C++ system programming experience) Medium: * Add a preferences for total download and upload in a month (many Australian ISPs have monthly limits), or per X hours of processing time (see email from Kevin Reed). * Don't enforce RAM limits unless free RAM is low * GUI RPC to tell apps to checkpoint and quit. Hard: * Have the core client sense CPU temperature and throttle CPU if it goes too high. [http://www.lm-sensors.org/ Open-source software for collecting sensor data (on Linux)] is available. * Windows: get proxy config info directly from the OS * After an applications exits or is killed (for whatever reason) make sure (after a few second delay) that its subprocesses are gone too. Don't restart the job until this happens. Unix: use process groups and killpg(). * More generally: make a better state machine for shutting down apps: tell them to checkpoint, wait a little, tell them to quit, clean up straggler processes. * Same, but for suspend: if we tell a client to suspend and it's still using lots of CPU after a few seconds, abort it (or something). * Integrate !BitTorrent ([http://www.rasterbar.com/products/libtorrent/ libtorrent]?) with the core client (Janus Kristensen is working on this). * Do potentially slow RPCs and other tasks (such as computing disk usage) in a separate thread. * Log result start/ends (for use by 3rd-party software like !BoincView). * Prevent disk space usage from exceeding user preferences, and enforce resource shares, with file deletion according to project policy. * Make messages of class MSG_USER_ERROR translatable. * Vista: if get 'about to shut down' msg from OS, stop apps immediately (don't tell them to checkpoint). Investigate. * XML stats: add lat/long to user record? == BOINC Manager == (Requires experience with !WxWidgets GUI toolkit) Easy: * If using an AMS, put link to AMS (or user page) in sys tray popup, elsewhere Hard: * Properties pages for projects, jobs * Turn off alerts (Rom's working on this) * Have the Manager do RPCs in a separate thread. == Server/Back End == (Requires advanced C++/Unix system programming experience) Medium: * When using HR, if the scheduler has sent one result of a WU using a particular app version, it should use the same app version for other results from that WU. Hard: * Implement a mechanism so that server software detects incompatible database format * Scheduler: implement mechanisms so that server: * Attempts to send results from the same WU to hosts with similar speed, so that a fast host doesn't have to wait weeks to get credit. * Implement a 'benchmark result' mechanism: every host runs a benchmark result per app version, and the CPU time determines credit/CPU for future results Please check with [ProjectPeople area owner or David Anderson] before undertaking any of these.