<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2998720509734996985</id><updated>2011-04-21T23:29:32.495-04:00</updated><category term='linux'/><category term='images'/><category term='facebook'/><category term='vs'/><category term='distro'/><category term='speed'/><category term='ballmer'/><category term='java'/><category term='web'/><category term='arch'/><category term='programming'/><category term='bleeding'/><category term='wins'/><category term='fedora'/><category term='first'/><category term='post'/><category term='loading'/><category term='quest'/><category term='compile'/><category term='root'/><category term='suse'/><category term='firefox'/><category term='git'/><category term='zenwalk'/><category term='arch linux'/><category term='budapest'/><category term='hopping'/><category term='internet'/><category term='connect4'/><category term='compiz'/><category term='ubuntu'/><category term='owned'/><category term='fusion'/><category term='opera'/><title type='text'>Programming - Linux - FOSS - and Other Things</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-7221132289051067311</id><published>2008-07-06T02:55:00.003-04:00</published><updated>2008-07-06T02:56:56.642-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='root'/><title type='text'>[News] My Latest Java</title><content type='html'>I wrote my first Java program today.&lt;br /&gt;Besides the fact that it's Java, it rocks.&lt;br /&gt;&lt;br /&gt;package vk_root;&lt;br /&gt;&lt;br /&gt;import java.io.InputStreamReader;&lt;br /&gt;import java.io.BufferedReader;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;* This program can find the root of any positive real integer&lt;br /&gt;* at any given (positive real) base.&lt;br /&gt;* It's my first Java program, so please don't laugh at the lameness&lt;br /&gt;* of the code.&lt;br /&gt;*&lt;br /&gt;* raise will *raise* an integer to a given power.&lt;br /&gt;* root will return 0 on failure.&lt;br /&gt;* disp is there because typing out System.out.println() sucks.&lt;br /&gt;* pass makes me (a Python-er) feel at home here.&lt;br /&gt;* stupid is helpful.&lt;br /&gt;* shell interacts with the user.&lt;br /&gt;* main is straight-forward.&lt;br /&gt;*&lt;br /&gt;* This program is command-line aware, e.g;&lt;br /&gt;* $ java -jar vk_java_app.jar 16 2&lt;br /&gt;* 4&lt;br /&gt;* $&lt;br /&gt;*&lt;br /&gt;* I have to stick this in;&lt;br /&gt;* #!/usr/bin/env python&lt;br /&gt;* def root(num, base):&lt;br /&gt; for x in range(2, num/base+1):&lt;br /&gt;  if x**base == num:&lt;br /&gt;   return x&lt;br /&gt;* &gt;&gt;&gt; root(16, 2)&lt;br /&gt;* 4&lt;br /&gt;*&lt;br /&gt;* *sigh*&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;public class Main {&lt;br /&gt;   public static int raise (int num, int base) {&lt;br /&gt;       int copy = num;&lt;br /&gt;       for (int pos=1; pos!=base; pos++) {&lt;br /&gt;           num = copy*num;&lt;br /&gt;       }&lt;br /&gt;       return num;&lt;br /&gt;   }&lt;br /&gt;   public static int root (int num, int base) {&lt;br /&gt;       int cap = num/base+1;&lt;br /&gt;       int[] range = new int[cap];&lt;br /&gt;       for (int start=0; start&lt;=(num/base); start++) {&lt;br /&gt;           range[start] = start;&lt;br /&gt;       }&lt;br /&gt;       for (int pos=0; pos&lt;cap;&gt;&lt;br /&gt;           if (raise(range[pos], base) == num) {&lt;br /&gt;               return range[pos];&lt;br /&gt;           }&lt;br /&gt;       }&lt;br /&gt;       return 0;&lt;br /&gt;   }&lt;br /&gt;   public static void disp(int msg) {&lt;br /&gt;       System.out.println(msg);&lt;br /&gt;   }&lt;br /&gt;   public static int pass() {&lt;br /&gt;       return 0;&lt;br /&gt;   }&lt;br /&gt;   public static void stupid() {&lt;br /&gt;       System.out.println("Stop being a dummy.");&lt;br /&gt;   }&lt;br /&gt;   public static int shell() {&lt;br /&gt;       InputStreamReader isr = new InputStreamReader( System.in );&lt;br /&gt;       BufferedReader stdin = new BufferedReader( isr );&lt;br /&gt;       try {&lt;br /&gt;           System.out.println("Enter a number: ");&lt;br /&gt;           String in_num = stdin.readLine();&lt;br /&gt;           if (in_num.equals("exit")) {&lt;br /&gt;               return 1;&lt;br /&gt;           }&lt;br /&gt;           System.out.println("Enter a base: ");&lt;br /&gt;           String in_base = stdin.readLine();&lt;br /&gt;           if (in_base.equals("exit")) {&lt;br /&gt;               return 1;&lt;br /&gt;           }&lt;br /&gt;           System.out.println("The root:");&lt;br /&gt;           disp(root(Integer.parseInt(in_num), Integer.parseInt(in_base)));&lt;br /&gt;       }&lt;br /&gt;       catch (java.io.IOException e) {&lt;br /&gt;           stupid();&lt;br /&gt;           return 0;&lt;br /&gt;       }&lt;br /&gt;       catch (java.lang.NumberFormatException e) {&lt;br /&gt;           stupid();&lt;br /&gt;           return 0;&lt;br /&gt;       }&lt;br /&gt;       catch (java.lang.NegativeArraySizeException e) {&lt;br /&gt;           stupid();&lt;br /&gt;           return 0;&lt;br /&gt;       }&lt;br /&gt;       return 0;&lt;br /&gt;   }&lt;br /&gt;   public static void main(String[] args) {&lt;br /&gt;       /*&lt;br /&gt;       disp(root(16, 2));&lt;br /&gt;       disp(root(49, 2));&lt;br /&gt;       disp(root(1000, 3));&lt;br /&gt;       disp(root(16,4));&lt;br /&gt;       disp(root(625, 5));&lt;br /&gt;       */&lt;br /&gt;       try {&lt;br /&gt;           disp(root(Integer.parseInt(args[0]), Integer.parseInt(args[1])));&lt;br /&gt;           if (args[2].equals("quiet")) {&lt;br /&gt;               // UGLY!!!&lt;br /&gt;               System.exit(0);&lt;br /&gt;           }&lt;br /&gt;       } catch (java.lang.ArrayIndexOutOfBoundsException e) {&lt;br /&gt;           // System.out.println(e);&lt;br /&gt;           pass();&lt;br /&gt;       }&lt;br /&gt;       System.out.println("(Type exit at any time to stop the application.)");&lt;br /&gt;       for (;;) {&lt;br /&gt;           if (shell() != 0) {&lt;br /&gt;               break;&lt;br /&gt;           }&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;}&lt;/cap;&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-7221132289051067311?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/7221132289051067311/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=7221132289051067311' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/7221132289051067311'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/7221132289051067311'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/07/news-my-latest-java.html' title='[News] My Latest Java'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-1644247793387533193</id><published>2008-06-18T20:02:00.003-04:00</published><updated>2008-06-18T20:05:44.794-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='speed'/><category scheme='http://www.blogger.com/atom/ns#' term='wins'/><category scheme='http://www.blogger.com/atom/ns#' term='opera'/><title type='text'>[Internet] Opera Wins III</title><content type='html'>Webmonkey speed test;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_pJDgZETUgJY/SFmiYpKcBeI/AAAAAAAAACQ/ERoWoRVamac/s1600-h/opera.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_pJDgZETUgJY/SFmiYpKcBeI/AAAAAAAAACQ/ERoWoRVamac/s400/opera.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5213376587908253154" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This makes Opera, what, almost 4 times faster? Meh. I'll edit and post sunspider next.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-1644247793387533193?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/1644247793387533193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=1644247793387533193' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/1644247793387533193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/1644247793387533193'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/06/internet-opera-wins-iii.html' title='[Internet] Opera Wins III'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_pJDgZETUgJY/SFmiYpKcBeI/AAAAAAAAACQ/ERoWoRVamac/s72-c/opera.png' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-6014713978897965264</id><published>2008-06-15T19:36:00.005-04:00</published><updated>2008-06-15T23:59:39.538-04:00</updated><title type='text'>[Programming] Java.</title><content type='html'>Those of you that know me have undoubtedly heard my bitching about Java. Well, I am going to try and present a un-biased comparison between Java and other languages in relation to functionality. Yes - Rodney, this &lt;span style="font-weight:bold;"&gt;will&lt;/span&gt; be interesting.&lt;br /&gt;&lt;br /&gt;[*] Ease of Coding:&lt;br /&gt;&gt; The Winner: Python&lt;br /&gt;Many complain that Python syntax is too lax and that 'a variable can be ANYTHING!!!'.&lt;br /&gt;Well, that's a good thing.&lt;br /&gt;&gt; Why Java Sucks at This: &lt;br /&gt;Java syntax is pretty C-like, and I hate the verbosity. I do prefer Java syntax over Perl's, though Perl is infinitely more useful.&lt;br /&gt;&lt;br /&gt;[*] Speed (Execution Time):&lt;br /&gt;&gt; The Winner: C++&lt;br /&gt;I don't even need a valid argument here; if you doubt me, go take your code and write a flawless C++ equivalent. Then bring me profiling results from both projects (or don't, seeing as all I'm going to do is tell you 'I told you so.').&lt;br /&gt;&gt; Why Java Sucks at This:&lt;br /&gt;Unless you can natively run Java bytecode (SPARC comps), then you know that you need a JVM, a JRE, a JDK, an SDK, an IDE, a UML editor, various plugins, lots of time, a high-speed bandwith connection, and lots of patience to get a complete working Java programming environment. I'm talking about 1gb+ of downloads.&lt;br /&gt;After you put up with that crap, your Java code has to compile.&lt;br /&gt;Then, your binary has to call the JVM.&lt;br /&gt;Right before that, the JRE has got to run a trillion checks and prompt you for updates or tell you to by SUN's crap.&lt;br /&gt;Then after the JVM's glacial load time, it will decide whether it feels like interpreting your Java or not.&lt;br /&gt;When it does, it will (very slowly) check your code for errors or deprecated statements.&lt;br /&gt;Then, if it hasn't randomly crashed or had memory leaks or encountered some bizarre error, it will convert the Java bytecode into something your OS can work with. Then, things happen. Slowly.&lt;br /&gt;&lt;br /&gt;It can take a noob anywhere up to 4 hours to download &amp; install Java, write a hello world CLI app, and then compile-&gt;interpret-&gt;and execute it. May I remind you that this can be done in bash with&lt;br /&gt;&lt;br /&gt;$ echo "#include iostream.h\n int main(void){std::cout &lt;&lt; 'Hello World.\n';}" &gt;&gt; hw.cpp &amp;&amp; gcc hw.cpp -O3 -march=native -o hw &amp;&amp; chmod 0777 hw &amp;&amp; ./hw&lt;br /&gt;#or&lt;br /&gt;$ python -c "print 'Hello World.'"&lt;br /&gt;#or&lt;br /&gt;$ echo 'Hello World'&lt;br /&gt;#or&lt;br /&gt;$ tiemu -mod=83 -BASIC=':ClrHome:DISP "HELLO WORLD."'&lt;br /&gt;#or&lt;br /&gt;$ echo "(printf 'Hello World.')" |xargs mred&lt;br /&gt;#or&lt;br /&gt;$ zenity --info --text "Hello World."&lt;br /&gt;#or&lt;br /&gt;$ brainfuck "++&gt;++++++&gt;+++++&lt;+[&gt;[-&gt;+&lt;]&lt;-&gt;++++++++++&lt;]&gt;&gt;.&lt;[-]&gt;[-&lt;++&gt;]&lt;----------------. ---------------.+++++.&lt;+++[-&lt;++++++++++&gt;]&lt;.&gt;&gt;+.++++++++++.&lt;&lt;.&gt;&gt;+.------------.---.&lt;&lt;.&gt;&gt;---.+++.++++++++++++++.+.&lt;&lt;+.[-]++++++++++"&lt;br /&gt;?&lt;br /&gt;&lt;br /&gt;[*] Least Crappy:&lt;br /&gt;&gt; The Winner: Z80 ASM&lt;br /&gt;No wasted code, fast, efficent (relatively), and powerful.&lt;br /&gt;&gt; Why Java Sucks at This:&lt;br /&gt;Java is full of the essence of SUK.&lt;br /&gt;&lt;br /&gt;* I &lt;span style="font-weight:bold;"&gt;DO&lt;/span&gt; expect flame.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-6014713978897965264?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/6014713978897965264/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=6014713978897965264' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/6014713978897965264'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/6014713978897965264'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/06/programming-java.html' title='[Programming] Java.'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-1188880139293689935</id><published>2008-06-15T18:48:00.006-04:00</published><updated>2008-06-15T18:58:14.113-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='images'/><category scheme='http://www.blogger.com/atom/ns#' term='facebook'/><category scheme='http://www.blogger.com/atom/ns#' term='loading'/><category scheme='http://www.blogger.com/atom/ns#' term='opera'/><title type='text'>[Internet] Opera Wins II.</title><content type='html'>There have been (in the past, as well as now) comments about Opera's lack of Facebook skillz and image loading issues. Well, suck on this bitches;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_pJDgZETUgJY/SFWcqsTYZ_I/AAAAAAAAACI/1ysow0McdFA/s1600-h/operaimage.png"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_pJDgZETUgJY/SFWcqsTYZ_I/AAAAAAAAACI/1ysow0McdFA/s400/operaimage.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5212244401012107250" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This page was loaded very quickly, and it didn't do any of that random 'page shaking' crap Gecko-based browsers (e.g Firefox, Flock) do. Also note that the chat and notification works perfectly, something even the latest firefox3rc sucks at.&lt;br /&gt;&lt;br /&gt;Oh, and for you "I like AdBlock too much to switch!" and "Opera doesn't look right!" people, just look at the screenshot. No ads, and definitely a sexier interface than Firefox... Also featuring System Theme integration for Windows AND Linux AND Mac.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;---&lt;br /&gt;Yes, I use a Vista theme on XP. As much as I detest all things Microsoft, it makes NO F****** SENSE to press the damn Start button every time you want to shutdown your computer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-1188880139293689935?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/1188880139293689935/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=1188880139293689935' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/1188880139293689935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/1188880139293689935'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/06/internet-opera-wins-ii.html' title='[Internet] Opera Wins II.'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_pJDgZETUgJY/SFWcqsTYZ_I/AAAAAAAAACI/1ysow0McdFA/s72-c/operaimage.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-27363016690972502</id><published>2008-06-12T18:24:00.000-04:00</published><updated>2008-06-12T18:25:42.986-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='owned'/><title type='text'>[Other] OWNED! PWNT! LMFAO!</title><content type='html'>&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/te1nyK4Y-sM&amp;hl=en"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/te1nyK4Y-sM&amp;hl=en" type="application/x-shockwave-flash" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br&gt;&lt;/br&gt;&lt;/br&gt;&lt;br /&gt;Nuff sed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-27363016690972502?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/27363016690972502/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=27363016690972502' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/27363016690972502'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/27363016690972502'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/06/other-owned-pwnt-lmfao.html' title='[Other] OWNED! PWNT! LMFAO!'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-4543913334116331643</id><published>2008-06-12T16:56:00.003-04:00</published><updated>2008-06-12T17:02:27.838-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='firefox'/><category scheme='http://www.blogger.com/atom/ns#' term='vs'/><category scheme='http://www.blogger.com/atom/ns#' term='internet'/><category scheme='http://www.blogger.com/atom/ns#' term='web'/><category scheme='http://www.blogger.com/atom/ns#' term='opera'/><title type='text'>[Internet] Opera Wins.</title><content type='html'>&lt;p&gt;Firefox 3 vs. Opera 9.5? As much as I hate to say this;&lt;/p&gt;&lt;p&gt;Opera WINS. Big time.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;This isn't a formal comparison - but let's just consider these things;&lt;/p&gt;&lt;p&gt;* Cold Start Load Time Winner: Opera (by FAR)&lt;/p&gt;&lt;p&gt;* Warm Start Load Time Winner: Opera&lt;/p&gt;&lt;p&gt;* Standards Compliancy Winner: Opera&lt;/p&gt;&lt;p&gt;* Features Winner: Tie!!! Opera lacks features like the cool find and good spellcheck, but firefox is a real resource hog about it.&lt;/p&gt;&lt;p&gt;* Most Likely to be Supported Winner: Firefox (Though YOU can help change that.)&lt;/p&gt;&lt;p&gt;* Cooler Name Winner: Firefox (No contest. Opera is a pretty dumb name, no offense.)&lt;/p&gt;&lt;p&gt;* General Cool Factor Winner: Firefox (Now if Opera goes Open Source and gets a decent ad campaign...)&lt;/p&gt;&lt;p&gt;* Raw Speed Winner: Opera&lt;/p&gt;&lt;p&gt;* CSS/Javascript Speed Winner: Opera (by FAR)&lt;/p&gt;&lt;p&gt;* Page Load Time Winner: Opera&lt;/p&gt;&lt;p&gt;* Innovation/Integration Winner: Opera (it integrates very well with Linux with full static qt and gtk supported binaries - and it has it's own mail and chat and other cool stuff).&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-4543913334116331643?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/4543913334116331643/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=4543913334116331643' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/4543913334116331643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/4543913334116331643'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/06/internet-opera-wins.html' title='[Internet] Opera Wins.'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-3285879406039659657</id><published>2008-06-05T23:08:00.002-04:00</published><updated>2008-06-05T23:18:15.691-04:00</updated><title type='text'>[Other] Obama. Yes.</title><content type='html'>Obama and Clinton are talking, and to tell you the truth, it's been long overdue.&lt;br /&gt;&lt;br /&gt;Well, they have 'spoken' to each other lately, just in a different scope of things (I hope).&lt;br /&gt;&lt;br /&gt;In the earlier days, I thought that Ms. Clinton was running a dirty campaign and generally bitching a tad too much, but I realize that in the end - it's helped Obama.&lt;br /&gt;&lt;br /&gt;Imagine if all the wonderful BS Clinton pulled out on Obama arose a week before November? Hell for Dems, I'd say.&lt;br /&gt;&lt;br /&gt;Let's face it, we know there's going to be a democratic president, and we know now that it's going to Obama.&lt;br /&gt;&lt;br /&gt;What we don't know is what the hell he's going to do that will fix partisanship and the remove the murky cloud the 'special interest' groups put over Washington. The rest of the 'issues' would go the same way with either Clinton/Obama I think. Their policies aren't radically different or anything.&lt;br /&gt;&lt;br /&gt;If Clinton decides to bitch some more, and NOT run with Obama - the Democrats are going to be divided, weaker, and less likely to get things done!&lt;br /&gt;&lt;br /&gt;Proof? Look at Congress. With all of the major talk a while back about the Dems sweeping the houses, we still have plenty of Gridlock, the War is still going on, and our health class [b]still[/b] does not have 1/4 the textbooks it needs (well, not that I'd like to see that one change but still).&lt;br /&gt;&lt;br /&gt;Meh. I hope things get fixed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-3285879406039659657?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/3285879406039659657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=3285879406039659657' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/3285879406039659657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/3285879406039659657'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/06/other-obama-yes.html' title='[Other] Obama. Yes.'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-5046827679130071673</id><published>2008-06-03T13:50:00.002-04:00</published><updated>2008-06-03T13:51:32.723-04:00</updated><title type='text'>[Linux] And you thought I was just f***ing around,</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://i238.photobucket.com/albums/ff6/vminch/bootchart.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;" src="http://i238.photobucket.com/albums/ff6/vminch/bootchart.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-5046827679130071673?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/5046827679130071673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=5046827679130071673' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/5046827679130071673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/5046827679130071673'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/06/linux-and-you-thought-i-was-just-fing.html' title='[Linux] And you thought I was just f***ing around,'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-4493943017044163955</id><published>2008-05-30T14:57:00.003-04:00</published><updated>2008-05-30T15:47:26.385-04:00</updated><title type='text'>[Linux] I'm All Arch!</title><content type='html'>After 3 days of intensive Arch hacking, my Pentium 4 computer with a crappy Intel i810 Graphics Card and 1 GB of RAM is booting in 16 seconds, from GRUB to Compiz Fusion.&lt;br /&gt;&lt;br /&gt;This is a vast improvement over Ubuntu (which took 40 seconds to get to GDM, never mind Compiz...)!&lt;br /&gt;&lt;br /&gt;I am extremely excited about Arch. It's much faster (not only boot time, but general responsiveness) than your average distro and so far, it's community has proven itself to be far more resourceful, helpful, and encouraging than any other I have seen.&lt;br /&gt;&lt;br /&gt;As soon as you post one question on their forums, you get 10 constructive responses in less than 30 minutes! Their wiki is also a great resource, their articles on Xorg and Gnome setup are better than every random howto I've seen combined!&lt;br /&gt;&lt;br /&gt;Oh, and there's no doubt - Pacman KILLS apt. You can get from a installation CD to a fullscreen terminal to a complete Desktop Environment in under 30 minutes, mainly because Pacman just rocks. The user repositories and yaourt are pretty awesome too. You know my post about building bleeding compiz code from git? That can be done with this command;&lt;br /&gt;&lt;br /&gt;$ yaourt -S compiz-git&lt;br /&gt;&lt;br /&gt;Yeah. Yeah. That's kickass.&lt;br /&gt;&lt;br /&gt;COME TO THE DARK SIDE!!! WE HAVE PKGBUILDS!!!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://i238.photobucket.com/albums/ff6/vminch/AnotherOne.png"&gt;Screenshot: Cube&lt;/a&gt;&lt;br /&gt;&lt;a href="http://i238.photobucket.com/albums/ff6/vminch/Expo.png"&gt;Screenshot: Expo&lt;/a&gt;&lt;br /&gt;&lt;a href="http://i238.photobucket.com/albums/ff6/vminch/ArchMenu.png"&gt;Screenshot: ArchMenu&lt;/a&gt;&lt;br /&gt;&lt;a href="http://i238.photobucket.com/albums/ff6/vminch/EaseOfArch.png"&gt;Screenshot: Ease Of Arch&lt;/a&gt;&lt;br /&gt;&lt;a href="http://i238.photobucket.com/albums/ff6/vminch/GimpIN.png"&gt;Screenshot: GimpIN'&lt;/a&gt;&lt;br /&gt;&lt;a href="http://i238.photobucket.com/albums/ff6/vminch/Cube.png"&gt;Screenshot: Capless&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;More to come...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-4493943017044163955?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/4493943017044163955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=4493943017044163955' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/4493943017044163955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/4493943017044163955'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/05/linux-im-all-arch.html' title='[Linux] I&apos;m All Arch!'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-6017019440361661690</id><published>2008-05-27T12:07:00.004-04:00</published><updated>2008-05-27T12:44:04.205-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='arch'/><category scheme='http://www.blogger.com/atom/ns#' term='arch linux'/><category scheme='http://www.blogger.com/atom/ns#' term='zenwalk'/><category scheme='http://www.blogger.com/atom/ns#' term='fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='quest'/><category scheme='http://www.blogger.com/atom/ns#' term='distro'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><category scheme='http://www.blogger.com/atom/ns#' term='suse'/><category scheme='http://www.blogger.com/atom/ns#' term='hopping'/><title type='text'>[Linux] That's It! I'm going to give Arch a shot.</title><content type='html'>Yes, I know there are a billion sites that have have distro-quest posts, but this one is about mine, and maybe you'll actually make a decision after reading it ;). Here goes...&lt;br /&gt;&lt;br /&gt;I've been with Ubuntu for 11 months now, and I've had my ups and downs.&lt;br /&gt;It was my first Linux distro, and I eventually grew a &lt;span style="font-weight: bold;"&gt;lot&lt;/span&gt; happier with it than I was with XP.&lt;br /&gt;&lt;br /&gt;During that time, I gave Suse, Fedora, Zenwalk, and Gentoo a shot to impress me (on a spare partition). I'm sorry to say this, but I came screaming back to Ubuntu. Maybe it was the GNOME/KDE issue, or maybe it was the ridiculous installation processes for these distros - but none of these 'float my boat'. (I recently got Gentoo working, and it's not bad at all - but I just don't have the time to polish it up like I can Ubuntu.)&lt;br /&gt;&lt;br /&gt;I have mixed impressions on Zenwalk - even though it is by all definitions an excellent distro, I just can't seem to get used to it. The desktop environment is definitely not as sleek as Ubuntu's, yet the boot process is a good 6 seconds faster... Netpkg (Zenwalk package manager) is sub-standard, but at least the distro isn't as bloated as Suse or (well any KDE distro).&lt;br /&gt;&lt;br /&gt;And now, after this (admittedly small) amount of distro-hopping - I've found what looks like my dream distro. Arch Linux. Let me explain myself;&lt;br /&gt;&lt;br /&gt;&gt; I have an i686 computer. Whaddya' know, Arch is i686 optimized!&lt;br /&gt;&gt; &lt;span style="font-style: italic;"&gt;No offense to the etymology, community, or meaning of &lt;span style="font-weight: bold;"&gt;Ubuntu&lt;/span&gt;, &lt;/span&gt;but &lt;span style="font-weight: bold;"&gt;Arch &lt;/span&gt;definitely sounds cooler.&lt;br /&gt;&gt; I have enough Linux background to compile a kernel with just a root shell and an internet conenction - so I can probably handle installing Arch ;).&lt;br /&gt;&gt; What drew me to Gentoo was the intense customization opportunities, but I like Ubuntu because it just works. Arch is a good mix between the two.&lt;br /&gt;&gt; pacman beats apt-get. you can rebuild all packages on your system (from source) if you wish with one command.&lt;br /&gt;&gt; Arch has a very strong, intelligent, and dedicated forums/community (and even 'sub'-communities. These guys love Arch so much that they have ported Arch to other architectures, and there is a special version of KDE fully optimized for Arch).&lt;br /&gt;&gt; Arch has rapidly growing repos.&lt;br /&gt;&gt; Arch forums load faster than Ubuntu's (bad reason, but still)&lt;br /&gt;&gt; Arch is not bloated&lt;br /&gt;&lt;br /&gt;The most important reason I think Arch is great is that people are &lt;span style="font-style: italic;"&gt;raving &lt;/span&gt;about it. From increased speed to usability - lots of people are checking out Arch. I even found a couple threads on distro-specific forums talking about how users are switching to Arch all of the time O_O.&lt;br /&gt;&lt;br /&gt;I think I'm going to give Arch a shot, and stick with it. I'll post how it goes later.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-6017019440361661690?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/6017019440361661690/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=6017019440361661690' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/6017019440361661690'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/6017019440361661690'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/05/linux-thats-it-im-going-to-give-arch.html' title='[Linux] That&apos;s It! I&apos;m going to give Arch a shot.'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-2617857661032079745</id><published>2008-05-26T19:52:00.010-04:00</published><updated>2008-05-27T11:20:39.293-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='compiz'/><category scheme='http://www.blogger.com/atom/ns#' term='bleeding'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='git'/><category scheme='http://www.blogger.com/atom/ns#' term='fusion'/><category scheme='http://www.blogger.com/atom/ns#' term='compile'/><title type='text'>[Linux] Bleeding Compiz Fusion From GIT</title><content type='html'>To put it shortly, it is &lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;amazing&lt;/span&gt;. This post is cool too, don't miss it!&lt;br /&gt;(HOWTO in it :D.)&lt;br /&gt;&lt;br /&gt;Normally, people complain that their compiled code (in most cases, it is a &lt;span style="font-weight: bold;"&gt;stable&lt;/span&gt; kernel) runs at about the same speed as a pre-compiled generic executable.&lt;br /&gt;&lt;br /&gt;But in this case, bleeding compiz code runs noticeably faster than the version that ships with Ubuntu 8.04. Not only that, but new features such as cube deformation, atlantis, fish-eye, enhanced water (&amp;amp; animations), and improved snappiness are fantastic.&lt;br /&gt;&lt;br /&gt;I was about to post screenshots of my slick new desktop, but &lt;span style="font-weight: bold;"&gt;I decided to write a HOWTO&lt;/span&gt; for you people instead.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note&lt;/span&gt;: I am a Debian/Ubuntu user, so I will post instructions assuming you have apt (Advanced Package Tool) available. I also tend to favor Gnome, so please comment if you have KDE/XFCE or rpm/yum/emerge/pacman/urpmi/w/e questions.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note #2: [code] [/code] tags &lt;/span&gt;indicate that you should copy and paste the text between them into a &lt;span style="font-weight: bold;"&gt;terminal &lt;/span&gt;- and then hit enter. (You really do have to specify, you know?)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note #3:&lt;/span&gt; I also do not assume any responsibility for damages these commands cause, though you are free to cuss me out if they break anything on your comp. This worked for me... BUT IT MIGHT NOT FOR YOU.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;------------------ Compiz From GIT HowTo ------------------&lt;br /&gt;Edit: &lt;a href="http://www.mediafire.com/?kmjgygzsznh"&gt;Here is an experimental script I wrote (2:30 A.M) to automate this. Enjoy.&lt;/a&gt;&lt;br /&gt;&lt;a href="http://download291.mediafire.com/lx1jzdkzmsdg/kmjgygzsznh/vskCFgit.sh"&gt;Direct Link&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;1a. Please update yourself;&lt;br /&gt;[code]&lt;br /&gt;sudo apt-get update &amp;amp;&amp;amp; sudo apt-get upgrade&lt;br /&gt;[code]&lt;br /&gt;&lt;br /&gt;1b.  If you are under Gnome/XFCE, install;&lt;br /&gt;[code]&lt;br /&gt;sudo apt-get install libgconf2-devlibgnome-desktop-dev libgnome-window-settings-dev xorg-dev&lt;br /&gt;[/code]&lt;br /&gt;If you are under KDE, install;&lt;br /&gt;[code]&lt;br /&gt;sudo apt-get install kde-devel kde4-devel&lt;br /&gt;[/code]&lt;br /&gt;&lt;br /&gt;2. Now, for everyone, install;&lt;br /&gt;[code]&lt;br /&gt;sudo apt-get install build-essential libxcomposite-dev libpng12-dev libsm-dev libxrandr-dev libxdamage-dev libxinerama-dev libstartup-notification0-dev  libgl1-mesa-dev libglu1-mesa-dev libmetacity-dev librsvg2-dev libdbus-1-dev libdbus-glib-1-dev gitweb curl autoconf automake automake1.9 libtool intltool libxslt1-dev xsltproc libwnck-dev python-dev libX11-xcb-dev pyrex-mode python-pyrex x11proto-scrnsaver-dev libxss-dev xorg-dev&lt;br /&gt;[/code]&lt;br /&gt;&lt;br /&gt;3. Now, please exit Compiz Fusion ([code]metacity --replace[/code])&lt;br /&gt;&lt;br /&gt;4. You will need to uninstall;&lt;br /&gt;[code]&lt;br /&gt;sudo apt-get remove libgnome-compiz-manager0 compiz-extra libcompizconfig0 compiz-dev compiz-gtk compiz-kde compiz-settings libcompizconfig-backend-gconf compiz-config-ini gcompizthemer compiz-plugins libgnome-compiz-manager-dev compizconfig-backend-kde compizconfig-settings-manager python-compizconfig compiz-config-gnome taskbar-compiz compizconfig-plugin compiz-freedesktop-dev compiz-fusion-plugins-unofficial compiz-bcop compiz-ccs-settings-manager libgnome-compiz-manager libcompizconfig0-dev compiztools compizconfig-settings-legacy compiz-fusion-plugins-extra compiz-compcomm-plugins-main compiz-fusion-plugins-unsupported compiz compiz-extra-plugins compiz-fusion-plugins-main libcompizconfig-backend-kconfig compiz-core compiz-decorator gnome-compiz-manager compiz-fusion-plugins-main compiz-gnome libcompizconfig-dev libgnome-compiz-manager0-dev libcompizconfig0 libcompizconfig-backend-gconf libcompizconfig0-dev libcompizconfig-backend-kconfig libcompizconfig-dev libdecoration0&lt;br /&gt;[/code]&lt;br /&gt;&lt;br /&gt;5a. Now, the final step;&lt;br /&gt;[code]&lt;br /&gt;cd ~&lt;br /&gt;mkdir .CFgit&lt;br /&gt;cd .CFgit&lt;br /&gt;git clone git://anongit.compiz-fusion.org/users/omega/scripts&lt;br /&gt;cd scripts&lt;br /&gt;chmod a+x git-compiz&lt;br /&gt;./git-compiz --purge&lt;br /&gt;[/code]&lt;br /&gt;&lt;br /&gt;5b. I didn't exactly lie... If you have;&lt;br /&gt;&gt;&gt;&gt; GNOME&lt;br /&gt;[code]&lt;br /&gt;./git-compiz --with-desktop=gnome&lt;br /&gt;[/code]&lt;br /&gt;&gt;&gt;&gt; KDE&lt;br /&gt;[code]&lt;br /&gt;./git-compiz --with-desktop=kde&lt;br /&gt;[/code]&lt;br /&gt;&gt;&gt;&gt; KDE4&lt;br /&gt;[code]&lt;br /&gt;./git-compiz --with-desktop=kde4&lt;br /&gt;[/code]&lt;br /&gt;&lt;br /&gt;And that's how to install.&lt;br /&gt;To update your compiz from git - cd back to ~/.CFgit/scripts and execute;&lt;br /&gt;[code]&lt;br /&gt;cd ~/.CFgit/scripts&lt;br /&gt;./git-compiz --rebuild=true&lt;br /&gt;[/code]&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;A BIG thank you to all of you compiz, emerald, and plugin devs!&lt;br /&gt;Special thanks to omega for his/her wonderful script.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div style="text-align: left;"&gt;Have fun with your shiny new desktops, assuming they haven't borked yet ;).&lt;br /&gt;&lt;br /&gt;Post comments on any problems with my instructions!!!&lt;br /&gt;&lt;/div&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-2617857661032079745?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/2617857661032079745/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=2617857661032079745' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/2617857661032079745'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/2617857661032079745'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/05/linux-bleeding-compiz-fusion-from-git.html' title='[Linux] Bleeding Compiz Fusion From GIT'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2998720509734996985.post-8588000014300610022</id><published>2008-05-26T19:42:00.003-04:00</published><updated>2008-07-02T16:58:24.152-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='first'/><category scheme='http://www.blogger.com/atom/ns#' term='post'/><category scheme='http://www.blogger.com/atom/ns#' term='ballmer'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='connect4'/><category scheme='http://www.blogger.com/atom/ns#' term='budapest'/><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><title type='text'>[News] The First Post</title><content type='html'>Hello,&lt;br /&gt;&lt;br /&gt;This is the first post on vglob - a blog mainly about (but definitely not restricted to) Linux and Programming.&lt;br /&gt;&lt;br /&gt;Content on here may range from anywhere between how to create an unbeatable Connect4 application using Python or watching a video of &lt;a href="http://www.youtube.com/watch?v=mtBQ4UCXQeo"&gt;Steve Ballmer getting egged in Budapest&lt;/a&gt; by an angry white guy.&lt;br /&gt;&lt;br /&gt;Some of the language may seem mildly offensive, but I assure you, the phrase "angry white guy" is probably as bad as it's going to get - just out of politeness. You may, however, feel free to use any language you are comfortable with.&lt;br /&gt;&lt;br /&gt;--- vsk&lt;br /&gt;&lt;br /&gt;(P.S &lt;a style="left: 33px ! important; top: -3px ! important;" title="Click here to block this object with Adblock Plus" class="abp-objtab-05136313040193896 visible ontop" href="http://www.youtube.com/v/mtBQ4UCXQeo&amp;amp;hl=en"&gt;&lt;/a&gt;&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/mtBQ4UCXQeo&amp;amp;hl=en"&gt;&lt;param name="wmode" value="transparent"&gt;&lt;embed src="http://www.youtube.com/v/mtBQ4UCXQeo&amp;amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt; )&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.facebook.com/people/Vedant_Kumar/620267505" title="Vedant Kumar's Facebook profile" target=_TOP&gt;&lt;img src="http://badge.facebook.com/badge/620267505.342.258094388.png" border=0 alt="Vedant Kumar's Facebook profile"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2998720509734996985-8588000014300610022?l=vglob.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://vglob.blogspot.com/feeds/8588000014300610022/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2998720509734996985&amp;postID=8588000014300610022' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/8588000014300610022'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2998720509734996985/posts/default/8588000014300610022'/><link rel='alternate' type='text/html' href='http://vglob.blogspot.com/2008/05/news-first-post.html' title='[News] The First Post'/><author><name>mqr</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry></feed>
