To display the most relevant entries to you in priority,
vote for the stories you are interested in
(  )
and reject those that you are not interested in
(  )
Ajaxian -
1 hours and 40 minutes ago
Voting has started in Dojo land to take in John Resig’s Sizzle next-gem CSS selector engine.
This is incredibly exciting, as it shows how Ajax libraries are working together more and more.
Instead of reinventing the wheel in different ways for each project, is it possible to find some
core pieces that can be nicely shared? Of course, if our world was nicer and we could share code
by linking in a nice way maybe this would happen more.
As I mentioned in my thanksgiving note, the work that the Ajax library developers do is hugely
important and impactful, and having them work together can only be great news.
Take a look at this public email to the Dojo Foundation on the vote:
Overview
The Sizzle project is a JavaScript library for performing selections
across a DOM tree using CSS selectors. The library is designed to be
standalone (have no external dependencies), lightweight, fast, and
extensible. This culminates in a library that is perfectly suited for
integration into other libraries. While it’s feasible that a developer
may use Sizzle directly the target audience for it is other library
authors.
The code for Sizzle can be found in the following Git repository:
http://github.com/jeresig/sizzle/tree/master
All of the code for the project has been written by John Resig and is
released under an MIT license. There are some patches pending from
some other contributors (namely Prototype).
Right now the following libraries are adopting or are looking to adopt
Sizzle as their primary CSS selector engine:
It’s likely that Sizzle will become the unified engine behind a
majority of the JavaScript libraries on the market (if not in numbers
then certainly in market share).
The project is owned by John Resig who will serve as BDFL/Project lead
if the project is accepted. There is no formal voting process, as of
yet, but it’s likely that one will come about, considering the number of
projects using the codebase.
If the project is accepted to the foundation then all contributors to
the project will be required to have a CLA and follow the policies of
the Dojo foundation.
It’s very likely that Sizzle will eventually expand into other areas
of JavaScript libraries (such as DOM manipulation and event binding).
That last line excites me too! It is interesting to see this happen in the Dojo Foundation.
Remember, Dojo was founded out of toolkits coming together to aggregate forces. Kudos to everyone
involved, and good luck!


