<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <atom:link href="http://loungers.synthasite.com/board/tag/board.rss" rel="self" type="application/rss+xml" />
        <title>board</title>
        <description>board</description>
        <link>http://loungers.synthasite.com/board/tag/board.php</link>
        <lastBuildDate>Thu, 11 Jun 2026 19:30:19 +0100</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Ever heard of Factory Methods?</title>
            <link>http://loungers.synthasite.com/board/tag/board/ever-heard-of-factory-methods-</link>
            <description>&lt;br&gt;Whenever we want an object to initialize itself, we normally go for public constructor definition. But have you ever think about static factory method? A class can provide similar or some addition fetchers as in constructor to its clients with static factory method.&lt;br&gt;&lt;br&gt;Factory methods are simply methods that instantiate objects. Some factory methods in the Java 2 API that you would likely have used are the getInstance() and valueOf() methods. getInstance() is the conventional instantiation method in singletons, while valueOf() are often type-conversion methods, like in String.valueOf(int i).&lt;br&gt;&lt;br&gt;Constructor allows object to initialize themselves when they are created. Once defined, the constructor is automatically called immediately as the object is created, before the new operator completes.&lt;br&gt;&lt;br&gt;A simple example of constructor:&lt;br&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;ConstructorExample.java&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;class ConstructorDemo&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;{&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public int a=42;&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ConstructorDemo()&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println(”a = ” + a);&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;}&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;class ConstructorExample&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;{&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static void main(String [] args)&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ConstructorDemo ConObj = new ConstructorDemo();&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;}&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(128, 255, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Output:&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(128, 255, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;a = 42&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;There is a less popular technique that should also be a part of every programmer’s toolkit for the similar propose of constructor. A class can provide a public static factory method, which is simply a static method that returns an instance of the class. When a method is static, it can be accessed before any objects of its class are created, and without reference to any object.&lt;br&gt;Static factory methods have names&lt;br&gt;&lt;br&gt;Static factory methods have names&lt;br&gt;A class can have only a single constructor with a given signature, which is a restriction in cases where a class needs to be able to be instantiated using identical parameter lists. In cases like this, you can replace constructors with static factory methods with more intuitive names that highlight their differences.&lt;br&gt;&lt;br&gt;Static factory methods can improve performance&lt;br&gt;This is because static factory methods do not have to actually instantiate new objects each time they are invoked. This is what allows for the Singleton pattern, where a single instance is returned. It also allows instances to be cached within the object in cases where object instantiation is expensive (like for the case of instantiation of fields from a database) or frequently done.&lt;br&gt;&lt;br&gt;Static factory methods can return a subtype of their return type&lt;br&gt;This allows for interfaces to be returned by static factory methods, which is best exemplified in the Collections Framework. Needless to say, forcing a client to refer to the returned object by its interface rather than its actual class is a good practice.&lt;br&gt;&lt;br&gt;Also, the class of the object returned can be private (non-public), so there is a degree of encapsulation where the private class can be modified without impacting clients of the API (possibly for bug-fixing or improvements, or just plain maintainence). The private classes can also vary depending on the parameters to the static factory, so long as they are subtypes of the return type, allowing for greater flexibility.&lt;br&gt;&lt;br&gt;Classes without public or protected constructors cannot be subclassed&lt;br&gt;This is an unavoidable fact, so classes designed for inheritance must have at least 1 public constructor to be able to be subclassed.&lt;br&gt;&lt;br&gt;&lt;br&gt;A simple example of a static factory method:&lt;br&gt;&lt;br&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;StaticExample.java&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;class StaticDemo&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;{&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; static int a=42;&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; static void callme()&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.out.println(”a = ” + a);&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;}&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;class StaticExample&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;{&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public static void main(String [] args)&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StaticDemo.callme();&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;}&lt;/span&gt;&lt;br&gt;&lt;b&gt;&lt;br&gt;&lt;span style=&quot;color: rgb(128, 255, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Output:&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(128, 255, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;a = 42&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;Providing a static factory method instead of a public constructor has both advantages and disadvantages.&lt;br&gt;&lt;br&gt;The advantages of static factory method are:&lt;br&gt;&lt;ol&gt;&lt;li&gt;Unlike constructor, it has names which make class easier to use.&lt;/li&gt;&lt;li&gt;Unlike constructor, they are not required to create a new object each time they are invoked.&lt;/li&gt;&lt;li&gt;Unlike constructor, they can return an object of any subtype of their return type.&lt;/li&gt;&lt;/ol&gt;&lt;br&gt;The disadvantages of static factory methods are:&lt;br&gt;&lt;ol&gt;&lt;li&gt;Classes without public or protected methods cannot be subclassed.&lt;/li&gt;&lt;li&gt;They are not readily distinguishable from other static method.&lt;/li&gt;&lt;/ol&gt;&lt;br&gt;&lt;br&gt;In conclusion, you can use static factory methods for a more intuitive API, to improve performance via object-caching, to implement singletons, in interface-based frameworks, and to return objects of private classes; and use constructors in classes designed for inheritance (there shouldn’t be many of these) and for greater visibility in API documentation (since they appear in a separate table in standard Javadocs).&lt;br&gt;&lt;br&gt;</description>
            <pubDate>Wed, 04 Feb 2009 02:26:00 +0100</pubDate>
        </item>
        <item>
            <title>LAU Byblos Computer Science School in action</title>
            <link>http://loungers.synthasite.com/board/tag/board/lau-byblos-computer-science-school-in-action</link>
            <description>&lt;br&gt;Wednesday, January 21st, 2009, 2:00 pm. That was the date when the computer science department, faculty and students, met for discussions.&lt;br&gt;&lt;br&gt;It was kinda cool gathering in a friendly atmosphere that allowed the students to chit-chat with their teachers. The new generation of &lt;b&gt;&lt;span style=&quot;color: rgb(0, 191, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;LAU&lt;/span&gt;&lt;/b&gt;’s computer scientists was introduced to the seniors as well as to the faculty of the school.&lt;br&gt;&lt;br&gt;The first &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;thread &lt;/span&gt;&lt;/b&gt;was about the concerns and unsatisfactions of the new and continuing students according to their learning experience at the Computer Science Program. The new students had wonderful ideas to claim as well as the more experienced students who called for learning a second programming language in the program.&lt;br&gt;&amp;nbsp;&lt;br&gt;Later on, the gathering became &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;multithreaded &lt;/span&gt;&lt;/b&gt;in a very funny way where every two or three students started a conversation with one of the faculty members. Nevertheless, it was very profiting for the new students who some of them is getting ready to an interview about his knowledge in Java, for he might start working on a university project with a faculty member and get his first professional income. The seniors as well, they preferred to pick &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;threads &lt;/span&gt;&lt;/b&gt;about their graduate programs and universities and asked the faculty for some advising.&lt;br&gt;&lt;br&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img class=&quot;yui-img&quot; src=&quot;http://loungers.synthasite.com/board/tag/resources/csm.png&quot; style=&quot;width: 325px;&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;div style=&quot;text-align: left;&quot;&gt;Some handouts were distributed to the attendees, mentioning the educational objectives and learning outcome of both the program and the student.&lt;br&gt;&lt;br&gt;The program must prepare computer science graduates for computer science related careers, locally and abroad, with a broad knowledge of the computing field, related principles, tools, and theories. That means &lt;b&gt;&lt;span style=&quot;color: rgb(0, 191, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;LAU &lt;/span&gt;&lt;/b&gt;computer science graduates must fit easily in local and international computing field related careers.&lt;br&gt;&lt;br&gt;The program must develop graduates who are committed for a life-long learning, capable to work effectively in teams, and who possess good communication skills. That means the graduate student must always be prepared for updates in his field.&lt;br&gt;&lt;br&gt;The program must introduce, outreach and engage by allowing computer science faculty and students to contribute to the community at large. Like organizing training camps for high school students let’s say, or even helping the community on an individual basis like introducing the program to highschoolers of the neighborhood.&lt;br&gt;&lt;br&gt;The program must make the graduates aware of cultural, social, legal, and ethical issues inherent in the discipline of computing. The best example is the “Social and Professional Issues in Computing” course which is also known among students as “Computer Ethics”.&lt;br&gt;&lt;br&gt;The students shall be able to apply their computational and mathematical knowledge in order to solve computational problems of varying complexity.&lt;br&gt;&lt;br&gt;Students shall develop the ability to analyze a problem, identify, define, and verify the computing requirements appropriate to its solution.&lt;br&gt;&lt;br&gt;Students shall have the ability to design, evaluate, and implement an efficient and correct algorithm, computer-based system, process, component, or program that meet desired needs.&lt;br&gt;&lt;br&gt;Students shall learn to work effectively and interactively in teams in order to accomplish a common goal.&lt;br&gt;Students shall develop an understanding of the ethical and social issues related to computing.&lt;br&gt;&lt;br&gt;Students shall have the ability to effectively present, transmit, and communicate their work, written as well as orally, to colleagues and to clients.&lt;br&gt;&lt;br&gt;Students shall develop the ability to analyze the local and global impact of the computing field on individuals, organizations, and society.&lt;br&gt;&lt;br&gt;Students shall have an understanding of current technology trends as well as future directions and shall recognize the need and develop the necessary skills for continued and professional development.&lt;br&gt;&lt;br&gt;Student shall develop the ability to use current techniques, skills, and tools necessary for computing practices.&lt;br&gt;&lt;br&gt;Students shall develop the ability to apply mathematical foundations, algorithmic principles, and computer science theory in the modeling and design of computer-based systems in a way that demonstrates comprehension of the tradeoffs involved in design choices.&lt;br&gt;&lt;br&gt;Students shall develop an understanding of the life cycle for software system development including requirements elicitation, specification, prototyping, design, GUIs, implementation, testing and documentation.&lt;br&gt;&lt;br&gt;And finally, students shall develop an understanding of complexity analysis and various algorithmic paradigms.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;</description>
            <pubDate>Thu, 22 Jan 2009 14:24:42 +0100</pubDate>
        </item>
        <item>
            <title>Power User's Guide to Firefox 3</title>
            <link>http://loungers.synthasite.com/board/tag/board/power-user-s-guide-to-firefox-3</link>
            <description>&lt;br&gt;You already know about &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox &lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;3&lt;/span&gt;'s marquee new features, but now it's time to dig deep and unearth the shortcuts, tweaks, and even Easter eggs that Mozilla marketing doesn't mention. In honor of today's official release of &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt;&lt;/span&gt;—at 10AM Pacific Time—let's dive in past &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt;'s most talked-about feature-set into its lesser-known power uses, tricks, and customizations.&lt;br&gt;&lt;br&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img style=&quot;width: 134px; height: 159px;&quot; class=&quot;yui-img&quot; src=&quot;http://loungers.synthasite.com/board/tag/resources/firefox_3_logo.png&quot;&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Shrink the Super-sized Back Button&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;The very first thing you notice in &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt; is its extra large Back button. While it's actually quite handy—less chance of missing your target!—if the Back button's just too big for your tastes, it's as easy as pie to reduce. Just right-click on Firefox's toolbar, and choose Customize. In the dialog box, select &quot;Use small icons.&quot;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Adjust the Smart Location Bar's Number of Suggestions&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;adjustsuggestion.pngThe &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt; feature that you'll get to know and love the most is the new smart location bar's as-you-type suggestions that learn where you probably want to go as you browse. But if you're feeling like the number of suggestions is too high or too low? Adjust it to your liking in Firefox's configuration area. Here's how.&lt;br&gt;&lt;ol&gt;
&lt;li&gt;Enter about:config into the address bar and hit Enter.&lt;/li&gt;
&lt;li&gt;Press the &quot;I'll be carefull. I promise!&quot; button. (Because you will be.)&lt;/li&gt;
&lt;li&gt;Enter browser.urlbar.maxRichResults in the Filter field to reach this preference.&lt;/li&gt;
&lt;li&gt;Set it to your desired number of suggestions. Three shown here.&lt;/li&gt;
&lt;/ol&gt;

&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Delete Mistyped URL Suggestions and Other Auto-complete Entries&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;shiftdelete.pngWhile the Smart Location bar is quite intelligent, if you enter an incorrect URL—say, to a page that doesn't exist, or a parked domain—&lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt; will still remember it and suggest it again later. (Garbage in, garbage out, as they say.) To remove a mistyped URL from your suggestion list forever, key down to the suggestion and type Shift+Delete on the Mac, and just Delete on Windows. This trick also works for any form auto-complete entry, like if you mistype a username into a login form.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Ditch Obselete Extensions&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;Firefox's philosophy seems to be &quot;stay lean and mean and leave the extras to add-ons.&quot; Nevertheless, &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt; does bake in some functionality that makes some extensions you might love unnecessary. Here are five extensions you won't need with &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt;.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Revert the &quot;AwesomeBar&quot; with Oldbar&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;oldbar.png Firefox's smart location bar (a.k.a. &quot;AwesomeBar&quot;)—which drops down a suggestion list of destinations as you type into it—is extra verbose and extra-tall, since it includes both web site titles and URLs. If you're missing Firefox 2's classic one-line drop-down look, the Oldbar extension can revert the &quot;AwesomeBar&quot; to something less awesome—or at least something that looks less awesome.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Trick Out Your Smart Bookmarks&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;smartbookmarks1.png Like iTunes Smart Playlists and saved search folders in OS X and Vista, &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt;'s Smart Bookmarks are dynamic lists of URLs generated by certain search criteria. Here's how to create your own collections of Smart Bookmarks using search parameters. Hint: Add the most frequent pages you visit on Lifehacker.com by bookmarking place:queryType=0&amp;amp;sort=8&amp;amp;maxResults=5&amp;amp;domain=lifehacker.com.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Set Gmail as Your Default Email client—Without an Add-on&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;gmailfx3.png &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt;'s filetype handling mechanism can now associate web applications as well as desktop applications with certain files. This opens the door to possibilities like automatically launching links to ical files in your web-based calendar app, or opening your webmail when you click on email links. While most webapps have to catch up to &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt; to enable this functionality, one we already know and love is already there. Here's how to launch Gmail when you click mailto: links on web pages.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Say Hello to the Firefox Robots&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;You already know about the age-old Firefox about:mozilla Easter egg. Well, &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt; has a new Easter egg that pays homage to its robot mascot. Type about:robots into the &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt; address bar to get a fun page with a list of robot pop culture references, from I, Robot to Blade Runner to Battlestar Galactica to Futurama.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Enable Spellchecking in One-line Input Fields&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;typo.png This tweak goes back to Firefox 2, but is still just as useful and functional in &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt;, especially if you're a web writer. In about:config, set layout.spellcheckDefault value equal to 2 to enable spell-checking in single line input fields as well as textareas. (Less typos in your email subject lines and blog post titles!) Here are a few more Firefox about:config tweaks.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 64, 255);&quot;&gt;Mac Users: Add Favicons to Your Bookmark Toolbar&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;Mac users who are rockin' &lt;span style=&quot;color: rgb(255, 64, 64);&quot;&gt;Firefox 3&lt;/span&gt;'s new slick Mac-like theme—but who miss their bookmarks' favicons—can easily add web site icons to their toolbar with a little tweak.&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
            <pubDate>Fri, 19 Dec 2008 13:12:57 +0100</pubDate>
        </item>
        <item>
            <title>What are 3G networks??!</title>
            <link>http://loungers.synthasite.com/board/tag/board/what-are-3g-networks-</link>
            <description>&lt;br&gt;What exactly are &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G networks&lt;/span&gt;, and why should we care? Here’s the story.. ;)&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-size: 17px;&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: rgb(64, 127, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Phoning It In&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G &lt;/span&gt;is shorthand for the third generation of wireless network technology. &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G networks&lt;/span&gt; allow you to do all the science fiction things that weren’t possible to do before. :d&lt;br&gt;&lt;br&gt;With &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G&lt;/span&gt;, mobile phones, handheld devices, and notebooks with &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G&lt;/span&gt;-compatible modems can easily handle high-speed multimedia content and serve as all-in-one communication, entertainment, and information devices, the promise goes. You’ll be able to hold a video-conference with your coworkers while simultaneously surfing the Web on your mobile phone. E-mail messages with file attachments will instantly download to your PDA or notebook. You can also pull up to an automated car wash, activate the sudsing with your 3G phone, and have the charge added to your phone bill, according to 3GNewsroom.com.&lt;br&gt;&lt;br&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img class=&quot;yui-img&quot; src=&quot;http://loungers.synthasite.com/board/tag/resources/3g%20stats.jpg&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;b&gt;&lt;span style=&quot;font-size: 17px;&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;font-size: 14px;&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: rgb(64, 127, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;From 1G to 3G&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;The first generation of wireless networks, known as &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;1G&lt;/span&gt;, was a basic analog voice phone service without data capability.&lt;br&gt;&lt;br&gt;With second-generation networks, or &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2G&lt;/span&gt;, wireless technology progressed from analog to digital. These networks are still the most prevalent standard in use today. There are three main &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2G &lt;/span&gt;network standards: CDMA (Code Division Multiple Access), GSM (Global System for Mobile Communications), and TDMA (Time Division Multiple Access). Each type has its own characteristics and features. For instance, GSM networks are global.&lt;br&gt;&lt;br&gt;But &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2G &lt;/span&gt;networks were primarily intended for digital voice services. Under ideal circumstances, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2G &lt;/span&gt;networks are painfully slow at sending data, reaching 10 to 19 kilobits per second, which is much less than half the speed of a traditional 56-kbps dial-up modem. And unless they’ve been especially optimized, most Web pages accessed from a &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2G &lt;/span&gt;network inch across a handheld screen, which makes surfing the Web on a &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2G &lt;/span&gt;wireless device as efficient as running underwater.&lt;br&gt;&lt;br&gt;A few network providers introduced an interim standard, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2.5G&lt;/span&gt; technology that can handle speeds between 56 and 144 kbps. But for several years, the big push has been toward &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G&lt;/span&gt;, which promises data transfer rates of 144 kbps to 2 megabits per second, and an always-on connection.&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;color: rgb(64, 127, 0); font-size: 17px;&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Beyond the Propaganda&lt;/span&gt;&lt;/b&gt;&lt;br&gt;&lt;br&gt;In addition, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G &lt;/span&gt;networks aren’t nearly as prevalent geographically as &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;2G &lt;/span&gt;networks, so coverage can be spotty. And service plans are often expensive and confusingly structured. Users of the Sprint PCS Vision network, for instance, are billed according to the amount of data downloaded, which can be difficult to estimate and control.&lt;br&gt;&lt;br&gt;Despite &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;3G&lt;/span&gt;’s current limitations, our testers concluded that the new networks are worth the price premium for mobile business users who need frequent access to e-mail and the Internet. But don’t expect to use your cell phone to have your car washed just yet. :P &lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
            <pubDate>Thu, 18 Dec 2008 23:20:52 +0100</pubDate>
        </item>
        <item>
            <title>Can you Flock? it's easy!!</title>
            <link>http://loungers.synthasite.com/board/tag/board/can-you-flock-it-s-easy-</link>
            <description>&lt;div style=&quot;text-align: left;&quot;&gt;&lt;br&gt;Well, after almost a year and a half of using &lt;b&gt;&lt;span style=&quot;color: rgb(255, 159, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Mozilla Firefox&lt;/span&gt;&lt;/b&gt;, upgrading from version to version, &lt;span style=&quot;color: rgb(0, 128, 255);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;a title=&quot;&quot; href=&quot;http://www.flock.com&quot;&gt;Flock&lt;/a&gt;&lt;/span&gt; was finally released. The most powerful browser used for fun browsing and it can be the best for professional browsing.&lt;br&gt;Flock is a web browser built on Mozilla’s Firefox codebase that specializes in providing social networking and Web 2.0 facilities built into its user interface. Flock v2 was released on October 14, 2008.&lt;br&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img class=&quot;yui-img&quot; src=&quot;http://loungers.synthasite.com/board/tag/resources/Flock_icon.png&quot;&gt;&lt;br&gt;&lt;div style=&quot;text-align: left; font-size: 13px;&quot;&gt;&lt;h5&gt;About Flock&lt;/h5&gt;
&lt;p&gt;Internet users spend a lot of time going from one site to the next, keeping
up with a variety of friends and interests. Flock pulls all of your favorite
people, places and content together in a convenient view and delivers a more
personal experience of the web, where its users are more easily connected to
what's important to them.&lt;/p&gt;&lt;p&gt;&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;&lt;meta name=&quot;ProgId&quot; content=&quot;Word.Document&quot;&gt;&lt;meta name=&quot;Generator&quot; content=&quot;Microsoft Word 12&quot;&gt;&lt;meta name=&quot;Originator&quot; content=&quot;Microsoft Word 12&quot;&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:WordDocument&gt;
  &lt;w:View&gt;Normal&lt;/w:View&gt;
  &lt;w:Zoom&gt;0&lt;/w:Zoom&gt;
  &lt;w:TrackMoves/&gt;
  &lt;w:TrackFormatting/&gt;
  &lt;w:PunctuationKerning/&gt;
  &lt;w:ValidateAgainstSchemas/&gt;
  &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;
  &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt;
  &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;
  &lt;w:DoNotPromoteQF/&gt;
  &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt;
  &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt;
  &lt;w:LidThemeComplexScript&gt;AR-SA&lt;/w:LidThemeComplexScript&gt;
  &lt;w:Compatibility&gt;
   &lt;w:BreakWrappedTables/&gt;
   &lt;w:SnapToGridInCell/&gt;
   &lt;w:WrapTextWithPunct/&gt;
   &lt;w:UseAsianBreakRules/&gt;
   &lt;w:DontGrowAutofit/&gt;
   &lt;w:SplitPgBreakAndParaMark/&gt;
   &lt;w:DontVertAlignCellWithSp/&gt;
   &lt;w:DontBreakConstrainedForcedTables/&gt;
   &lt;w:DontVertAlignInTxbx/&gt;
   &lt;w:Word11KerningPairs/&gt;
   &lt;w:CachedColBalance/&gt;
  &lt;/w:Compatibility&gt;
  &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;
  &lt;m:mathPr&gt;
   &lt;m:mathFont m:val=&quot;Cambria Math&quot;/&gt;
   &lt;m:brkBin m:val=&quot;before&quot;/&gt;
   &lt;m:brkBinSub m:val=&quot;&amp;#45;-&quot;/&gt;
   &lt;m:smallFrac m:val=&quot;off&quot;/&gt;
   &lt;m:dispDef/&gt;
   &lt;m:lMargin m:val=&quot;0&quot;/&gt;
   &lt;m:rMargin m:val=&quot;0&quot;/&gt;
   &lt;m:defJc m:val=&quot;centerGroup&quot;/&gt;
   &lt;m:wrapIndent m:val=&quot;1440&quot;/&gt;
   &lt;m:intLim m:val=&quot;subSup&quot;/&gt;
   &lt;m:naryLim m:val=&quot;undOvr&quot;/&gt;
  &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;
 &lt;w:LatentStyles DefLockedState=&quot;false&quot; DefUnhideWhenUsed=&quot;true&quot;
  DefSemiHidden=&quot;true&quot; DefQFormat=&quot;false&quot; DefPriority=&quot;99&quot;
  LatentStyleCount=&quot;267&quot;&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;0&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Normal&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;heading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;9&quot; QFormat=&quot;true&quot; Name=&quot;heading 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 7&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 8&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; Name=&quot;toc 9&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;35&quot; QFormat=&quot;true&quot; Name=&quot;caption&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;10&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; Name=&quot;Default Paragraph Font&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;11&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtitle&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;22&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Strong&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;20&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;59&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Table Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Placeholder Text&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;1&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;No Spacing&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; UnhideWhenUsed=&quot;false&quot; Name=&quot;Revision&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;34&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;List Paragraph&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;29&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;30&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Quote&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 1&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 2&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 3&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 4&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 5&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;60&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;61&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;62&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Light Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;63&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;64&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Shading 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;65&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;66&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium List 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;67&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 1 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;68&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 2 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;69&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Medium Grid 3 Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;70&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Dark List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;71&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Shading Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;72&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful List Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;73&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; Name=&quot;Colorful Grid Accent 6&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;19&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;21&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Emphasis&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;31&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Subtle Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;32&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Intense Reference&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;33&quot; SemiHidden=&quot;false&quot;
   UnhideWhenUsed=&quot;false&quot; QFormat=&quot;true&quot; Name=&quot;Book Title&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;37&quot; Name=&quot;Bibliography&quot;/&gt;
  &lt;w:LsdException Locked=&quot;false&quot; Priority=&quot;39&quot; QFormat=&quot;true&quot; Name=&quot;TOC Heading&quot;/&gt;
 &lt;/w:LatentStyles&gt;
&lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 10]&gt;
&lt;style&gt;
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:&quot;Table Normal&quot;;
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:&quot;&quot;;
	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
	mso-para-margin-top:0cm;
	mso-para-margin-right:0cm;
	mso-para-margin-bottom:10.0pt;
	mso-para-margin-left:0cm;
	line-height:115%;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;}
&lt;/style&gt;
&lt;![endif]--&gt;

&lt;/p&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt;Flock 2.0 integrates social
networking and media services including &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;MySpace&lt;/span&gt;, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Facebook&lt;/span&gt;, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;YouTube&lt;/span&gt;, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Twitter&lt;/span&gt;, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Flickr&lt;/span&gt;, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Blogger&lt;/span&gt;, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Gmail&lt;/span&gt;,
&lt;span style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Yahoo &lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Mail&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;, etc. Notably, when &lt;a href=&quot;http://en.wikipedia.org/wiki/Logging_%28computer_security%29&quot; title=&quot;Logging (computer security)&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;logging into&lt;/span&gt;&lt;/a&gt;
any of the supported social services, Flock can track updates from friends:
profiles, uploaded photos, and more.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt;Other features include:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;ul type=&quot;disc&quot;&gt;&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span&gt;native &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;sharing&lt;/span&gt; &lt;/span&gt;of text, links, photos and videos;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt;a &quot;Media Bar&quot; showing preview of online
     videos and photos as well as subscription to photo and video feeds;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt;a &lt;span&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;feed &lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;reader&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;
     &lt;/span&gt;supporting &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Atom&lt;/span&gt;, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;RSS&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;
     &lt;/span&gt;and &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Media &lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;RSS&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; &lt;/span&gt;feeds;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt;a blog editor and reader, allowing direct posting into
     any designated blog;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal; text-align: left;&quot;&gt;&lt;span style=&quot;font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt;a web-mail component allowing users to check supported &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;web&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;based &lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;email&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; &lt;/span&gt;off site, compose new
     messages, and &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;drag&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;and&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;drop&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;
     &lt;/span&gt;pictures and videos from the &quot;Media Bar&quot; or web clipboard into a
     new email message;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class=&quot;MsoNormal&quot; style=&quot;line-height: normal;&quot;&gt;&lt;span style=&quot;font-size: 12pt; font-family: &amp;quot;Times New Roman&amp;quot;,&amp;quot;serif&amp;quot;;&quot;&gt;support for &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: blue;&quot;&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;third&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;party&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;
     &lt;/span&gt;add-ons, including a number of &lt;b&gt;&lt;span style=&quot;color: rgb(255, 127, 0); font-size: 18px;&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span&gt;Firefox extensions&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;Download Flock 2.0.2 here: &lt;br&gt;&lt;ul&gt;&lt;li&gt;&lt;a title=&quot;&quot; href=&quot;http://loungers.synthasite.com/board/tag/http://downloads.flock.com/index.php?utm_source=flockcom&amp;amp;utm_medium=versionspage&amp;amp;utm_campaign=flockcom002&amp;amp;utm_content=win_language&amp;amp;os=win&amp;amp;lang=en-US&amp;amp;product=flock-2.0.2&quot;&gt;Flock for Windows&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a title=&quot;&quot; href=&quot;http://loungers.synthasite.com/board/tag/http://downloads.flock.com/index.php?utm_source=flockcom&amp;amp;utm_medium=versionspage&amp;amp;utm_campaign=flockcom002&amp;amp;utm_content=mac_language&amp;amp;os=mac&amp;amp;lang=en-US&amp;amp;product=flock-2.0.2&quot;&gt;Flock for Mac OS X&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a title=&quot;&quot; href=&quot;http://loungers.synthasite.com/board/tag/http://downloads.flock.com/index.php?utm_source=flockcom&amp;amp;utm_medium=versionspage&amp;amp;utm_campaign=flockcom002&amp;amp;utm_content=lin_language&amp;amp;os=linux&amp;amp;lang=en-US&amp;amp;product=flock-2.0.2&quot;&gt;Flock for Linux&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;enjoy it &lt;b&gt;&lt;span style=&quot;color: rgb(255, 0, 0); font-size: 19px;&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Flockstar&lt;/span&gt;&lt;/b&gt; ;)&lt;br&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;

&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
            <pubDate>Thu, 18 Dec 2008 23:44:13 +0100</pubDate>
        </item>
        <item>
            <title>Copy &amp; Paste Arrives via Clever Javascript Hack (iPhone)</title>
            <link>http://loungers.synthasite.com/board/tag/board/copy-paste-arrives-via-clever-javascript-hack-iphone-</link>
            <description>&lt;br&gt;Yesterday, an online service called &lt;a href=&quot;http://pastebud.com/&quot;&gt;Pastebud&lt;/a&gt;&amp;nbsp;was
announced. So far, it offers what seems to be the best solution to what
has been one of the &lt;b&gt;&lt;span style=&quot;background-color: rgb(255, 255, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;background-color: rgb(174, 169, 69);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;iPhone’s&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;background-color: rgb(255, 255, 0);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; greatest weaknesses&lt;/span&gt;, the cutting and
pasting of text. However, there is only one caveat, the service only
seems to currently work in the&lt;b&gt; iPhone’s&lt;/b&gt; Mail app and Safari. Using some
clever javascript programming, the developer, &lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Jed Schmidt&lt;/span&gt; is able to
copy selected text to his servers and then paste it back into the &lt;span&gt;&lt;font style=&quot;color: blue ! important; font-family: Verdana,Arial,Helvetica,sans-serif; font-weight: 400; font-size: 12px; position: static;&quot; color=&quot;blue&quot;&gt;&lt;span&gt;applications&lt;/span&gt;&lt;/font&gt;&lt;span style=&quot;position: relative;&quot; id=&quot;preLoadWrap1&quot;&gt;&lt;div style=&quot;position: absolute; z-index: 4000; top: -32px; left: -18px; display: none;&quot; id=&quot;preLoadLayer1&quot;&gt;&lt;img class=&quot;yui-img&quot; style=&quot;border: 0px none ;&quot; src=&quot;http://kona.kontera.com/javascript/lib/imgs/grey_loader.gif&quot;&gt;&lt;/div&gt;&lt;/span&gt;&lt;/span&gt;.&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
            <pubDate>Thu, 18 Dec 2008 23:32:49 +0100</pubDate>
        </item>
        <item>
            <title>Mac OS X 10.5.6 fixes sync, graphics issues, more ...</title>
            <link>http://loungers.synthasite.com/board/tag/board/mac-os-x-10-5-6-fixes-sync-graphics-issues-more-</link>
            <description>
	&lt;!-- FM Med. Rectangle --&gt;&lt;span style=&quot;z-index: 1151; vertical-align: top; position: relative; top: 0px; left: 0px;&quot; id=&quot;arm_positioningNode_0b03240f524343c4ba553bd24af75de895d791e5066c48de87756957d4a2b710&quot;&gt;&lt;span style=&quot;overflow: hidden; position: absolute; z-index: 1151; visibility: visible; top: 0px; left: 0px; height: 250px; width: 300px;&quot; id=&quot;OuterOrange0b03240f524343c4ba553bd24af75de895d791e5066c48de87756957d4a2b710&quot;&gt;&lt;object classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; id=&quot;orange0b03240f524343c4ba553bd24af75de895d791e5066c48de87756957d4a2b710&quot; name=&quot;orange0b03240f524343c4ba553bd24af75de895d791e5066c48de87756957d4a2b710&quot; style=&quot;position: absolute; left: 0pt; top: 0pt; width: 100%; height: 100%; visibility: visible; z-index: 1152;&quot;&gt; &lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt; &lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;param name=&quot;AllowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;param name=&quot;MENU&quot; value=&quot;false&quot;&gt;&lt;param name=&quot;PLAY&quot; value=&quot;false&quot;&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;div id=&quot;recadcontainer&quot;&gt;&lt;div id=&quot;recadwithoutbg&quot;&gt;&lt;a href='javascript:ARMRedirLib.reportA4EBannerActivity(&quot;http://ad.doubleclick.net/click%3Bh=v8/3798/3/0/%2a/c%3B210000235%3B0-0%3B1%3B27365772%3B4307-300/250%3B29412402/29430281/1%3B%3B%7Eokv%3D%3Bsz%3D300x250%3Btile%3D1%3Bfmzid%3D1549%3Bkw%3Dmain%3B%7Eaopt%3D2/0/ff/0%3B%7Esscs%3D%3f&quot;,&quot;orange_alternate_0b03240f524343c4ba553bd24af75de895d791e5066c48de87756957d4a2b710_rep&quot;, &quot;http://clk.atdmt.com/go/116259228/direct;vt.1;wi.300;hi.250;ai.61106901;ct.1&quot;, 1229435168830)'&gt;&lt;/a&gt;&lt;map name=&quot;AtlasAltMap_0b03240f524343c4ba553bd24af75de895d791e5066c48de87756957d4a2b710&quot;&gt;&lt;area href='javascript:ARMRedirLib.reportA4EBannerActivity(&quot;http://ad.doubleclick.net/click%3Bh=v8/3798/3/0/%2a/c%3B210000235%3B0-0%3B1%3B27365772%3B4307-300/250%3B29412402/29430281/1%3B%3B%7Eokv%3D%3Bsz%3D300x250%3Btile%3D1%3Bfmzid%3D1549%3Bkw%3Dmain%3B%7Eaopt%3D2/0/ff/0%3B%7Esscs%3D%3f&quot;,&quot;orange_alternate_0b03240f524343c4ba553bd24af75de895d791e5066c48de87756957d4a2b710_rep&quot;, &quot;http://clk.atdmt.com/go/116259228/direct;vt.1;wi.300;hi.250;ai.61106901;ct.1&quot;, 1229435168830)' shape=&quot;default&quot;&gt;&lt;/map&gt;&lt;div style=&quot;visibility: hidden; position: absolute; height: 0pt; width: 0pt; top: 0pt; left: 0pt;&quot;&gt;&lt;/div&gt;

&lt;noscript&gt;&lt;a
href=&quot;http://ad.doubleclick.net/click%3Bh=v8/3798/3/0/%2a/c%3B210000235%3B0-0%3B1%3B27365772%3B4307-300/250%3B29412402/29430281/1%3B%3B%7Eokv%3D%3Bsz%3D300x250%3Btile%3D1%3Bfmzid%3D1549%3Bkw%3Dmain%3B%7Eaopt%3D2/0/ff/0%3B%7Esscs%3D%3fhttp://clk.atdmt.com/AVE/go/116259228/direct;wi.300;hi.250/01/3851747&quot;
target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot;
src=&quot;http://view.atdmt.com/AVE/view/116259228/direct;wi.300;hi.250/01/3851747&quot;
/&gt;&lt;/a&gt;&lt;/noscript&gt;&lt;div style=&quot;position: absolute; left: 101px; top: 195px; visibility: hidden; width: 1px; height: 1px;&quot;&gt;&lt;br&gt;&lt;/div&gt; &lt;!-- FM Med. Rectangle --&gt;
			
			&lt;div class=&quot;rtitle&quot;&gt;
			 &lt;span class=&quot;grey&quot;&gt;  &lt;/span&gt;
		&lt;/div&gt;
     		
				
	&lt;/div&gt;
	
	&lt;/div&gt;
	 
	
		&lt;!--begin_small_img--&gt;
											&lt;a href=&quot;http://loungers.synthasite.com/board/tag/http://macnn.com/rd.php?id=118015&quot; rel=&quot;nofollow&quot;&gt;&lt;img class=&quot;yui-img&quot; src=&quot;http://images.macnn.com/macnn/news/0710/app_071012_leopardsm.jpg&quot; align=&quot;right&quot; border=&quot;0&quot; height=&quot;102&quot; hspace=&quot;3&quot; vspace=&quot;0&quot; width=&quot;122&quot;&gt;&lt;/a&gt;
										  &lt;!--end_small_img--&gt;&lt;br&gt;As &lt;a href=&quot;http://macnn.com/rd/118013==http://www.macnn.com/articles/08/12/11/mac.os.x.update.soon/&quot; rel=&quot;nofollow&quot;&gt;anticipated last week&lt;/a&gt;, Apple has posted its latest update to Mac OS X, &lt;a href=&quot;http://macnn.com/rd/118014==http://support.apple.com/kb/HT3194&quot; rel=&quot;nofollow&quot;&gt;v10.5.6&lt;/a&gt;.
Available through the Software Update service or direct download, the
patch consists mostly of dozens of fixes and performance enhancements,
for issues such as sync and graphics. Sync reliability has been
improved for Address Book, portable home directories and most notably
MobileMe, which should now propagate contact, calendar and bookmark
changes within a minute of their being saved. 
		Graphics
changes include &quot;general improvements&quot; for iChat, Aperture, Cover Flow
and iTunes, and unspecified performance enhancements directed at
gaming. More critically the update attempts to address problems with
graphics distortion, triggered by some AMD/ATI video cards.&lt;br&gt;
&lt;br&gt;
The size of the update may vary depending on processor platform and the
currently installed OS; upgrading from an Intel Mac with v10.5.5 nets a
377MB download. &lt;br&gt;
&lt;br&gt;
Other issues addressed by the update include problems with AirPort,
iChat, Mail, networking and Time Machine. AirPort connections should
now be more reliable when roaming in large Wi-Fi networks, for example,
and iChat should no longer log a user out when changing status to
invisible via AppleScript. Time Machine should be able to properly
locate backup volumes, and among several Mail adjustments is a solution
to junk messages being left in the inbox.&lt;br&gt;
&lt;br&gt;
Networking changes incorporate stability and performance enhancements
for TCP and AT&amp;amp;T 3G connections, as well as Apple File Service,
namely when using a home directory located on an AFP server. The ssh
Terminal command, lastly, should now be compatible with more ssh
servers.&lt;br&gt;&lt;br&gt;&lt;br&gt;</description>
            <pubDate>Tue, 16 Dec 2008 13:51:20 +0100</pubDate>
        </item>
        <item>
            <title>What is Windows 7?</title>
            <link>http://loungers.synthasite.com/board/tag/board/what-is-windows-7-</link>
            <description>&lt;p class=&quot;&quot;&gt; It's the next version of &lt;b&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Windows &lt;/span&gt;&lt;/b&gt;for PCs, and it's the
result of working hand-in-hand with our partners and with people who
use &lt;b&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Windows &lt;/span&gt;&lt;/b&gt;in the real world every day. We're paying particular
attention to the things they're telling us are important to them and
will make their PCs work the way they want them to—things like enhanced
reliability, responsiveness, and faster boot and shut-down. We're also
trying to make their everyday tasks easier, &lt;span style=&quot;color: rgb(17, 17, 17);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;like &lt;/span&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;connecting and syncing
devices, browsing the web, and managing a home network. &lt;/span&gt;&lt;/p&gt;
    &lt;p style=&quot;text-align: center;&quot; class=&quot;&quot;&gt; Of course, we're also working on new
capabilities, so people will be able to do things with &lt;b&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Windows 7&lt;/span&gt;&lt;/b&gt; that
were difficult (or perhaps impossible) to do with PCs before. Finally,
we're working hard to ensure that &lt;b&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Windows 7&lt;/span&gt;&lt;/b&gt; will run on any PC and work
with any program that works today with &lt;b&gt;&lt;span style=&quot;color: rgb(255, 64, 64);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Windows Vista&lt;/span&gt;&lt;/b&gt;, so upgrading from
Windows Vista will be easy. &lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot; class=&quot;&quot;&gt;&lt;img style=&quot;width: 300px; height: 232px;&quot; class=&quot;yui-img&quot; src=&quot;http://loungers.synthasite.com/board/tag/resources/screenshot_windows7.jpg&quot;&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot; class=&quot;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot; class=&quot;&quot;&gt;&lt;br&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot; class=&quot;&quot;&gt;&lt;br&gt;&lt;/p&gt;</description>
            <pubDate>Thu, 18 Dec 2008 23:45:59 +0100</pubDate>
        </item>
        <item>
            <title>He said: &quot;Woopra, that was fast!!&quot;</title>
            <link>http://loungers.synthasite.com/board/tag/board/he-said-woopra-that-was-fast-</link>
            <description>&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(185, 185, 185);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;On the 24th of November of 2008&lt;/span&gt;, &lt;/span&gt;&lt;a style=&quot;font-family: yui-tmp;&quot; title=&quot;&quot; href=&quot;http://www.ekhoury.com&quot;&gt;Elie&lt;/a&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; came to LAU after being graduated for almost a year and a half. We all thought that he's coming for a technical presentation about his famous &lt;/span&gt;&lt;a style=&quot;font-family: yui-tmp;&quot; title=&quot;&quot; href=&quot;http://www.woopra.com&quot;&gt;Woopra&lt;/a&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;. But once we gathered ourselves, CSC, COE, ELE and some Graphic Design students, along with the faculty of Maths and Computer Science division and the dean of The School of Arts and Sciences, &lt;/span&gt;&lt;a style=&quot;font-family: yui-tmp;&quot; title=&quot;&quot; href=&quot;http://www.ekhoury.com&quot;&gt;Elie&lt;/a&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; began his presentation. It was amazing and fast although he covered the most important features of &lt;/span&gt;&lt;a style=&quot;font-family: yui-tmp;&quot; title=&quot;&quot; href=&quot;http://www.woopra.com&quot;&gt;Woopra&lt;/a&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; and how he got the idea to do it. It is never useless to attend that presentation and especially after that &lt;/span&gt;&lt;a style=&quot;font-family: yui-tmp;&quot; title=&quot;&quot; href=&quot;http://www.ekhoury.com&quot;&gt;Elie Khoury&lt;/a&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; began to chat with the audience about what they should do. He was motivating them indeed. He wanted to see all the CSC and COE students working with websites and blogs. He even offered to host for those who cannot host servers. And that is all for motivating the students to start their road to success. &lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;If worked well, students can go very BIG just like &lt;/span&gt;&lt;a style=&quot;font-family: yui-tmp;&quot; title=&quot;&quot; href=&quot;http://www.ekhoury.com&quot;&gt;Elie&lt;/a&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt; and have their own successful products maybe similar to what Woopra did.&lt;/span&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;img style=&quot;font-family: yui-tmp;&quot; class=&quot;yui-img&quot; src=&quot;http://loungers.synthasite.com/board/tag/resources/woopra_badge_200px.jpg&quot;&gt;&lt;br&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;a title=&quot;&quot; href=&quot;http://www.woopra.com&quot;&gt;Woopra&lt;/a&gt;&lt;/span&gt; is a web analytics service offered by iFusion Labs LLC that generates live detailed statistics about the visitors to a
website. The service is provided in real-time using a desktop
application.&lt;/span&gt;
&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;a title=&quot;&quot; href=&quot;http://www.woopra.com&quot;&gt;Woopra&lt;/a&gt; was developed by Elie Khoury and Jad Younan of Lebanon. The
two met after winning a computer science national award at university.
Statistics junkies frustrated with current web statistics packages,
they decided to create their own stats program, breaking all the rules
for current online web analytics programs.&lt;/span&gt;
&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;There are three parts to Woopra: Web and Desktop. Registered Woopra
members can monitor their blog stats on the Woopra Member Panel on the
Woopra site. Members can also track live statistics on their computers
with the Woopra Desktop Client installed and linked to their website
through a JavaScript.&lt;/span&gt;
&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;A WordPress Plugin and other blogging and web platform extensions,
add-ons, and plugins are also available to bring Woopra analytics to
the member's web interface such as the Woopra WordPress Plugin which
allows viewing web analytics on their WordPress Administration Panel.
With the upcoming release of the Woopra API, members will be able to
develop a wide range of third party applications to enhance Woopra's
statistics with their websites and blogs.&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;from:&amp;nbsp; &lt;a title=&quot;&quot; href=&quot;http://en.wikipedia.org/wiki/Woopra&quot;&gt;http://en.wikipedia.org/wiki/Woopra&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Lorelle, one of the very famous bloggers, says:&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&quot;I’m rarely totally and completely blown away by anything, and yesterday at &lt;a href=&quot;http://dallas.wordcamp.org/&quot; title=&quot;WordCamp Dallas at Frisco City Hall&quot;&gt;WordCamp Dallas&lt;/a&gt;, &lt;a href=&quot;http://dallas.wordcamp.org/schedule/pozadzides/&quot; title=&quot;45 Ways to Power Up Your Blog John Pozadzides&quot;&gt;John Pozadzides&lt;/a&gt; blew the whole crowd away with his new blog statistics program, &lt;a href=&quot;http://www.woopra.com/&quot; title=&quot;Woopra&quot;&gt;Woopra&lt;/a&gt;.&quot;&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;John Pozadzides being the author of the popular &lt;a href=&quot;http://onemansblog.com/&quot; title=&quot;One Man’s Blog&quot;&gt;One Man’s Blog&lt;/a&gt;, and an experienced web user who is now the CEO of the iFusion Labs LLC.&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Myo Kyaw Htun says: &quot;I was long time back that I get a chance to use &lt;a href=&quot;http://www.woopra.com&quot; title=&quot;Woopra&quot; onclick=&quot;javascript:urchinTracker('/outbound/www.woopra.com?ref=http_//www.google.com/search?hl=en_q=woopra_btnG=Google+Search_aq=f_oq=');&quot;&gt;Woopra&lt;/a&gt;
but I did not use it since I was already using Google Analytics and
reinvigorate for my site. I started testing it since last week and
impressed it. Woopra, a site analytics tool got good review as soon as
it was released as private beta. Woopra does everything like site
analytics tools do but it has additional features that you can’t find
in other analytics tools.&quot;&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Cali Lewis, a blogger who attended the WordCamp in Dallas, said in an interview: &quot;Web site stats might be interesting to those of us who have Web sites,
but Woopra makes stats addictive and quite frankly, entertaining. It’s
sticky, and if you own a Web site, you’re going to want to have it
running on a screen, the same way a day trader keeps a stock ticker and
CNBC running non-stop.&quot;&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;and i agree with Cali. i have a few websites that don't even have a domain name, i'm running Woopra to do their analytics :D and got addicted already. although they have been published not more than a month.&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;so what &lt;a title=&quot;&quot; href=&quot;http://www.ekhoury.com&quot;&gt;Elie&lt;/a&gt; asked for is to be motivated and start your own little website/blog, put some adds on it and get some cash. who knows? maybe you will end up like &lt;a title=&quot;&quot; href=&quot;http://www.ekhoury.com&quot;&gt;Elie&lt;/a&gt; one day; someone who had a vision, got to it with his own effort and became The Entrepreneur he always wanted to be.&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(208, 208, 208);&quot; tag=&quot;span&quot; class=&quot;yui-tag-span yui-tag&quot;&gt;Cheers&lt;br&gt;&lt;/span&gt;&lt;br&gt;&lt;br style=&quot;font-family: yui-tmp;&quot;&gt;</description>
            <pubDate>Sun, 28 Dec 2008 11:26:10 +0100</pubDate>
        </item>
    </channel>
</rss>
