the lamest


Study Finds Earth Located In Lamest Part Of Universe

PARIS—Citing factors ranging from the dumb, ugly asteroid belt separating the terrestrial planets from the gas giants, to the super-boring and practically empty interstellar medium extending in nearly every direction, new research published Wednesday by the International Astronomical Union has concluded that Earth is located in “by far the lamest” region of the observable universe. “Despite years of intensive analysis, we have failed to uncover even a single pulsar, black hole, lenticular galaxy, binary star system, quasar, or any other cool stuff within 50 light years of this stupid dump of a solar system,” read the study, which noted that to date, no telescope—either ground-based or in earth orbit—has been able to locate a portion of space more dull and tiresome than our own. “Maybe if we were a little closer to the center of the Milky Way galaxy instead of piddling away on one of its lame-ass outer arms, that’d be one thing, but we are right smack-dab in the middle of nowhere. All we’ve got is a bunch of crappy old cosmic background radiation and dumb-as-shit magnetic fields out here. Ugh.” The study’s authors added that they “so wish” they were on board one of the Voyager probes currently racing out of this mind-numbingly shitty planetary backwater.

Inkscape

Inkscape is an open-source vector graphics editor similar to Adobe Illustrator, Corel Draw, Freehand, or Xara X. What sets Inkscape apart is its use of Scalable Vector Graphics (SVG), an open XML-based W3C standard, as the native format.

QR codes

QR code (abbreviated from Quick Response code) is a type of matrix barcode (or two-dimensional code) first designed for the automotive industry. More recently, the system has become popular outside of industry due to its fast readability and comparatively large storage capacity. The code consists of black modules arranged in a square pattern on a white background. The information encoded can be made up of any kind of data (e.g., binary, alphanumeric, or Kanji symbols)[1]

Malicious QR codes combined with a permissive reader can put a computer’s contents and user’s privacy at risk. QR codes intentionally obscure and compress their contents and intent to humans.[19]They are easily created and may be affixed over legitimate QR codes.[20] On a smartphone, the reader’s many permissions may allow use of the camera, full internet access, read/write contact data,GPS, read browser history, read/write local storage, and global system changes.[21][22][23]
Risks include linking to dangerous websites with browser exploits, enabling the microphone/camera/GPS and then streaming those feeds to a remote server, exfiltrating senstive data (passwords, files, contacts, transactions),[24] and sending email/SMS/IM messages or DDOS packets as part of a botnet, corrupting privacy settings, stealing identity,[25] and even containing malicious logic themselves such as JavaScript[26] or a virus.[27][28] These actions may occur in the background while the user only sees the reader opening a harmless webpage. [29]

KeePass

What is KeePass?
Today you need to remember many passwords. You need a password for the Windows network logon, your e-mail account, your website’s FTP password, online passwords (like website member account), etc. etc. etc. The list is endless. Also, you should use different passwords for each account.

KeePass is a free open source password manager, which helps you to manage your passwords in a secure way.

The databases are encrypted using  AES and Twofish. For more information see the features page.

KeePass 2.26 has been released today!

You can get it here: Download KeePass 2.26.

This is a stable release. It is recommended to upgrade from any previous 2.x version to 2.26.

KeePass 2.26 mainly features auto-type improvements, integration and usability enhancements, and various other minor new features and improvements.

Hash sums and OpenPGP signatures for integrity checking are available. The .NET assemblies are signed,public keys for verifying are available.

For a comparison of the current KeePass 1.27 and 2.26, see: Editions Comparison.

If you like KeePass, please don’t forget to donate.

Tech hotshots: The rise of the UX expert

Blame Apple’s aesthetic: Even the stodgiest of enterprise shops are engaging user experience experts who can design logical, beautiful interfaces for mobile computing’s limited spaces.

Blame Apple’s aesthetic: Even the stodgiest of enterprise shops are engaging user experience experts who can design logical, beautiful interfaces for mobile computing’s limited spaces.

rooting android

Kingo Android ROOT