|
BlenderNation -
2 hours and 2 minutes ago
Panzi wrote two texture nodes that were recently committed to the Blender svn repository. He
demonstrates their use by creating procedural terrains. Nifty stuff. Panzi wrote: Recently I wrote
two tiny texture nodes. They don't do much, just exposing the coordinates (x,y,z) to the node
system and a node that calculates the distance between two coordinates (vectors). [...]
|
BlenderNation -
2 hours and 2 minutes ago
Panzi wrote two texture nodes that were recently committed to the Blender svn repository. He
demonstrates their use by creating procedural terrains. Nifty stuff. Panzi wrote: Recently I wrote
two...br/ br/ [read the full article on blendernation.com]img
src="http://feeds.feedburner.com/~r/Blendernation/~4/473240283" height="1" width="1"/
|
Planet Ubuntu -
6 hours and 1 minutes ago
img class=face src=http://planet.ubuntu.com/heads/toponce.png alt= pSo, due to the bad shape of the
economy, and the lack of faith from a prominent North American Enterprise Linux vendor in a
href=http://gurulabs.comGuru Labs/a, I was let go from my position as a Linux instructor and guru.
As unfortunate as it is, I have to press forward looking for the best job that fits my skill set./p
pHowever, the point of this post isn#8217;t to complain about being laid off, or the bad shape of
the economy. Rather, while employed, I was given a 120 GB LaCie Rugged hard drive that was called
the #8220;gurudisk#8221; (being a #8220;Linux Guru#8221; from #8220;Guru Labs#8221;. Get it?). The
gurudisk had everything on it necessary for easing the installation of Linux on computers.
Kickstart and AutoYast files were used for automating the install of the instructor machine, while
scripts and RPMs were used to automate the configuration and additional software installation of
the instructor machine, and DHCP, DNS, TFTP and PXE, along with Kickstart and AutoYast files, were
used for automating student machines. Using the gurudisk, I could do a full classroom install,
complete with instructor machine and 20 student machines, in under an hour. The gurudisk held RHEL
5, RHEL 5.1, Fedora 6, SLES 10, SUSE Linux 10.1 and Oracle 4.5 disk ISOs and software, as well as
RPMs, scripts and config files. It was truly a welcomed companion./p pHowever, all of that can
easily fit in 40 GB of space, so what to do with the rest of the 80 GB? Well, most of us began
using that space for personal data. Music, videos, scripts, documents and so forth. I#8217;m not
one to carry music or movies with me, so that didn#8217;t interest me much. Rather, I wanted the
ability to take the gurudisk further with using Ubuntu and Debian. So, I had an #8220;isos#8221;
directory on my gurudisk, where I kept more updated ISOs, including RHEL 5.2, Fedora 9 and 10,
Ubuntu 8.04 LTS, Debian 4.0, openSUSE 11, OpenSolaris, FreeBSD, OpenBSD, and others. At one point,
I had an entire Ubuntu repository mirroring 8.04 and 8.10 on the gurudisk. Lastly, if that#8217;s
not enough, I had VMWare, KVM, Xen and VirtualBox virtual machines with clean, vanilla
installations of a few of the major distributions. I took advantage of my space, and it also came
to the welcome approval of many students./p pWhen news came yesterday that I had lost my job, and
that I would need to turn in my gurudisk, I wanted to first get my Ubuntu mirror, virtual machines
and ISOs off the disk. Then, I wanted to experience, first hand, #8220;shredding#8221; the data on
the disk. Thus, we have now reached the topic of this post- GNU shred./p pI had heard from students
over and over again that zeroing out the drive using /dev/zero is not sufficient for secure data
deletion. I full heartedly disagree, and I#8217;m sure I#8217;ll bring out the emotion of many of
you in the comments. Here#8217;s why I think /dev/zero is more than sufficient for secure data
destruction:/p ul liOn older dive encoding schemes, mainly RLL and MFM, data was not written in
exactly the same spot every time. As such, there was left over charge from the previous write, and
expensive data recovery hardware could use math and averages to discover what the data once was. As
such, a method known as the #8220;Gutmann Method#8221; became the standard of destroying data.
Patters of ones and zeros would be written to the disk, in such a way that maximizing flipping the
bits, minimizing the average left over charge. After seven passes, the residual charge would be so
minute, that it would be virtually impossible to recover the data. Do 35 passes, and the data is
gone for sure./li liDrives today do not use RLL or MFM encoding, and also, the bits are much more
close together then they were in days gone by. The data has to be written in exactly the same spot,
or data destruction is likely on other data existing on the disk. As such, there is no left over
residual charge from rewriting the data. A single pass over existing data removes any existence of
that data./li liSupposedly, top secret, mega government, super computers administered my
corporations with endless amounts of cash flow can recover data on ATA drives, even after seven
passes. However, there has been no academic study, no scientific evidence, no hard cold proof. All
we have is hearsay and rumors of people we know claimed to recover the data using these killer
machines or algorithms on ATA drives./li /ul pSo, with that in mind, after backing up my data, a
single zeroing of the entire drive would be more than sufficient for a couple reasons. First, my
bosses and company don#8217;t have the resources, the time and money, or the care to recover any
data off of my gurudisk. Second, the data I was deleting wasn#8217;t necessarily personal, as no
passwords or private keys or information was stored on the disk. So, even if the data could be
recovered, of what use would it be to anyone? Little, if any. Chances are good that the drive will
sit on a shelf, unattended and unused, and when it does make it back into commission, it will just
be formatted with ext3, files put on, and used as any other drive. So, /dev/zero it is./p pOr
not./p pI#8217;m a mathematician at heart. I love math and logic puzzles as well as cryptography
and many an algorithm. If I had the time and money, I would finish college, and get a Doctorate in
Mathematics. However, that#8217;s a dream that just isn#8217;t realistic at this point in my life,
but I still enjoy pulling out my HP49G+, and crunching the numbers. So, the algorithm used in
Gutmann#8217;s Method is interesting. More interesting are the pseudo-random number generators used
in cryptographic applications. So, I decided to give GNU shred a try, seeing as though it#8217;s
part of coreutils, and see what the result is. I ran the following command:/p preshred -v -z
/dev/sdc/pre pThis means that GNU shred will make 26 total passes, with the 26th pass being
straight zeros to hide the fact that the disk has been shredded. Once finished, I#8217;ll add one
final pass as an easter egg to the next person who gets the gurudisk. So, 27 total passes to the
disk. What I#8217;m mostly interested in, is the time it will take to finish. From my
understanding, it will write pseudo-random numbers to the disk on the first, middle and
second-to-last passes, due to passing #8216;-z#8217; to zero the shred. Writing random data to 120
GB of disk is going to take some time. In fact, I timed it, and it took 5 hours and 20 minutes.
Which means it will last at least 16 hours to run to completion. But then there is the one and zero
pattern writing that will take place in between. I would expect this to go substantially faster
than writing random data, and it does- about three times as fast. Three passes can be completed in
5 hours and 20 minutes, give or take, based on the pattern. There are 23 final passes at this rate,
which is approximately 41 hours. Add the 16 on top of that, and it#8217;s going to take 58 total
hours to complete all 26 passes. That#8217;s almost 2 and a half days! In fact, as I#8217;m writing
this, it#8217;s 18:00 the next day, and I#8217;m only on pass 11, writing the pattern
#8220;333333#8243; in hexadecimal to the disk. The next pass will be my second random data pass.
When I get out of bet tomorrow, I expect to be on pass 18, give or take./p pI figure, even though
I#8217;m long past any possible data retrieval, it#8217;s fun to watch. Even more entertaining is
the heat emanating off of the disk- it#8217;s fairly warm, which I guess makes sense, as the disks
have been going non-stop for almost 24 hours. Would I recommend GNU shred for wiping your data? No.
Again, /dev/zero will be more than sufficient, and fast too, at roughly 30 MB per second on a SATA
or USB 2.0 disk. Which, by the way, this disk is connected via FireWire 400 (I#8217;m not a fan of
the USB speed burst). I#8217;d love to see this run to completion, but I#8217;ll probably cancel it
sometime tomorrow morning, install my easter egg, then be on my way to return the disk./p pLong
live hacking!/p div class=feedflare a href=http://feeds.feedburner.com/~f/pthree?a=dqloOimg
src=http://feeds.feedburner.com/~f/pthree?i=dqloO border=0 //a /divimg
src=http://feeds.feedburner.com/~r/pthree/~4/473095795 height=1 width=1 /

