Code's Worst Enemy
Stevey's Blog Rants: Code's Worst Enemy:
Want to read something fun about programming bloatware? Check the link above.
Warning: It's a looooong read. Beware.
Stumbles of a Stag are just a bunch of opinions and interests. I'll be writing about anything and everything i like to share. Disclaimer: Don't take my word for anything. Play at your own risk.
Stevey's Blog Rants: Code's Worst Enemy:
Want to read something fun about programming bloatware? Check the link above.
Warning: It's a looooong read. Beware.
Posted by
SilverStag
at
01:19
0
comments
Google Is All About Large Amounts of Data
This truly is the age of data. I have a friend who works in the GIS domain. Here's what he said when he compared his company's product to Google Maps: "Google Maps beats the pants off our system when it comes to mapping Bangalore, but we have more data of the local bussinesses than Google does."
That's a proof that data can give an edge to any product. Hit the link above and see what Google's VP Marissa Mayer has to say about it.
Happy New Year.
Posted by
SilverStag
at
00:37
0
comments
BEA Weblogic Server Virtual Edition doesn't run on Windows. It doesn't run on Linux, or MacOSX, or FreeBSD, AmigaDOS, CP/M, OS/2, or any other operating system you can think of. It runs directly on an x86 hypervisor. A hypervisor is a thin layer of low level code that sits just the hardware and creates a virtualized version of that hardware.
read more | digg story
Posted by
SilverStag
at
23:30
0
comments
Google has announced the release of Google Desktop for Linux. God! I've been waiting for this.
Here's the link for downloading the .deb/.rpm packages.
For those of you who want to install from a repository, head to this link.
The above link give you detailed instructions on how to get Google Desktop onto your Linux box.
Get going.
Installing a .rpm package: rpm -ivh "file_name_with_extension"
Installing a .deb package: dpkg -i
Via Google Operating System.
Posted by
SilverStag
at
19:57
0
comments
Hello! Folks.
Here are some tips for the users of Ubuntu and Firefox.
Gnome 2.x: Supercharge your right-click menu with Nautilus Scripts
Gnome:Add screen actions with Brightside
Gnome/KDE:Dock any application to the system tray with AllTray
Gnome on Linux:Copy and paste without using the clipboard
Gnome:Embed the terminal on the desktop
Linux: Speed up Gnome menu
Ubuntu: How To: Give Ubuntu a speed boost
Ubuntu:Print to PDF in Ubuntu
Ubuntu:Encrypt CDs/DVDs in Ubuntu
Ubuntu:Load programs faster with Preload
How To: Create .iso disk images and generate MD5 checksums
Firefox: Tweak about:config options with Configuration Mania
Firefox on Ubuntu:Beautify Firefox web page forms on Ubuntu
Thanks Lifehacker.
Happy tweaking.
There are already several ways to run an application written for one platform on a different platform. One is system call mapping: for instance mapping a Linux system call to a Windows system call as CYGWIN does. This allows a Linux application to run in CYGWIN on Windows without the Linux kernel. Unfortunately, syscalls cannot always be mapped exactly, which can prevent the application from compiling or from working as expected. Virtualization takes a different approach, actually implementing an entire operating system on top of another, but applications running in this guest end up being completely unintegrated with the host operating system.Doesn't it sound sweet? Probably those of our machines with meager specs will be able to run LINA. Since it is "lightweight". LINA will be licensed under GPLv2. It is built in C and C++. You can write applications for LINA in C and C++. Support for Perl, Python and Ruby will soon be added. LINA can currently run Linux command line utilities and some web applications. Support for development in Qt and GTK+ libraries is planned. See the FAQ section on openlina.com or more info.
LINA takes a new approach. In LINA, Linux applications run on a cross-platform Linux kernel on a virtual machine. LINA uses resource mapping instead of syscall mapping. So the Windows file system is mapped to a Linux file system, the Windows GUI APIs are mapped to Linux GUI APIs, etc. From the perspective of the LINA Linux application, it is running in a standard Linux operating system. From the perspective of the user, the LINA application is identical to a normal Windows or Mac OS X application.
Posted by
SilverStag
at
12:45
0
comments
Labels: opensource, technology, virtualization, web
Have you been planning to whip up your own Firefox extension? Well, here's something for starters. This Lifehacker post can get you started on your very own, pet extension for the browser you love. The post points to plenty of developer resources too. Wachoo waiting for? Go, put on creative thinking cap.
Good Luck.
Posted by
SilverStag
at
18:34
0
comments
Labels: firefox, programming