Con root podemos tener acceso a aplicaciones que de otra manera no podríamos ejecutar y realizar cosas como crear copias de seguridad de ciertas partes del sistema, cambiar la frecuencia de la CPU para que vaya más rápido ó lento dependiendo si queremos rendimiento o ahorrar batería, hacer capturas de pantalla, usar de ciertos programas de PC, usar nuestro teléfono como router Wi-Fi, pero considero que lo más importante es la posibilidad de instalar ROMs costumizadas.
aki el archivo root: http://www.mediafire.com/?0o3qxdphs4m…

“como hacer root en cualquier android”
“como hacer root”
“hacer root facil y rapido”
“como hacer root a samsung galaxy s3”
“como hacer root facil”
“hacer root con z4root”
“hacer root con”
“descargar z4root”
“como hackear android”

flops in Matlab

Somebody asked how one may count the number of floating point operations in a MATLAB program.
Prior to version 6, one used to be able to do this with the command flops, but this command is no longer available with the newer versions of MATLAB.
flops is a relic from the LINPACK days of MATLAB (LINPACK has since been replaced by LAPACK). With the use of LAPACK in MATLAB, it will be more approrpiate to use tic andtoc to count elapsed CPU time instead (cf. tic,toc).
If you're interested to know why flops is obsolete, you may wish to read the exchanges in NA digest regarding flops.
Nevertheless, if you feel that you really do need a command to count floating point operations in MATLAB, what you can do is to install Tom Minka's Lightspeed MATLAB toolbox and use the flops counting operations therein.


@cise.ufl.edu>

@cise.ufl.edu>
To count flops, we need to first know what they are.  What is a flop?

LAPACK is not the only place where the question "what is a flop?" is
relevant. Sparse matrix codes are another. Multifrontal and supernodal
factorization algorithms store L and U (and intermediate submatrices, for
the multifrontal method) as a set of dense submatrices. It's more
efficient that way, since the dense BLAS can be used within the dense
submatrices. It is often better explicitly store some of the numerical
zeros, so that one ends up with fewer frontal matrices or supernodes.

So what happens when I compute zero times zero plus zero? Is that a flop
(or two flops)? I computed it, so one could argue that it counts. But it
was useless, so one could argue that it shouldn't count. Computing it
allowed me to use more BLAS-3, so I get a faster algorithm that happens to
do some useless flops. How do I compare the "mflop rate" of two
algorithms that make different decisions on what flops to perform and
which of those to include in the "flop count"?

A somewhat better measure would be to compare the two algorithms based an
external count. For example, the "true" flop counts for sparse LU
factorization can be computed in Matlab from the pattern of L and U as:

[L,U,P] = lu (A) ;
Lnz = full (sum (spones (L))) - 1 ; % off diagonal nz in cols of L
Unz = full (sum (spones (U')))' - 1 ; % off diagonal nz in rows of U
flops = 2*Lnz*Unz + sum (Lnz) ;

The same can be done on the LU factors found by any other factorization
code. This does count a few spurious flops, namely the computation a_ij +
l_ik*u_kj is always counted as two flops, even if a_ij is initially zero.

However, even with this "better" measure, the algorithm that does more
flops can be much faster. You're better off picking the algorithm with
the smallest memory space requirements (which is not always the smallest
nnz (L+U)) and/or fastest run time.

So my vote is to either leave out the the flop count, or at most return a
reasonable agreed-upon estimate (like the "true flop count" for LU, above)
that is somewhat independent of algorithmic details. Matrix multiply, for
example, should report 2*n^3, as Cleve states in his Winter 2000
newsletter, even though "better" methods with fewer flops (Strassen's
method) are available.

Tim Davis
University of Florida
davis@cise.ufl.edu
@cise.ufl.edu>

Ubuntu root

Con un enfoque paternalista Ubuntu de entrada no da acceso a la cuenta de  root, sino que los comandos privilegiados se deben ejecutar usando sudo Referencias http://tombuntu.com/index.php/2008/05/23/install-virtualbox-additions-for-an-ubuntu-804…

Con un enfoque paternalista Ubuntu de entrada no da acceso a la cuenta de  root, sino que los comandos privilegiados se deben ejecutar usando sudo Referencias http://tombuntu.com/index.php/2008/05/23/install-virtualbox-additions-for-an-ubuntu-804-guest/ http://www.cyberciti.biz/faq/ubuntu-linux-root-password-default-password/ http://ubuntu-tutorials.com/2007/10/13/