|
Hackint0sh - iPod Touch -
7 hours and 13 minutes ago
via slashdot.org
Ponca City, We love you writes "Two mobile applications, NMobile and Trapster, are providing
drivers with up-to-date maps of speed-enforcement zones with live police traps, speed cameras or
red-light cameras. Each application pulls up a map pinpointing the locations of speed traps within
driving distance and an audio alert will sound as vehicles approach an area tagged as harboring a
speed trap. Both applications rely on the wisdom of the crowds for their data with users reporting
camera-rigged stop lights and areas heavily populated with radar-toting police officers via the
iPhone or their web-based application, creating the ultimate speed trap repository available to you
when you need it most — while you're driving. To thwart false alarms and eliminate
inaccuracies, Trapster enlists its community of nearly 200,000 members to rank speed traps on their
accuracy. NMobile founder Shannon Atkinson declined to provide detailed data, though he did
estimate that 'well over 1,000' users had downloaded the application since it became available last
week. The company insists they've received only positive feedback from law enforcement officials
and police officers regarding their products. 'If the application gets people to slow down, I think
it's generally considered to be a good thing,' said Atkinson."
Read more of this story at Slashdot.
More...

|
Forum Alsacréations : CSS et Standards Web -
15 hours and 40 minutes ago
Bonjour, Je suis actuellement à la recherche d'outil de ce type :
http://ui.jquery.com/repository/real-world/layout/ Bref le type de chose que l'ont voit comme sur
netvibes,
|
freshmeat.net announcements (Unix) -
20 hours and 31 minutes ago
img src="http://c.fsdn.com/fm/screenshots/10599_thumb.gif" align="right" alt="Screenshot"
hspace="10" vspace="10" TkCVS is a cross-platform, Tcl/Tk-based GUI for the CVS and Subversion
configuration management systems. It displays the status of the files in the current working
directory, and provides buttons and menus to execute CVS, Subversion, or RCS commands on the
selected files. The Log Browser displays a branch diagram of the revision history. The Module
Browser extends CVS with facilities for a user-friendly listing of modules in the repository.
TkDiff is included for browsing and merging your changes. hr / strongLicense:/strong GNU General
Public License (GPL) hr / strongChanges:/strongbr / The Branch Browser can now draw merge arrows
for merges tracked by Subversion 1.5's mergeinfo property and CVSNT's mergepoint feature. The
work-around of using tags is no longer necessary if your Subversion or CVSNT server and client
support their own merge tracking. The Branch Browser has a new search ability, so you can highlight
a revision on the diagram by its version, date, tag, or author. If your SVN repository has a
structure that's functionally similar to trunk, branches, and tags but with different names, you
can tell TkCVS about it by setting variables. pa
href="http://feedads.googleadservices.com/~a/eBw6KbEd_lLAsAFAk7rjGEZP2z8/a"img
src="http://feedads.googleadservices.com/~a/eBw6KbEd_lLAsAFAk7rjGEZP2z8/i" border="0"
ismap="true"/img/a/pimg
src="http://feedproxy.google.com/~r/freshmeat/feeds/fm-releases-unix/~4/WBBwXN4JWg0" height="1"
width="1"/

