This week the Japanese Ministry of Education, Culture, Sports, Science and Technology selected RIKEN to develop a new exascale supercomputer. With a planned deployment in 2020, the new system is expected to keep Japan at the leading edge of computing science and technology.
6-Way End-Of-2013 Linux Benchmarks
As some extra weekend benchmarks as we near the end of 2013, here are test results when comparing Debian GNU/Linux 7.2, Ubuntu 14.04 in its current development state, Fedora 20, Red Hat Enterprise Linux 6.5, Red Hat Enterprise Linux 7.0 Beta 1, and openSUSE 13.1.
Wine 1.7.9 Released – Install on Ubuntu 13.04/12.10/12.04/11.10 and Linux Mint 16/13
Wine is an open source, free and easy-to-use program that enables Linux users to run some Windows based applications on Unix-like operating systems. Wine is a compatibility layer for installing almost all versions of Windows programs. Read also : Install Wine 1.7.9 in RedHat / CentOS / Fedora This…
[[ This is a content summary only. Visit my website for full links, other content, and more! [[
CyanogenMod Source Code for Samsung Galaxy Note 3 Now Available
CyanogenMod source code for Note 3 is now available for download, nightlies are coming soon.
GnuCash 2.6 Tries To Improve Open-Source Accounting
GNU projects seem to be in the season of releases with this week having GNU Octave 3.8 and GNUnet 0.10, while being prepared for release right now is the GnuCash 2.6 open-source accounting software…
See Behind That Shortened URL Using Python
I’m a big user of URL shortening, especially when sending links via email to family, friends, and/or coworkers. But there are occasions when I come across a shortened URL either on a website or from an unknown source. So, with just a few lines of Python code, I managed to write a script that, given a shortened URL, will reveal the actual URL behind the shortened link.
Copy the following code into a file and make it executable:
#!/usr/bin/env python
#
# showURL.py
#
# — simple python script to take a shortened url
# — and return the true url that it’s pointing too
#
import sys
import urllib2
# get the url from the command-line, bail
# if nothing was entered and show usage
if len(sys.argv) != 2:
print ‘[!] Usage: showURL.py <shortened url>’
sys.exit(1)
# store the given url
url = sys.argv[1]
# connect to the url and retrieve the real
# url
shortenedUrl = urllib2.urlopen(url)
realUrl = shortenedUrl.geturl()
# display result
print ‘[+] Shortened URL: ‘ + url
print ‘[+] Real URL: ‘ + realUrl
# done
sys.exit(0)
The execute the script like so:
./showURL.py http://tinyurl.com/x0vw
[+] Shortened URL: http://tinyurl.com/x0vw
[+] Real URL: http://www.linux.com/
There you have it. A quick and easy way to show what’s behind those shortened URLs.
UEFI SecureBoot mini-HOWTO available
I have been sorely missing some kind of UEFI SecureBoot HOWTO while figuring out the bits and pieces which are required to let our users avoid the pain of having to wrestle this by themselves; having found a lot of sparse articles I had to write one myself. It’s published in the hope that at least those who choose to follow this way have a few bumps less and know better what lies ahead right from the start.
Here’s ALT Linux English wiki page and here’s its static copy as of today just in case.
While at that, the described approach has resulted in a few groups of images made available that survive Secure Boot left enabled:
- Sisyphus-based regular weekly builds (primary, secondary download) with ALT Linux Rescue being quite popular;
- p7 starter kits including a couple of installers which aren’t being built with “unstable” Sisyphus (think Debian testing in terms of stability);
- ALT Linux 7.0.2 beta/RC images arriving in their due time.
USB 2.0 and 3.0 in the Real World
USB 3.0 devices are common now, but how much benefit do they really give over 2.0?
2013 in Tech: The Big Stories of the Year
A look back at the hot topics, major discoveries, and technological breakthroughs of 2012: from privacy to surveillance, major product launches, successes and catastrophes.
Ferocious Fedora 20 Review: Cutting Edge Linux Still as Sharp as Ever
If you want to a bleeding edge desktop or server Linux, then Fedora is the Linux distribution for you. If you want to play it safe, try something else.