news
Members-
Content count
80899 -
Joined
-
Last visited
Never -
Days Won
18
Everything posted by news
-
I am pleased to announce version 2.3.0 of the Gtksourceview Python bindings. Once the mirrors have sync correctly it will be available at: http://ftp.gnome.org/pub/GNOME/sources/pygtksourceview/2.3/ The bindings are updated with the new Gtksourceview API News in 2.3.0 ============= o add an unofficial distutils based buildsystem that alllows to create win32 installers. (Paolo) o Add new 2.3.0 gtksourceview API. (Gian Mario) o remove gnomevfs dependency, use gio instead. (Gian Mario) Blurb: ====== gtksourceview is a library that provides a widget for source code display and editing, derived from Gtk's TextView, and used by gedit and nemiver, among others. gtksourceview has recently been released 2.3.0 PyGtksourceview requires: ========================= o Gtksourceview >= 2.3.0 o PyGObject >= 2.15.2 o PyGTK >= 2.8.0 Bug reports should go to: http://bugzilla.gnome.org/browse.cgi?product=pygtksourceview cheers -- Gian Mario Tagliaretti GNOME Foundation member gianmt ( -at -) gnome.org _______________________________________________
-
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 A new cairo snapshot 1.7.2 is now available from: http://cairographics.org/snapshots/cairo-1.7.2.tar.gz'>http://cairographics.org/snapshots/cairo-1.7.2.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.7.2.tar.gz.sha1 29569943dad4a4e5bbe16495404288a466e1bd0f cairo-1.7.2.tar.gz http://cairographics.org/snapshots/cairo-1.7.2.tar.gz.sha1.asc (signed by Behdad Esfahbod) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.7.2 tag which points to a commit named: 057a832f9e806f9321648e47ee314a62e82e6ba4 which can be verified with: git verify-tag 1.7.2 and can be checked out with a command such as: git checkout -b build 1.7.2 Release 1.7.2 (2008-08-11 Behdad Esfahbod ) ============================================================== The cairo community is finally ready to announce availability of the 1.7.2 snapshot of the cairo graphics library. This is embarrissingly the first snapshot in the 1.7 unstable series of cairo, leading to the eventual release of cairo 1.8, currently planned for late September. This snapshot comes four months after the 1.6.4 release. We have done a really bad job on getting development stapshots out this cycle, but hopefully all the API changes for 1.8 are now finished and the remaining weeks will be spent on bug-fixing. There is more than 400 commits worth of changes in this snapshot, and those can use some testing. Read on! Text, text, and more text! - -------------------------- The dominant theme of this release, and 1.8 in general, is improvements around cairo text API. Here is a high-level list of changes with text handling: User fonts - ---------- This is new API allowing the user of cairo API to provide drawings for glyphs in a font. This is most useful in implementing fonts in non-standard formats, like SVG fonts and Flash fonts, but can also be used by games and other applications to draw "funky" fonts. See test/user-font.c and test/user-font-proxy.c for usage examples. This is based on early work by Kristian Høgsberg. Thanks Kristian! show_text_glyphs - ---------------- This new API allows the caller of cairo to mark text glyphs with their original text. The PDF backend implements this new API and latest Pango master uses it. The result is (when bugs are fixed) that complex text can be copied out of pangocairo's PDF output correctly and reliably. There are bugs to fix though. A few poppler bugs, and some more in cairo and pango. To test show_text_glyph, just grab pango master and this cairo snapshot and print text in gedit. Open in acroread or evince, select all, copy, paste in gedit and compare. The Arabic text with diacritic marks is particularly showing bad. Try with pango/pango-view/HELLO.txt if you are brave enough. The Indic text is showing improvements, but is still coming out buggy. LCD subpixel filtering using FreeType - ------------------------------------- FreeType 2.3.5 added support for various LCD subpixel filtering, and fontconfig 2.6.0 added support for configuring LCD filter on a font by font basis. Cairo now relies on FreeType and fontconfig for subpixel filtering. This work is based on David Turner's original patch to cairo, maintained and tested by Sylvain Pasche and others. Thanks all! Toy font face constructor and getter - ------------------------------------ Mostly for API completion, but also useful for higher level (like Pango) to hook into what the user has set using cairo_select_font_face(), making that toy API a bit more useful. FreeType: respecting FC_FT_FACE - ------------------------------- Previously it was impossible to instruct cairo to do emboldening on a font face object created from an FT_Face. Cairo now respects and uses the FC_FT_FACE fontconfig pattern element, so emboldening can be achieved by using cairo_ft_font_face_create_for_pattern() and a carefully crafted pattern using FC_FT_FACE and FC_EMBOLDEN. PS/PDF: More efficient output - ----------------------------- Adrian Johnson has been busy fixing all kinds of bugs in PS and PDF backends, as well making them generate much more compact output by avoiding things like re-emitting the color or linestyle on every drawing operation. Thanks Adrian! Xlib: Dithering - --------------- Cairo now does simple dithering when rendering to legacy X servers. This is mostly visible with 8-bit visuals. Xlib: Avoid rendering glyphs out of surface bounds - -------------------------------------------------- This seemingly harmless change manifested a bug with OpenOffice.org 3 versions where OO.o was passing bogus surface extents to cairo, resulting in no text rendered in OO.o. Please contact your distro's OO.o maintainers if you see this bug and point them to the following URL: https://bugs.freedesktop.org/show_bug.cgi?id=16209 Xlib: Improved performance with Xrender-less X servers - ------------------------------------------------------ Cairo now performs better on remote, Xrender-less X servers by being smarter about using X core protocol facilities instead of falling back to doing all rendering on the client side. Directfb: backend improvements - ------------------------------ The directfb backend, though still unsupported, has seen a good deal of improvements. Thanks Vlad! Bug fixing and optimizations - ---------------------------- Countless bugs have been fixed and optimizations made, many of them thanks to Chris Wilson. Thanks Chris! API additions - ------------- cairo_show_text_glyphs This is a new text rendering API. Being a more advanced version of cairo_show_glyphs(), it is aimed for use by higher-level text toolkits like Pango, and enables better text extraction from output generated by backends like PDF and SVG. The PDF backend already implements it, and the upcoming Pango release will use it. To make that API work, a bunch of other additions were made: cairo_glyph_allocate cairo_glyph_free cairo_text_cluster_t cairo_text_cluster_allocate cairo_text_cluster_free cairo_has_show_text_glyphs cairo_user_font_face_create This is the "user" font face constructor, accompanied by a variety of method signatures, getters, and setters for a callback-based font backend: CAIRO_FONT_TYPE_USER cairo_user_scaled_font_init_func_t cairo_user_scaled_font_render_glyph_func_t cairo_user_scaled_font_text_to_glyphs_func_t cairo_user_scaled_font_unicode_to_glyph_func_t cairo_user_font_face_set_init_func cairo_user_font_face_set_render_glyph_func cairo_user_font_face_set_text_to_glyphs_func cairo_user_font_face_set_unicode_to_glyph_func cairo_user_font_face_get_init_func cairo_user_font_face_get_render_glyph_func cairo_user_font_face_get_text_to_glyphs_func cairo_user_font_face_get_unicode_to_glyph_func cairo_scaled_font_text_to_glyphs We were previously reluctant to provide this function as text-to-glyphs support in cairo was limited to "toy" font functionality, not really interesting for real-world text processing. However, with user-fonts landing, this API is needed to expose full access to how user-fonts convert text to glyphs. This is expected to be used by text toolkits like Pango, as well as "proxy" user-font implementations. cairo_lcd_filter_t cairo_font_options_set_lcd_filter cairo_font_options_get_lcd_filter These add the possibility to choose between various available LCD subpixel filters. The available filter values are modeled after what FreeType provides. cairo_toy_font_face_create cairo_toy_font_face_get_family cairo_toy_font_face_get_slant cairo_toy_font_face_get_weight These provide access to functionality and settings provided by cairo_select_font_face(). cairo_scaled_font_get_scale_matrix cairo_surface_get_fallback_resolution For API completeness. Various new values for cairo_status_t enum Known issues: - - Type3 fonts generated by cairo's PDF backend may show up in poppler/Evince in a different color than expected. This is fixed in poppler master branch. This mostly affects cairo user fonts. The test case test/user-font.c demonstrates this. - - User fonts using other fonts in their rendering are currently embedded in PDF as fallback bitmap glyphs. This will be (hopefully) fixed before 1.8. The test case test/user-font-proxy.c demonstrates this. What is cairo ============= Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, quartz, win32, and image buffers, as well as PDF, PostScript, and SVG file output. Experimental backends include OpenGL (through glitz), XCB, BeOS, OS/2, and DirectFB. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo include stroking and filling cubic Bézier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo ========================================= The primary source of information about cairo is: http://cairographics.org/ The latest versions of cairo can always be found at: http://cairographics.org/download Documentation on using cairo and frequently-asked questions: http://cairographics.org/documentation http://cairographics.org/FAQ
-
[RHSA-2008:0814-01] Moderate: condor security and bug fix update
news posted a topic in Upcoming News
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 ===================================================================== Red Hat Security Advisory Synopsis: Moderate: condor security and bug fix update Advisory ID: RHSA-2008:0814-01 Product: Red Hat Enterprise MRG for RHEL-5 Advisory URL: https://rhn.redhat.com/errata/RHSA-2008-0814.html Issue date: 2008-08-11 CVE Names: CVE-2008-3424 ===================================================================== 1. Summary: Updated condor packages that fix a security issue and several bugs are now available for Red Hat Enterprise MRG. This update has been rated as having moderate security impact by the Red Hat Security Response Team. 2. Relevant releases/architectures: MRG Grid for RHEL 5 Server - i386, x86_64 3. Description: Condor is a specialized workload management system for compute-intensive jobs. It provides a job queuing mechanism, scheduling policy, priority scheme, and resource monitoring and management. A flaw was found in the way Condor interpreted wildcards in authorization lists. Certain authorization lists using wildcards in DENY rules, such as DENY_WRITE or HOSTDENY_WRITE, that conflict with the definitions in ALLOW rules, could permit authenticated remote users to submit computation jobs, even when such access should have been denied. (CVE-2008-3424) Bug fixes: * the /etc/condor/condor_config file started with "What machine is your central manager?". The following line was blank, instead of having the "CONDOR_HOST" option, causing confusion. The "What machine..." text is now removed. * condor_config.local defined "LOCK = /tmp/[lock file]". This is no longer explicitly defined; however, lock files may be in "/tmp/", and could be removed by tmpwatch. A "LOCK_FILE_UPDATE_INTERVAL" option, which defaults to eight hours, has been added. This updates the timestamps on lock files, preventing them from being removed by tools such as tmpwatch. * when a "SCHEDD_NAME" name in condor_config ended with an " ( -at -) ", the system's hostname was appended. For example, if "SCHEDD_NAME = test ( -at -) " was configured, "condor_q -name test ( -at -) " failed with an "Collector has no record of schedd/submitter" error. Now, the hostname is not appended when a name ends with an " ( -at -) ". In High Availability (HA) Schedd deployments, this allows a name to be shared by multiple Schedds. * when too few arguments were passed to "condor_qedit", such as "condor_qedit -constraint TRUE", a segfault occurred. Better argument handling has been added to resolve this. * due to missing common_createddl.sql and pgsql_createddl.sql files, it was not possible to use Quill. Now, these files are included in "/usr/share/condor/sql/". * "condor_submit -dump ad [file-name]" caused a segfault if the [file-name] job contained "universe = grid". * previously, a condor user and group were created if they did not exist, without specifying a specific UID and GID. Now, UID and GID 64 are used. The effect of this change is non-existent if upgrading the condor packages. If an existing condor user and group are manually changed, problems with file ownership will occur. Configuration changes (from the Condor release notes - see link below): * a new CKPT_SERVER_CHECK_PARENT_INTERVAL variable sets the time interval between a checkpoint server checking if its parent is running. If the parent server has died, the checkpoint server is shut down. * a new CKPT_PROBE variable to define an executable for the helper process Condor uses for information about the CheckpointPlatform attribute. * STARTER_UPLOAD_TIMEOUT now defaults to 300 seconds. * new variables (booleans) PREEMPTION_REQUIREMENTS_STABLE and PREEMPTION_RANK_STABLE, configure whether attributes used in PREEMPTION_REQUIREMENTS and PREEMPTION_RANK change during negotiation cycles. * a new GRIDMANAGER_MAX_WS_DESTROYS_PER_RESOURCE variable, with a default value of 5, defines the number of simultaneous WS destroy commands that can be sent to a server for type gt4 grid universe jobs. * now, VALID_SPOOL_FILES automatically includes the "SCHEDD.lock" lock file for condor_schedd HA failover. * the default value for SEC_DEFAULT_SESSION_DURATION has been changed from 8640000 seconds (100 days) to 86400 seconds (one day). Important: these updated packages upgrade Condor to version 7.0.4. For a full list of changes, refer to the Condor release notes: www.cs.wisc.edu/condor/manual/v7.0/8_3Stable_Release.html condor users should upgrade to these updated packages, which resolve these issues. 4. Solution: Before applying this update, make sure that all previously-released errata relevant to your system have been applied. This update is available via Red Hat Network. Details on how to use the Red Hat Network to apply this update are available at http://kbase.redhat.com/faq/FAQ_58_10188 5. Bugs fixed (http://bugzilla.redhat.com/): 447830 - /etc/condor/condor_config file missing CONDOR_HOST = option 449043 - condor_config.local sets up LOCK in /tmp 452512 - SCHEDD_NAME always appends ( -at -) $(FULL_HOSTNAME) 452515 - condor_qedit segfault with too few arguments 455338 - Necessary Quill setup files? 456080 - Red Hat RPMs should identify their buildid, differentiate from UW's builds 456478 - condor_submit -dump segfaults when universe = grid 457141 - Rebase on Condor 7.0.4 457372 - CVE-2008-3424 condor: incorrect handling of wild cards in authorization lists 458157 - Add newly assigned UID/GID for condor to product 6. Package List: MRG Grid for RHEL 5 Server: Source: ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/RHEMRG/SRPMS/condor-7.0.4-4.el5.src.rpm i386: condor-7.0.4-4.el5.i386.rpm condor-debuginfo-7.0.4-4.el5.i386.rpm condor-static-7.0.4-4.el5.i386.rpm condor-test-7.0.4-4.el5.i386.rpm x86_64: condor-7.0.4-4.el5.x86_64.rpm condor-debuginfo-7.0.4-4.el5.x86_64.rpm condor-static-7.0.4-4.el5.x86_64.rpm condor-test-7.0.4-4.el5.x86_64.rpm These packages are GPG signed by Red Hat for security. Our key and details on how to verify the signature are available from https://www.redhat.com/security/team/key/#package 7. References: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-3424 http://www.redhat.com/security/updates/classification/#moderate 8. Contact: The Red Hat security contact is . More contact details at https://www.redhat.com/security/team/contact/ Copyright 2008 Red Hat, Inc. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (GNU/Linux) iD8DBQFIoHt2XlSAg2UNWIIRAqp3AJ4j4V/E1WktkqBJXTFz08HwpgP5GgCgqZZW quNQO5n62XBjUhTJowt4Rv4= =jMrF -----END PGP SIGNATURE----- -- -
[RHSA-2008:0816-01] Moderate: condor security and bug fix update
news posted a topic in Upcoming News
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 ===================================================================== Red Hat Security Advisory Synopsis: Moderate: condor security and bug fix update Advisory ID: RHSA-2008:0816-01 Product: Red Hat Enterprise MRG for RHEL-4 Advisory URL: https://rhn.redhat.com/errata/RHSA-2008-0816.html Issue date: 2008-08-11 CVE Names: CVE-2008-3424 ===================================================================== 1. Summary: Updated condor packages that fix a security issue and several bugs are now available for Red Hat Enterprise MRG. This update has been rated as having moderate security impact by the Red Hat Security Response Team. 2. Relevant releases/architectures: Red Hat MRG Grid for RHEL-4 AS - i386, x86_64 Red Hat MRG Grid for RHEL-4 ES - i386, x86_64 3. Description: Condor is a specialized workload management system for compute-intensive jobs. It provides a job queuing mechanism, scheduling policy, priority scheme, and resource monitoring and management. A flaw was found in the way Condor interpreted wildcards in authorization lists. Certain authorization lists using wildcards in DENY rules, such as DENY_WRITE or HOSTDENY_WRITE, that conflict with the definitions in ALLOW rules, could permit authenticated remote users to submit computation jobs, even when such access should have been denied. (CVE-2008-3424) Bug fixes: * the /etc/condor/condor_config file started with "What machine is your central manager?". The following line was blank, instead of having the "CONDOR_HOST" option, causing confusion. The "What machine..." text is now removed. * condor_config.local defined "LOCK = /tmp/[lock file]". This is no longer explicitly defined; however, lock files may be in "/tmp/", and could be removed by tmpwatch. A "LOCK_FILE_UPDATE_INTERVAL" option, which defaults to eight hours, has been added. This updates the timestamps on lock files, preventing them from being removed by tools such as tmpwatch. * when a "SCHEDD_NAME" name in condor_config ended with an " ( -at -) ", the system's hostname was appended. For example, if "SCHEDD_NAME = test ( -at -) " was configured, "condor_q -name test ( -at -) " failed with an "Collector has no record of schedd/submitter" error. Now, the hostname is not appended when a name ends with an " ( -at -) ". In High Availability (HA) Schedd deployments, this allows a name to be shared by multiple Schedds. * when too few arguments were passed to "condor_qedit", such as "condor_qedit -constraint TRUE", a segfault occurred. Better argument handling has been added to resolve this. * due to missing common_createddl.sql and pgsql_createddl.sql files, it was not possible to use Quill. Now, these files are included in "/usr/share/condor/sql/". * "condor_submit -dump ad [file-name]" caused a segfault if the [file-name] job contained "universe = grid". * previously, a condor user and group were created if they did not exist, without specifying a specific UID and GID. Now, UID and GID 64 are used. The effect of this change is non-existent if upgrading the condor packages. If an existing condor user and group are manually changed, problems with file ownership will occur. Configuration changes (from the Condor release notes - see link below): * a new CKPT_SERVER_CHECK_PARENT_INTERVAL variable sets the time interval between a checkpoint server checking if its parent is running. If the parent server has died, the checkpoint server is shut down. * a new CKPT_PROBE variable to define an executable for the helper process Condor uses for information about the CheckpointPlatform attribute. * STARTER_UPLOAD_TIMEOUT now defaults to 300 seconds. * new variables (booleans) PREEMPTION_REQUIREMENTS_STABLE and PREEMPTION_RANK_STABLE, configure whether attributes used in PREEMPTION_REQUIREMENTS and PREEMPTION_RANK change during negotiation cycles. * a new GRIDMANAGER_MAX_WS_DESTROYS_PER_RESOURCE variable, with a default value of 5, defines the number of simultaneous WS destroy commands that can be sent to a server for type gt4 grid universe jobs. * now, VALID_SPOOL_FILES automatically includes the "SCHEDD.lock" lock file for condor_schedd HA failover. * the default value for SEC_DEFAULT_SESSION_DURATION has been changed from 8640000 seconds (100 days) to 86400 seconds (one day). Important: these updated packages upgrade Condor to version 7.0.4. For a full list of changes, refer to the Condor release notes: www.cs.wisc.edu/condor/manual/v7.0/8_3Stable_Release.html condor users should upgrade to these updated packages, which resolve these issues. 4. Solution: Before applying this update, make sure that all previously-released errata relevant to your system have been applied. This update is available via Red Hat Network. Details on how to use the Red Hat Network to apply this update are available at http://kbase.redhat.com/faq/FAQ_58_10188 5. Bugs fixed (http://bugzilla.redhat.com/): 457265 - Rebase on Condor 7.0.4 457266 - condor_submit -dump segfaults when universe = grid 457267 - Red Hat RPMs should identify their buildid, differentiate from UW's builds 457268 - Necessary Quill setup files? 457269 - condor_qedit segfault with too few arguments 457270 - SCHEDD_NAME always appends ( -at -) $(FULL_HOSTNAME) 457271 - condor_config.local sets up LOCK in /tmp 457272 - /etc/condor/condor_config file missing CONDOR_HOST = option 457372 - CVE-2008-3424 condor: incorrect handling of wild cards in authorization lists 458069 - Add newly assigned UID/GID for condor to product 6. Package List: Red Hat MRG Grid for RHEL-4 AS: Source: ftp://updates.redhat.com/enterprise/4AS/en/RHEMRG/SRPMS/condor-7.0.4-4.el4.src.rpm i386: condor-7.0.4-4.el4.i386.rpm condor-debuginfo-7.0.4-4.el4.i386.rpm condor-static-7.0.4-4.el4.i386.rpm condor-test-7.0.4-4.el4.i386.rpm x86_64: condor-7.0.4-4.el4.x86_64.rpm condor-debuginfo-7.0.4-4.el4.x86_64.rpm condor-static-7.0.4-4.el4.x86_64.rpm condor-test-7.0.4-4.el4.x86_64.rpm Red Hat MRG Grid for RHEL-4 ES: Source: ftp://updates.redhat.com/enterprise/4ES/en/RHEMRG/SRPMS/condor-7.0.4-4.el4.src.rpm i386: condor-7.0.4-4.el4.i386.rpm condor-debuginfo-7.0.4-4.el4.i386.rpm condor-static-7.0.4-4.el4.i386.rpm condor-test-7.0.4-4.el4.i386.rpm x86_64: condor-7.0.4-4.el4.x86_64.rpm condor-debuginfo-7.0.4-4.el4.x86_64.rpm condor-static-7.0.4-4.el4.x86_64.rpm condor-test-7.0.4-4.el4.x86_64.rpm These packages are GPG signed by Red Hat for security. Our key and details on how to verify the signature are available from https://www.redhat.com/security/team/key/#package 7. References: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-3424 http://www.redhat.com/security/updates/classification/#moderate 8. Contact: The Red Hat security contact is . More contact details at https://www.redhat.com/security/team/contact/ Copyright 2008 Red Hat, Inc. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (GNU/Linux) iD8DBQFIoH0LXlSAg2UNWIIRAqtfAKCFx1dfxoxCvtl0lqLciN84KKDmCgCeKINd ZLZ4OZWqrHEI1YjkjWLnVZM= =qa+O -----END PGP SIGNATURE----- -- -
At Phoronix we have posted a new article. A link to this from your site's news section would be greatly appreciated. Title: OpenGL 3.0, GLSL 1.30 Released ( -at -) Phoronix Direct Link: http://www.phoronix.com/vr.php?view=12730 Summary: "From SIGGRAPH 2008, one of the premiere computers graphics conferences, the Khronos Group has announced the release of the OpenGL 3.0 API specification and the GLSL 1.30 shading language specification. This is the first major update to this cross-platform 3D programming API since the OpenGL 2.1 release two years ago. In this article we have a bit of information on these OpenGL and GLSL updates and when we can expect to see the Linux graphics scene moving to this new standard." Please feel free to contact us with any questions or comments you may
-
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 ===================================================================== Red Hat Security Advisory Synopsis: Moderate: dnsmasq security update Advisory ID: RHSA-2008:0789-01 Product: Red Hat Enterprise Linux Advisory URL: https://rhn.redhat.com/errata/RHSA-2008-0789.html Issue date: 2008-08-11 CVE Names: CVE-2008-1447 ===================================================================== 1. Summary: An updated dnsmasq package that implements UDP source-port randomization is now available for Red Hat Enterprise Linux 5. This update has been rated as having moderate security impact by the Red Hat Security Response Team. 2. Relevant releases/architectures: Red Hat Enterprise Linux Desktop (v. 5 client) - i386, x86_64 Red Hat Enterprise Linux (v. 5 server) - i386, ia64, ppc, s390x, x86_64 3. Description: Dnsmasq is lightweight DNS forwarder and DHCP server. It is designed to provide DNS and, optionally, DHCP, to a small network. The dnsmasq DNS resolver used a fixed source UDP port. This could have made DNS spoofing attacks easier. dnsmasq has been updated to use random UDP source ports, helping to make DNS spoofing attacks harder. (CVE-2008-1447) All dnsmasq users are advised to upgrade to this updated package, that upgrades dnsmasq to version 2.45, which resolves this issue. 4. Solution: Before applying this update, make sure that all previously-released errata relevant to your system have been applied. This update is available via Red Hat Network. Details on how to use the Red Hat Network to apply this update are available at http://kbase.redhat.com/faq/FAQ_58_10188 5. Bugs fixed (http://bugzilla.redhat.com/): 449345 - CVE-2008-1447 implement source UDP port randomization (CERT VU#800113) 6. Package List: Red Hat Enterprise Linux Desktop (v. 5 client): Source: ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Client/en/os/SRPMS/dnsmasq-2.45-1.el5_2.1.src.rpm i386: dnsmasq-2.45-1.el5_2.1.i386.rpm dnsmasq-debuginfo-2.45-1.el5_2.1.i386.rpm x86_64: dnsmasq-2.45-1.el5_2.1.x86_64.rpm dnsmasq-debuginfo-2.45-1.el5_2.1.x86_64.rpm Red Hat Enterprise Linux (v. 5 server): Source: ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/dnsmasq-2.45-1.el5_2.1.src.rpm i386: dnsmasq-2.45-1.el5_2.1.i386.rpm dnsmasq-debuginfo-2.45-1.el5_2.1.i386.rpm ia64: dnsmasq-2.45-1.el5_2.1.ia64.rpm dnsmasq-debuginfo-2.45-1.el5_2.1.ia64.rpm ppc: dnsmasq-2.45-1.el5_2.1.ppc.rpm dnsmasq-debuginfo-2.45-1.el5_2.1.ppc.rpm s390x: dnsmasq-2.45-1.el5_2.1.s390x.rpm dnsmasq-debuginfo-2.45-1.el5_2.1.s390x.rpm x86_64: dnsmasq-2.45-1.el5_2.1.x86_64.rpm dnsmasq-debuginfo-2.45-1.el5_2.1.x86_64.rpm These packages are GPG signed by Red Hat for security. Our key and details on how to verify the signature are available from https://www.redhat.com/security/team/key/#package 7. References: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-1447 http://www.redhat.com/security/updates/classification/#moderate http://www.thekelleys.org.uk/dnsmasq/CHANGELOG 8. Contact: The Red Hat security contact is . More contact details at https://www.redhat.com/security/team/contact/ Copyright 2008 Red Hat, Inc. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.4 (GNU/Linux) iD8DBQFIoHCZXlSAg2UNWIIRAus2AJ9jMmf+E9RFFrC5FfXhCdEpJpxRaQCeIHu3 eLCw8SUQ204PyZI8K02NTEk= =p1Ic -----END PGP SIGNATURE----- --
-
Hello Webmasters and News Posters, NEW CONTENT (CPU & Chipset) - Intel Atom vs. VIA Nano Platform Comparo QUOTE: "While we concentrate on this sector, the focus is now moving towards the lower end of the spectrum. VIA has really cornered this market in the past when it came to ultra compact PCs; EPIA has been VIA’s biggest success and with the evolution of the VIA processors, each generation has gotten just that little bit more capable. Now Intel has seen just how popular this is, we finally have some competition in this sector. Today we will be pitting the Atom platform against the Nano platform. Who has the best performance and energy savings? – Well, we don’t know yet, but by the end of this we will have an informative answer to that. Let’s move on and check out the platforms individually before we get into the testing phase." For more information, please visit - http://www.tweaktown.com/articles/1540/intel_atom_vs_via_nano_platform_comparo/index.html Best Regards, The TweakTown Team http://www.tweaktown.com
-
New Survey at FMPug and Chance To Win FREE DevCon 2009 Pass - Published on 08/11/08 After an absolutely fantastic FileMaker Developer Conference in Phoenix last month we want to ask for a few minutes of your time to help us plan for the coming year and to develop new programs and activities. We are also very interested in what you think about the Developer Conference. We have a lot of new members, and we want to be sure we are adequately serving them as well as continuing to serve our longer tenured members and the community at large. Orlando, FL - After an absolutely fantastic FileMaker Developer Conference in Phoenix last month we want to ask for a few minutes of your time to help us plan for the coming year and to develop new programs and activities. We are also very interested in what you think about the Developer Conference. We have a lot of new members, and we want to be sure we are adequately serving them as well as continuing to serve our longer tenured members and the community at large as well. We invite everyone to take the survey using the link provided below. *** FREE DEVCON 2009 PASS TO ONE LUCKY RESPONDENT *** After some discussion here with the Pug's we have decided to hold a bit of a competition for everyone that decides to take the survey and provide their contact information (don't worry, we will not spam you). If you provide your contact information and take the survey (no entry for just name and email only!) you will be entered in a drawing to win a FREE Full Conference Pass to DevCon 2009. You do not have to be an FMPug member to take part in this. We are opening this up to every person. If you have already taken the survey contact us back channel and we will make sure you are entered in the drawing. Please be honest and frank in your responses. This way we can ensure that our future programs and development is targeted correctly. Remember, we are here because of you, for you and for the community at large. We look forward to your responses. Take the Survey Today: http://www.fmpug.com/survey/survey.php?sid=F29791 FMPug: A Developer's Best Friend: http://www.fmpug.com Join FMPug Today: http://www.fmpug.com/join.php Headquartered in Orlando, Florida - DnG Design & Development's FMPug.com is fast becoming the world's leading resource for developers & users who utilize FileMaker in their day-to-day activities. Winner of the 2005 Mad Dog PR Award & two FileMaker Excellence Awards, FMPug has created one of the first truly virtual communities with FileMaker as its focus. Continually up[censored] its benefit offerings to meet the ever-growing needs of its member base, FMPug prides itself on offering membership opportunities to anyone & everyone interested in FileMaker. ### Heather VonWeiman Marketing Director 321-206-3658 info ( -at -) fmpug.com ******* ******* *******
-
Today Mark takes a look at the Sapphire HD 4870 512 MB. SNIP: With the recent release of the new ATI 48XX GPU's we've seen something that we haven't seen for a while: Ati GPU's in a direct head to head competition with the offerings from NVIDIA. Not only in a price for performance standpoint, like usual, but from a performance standpoint. The ATI 4870 GPU has been putting out synthetic benchmark numbers that rival the GTX-260; up and coming 4870x2 offerings are sure to put the GTX-280 by the side of the road from a performance standpoint. We are lucky enough to have a Sapphire HD 4870 on hand to test, and today we're going to see if ATI has indeed managed to pull one out of the hat to level the playing field with the current offerings from NVIDIA. http://www.bjorn3d.com/read.php?cID=1320 A post on your site would be great if you can. Thank you, Scott -----------------------------------------
-
The Toughpower 1,500W PSU features one of the highest output capacities of any PC power supply on the market today. However this is a 230V edition with limited availability in North America - that didn't stop us from reviewing it and putting all that power to the limits! URL: http://www.pcper.com/article.php?aid=600 Quote: "Why anyone would actually want (let alone need) a 1,500W power supply is a very good question, but if you are in the market for a very high output PSU, the Toughpower 1,500W deserves consideration. The Toughpower 1,500W PSU exhibited very good voltage regulation along with good efficiency. Active PFC, modular sleeved cables, and a 5-year warranty are all nice-to-have features. On the down side the unit gets quite warm, the fan noise is loud and the AC ripple approaches maximum allowable values at high loads." Thanks for a post! Ryan Shrout PC Perspective ---- Msg sent via ( -at -) Mail - http://atmail.com/
-
Hi, It's Kristofer from DragonSteelMods, and I have a new review today that I think your readers might find interesting. Title: Contour Design iSee, Flick, and HardSkin Cases for iPhone 3G Reviewed ( -at -) DragonSteelMods Review Link: http://www.dragonsteelmods.com/index.php?option=com_content&task=view&id=8907&Itemid=1 Review Snipit: "If you like the minimalist approach and keeping your iPhone's appearance true to its original form, then the Contour Design case may be the model for you. Want a good grip on your iPhone and provide ample protection, then the is up your alley. Finally, if you want to see your iPhone 3G and keep it safe from most impacts, then the iSee iPhone 3G is the case to have. " Review Picture(200x150): http://www.dragonsteelmods.com/Images/reviews3/countour/cd1.JPG Main site link: http://www.dragonsteelmods.com A post in your news would be greatly appreciated. Any and all news sent to me will be posted! If you would like to be added to our 'News Feeds' page please feel free to send me your http link to the feed and I will gladly add it ASAP. If you'd like to swap links for affiliation, I'd be happy to, just drop me a message...
-
iPhone Golf App Plum Caddy Available in the iTunes App Store - Published on 08/11/08 Plum Amazing, a company dedicated to iPhone and iPod touch software development, announced their first mobile application Plum Caddy is now available in the iTunes App Store. Plum Caddy was created for every golfer who has an iPhone or iPod touch and wants to have convenient golf mapping, scoring and statistics. Denver, CO - Plum Amazing is pleased to announce their first applications, Plum Caddy for the iPhone and iPod Touch is now available in the iTunes App Store. Plum Caddy is the premiere golf mapping and scoring application for the multi touch platform of the iPhone and iPod touch. Plum Caddy can be used on any golf course in the world to track strokes, putts and other golfing statistics. Plum Caddy provides an attractive and intuitive interface for keeping track of your score, as well as the locations of each shot. The user can use the touch interface to place where their shot went on a map of the hole and track the number of strokes and other statistics. If the user has a 3G iPhone then presently the GPS can be used to display the distance between shots in the very near future it will offer rangefinder abilities. By remembering every shot on every hole on every course ever played, Plum Caddy provides the golfer with instant historical information, such as club used and location of any shot. Statistics are available at any time during or after a round. In August, the online complement of Plum Caddy called Plum Clubhouse, will become available. One part of Plum Clubhouse will be the golf course construction kit which can create real and accurate maps of any course in the world. Once a user creates a map and saves it then that map will become available to all other members of Plum Clubhouse and downloadable to their iPhones. These maps are not templates but accurate GPS capable maps that will allow seeing each hole with the locations of boxes, hazards, fairway boundaries, and range finding from the golfers position to any of these items. Plum Clubhouse will also add other features like more archiving, scoring and social options which will be revealed over time. Plum Caddy is only $10 which is on par with the price of a few golf balls yet it provides scoring, mapping, GPS, histories for the iPod Touch, iPhone and new 3G iPhone. Plum Caddy is essential for any iPhone using golfer. Golf courses, golf equipment manufacturers and golf sponsors are welcome to contact Plum Amazing for details on partnership. The company Plum Amazing is actively pursuing even more features for golfers and the golf industry in the future. Plum Amazing: http://www.plumamazing.com Link to Plum Caddy in the iTunes App Store: http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284975476&mt=8 Icon Picture: http://www.plumamazing.com/images/icon History of shots picture: http://www.plumamazing.com/images/history.jpg Stroke recorder picture: http://www.plumamazing.com/images/stroke.jpg Summary of statistics picture: http://www.plumamazing.com/images/summary.jpg Plum Amazing Software based in Denver, CO is a new privately held company dedicated to iPhone and mobile applications. ### Julian Miller President info ( -at -) plumamazing.com *******
-
Not intended for public release Dear editor, CCP is pleased to announce that we will be attending four major game conventions in the next two months: Gen Con Indy, Leipzig Game Conference, Penny Arcade Expo, and Austin Game Developer's Conference. (See details below for each.) We would like to extend an invitation for you to schedule an appointment to meet with us at any of those events you may also be planning to attend. Appointments are limited, so please contact us as soon as possible and let us know the preferred date and time you'd like to come by. Regards, Ned Ned Coker Public Relations Associate CCP 404-292-1819 x 258 www.ccpgames.com***ERROR*** (#malformed) www.eve-online.com Gen Con Indy August 14-17 Booth #721, 821, 921 Indianapolis Convention Center - Indianapolis, Indiana CCP will be representing EVE Online as well as products from its White Wolf Publishing division, including live demos of EVE Online; the highly anticipated Hunter: The Vigil release; and a whole host of other White Wolf titles. We are also hosting the North American Qualifier for Vampire: The Eternal Struggle. To learn more about our Gen Con booth and who will be there, visit www.white-wolf.com/gencon/ (http://www.white-wolf.com/gencon/ ). Appointments may be scheduled through Ned (nedcoker ( -at -) ccpgames.com). Please let us know if you would like an invitation to the infamous big bash we're throwing Saturday night. GC Game Developer's Conference August 18-20 Hall 1, L70 Leipzig Exhibition Centre - Leipzig, Germany Representatives from CCP, including Associate Producer Arend Stührmann will be on hand to give you the latest scoop about what's coming up next. Dr. Eyjo Gudmundsson, Lead Economist and Head of Research and Statistics, will be speaking at the conference on Monday, 18 August, at 11:30 AM. Appointments may be scheduled through Val Massey (vmassey ( -at -) ccpgames.com). Penny Arcade Expo August 29-31 Booth 442 Washington State Convention and Trade Center; Seattle, Washington EVE Online will have a strong presence at PAX this year, with our new booth exhibiting EVE in a breathtaking way. Lead Game Designer Noah Ward will be in attendance alongside Associate Producer Arend Stührmann. CCP's big party will be Saturday night, a must-attend event. Appointments may be scheduled through Val Massey (vmassey ( -at -) ccpgames.com). Austin Game Developer's Conference September 15-17 Booth 600 Austin Convention Center - Austin, Texas CCP will be representing en force at AGDC. Hilmar Petursson, CEO of CCP, will be speaking on a panel about the business side of MMOs. Halldor Fannar, our CTO, will be speaking on "The Server Technology of EVE Online: How to Cope With 300,000 Players on One Server". Dr. Eyjo Gudmundsson, Lead Economist and Head of Research and Statistics, will be in a session about the handling of economics in large shard worlds. All times are to be determined. We're finalizing plans for a Tuesday night party, again not-to-be-missed. Appointments may be scheduled through Ned (nedcoker ( -at -) ccpgames.com). Please follow the link to unsubscribe http://cp20.com/Tracking/t.fo?1DzI--HTJ-5k6OJ2. Delivered by CampaignerPro. http://www.campaigner.com/campaignerpro/?visitor_id=2
-
Pubblog.com announces the release of MailSteward 8.0.5 - Published on 08/11/08 MailSteward is the ultimate email archiving solution for the Mac. MailSteward archives email in a relational database for easy access and safe backup of all your email. Whether you manage a business, are an independent professional, or just a person with a lot of email, for legal reasons, business reasons, and personal reasons, it is essential to be able to safely archive and easily search your email. Murfreesboro, Tenn - Pubblog.com announces the release of MailSteward and MailSteward Pro, version 8.0.5. This version adds the ability to index any and all fields in a MailSteward database for faster searching. Also, preferences and settings are now associated with individual databases, so that each database has its own settings for what to archive, what fields to index, saved searches, and other options. MailSteward is the ultimate email archiving solution for the Mac. MailSteward archives email in a relational database for easy access and safe backup of all your email. Whether you manage a business, are an independent professional, or just a person with a lot of email, for legal reasons, business reasons, and personal reasons, it is essential to be able to safely archive and easily search your email. On April 12, 2006 the United States Supreme Court laid down new rules that require companies, government agencies, and public school districts to have systems for retrieving email and other electronic data that might be needed for evidence in a court case. The new rules were updated later that year in December. This means that, if you are in charge of a school district's, or company's information technology, you are legally required to set up and maintain a system for archiving email, and for enabling quick and easy access to it. There are a few products and services available for accomplishing this responsibility. According to an excellent article in Education Week's Digital Directions magazine, a school district in New Jersey spent over $50,000 on a system for archiving their email. There is a very informative article on the CompuThink website about the new rules, including links to the actual text of the Federal Rules of Civil Procedure. For smaller school districts and companies the available solutions are likely to be too expensive and complicated for them to implement. MailSteward Pro is a Macintosh-based solution that is easy to set up and maintain, providing automatic archiving and sophisticated searching of large volumes of email. For organizations that are running their own mail server, MailSteward Pro can be set up to automatically archive all incoming and outgoing email. If the mail server is configured to put copies of all email coming in or going out, into a particular directory, MailSteward Pro can then be configured in the Settings to always import any email that exists in that directory. For organizations that are not running their own mail server, each individual in the organization can have a copy of MailSteward Pro that is set up to automatically, on a schedule, archive their email into a central MySQL database on a network server. Pubblog Website: http://pubblog.com MailSteward: http://mailsteward.com Direct Download Link: http://mailsteward.com/mailsteward.dmg Purchase Link: http://store.pubblog.com Article in Digital Directions: http://www.edweek.org/dd/articles/2007/09/12/02email.h01.html Article on CompuThink website: http://www.computhink.com/products/email-archiving/frcp_amendment.asp Pubblog is a multimedia internet publishing company. MySQL is Copyright© 1995-2007 MySQL AB. All rights reserved. ### John Seward 615-948-4534 jns ( -at -) pubblog.com ******* ******* *******
-
Hello everyone, Kingston HyperX 2GB PC3-14400 XMP " A few months ago, I reviewed a DDR3 kit from Kingston that supported 1800MHz operation at fairly fast timings. It was criticized by some that the modules did not include XMP information to aid in easy system setup. Fast forward to the current market and the KHX14400D2K2/2GX delivers XMP support. " Link: http://www.aselabs.com/articles.php?id=272 Thumb: http://www.aselabs.com/members/attachments/upload/2008/08/04/2742t.jpg If you'd like to be removed from this list, please reply with UNSUBSCRIBE in the title. Thank you. -Aron GP: 33
-
Dragon Forged Software introduces Trivial 1.0 for iPhone and iPod Touch
news posted a topic in Upcoming News
Dragon Forged Software introduces Trivial 1.0 for iPhone and iPod Touch - Published on 08/11/08 Dragon Forged Software is delighted to introduce Trivial 1.0, their full featured trivia game for iPhone and iPod Touch. Trivial is the core application for a suite of fun-to-play trivia games, including General Knowledge, Sports, and Pop Culture. Pulled from a multitude of categories, there are over one thousand questions per game within a wide selection of difficulties. The question difficulty adjusts in real time to match the users abilities. Scottsdale, Arizona - Dragon Forged Software is delighted to introduce Trivial 1.0, their full featured trivia game for iPhone and iPod Touch. Trivial is the core application for a suite of fun-to-play trivia games, including General Knowledge, Sports, and Pop Culture. There are over one thousand questions per game, including within a wide selection of difficulties. Each of the General Knowledge, Sports, and Pop Culture questions are pulled from a multitude of categories such as art, business, technology, geography, health, history, languages, literature, medicine, sciences, celebrities, movies, music, preforming arts, TV, video games, baseball, basketball, boxing, football (American), football (soccer), golf, hockey, and tennis. The application integrates a score system based on difficulty level and time, and the question difficulty adjusts in real time to match the users abilities. Trivial is sure to provide hours of fun, and a great compliment to the iPhone or iPod Touch. Feature highlights include: * Over one thousand questions per game in a selection of difficulties * Question difficulty adjust in real time to match users abilities * Score system based off question difficulty and time * Incorrect question elimination over time * Original soundtrack Supported Languages: * US English System Requirements: * iPhone or iPod Touch 2.0 or better. Pricing and Availability: Trivial for iPhone and iPod Touch is only $4.99 USD and available exclusively through Apple's App Store. Dragon Forged Software: http://www.dragonforged.com/ Trivial 1.0: http://trivial.dragonforged.com/ Screencast: http://trivial.dragonforged.com/triviademonew2.mov Headquartered in sunny Scottsdale, Arizona, Dragon Forged Software LLC is a privately held company founded in 2004. With a focus on the Mac platform, Dragon Forged Software was founded with the intent of developing unique and user-friendly applications, complemented by first-class support. Copyright 2004-2008 Dragon Forged Software LLC. All Rights Reserved. Apple, the Apple logo, and iPhone are registered trademarks of Apple Inc in the U.S. and/or other countries. ### Kyle Richter Founder 203-313-0504 media ( -at -) dragonforged.com ******* -
Press Release : AC RYAN ANNOUNCES PLAYON! DVR NETWORK DIGITAL VIDEO RECORDER
news posted a topic in Upcoming News
PRESS RELEASE FOR IMMEDIATE RELEASE AC RYAN ANNOUNCES PLAYON! DVR NETWORK DIGITAL VIDEO RECORDER Centralizing Scattered Multimedia Files Without Moving Them! Rotterdam -- 7 AUG 2008 -- AC Ryan, leading producer of products for the digital lifestyle, announces shipment of its brand new Playon! DVR Network Digital Video Recorder. With this new HDMI enabled product, AC Ryan sets its foot in the CE market, joined by the Playon! Boombox, a portable multimedia player with a patened exquisite Backbass sound system. The Playon! DVR comes ready to use as a multimedia playback device straight from the box. It will play streamed media from across the (wireless) network, connected USB storage or from an internal SATA2 drive. For recording purposes, you can either install a SATA2 drive or record to an externally connected USB drive. The included USB WiFi dongle will connect to any WEP or WPA secured wireless network. The HDMI output makes the Playon! DVR HD ready, supporting up to 1080i. File support includes encoded video as well as DVD files. An included extra is a AC Ryan HIFX Evolution HDMI 1.3 cable. The feature packed Playon! DVR makes a very interesting product for the Data Generation user that would like to bridge the gap between downloaded multimedia content on the PC and the livingroom TV. With an easy to use menu system it becomes the perfect addition to your livingroom hi-fi setup. Forget about booting up and waiting for complete HTPC's and a keyboard between the cushions of the couch. The Playon! DVR blends in and becomes part of your digital lifestyle. The Playon! DVR is shipping end Aug with a recommended retail price of €179,- excl. Tax. with promotion offer of free HIFX Evolution premium HDMI cable. For further information, visit the product page: ACR-PV72100 Playon! DVR - HDMI Network Digital Video Recorder About AC Ryan AC Ryan Empowers the Data Generation with innovative products for the digital lifestyle. Famous among the ProModding community, AC Ryan has grown into a leading digital life brand with products tuned for the new Data Generation users. New productlines such as Playon! digital life and HIFX Evolution HDMI cables puts AC Ryan active in CE, IT and Gaming markets. AC Ryan is an International IT manufacturer with 7 international offices spread across Europe, Asia and USA, as well as 2 production sites. With the knowledge gained by developing and manufacturing IT products since 1993, AC Ryan will provide the Data Generation with products that add value to their lifestyle. www.acryan.com ### This press release with pictures in .JPG and .TIF formats are available at http://www.acryan.com/press If you’d like more information about this topic, please contact Dennis List (Europe & International) or Soo Chia Yong (Asia Pacific) at these contact: EUROPE / INTERNATIONAL - Netherlands Contact : Dennis List Tel : +31 10 4281520 Email : marketing ( -at -) acryan.com ASIA PACIFIC - Singapore Contact : Soo Chia Yong Tel : +65 67483218 Email : marketing ( -at -) acryan.com -
Crysis Warhead Screens #6, SunAge New Patch and Demo Soon, and more
news posted a topic in Upcoming News
Hello, - SunAge New Patch and Demo Soon http://www.gamershell.com/news_57432.html - Crysis Warhead Screens #6 http://www.gamershell.com/news_57430.html - Cabal Online US Client Patch (08-09-2008) http://www.gamershell.com/news_57428.html - Kylotonn Becomes PlayStation 3 Official Developer http://www.gamershell.com/news_57426.html - Synergy New Version Coming Soon http://www.gamershell.com/news_57424.html - Crysis at Video Games Live in Leipzig http://www.gamershell.com/news_57422.html Best Regards, GamersHell.com Staff ============================================================================= -
TechwareLabs has published a review on the Kingston HyperX 2GB DDR3-1375 RAM kit. Here's a clip from the review: Quote: Recently we rammed some solid blue speed into our test rig and took it for a ride. With the Kingston DDR3 1375 behind the wheel Jason D shows you how this kit overclocks and how it will perform for you. The move to DDR3 could well be right for you right now. Read our review. LINK: http://www.techwarelabs.com/reviews/memory/Kingston_HyperX_DDR3-1375/ Title: Kingston HyperX 2GB DDR3-1375 RAM kit ( -at -) TechwareLabs Image: http://www.techwarelabs.com/reviews/memory/Kingston_HyperX_DDR3-1375/images/Kingston_DDR3_1375_01.jpg A news post would be greatly appreciated!
-
Dare to be Creative releases ResizeMe 1.2, batch image and photo editor
news posted a topic in Upcoming News
Dare to be Creative releases ResizeMe 1.2, batch image and photo editor - Published on 08/11/08 Dare to be Creative today announced the release of ResizeMe 1.2, the batch image and photo editor for Mac OS X Tiger and Leopard. Designed to help users save time and be more productive, the new ResizeMe version allows users to store and organize their favorite edits as bookmarks. Vienna, Austria - Dare to be Creative today announced the release of ResizeMe 1.2, the batch image and photo editor for Mac OS X Tiger and Leopard. ResizeMe is a productivity tool that can resize, scale, rotate and flip many images and photos at once. Designed to save time, the new version allows users to store and organize their favorite image edits as bookmarks. Bookmarks: Working with images and photos often involves applying the same edits over and over, for example reducing the image size to half or rotating to the left. Designed to help users save time and be more productive, the new ResizeMe version allows users to store and organize their favorite edits as bookmarks. Users will feel familiar with bookmarks thanks to their close resemblance to the bookmarks in the Safari web browser. Features in a nutshell: * Batch image editor that resizes, scales, rotates and flips (horizontally and vertically) images and photos * Handles the popular image formats JPEG, PNG, TIFF, PDF, JP2, SGI and TGA * Store and organize favorite image edits as bookmarks * Easy drag and drop interface * Preserves EXIF data * Built-in, automatic self updates that inform users when new versions are available Minimum Requirements: * Mac OS X Version 10.4 or higher * Universal Binary for PowerPC and Intel Pricing and Availability: ResizeMe is $19.95 USD, and available as a free download from the Resize-Me website. It runs initially in a 10-day trial mode with all features active. This is a free upgrade for registered users. Special offer: For a limited time, the new ResizeMe version will be available for a discount in a bundle with Renamer4Mac, the popular file renamer, and Dragoman, the universal file converter. The bundle is priced at $49 USD ($26 below retail price) and is available at MacSnack. ResizeMe: Batch image editor that resizes, scales, rotates and flips images: http://resize-me.com/ ResizeMe: Screenshots of ResizeMe in action: http://resize-me.com/screenshots.html ResizeMe: List of supported image and photo formats: http://resize-me.com/features/supported-image-formats.html MacSnack: ResizeMe for a discount: http://macsnack.com/ Located in Vienna, Austria, Dare to be Creative Ltd. is a software company founded in 2006 by a group of Mac enthusiasts. The Dare to be Creative team focuses exclusively on developing utility applications for Mac OS X designed to save valuable time while being enjoyable and easy to use. The current portfolio includes a) iArchiver, an archiving and file compression utility, iCombiner, a tool to combine images and PDF files into single PDF documents, c) Renamer4Mac, a batch file renamer, d) ResizeMe, a batch image editor that resizes, scales, rotates and flips images, and e) Dragoman, a batch file converter for image, music and archive files. All Material and Software © 2006-2008 Dare to be Creative Ltd. / All Rights Reserved. ### Philipp Mayerhofer Chief Operational Officer +4319551750 philipp ( -at -) iarchiver.com ******* -
Hello, - Unreal Tournament 3 Cinematics Map Pack http://www.gamershell.com/news_57420.html - Everlight: Power to the Elves New Screens http://www.gamershell.com/news_57418.html - Supreme Ruler 2020 v5.3.2 Patch http://www.gamershell.com/news_57416.html Best Regards, GamersHell.com Staff =============================================================================
-
At Phoronix we have posted a new article. A link to this from your site's news section would be greatly appreciated. Title: OCZ Alchemy Elixir Keyboard ( -at -) Phoronix Direct Link: http://www.phoronix.com/vr.php?view=12725 Summary: "When thinking of OCZ Technology what comes to mind? High-end DDR3? DDR2 with large and unique heatspreaders? Their Neural Impulse Actuator? Chances are you're thinking of them for their memory products they've been manufacturing for eight years, but not for any OCZ-branded keyboards. However, OCZ has done just that and they've introduced their very first keyboard targeted towards gamers. The Elixir Keyboard is part of OCZ's growing Alchemy series of gaming products. We're not terribly surprised that OCZ has introduced a keyboard, seeing as this company is extremely innovative and has been on the fast track since acquiring PC Power & Cooling and Hypersonic PC last year. Today at Phoronix we are checking out this first OCZ keyboard named the Elixir." Please feel free to contact us with any questions or comments you may
-
Hello, - Celetania New Screens http://www.gamershell.com/news_57414.html - Too Human Insane Combos Trailer http://www.gamershell.com/news_57412.html - Dungeon Runners New Fan Site Kit http://www.gamershell.com/news_57410.html Best Regards, GamersHell.com Staff =============================================================================
-
Greetings, Overclockers Online has posted a new review. A news post would be greatly appreciated. Title: Biostar TPower I45 at Overclockers Online Link: http://www.overclockersonline.net/?page=articles&num=1921 Quote: Overall I am impressed with Biostar's latest TPower offering, the I45. Performance is on par or better than the P35 and you get some added features such as PCI Express 2.0 and increased memory support. Overall layout is well thought out and shouldn't cause issues with any setup. Thanks for the post. Best regards, Jared _______________________________________________
-
iWebTemplate Member Area - Hundreds of Templates To Download - Published on 08/11/08 iWebTemplate is proud to offer their lifetime membership, providing pre-designed HTML website templates and website tools for you to use in your very own web development. Whether you are building a new website or just redoing an old design. As well as iWeb Templates, iWebTemplate sells regular HTML/Flash templates which don't have those same limitations of iWeb. Suffolk, United Kingdom - iWebTemplate is proud to offer their lifetime membership, providing pre-designed HTML website templates and website tools for you to use in your very own web development. Whether you are building a new website or just redoing an old design. These will spruce up your site and give you the "fresh" look you're looking for. As well as iWeb Templates, iWebTemplate sells regular HTML/Flash templates which don't have those same limitations of iWeb. These regular templates are available from the member section. Membership plan includes the following features: * 100's of pre-developed Professional Template Downloads * Ebooks and Tutorials - Learn how to do what the pros do! * Resources needed to make your site a success * Free Download of Software * Free Website Tools * Unlimited downloads and access to all the available templates in the member area * Frequently Update, new templates and resources are added frequently * No per item fees. You pay one time, and you can use all our member templates and resources * Free Clip Art and free true type fonts * Link Popularity checker * Meta Tag Generator * Search Engine Ranker Pricing and Availability: The complete price for membership is currently $39.95 USD. Members have access to Member Area 24 hrs a day, 7 Days a week. iWebTemplate: http://www.iwebtemplate.com Register: http://www.iwebtemplate.com/index.html?memberregister.htm iWebTemplate.com offers iWeb Templates and standard website templates, flash templates and other products that can be used as a basis for fast and high-quality website. Website templates, flash templates and all other products are completely customizable and ready for immediate download. Copyright 2008 iWebTemplate. All Rights Reserved. Apple, the Apple logo, and iWeb are registered trademarks of Apple Computer in the U.S. and/or other countries. ### Giuseppe Elia Owner info ( -at -) iwebtemplate.com ******* ******* *******