|
freshmeat.net announcements (Global) -
20 hours and 31 minutes ago
img src="http://c.fsdn.com/fm/screenshots/10599_thumb.gif" align="right" alt="Screenshot"
hspace="10" vspace="10" TkCVS is a cross-platform, Tcl/Tk-based GUI for the CVS and Subversion
configuration management systems. It displays the status of the files in the current working
directory, and provides buttons and menus to execute CVS, Subversion, or RCS commands on the
selected files. The Log Browser displays a branch diagram of the revision history. The Module
Browser extends CVS with facilities for a user-friendly listing of modules in the repository.
TkDiff is included for browsing and merging your changes. hr / strongLicense:/strong GNU General
Public License (GPL) hr / strongChanges:/strongbr / The Branch Browser can now draw merge arrows
for merges tracked by Subversion 1.5's mergeinfo property and CVSNT's mergepoint feature. The
work-around of using tags is no longer necessary if your Subversion or CVSNT server and client
support their own merge tracking. The Branch Browser has a new search ability, so you can highlight
a revision on the diagram by its version, date, tag, or author. If your SVN repository has a
structure that's functionally similar to trunk, branches, and tags but with different names, you
can tell TkCVS about it by setting variables. pa
href="http://feedads.googleadservices.com/~a/WvntSA62h-1ozeWV2nsDfNlD1Mg/a"img
src="http://feedads.googleadservices.com/~a/WvntSA62h-1ozeWV2nsDfNlD1Mg/i" border="0"
ismap="true"/img/a/pimg
src="http://feedproxy.google.com/~r/freshmeat/feeds/fm-releases-global/~4/WBBwXN4JWg0" height="1"
width="1"/

|
freshmeat.net announcements (Unix) -
20 hours and 34 minutes ago
img src="http://c.fsdn.com/fm/screenshots/55259_thumb.jpg" align="right" alt="Screenshot"
hspace="10" vspace="10" whohas is a command line tool that allows you to query several package
collections at once. It currently supports Arch Linux (and AUR), Debian, Fedora, Gentoo, openSUSE,
Slackware (and linuxpackages.net), Source Mage Linux, Ubuntu, FreeBSD, NetBSD, OpenBSD, Fink, and
MacPorts repositories. whohas was designed to help package maintainers find ebuilds, pkgbuilds, and
similar package definitions from other distributions to learn from. However, it can also be used by
normal users who want to know which distribution provides certain packages, and which version of a
given package is in use in each distribution or in each release of a distribution. hr /
strongLicense:/strong GNU General Public License (GPL) hr / strongChanges:/strongbr / Gentoo and
Fedora were added (again). For Debian, the "testing" repository was enabled in addition to
"stable". Performance improvements were made, and wget is no longer depended upon. On Mac OS X,
Whohas.app now works without having whohas in your $PATH - the whohas executable is bundled in the
app. pa href="http://feedads.googleadservices.com/~a/gNLjS8J7QIehlU0zBe1_LkzTjOQ/a"img
src="http://feedads.googleadservices.com/~a/gNLjS8J7QIehlU0zBe1_LkzTjOQ/i" border="0"
ismap="true"/img/a/pimg
src="http://feedproxy.google.com/~r/freshmeat/feeds/fm-releases-unix/~4/s_vicloRI3E" height="1"
width="1"/

|
freshmeat.net announcements (Global) -
20 hours and 34 minutes ago
img src="http://c.fsdn.com/fm/screenshots/55259_thumb.jpg" align="right" alt="Screenshot"
hspace="10" vspace="10" whohas is a command line tool that allows you to query several package
collections at once. It currently supports Arch Linux (and AUR), Debian, Fedora, Gentoo, openSUSE,
Slackware (and linuxpackages.net), Source Mage Linux, Ubuntu, FreeBSD, NetBSD, OpenBSD, Fink, and
MacPorts repositories. whohas was designed to help package maintainers find ebuilds, pkgbuilds, and
similar package definitions from other distributions to learn from. However, it can also be used by
normal users who want to know which distribution provides certain packages, and which version of a
given package is in use in each distribution or in each release of a distribution. hr /
strongLicense:/strong GNU General Public License (GPL) hr / strongChanges:/strongbr / Gentoo and
Fedora were added (again). For Debian, the "testing" repository was enabled in addition to
"stable". Performance improvements were made, and wget is no longer depended upon. On Mac OS X,
Whohas.app now works without having whohas in your $PATH - the whohas executable is bundled in the
app. pa href="http://feedads.googleadservices.com/~a/OrPyDuMOFWAGHKfvVlZjCHkmYwc/a"img
src="http://feedads.googleadservices.com/~a/OrPyDuMOFWAGHKfvVlZjCHkmYwc/i" border="0"
ismap="true"/img/a/pimg
src="http://feedproxy.google.com/~r/freshmeat/feeds/fm-releases-global/~4/s_vicloRI3E" height="1"
width="1"/

|
iPod touch Fans forum -
1 days and 3 hours ago
 Category: Lifestyle
Released: Dec 01, 2008
Price: $1.99
Description:
So, you think you can tap, huh? Like, tap tap tap tap ... ?Like 600 times a minute?Seriously, can
you? Infinite Tap is a simple tap counter with an inbuilt timer that lets you and your friends
compete in a super-fun TAPPING CONTEST. This game draws its inspiration from a slightly different
version that is played on CALCULATORS, and is enjoyed all around the WORLD by the young and the old
alike. NOTES: * My Research has shown that regular use of Infinite Taps significantly boosts your
your tapping skills, making your navigation through the iPhone less stressful for your fingers. **
A public score repository will be available in the next update that will allow users to compare
their scores online. ************* CHEAT MODE is now available. ************* - Tap on the progress
bar below the tap counter and above the timer to activate the cheat mode.- A dot will appear beside
"2008 bibhasacharya" on the bottom-right part of the screen while the cheat mode in on. -Restarting
the game or re-tapping the progress bar will deactivate the cheat mode.
Website: http://go.owu.edu/~bbachary/iphone
Support Website: http://go.owu.edu/~bbachary/iphone
Note: The description above is the official one supplied by the application
developer and does not necessarily represent the views or opinions of this site or its staff.
Get it on iTunes: Infinite Taps

|
Support Forums: Message List - Announcements (EAP) -
1 days and 6 hours ago
!-- [DocumentBodyStart:19af1f3a-f2ae-44e0-95dc-995d2c0ddc07] --div class='jive-rendered-content'pWe
would like to be able to pass our SVN revision number to the add2Queue url. like:/pp
style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppa class="jive-link-external-small"
href="http://localhost:8111/httpAuth/action.html?add2Queue=bt2amp;system.name=build.vcs.number.1amp;system.value=49"http://localhost:8111/httpAuth/action.html?add2Queue=bt2amp;system.name=build.vcs.number.1amp;system.value=49/a/pp
style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppWe want to trigger a build on every
commit without have to poll the repository constantly. (svn post-commit hook works
well)/pp style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppspanI have figured out that I
*could* post the /spana class="jive-link-external-small"
href="http://localhost:8111/runCustomBuild.html"http://localhost:8111/runCustomBuild.html/aspan
with the appropriate modificationId... but that answer seems a little to sketchy./span/pp
style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppThoughts?/pp style="min-height: 8pt;
height: 8pt; padding: 0px;"nbsp;/pp-Lance/p/div!--
[DocumentBodyEnd:19af1f3a-f2ae-44e0-95dc-995d2c0ddc07] --

|
Support Forums : Thread List - Plugins -
1 days and 6 hours ago
!-- [DocumentBodyStart:19af1f3a-f2ae-44e0-95dc-995d2c0ddc07] --div class='jive-rendered-content'pWe
would like to be able to pass our SVN revision number to the add2Queue url. like:/pp
style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppa class="jive-link-external-small"
href="http://localhost:8111/httpAuth/action.html?add2Queue=bt2amp;system.name=build.vcs.number.1amp;system.value=49"http://localhost:8111/httpAuth/action.html?add2Queue=bt2amp;system.name=build.vcs.number.1amp;system.value=49/a/pp
style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppWe want to trigger a build on every
commit without have to poll the repository constantly. (svn post-commit hook works
well)/pp style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppspanI have figured out that I
*could* post the /spana class="jive-link-external-small"
href="http://localhost:8111/runCustomBuild.html"http://localhost:8111/runCustomBuild.html/aspan
with the appropriate modificationId... but that answer seems a little to sketchy./span/pp
style="min-height: 8pt; height: 8pt; padding: 0px;"nbsp;/ppThoughts?/pp style="min-height: 8pt;
height: 8pt; padding: 0px;"nbsp;/pp-Lance/p/div!--
[DocumentBodyEnd:19af1f3a-f2ae-44e0-95dc-995d2c0ddc07] --

|
Mac Forums - iPod touch -
1 days and 10 hours ago
i'm trying to find a way to get all the comments committed between tags in a CVS repository. i'm
trying to get this figured out how to do this from the command line so i can then do it in ant.
I have dug thru everything i can find on the web, but nothing seems to return the comments for a
tag. does anyone have any ideas?
|
Slashdot -
1 days and 13 hours ago
stoolpigeon writes "MySQL is frequently touted as the world's most widely used relational database
management system. Many of the best known web applications and web sites use MySQL as their data
repository. The popularity of MySQL has continued to grow while at the same time many were
concerned by the lack of many features considered essential to a 'real' rdbms. Such naysayers have
done little to impede the growth or development of MySQL. The first edition of MySQL in a Nutshell,
published in 2005, gave users a handy reference to using MySQL. The second edition, published in
2008, covers many new features that MySQL fans proudly proclaim as an answer to all those critics
clamoring for a better-rounded rdbms." Read below for the rest of JR's review.pa
href="http://books.slashdot.org/article.pl?sid=08/12/01/1457236amp;from=rss"img
src="http://slashdot.org/slashdot-it.pl?from=rssamp;op=imageamp;style=h0amp;sid=08/12/01/1457236"/a/ppa
href="http://books.slashdot.org/article.pl?sid=08/12/01/1457236amp;from=rss"Read more of this
story/a at Slashdot./p pa
href="http://feedads.googleadservices.com/~at/UIMt6FGTrrN8p4iB8U7hLSDMoaQ/a"img
src="http://feedads.googleadservices.com/~at/UIMt6FGTrrN8p4iB8U7hLSDMoaQ/i" border="0"
ismap="true"/img/a/pimg src="http://feedproxy.google.com/~r/Slashdot/slashdot/~4/Sqz9paSNvww"
height="1" width="1"/

|
|
What is Matoumba?
A website that sorts everyday the most relevant information to you.
Vote for the news and Matoumba will learn your tastes and the information that you like the most.
It is all FREE!
|