Simple wallpaper - Five colours

Hi!
Simple wallpaper in five colors: blue, brown, gray, green and purple.
Preview:
Links:
http://labs.luishenrique.org/archlinux/ … pes.tar.gz
http://luishenriique.deviantart.com/art … s-93530742
http://rapidshare.com/files/134212741/A … ar.gz.html
Widescreen version (1440x900):
http://labs.luishenrique.org/archlinux/ … ion.tar.gz
http://rapidshare.com/files/134292404/A … ar.gz.html
Do you like?
Original post: http://luishenrique.org/blog/posts/wallpapers-archlinux (comments please)
Edit: More two wallpapers (links below):
1600x1200
1440x900
1600x1200
1440x900
Last edited by luishenrique (2010-02-03 22:05:51)

luishenrique wrote:
hatten:
gray - http://labs.luishenrique.org/archlinux/ … 0x1024.png
green - http://labs.luishenrique.org/archlinux/ … 0x1024.png
blue - http://labs.luishenrique.org/archlinux/ … 0x1024.png
purple - http://labs.luishenrique.org/archlinux/ … 0x1024.png
brown - http://labs.luishenrique.org/archlinux/ … 0x1024.png
right?
Thanks eDio! I appreciate all comments.
Thanks a lot!

Similar Messages

  • Phosphorus: a simple wallpaper setter and browser

    Hey all,
    I present to you what you can consider a C/GTK3 clone of Nitrogen: Phosphorus. In terms of GTK, Phosphorus one ups Nitrogen, hence the name
    Some of you may know I'm on a quest to get rid of GTK2 as much as possible. Nothing technical, just some personal OCD at play here. I had been in contact with Nitrogen's main developer, daf (Dave Foster, not sure if "main" is the correct term but he seems to be the only developer left working on it), regarding porting Nitrogen to GTK3 but he described a lack of time and interest; plus, he said, if there is going to be a re-write, it's probably going to be in Python. In case you are interested, I still have the emails (exchanged in April 2013).
    So, I decided to come up with something myself. I just pushed the last fixes to Git and I now think I have something that is in presentable shape. It does not have every feature Nitrogen has (yet), but the basics are all there. Phosphorus can:
    Set the wallpaper in five different modes (scaled, centered, tiled, zoomed and zoomed fill) plus a sixth which decides the optimal mode for the current image. Exactly like Nitrogen.
    You can pick a color to fill the remaining space. Exactly like Nitrogen.
    There is a Preferences Dialog in which you can add new directories to scan for images. Exactly like Nitrogen.
    Those directories of course get scanned recursively, this happens in its own thread. Exactly like Nitrogen.
    There is a --restore parameter to reset the currently applied wallpaper on boot without starting the whole UI. Exactly like Nitrogen.
    Obligatory screenshot:
    As you can see, nothing really stands out over Nitrogen. I have tried to stick as close to the "original" as possible, since I know so many people love it. There is a lot left to implement, as you can read below:
    Q: What does Nitrogen do that Phosphorus does not?
    A: for now, quite a lot! Phosphorus currently only works for single monitor setups. I plan on adding this, but I suspect this will take some time as I have no experience regarding this. Also, Nitrogen stores the thumbnails it creates in the $XDG_CACHE_HOME/thumbnails directory for faster startups. I still have to look into this, as well. Nitrogen also has complete commandline support, Phosphorus does not. Phosphorus also does not support sorting the images, for which Nitrogen has several options and lastly, Nitrogen also has support for inotify to automatically add new images if they get placed in a watched folder while Nitrogen is open. I'm not sure if I will implement this.
    For those curious about the source, you can grab it from GitHub: https://github.com/Unia/phosphorus
    If you are excited about this project, there are numerous ways to help me out:
    Patches are always welcome!
    Phosphorus can be translated! Instructions for this can be found in the README; you can check which languages are currently supported inside the po/ folder in the repository. Translating should not take more than five minutes of your time and really helps to polish the product.
    Testers are always nice to spot setup-specific bugs! Feel free to report anything unusual you spot, or annoyances you think I can do better!
    Thanks for reading and I look forward to your feedback!
    Last edited by Unia (2013-12-05 20:45:11)

    This is a simple example, a standard editor pane can understand plain text, HTML, and RTF but no CSS or javascripts. if you want your embedded browser to support CSS and javascripts let me know.
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.net.*;
    class JEditorPanes extends JFrame implements HyperlinkListener
    URL url;
    JEditorPane editPane;
    JEditorPanes(String path)throws Exception
    Container c=getContentPane();
    editPane=new JEditorPane();//
    Creating an Instance for JEditorPane
    JScrollPane scrollPane = new JScrollPane(editPane,
    JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
    JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);//JEditorPane is
    added to the JScrollBar
    editPane.addHyperlinkListener(this);//To trap Hyper
    Links clicked by the user HyperlinkListener is added
    editPane.setEditable(false);//Editor pane
    is made Read Only
    url=new URL("file:"+path);
    editPane.setPage(url);
    c.add(scrollPane);
    pack();
    public void hyperlinkUpdate(HyperlinkEvent hy)
    //To trap Hyper Link Clicked by user.
    if (hy.getEventType()==hy.EventType.ACTIVATED)
    try{
    editPane.setPage(hy.getURL());
    }catch(Exception x)
    System.out.println(x);
    static void main(String[]arr)throws Exception
    JEditorPanes pan=new JEditorPanes(arr[0]);
    pan.setVisible(true);
    Good luck!

  • Simple wallpaper question....just now working right?

    Love my new new Touch...seems simple enough to set wallpaper; bring up photo, click set wallpaper and voila, but the photo is never there as wallpaper. I'm just wondering, is anyone else having this issue? Whether I use one of my photos, or a photo provided by my iPod it doesn't work, and whether I go through my photos, or my settings to try to set the wallpaper, it just won't set the photo. I don't believe I'm doing any wrong...(scratching head...)

    Don't forget to register at ifoundyouriphone.com if you are using wallpaper. The service adds info to your wallpaper so that when you lose it a finder knows how to return it.

  • A simple but well coloured feed reader written in bash

    Hello everyone.
    I wrote these two functions for my .bashrc:
    #!/bin/bash
    if [ ! -n "$FEED_BOOKMARKS" ]; then export FEED_BOOKMARKS=$HOME/.feed_bookmarks; fi
    if [ ! -d "$FEED_BOOKMARKS" ]; then mkdir -p $FEED_BOOKMARKS; fi
    feed() {
    if [ ! -d $FEED_BOOKMARKS ]; then mkdir $FEED_BOOKMARKS; fi
    if [ ! -n "$1" ]; then
    echo -e "\\n \\e[04mUsage\\e[00m\\n\\n \\e[01;37m\$ feed \\e[01;31m<url>\\e[00m \\e[01;31m<new bookmark?>\\e[00m\\n\\n \\e[04mSee also\\e[00m\\n\\n \\e[01;37m\$ deef\\e[00m\\n"
    return 1;
    fi
    local rss_source="$(curl --silent $1 | sed -e ':a;N;$!ba;s/\n/ /g')";
    if [ ! -n "$rss_source" ]; then
    echo "The feed is empty";
    return 1;
    fi
    # THE RSS PARSER
    # The characters "£, §" are used as metacharacters. They should not be encountered in a feed...
    echo -e "$(echo $rss_source | \
    sed -e 's/&gt;/>/g' \
    -e 's/&lt;/</g' \
    -e 's/<\/a>/£/g' \
    -e 's/href\=\"/§/g' \
    -e 's/<title>/\\n\\n\\n :: \\e[01;31m/g' -e 's/<\/title>/\\e[00m ::\\n/g' \
    -e 's/<link>/ [ \\e[01;36m/g' -e 's/<\/link>/\\e[00m ]/g' \
    -e 's/<description>/\\n\\n\\e[00;37m/g' -e 's/<\/description>/\\e[00m\\n\\n/g' \
    -e 's/<p>\|<br\s*\/\?>/\n/g' \
    -e 's/<b>\|<strong>/\\e[01;30m/g' -e 's/<\/b>\|<\/strong>/\\e[00;37m/g' \
    -e 's/<u>/\\e[4;37m/g' -e 's/<\/u>/\\e[00;37m/g' \
    -e 's/<b>\|<code>/\\e[00m/g' -e 's/<\/b>\|<\/code>/\\e[00;37m/g' \
    -e 's/<a[^§]*§\([^\"]*\)\"[^>]*>\([^£]*\)[^£]*£/\\e[01;31m\2\\e[00;37m \\e[01;34m[\\e[00;37m \\e[04m\1\\e[00;37m\\e[01;34m ]\\e[00;37m/g' \
    -e 's/<li>/\n \\e[01;34m*\\e[00;37m /g' \
    -e 's/<!\[CDATA\[\|\]\]>\|>\s*<//g' \
    -e 's/<[^>]*>/ /g' \
    -e 's/[<>£§]//g')\n\n";
    # END OF THE RSS PARSER
    if [ -n "$2" ]; then
    echo "$1" > $FEED_BOOKMARKS/$2
    echo -e "\\n\\t\\e[01;37m==> \\e[01;31mBookmark saved as \\e[01;36m\\e[04m$2\\e[00m\\e[01;37m <==\\e[00m\\n"
    fi
    deef() {
    if test -n "$1"; then
    if [ ! -r "$FEED_BOOKMARKS/$1" ]; then
    echo -e "\\n \\e[01;31mBookmark \\e[01;36m\\e[04m$1\\e[00m\\e[01;31m not found.\\e[00m\\n\\n \\e[04mType:\\e[00m\\n\\n \\e[01;37m\$ deef\\e[00m (without arguments)\\n\\n to get the complete list of all currently saved bookmarks.\\n";
    return 1;
    fi
    local url="$(cat $FEED_BOOKMARKS/$1)";
    if [ ! -n "$url" ]; then
    echo "The bookmark is empty";
    return 1;
    fi
    echo -e "\\n\\t\\e[01;37m==> \\e[01;31m$url\\e[01;37m <==\\e[00m"
    feed "$url";
    else
    echo -e "\\n \\e[04mUsage\\e[00m\\n\\n \\e[01;37m\$ deef \\e[01;31m<bookmark>\\e[00m\\n\\n \\e[04mCurrently saved bookmarks\\e[00m\\n";
    for i in $(find $FEED_BOOKMARKS -maxdepth 1 -type f);
    do echo -e " \\e[01;36m\\e[04m$(basename $i)\\e[00m";
    done;
    echo -e "\\n \\e[04mSee also\\e[00m\\n\\n \\e[01;37m\$ feed\\e[00m\\n";
    fi;
    It's a very simple rss reader written in bash with two functions.
    The first one:
    $ feed <url> <new bookmark?>
    prints the parsed content of <url> and possibly save the url as <new bookmark?>, if specified.
    For example:
    $ feed http://www.archlinux.org/feeds/news/
    or
    $ feed http://www.archlinux.org/feeds/news/ archnews
    The second one:
    $ deef <bookmark>
    reads the url previously saved as <bookmark> and prints its content.
    For example:
    $deef archnews
    I'd like you to test it and suggest whatever you want
    The parser is very very simple.
    **EDIT**
    A better version of this script is this.
    Last edited by grufo (2012-08-15 02:41:19)

    skanky wrote:
    Break the '' :-
    sed 's/abc/'$VARIABLE'/'
    You can split the sed script to a separate file, which would mean that you could have different types of file or streams that could be converted...should you wish.
    Thank you
    So, if you prefer a version with formatting variables...
    #!/bin/bash
    if [ ! -n "$FEED_BOOKMARKS" ]; then export FEED_BOOKMARKS=$HOME/.feed_bookmarks; fi
    if [ ! -d "$FEED_BOOKMARKS" ]; then mkdir -p $FEED_BOOKMARKS; fi
    feed() {
    if [ ! -d $FEED_BOOKMARKS ]; then mkdir $FEED_BOOKMARKS; fi
    if [ ! -n "$1" ]; then
    echo -e "\\n \\e[04mUsage\\e[00m\\n\\n \\e[01;37m\$ feed \\e[01;31m<url>\\e[00m \\e[01;31m<new bookmark?>\\e[00m\\n\\n \\e[04mSee also\\e[00m\\n\\n \\e[01;37m\$ deef\\e[00m\\n"
    return 1;
    fi
    local rss_source="$(curl --silent $1 | sed -e ':a;N;$!ba;s/\n/ /g')";
    if [ ! -n "$rss_source" ]; then
    echo "The feed is empty";
    return 1;
    fi
    # THE RSS PARSER
    # Formatting
    local f_title="\\\\e[01;31m"
    local f_descr="\\\\e[00;37m"
    local f_ref="\\\\e[01;36m"
    local f_bold="\\\\e[01;36m"
    local f_italic="\\\\e[41;37m"
    local f_underline="\\\\e[4;37m"
    local f_code="\\\\e[00m"
    local f_linklabel="\\\\e[01;31m"
    local f_linkurl="\\\\e[04m"
    local f_formatchrs="\\\\e[01;34m"
    # The characters "£, §" are used as metacharacters. They should not be encountered in a feed...
    echo -e "$(echo $rss_source | \
    sed -e 's/&amp;/\&/g
    s/&lt;\|&#60;/</g
    s/&gt;\|&#62;/>/g
    s/<\/a>/£/g
    s/href\=\"/§/g
    s/<title>/\\n\\n\\n :: '$f_title'/g; s/<\/title>/\\e[00m ::\\n/g
    s/<link>/ [ '$f_ref'/g; s/<\/link>/\\e[00m ]/g
    s/<description>/\\n\\n'$f_descr'/g; s/<\/description>/\\e[00m\\n\\n/g
    s/<p\( [^>]*\)\?>\|<br\s*\/\?>/\n/g
    s/<b\( [^>]*\)\?>\|<strong\( [^>]*\)\?>/'$f_bold'/g; s/<\/b>\|<\/strong>/'$f_descr'/g
    s/<i\( [^>]*\)\?>\|<em\( [^>]*\)\?>/'$f_italic'/g; s/<\/i>\|<\/em>/'$f_descr'/g
    s/<u\( [^>]*\)\?>/'$f_underline'/g; s/<\/u>/'$f_descr'/g
    s/<code\( [^>]*\)\?>/'$f_code'/g; s/<\/code>/'$f_descr'/g
    s/<a[^§]*§\([^\"]*\)\"[^>]*>\([^£]*\)[^£]*£/'$f_linklabel'\2'$f_descr' '$f_formatchrs'['$f_descr' '$f_linkurl'\1'$f_descr''$f_formatchrs' ]'$f_descr'/g
    s/<li\( [^>]*\)\?>/\n '$f_formatchrs'*'$f_descr' /g
    s/<!\[CDATA\[\|\]\]>//g
    s/\|>\s*<//g
    s/ *<[^>]\+> */ /g
    s/[<>£§]//g')\n\n";
    # END OF THE RSS PARSER
    if [ -n "$2" ]; then
    echo "$1" > $FEED_BOOKMARKS/$2
    echo -e "\\n\\t\\e[01;37m==> \\e[01;31mBookmark saved as \\e[01;36m\\e[04m$2\\e[00m\\e[01;37m <==\\e[00m\\n"
    fi
    deef() {
    if test -n "$1"; then
    if [ ! -r "$FEED_BOOKMARKS/$1" ]; then
    echo -e "\\n \\e[01;31mBookmark \\e[01;36m\\e[04m$1\\e[00m\\e[01;31m not found.\\e[00m\\n\\n \\e[04mType:\\e[00m\\n\\n \\e[01;37m\$ deef\\e[00m (without arguments)\\n\\n to get the complete list of all currently saved bookmarks.\\n";
    return 1;
    fi
    local url="$(cat $FEED_BOOKMARKS/$1)";
    if [ ! -n "$url" ]; then
    echo "The bookmark is empty";
    return 1;
    fi
    echo -e "\\n\\t\\e[01;37m==> \\e[01;31m$url\\e[01;37m <==\\e[00m"
    feed "$url";
    else
    echo -e "\\n \\e[04mUsage\\e[00m\\n\\n \\e[01;37m\$ deef \\e[01;31m<bookmark>\\e[00m\\n\\n \\e[04mCurrently saved bookmarks\\e[00m\\n";
    for i in $(find $FEED_BOOKMARKS -maxdepth 1 -type f);
    do echo -e " \\e[01;36m\\e[04m$(basename $i)\\e[00m";
    done;
    echo -e "\\n \\e[04mSee also\\e[00m\\n\\n \\e[01;37m\$ feed\\e[00m\\n";
    fi;

  • Learning blender: Made simple Arch Linux wallpaper

    Hi,
    a few days ago I started to learn blender and I made a very simple wallpaper:
    I guess there are lots of similar wallpapers around but I wanted to show mine off anyway
    Hope you like it

    Thanks for the tip, but I was thinking about making the shadow less overpowering at the beginning, but decided to let it this way, you will notice, that the shadow is centered and the actual logo is a bit off. That gives balance while moving the motive away from the center. I learned that images most of the time look more interesting when the motive is not exactly centered.
    Maybe I exaggerated the shadow a bit^^
    About the light source: It's actually above the logo, what you see at the bottom is the reflection on the ground. Seems it's not placed very well.
    From your post it seems to me you think I did draw this, but this is a 3d model.

  • Shortcut for switching highlight colour in Preview?

    Hello world!
    Anyone know of a shortcut that would allow for switching the colour of highlighter/markup in the Preview app? Or of a way to create one?
    Thanks!

    See my comment/question here: https://discussions.apple.com/thread/4186073
    You shouldn't need a shortcut now to be honest as there are only 'five' colours available to choose from.

  • SImple way to add border?

    Hi All,
    I am trying out a version of fireworks 8 on my new laptop ,
    coming from using fireworks 4 on my desktop. My question is how can
    I add a simple 1px solid colour border to my images. I could do
    this quite simply in fw 4 but I can't seem to get beyond some
    horrendous textures and patterns in fw8......don't even seem to be
    able to select / point to the border in order to change its
    properties. Think I'd better stick to my old faithful if I can't
    get this licked.
    If anyone knows a v. quick method to do this that would be
    great (have got a milltion images to resize and add border to
    asap!!
    Thanks in advance
    Emma

    There's also an extension called Picture Border:
    http://www.fireworkszone.com/index.php?root=2&extension=1&idTutorial=267
    Here's another one:
    http://www.fireworkszone.com/index.php?root=2&extension=1&idTutorial=262
    and here's the JS for it in case you modify it on your own:
    var l = fw.selection[0].left;
    var t = fw.selection[0].top;
    var w = fw.selection[0].width;
    var h = fw.selection[0].height;
    var newl = l - 5;
    var newt = t - 5;
    var newr = newl + w + 10;
    var newb = newt + h + 10;
    // insert new rectangle primitive
    fw.getDocumentDOM().addNewRectanglePrimitive({left:newl,
    top:newt, right:newr, bottom:newb}, 0);
    fw.getDocumentDOM().arrange("backward");
    // set stroke
    fw.getDocumentDOM().setBrushNColor({ alphaRemap:"none",
    angle:0, antiAliased:true, aspect:100, blackness:0,
    category:"bc_Pencil", concentration:100, dashOffSize1:2,
    dashOffSize2:2, dashOffSize3:2, dashOnSize1:8, dashOnSize2:1,
    dashOnSize3:1, diameter:1, feedback:"brush", flowRate:0,
    maxCount:15, minSize:1, name:"bn_1-Pixel Anti-Aliased",
    numDashes:0, shape:"circle", softenMode:"bell curve", softness:0,
    spacing:15, textureBlend:0, textureEdge:0,
    tipColoringMode:"random", tipCount:1, tipSpacing:0,
    tipSpacingMode:"random", type:"simple" }, "#FFFFFF");
    fw.getDocumentDOM().setFillNColor({ category:"fc_Solid",
    ditherColors:[ "#000000", "#000000" ], edgeType:"antialiased",
    feather:0, gradient:null, name:"fn_Normal", pattern:null,
    shape:"solid", stampingMode:"blend opaque", textureBlend:0,
    webDitherTransparent:false }, "#ffffff");
    // set effect
    fw.getDocumentDOM().applyEffects({ category:"UNUSED",
    effects:[ { EffectIsVisible:true,
    EffectMoaID:"{a7944db8-6ce2-11d1-8c76000502701850}",
    ShadowAngle:270, ShadowBlur:5, ShadowColor:"#0000004d",
    ShadowDistance:1, ShadowType:0, category:"Shadow and Glow",
    name:"Drop Shadow" } ], name:"UNUSED" });
    fw.getDocumentDOM().arrange("backward");
    Here's an oldie, but still works great:
    http://www.fireworkszone.com/index.php?root=2&extension=1&idTutorial=28

  • Problems with coloured background in Dreamweaver CS6

    Hi,
    Probably best if I attach images rather than describe the problem, so that's what I'll do.
    As you can see there is a grey bar to the side of the page and it is the same at the bottom when I zoom out. I'm making this website as part of my Uni course and I have to follow a specific template so, please, don't judge me on what it looks like... lol.
    The code for the background section looks like this:
    body {
              background-color: #CC9966;
              background-repeat: repeat-y;
    I have also coloured the footer.
    #footer {
    colours for text within the
    footer division, ie <p id="footer">
    color: #2D2D2D;
    background-color: #CC9966;
    So what do I have to change to make the colour fill the background entirely? I'm an amateur so please don't use too much technical language. I'm sure it's a simple fix, anyway.
    Thanks a lot.

              WHAT IS THIS FILE?
              This file contains all the simple style properties, such as colours, fonts
              and backgrounds. Edit this file to customise the look of your content.
              If you want to change the layout styles (widths, heights, positions)
              see layout.css.
              |--------------------------------------------------------------------------
              | General Text Formatting
              |--------------------------------------------------------------------------
              html, body {
                        /* setting the default styles all text, inputs and textareas will have (unless specified otherwise) */
                        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
                        font-size: .85em;
                        background: #E8EBEB url(../images/body-bg.jpg) repeat-x top left;
                        color: #3a3a3a;
              h1 {
                        font-size: 1.5em;
                        font-weight: bold;
                        color: #78AB46;
                        background: #fff;
                        margin: 0 0 .5em 0;
              h2 {
                        font-weight: bold;
                        padding: 1em 0 1em 0;
              p {
                        line-height: 150%;
                        padding: 0 0 1em 0;
              ul {
                        padding: 0 0 0 2em;
                        list-style: disc;
              ol {
                        padding: 0 0 0 2em;
                        list-style: decimal;
              li {
                        padding: 0 0 1em 0;
              strong {
                        font-weight: bold;
              em {
                        font-style: italic;
              blockquote {
                        color: #000000;
                        background: #C0D9AF;
                        padding: 1em 1em 0 1em;
                        margin-bottom: 1em;
                        font-style: italic;
                        font-size: 1.2em;
              #footer {
                        colours for text within the
                        footer division, ie <p id="footer">
                        color: #2D2D2D;
                        background-color: #CC9966;
              .screen-reader-only {
                        This is a special class used to prevent text from
                        being displayed on screen, while still making it visible to
                        screen readers. Use this class if you want to add extra
                        descriptive text for visually impaired users, but don't want
                        that description to be visible for other users.
                        For example:
                        <p class="screen-reader-only">Special text for screen readers</p>
                        text-indent: 100%;
                        white-space: nowrap;
                        overflow: hidden;
                        position: absolute;
                        top: 0;
                        left: 0;
              |--------------------------------------------------------------------------
              | Page Links
              |--------------------------------------------------------------------------
              a:link {
                        color: #07087a;
                        text-decoration: none;
                        background-color: #fff;
              a:visited {
                        color: #07087a2;
                        background-color: #fff;
                        text-decoration: none;
              a:hover {
                        text-decoration: underline;
              a:active {
                        color: #07087a;
                        background-color: #fff;
              |--------------------------------------------------------------------------
              | Top Navigatin Links
              |--------------------------------------------------------------------------
              TOP NAVIGATION LINKS
              The following styles control the appearence
              of the top navigation links, eg.
              <a class="top-link" href="default.htm">Home</a>
              a.top-link {
                        these styles will apply to ALL links (:link, :visited, :hover and :active) unless overridden
                        display: block;
                        padding: .7em 0 .7em 0;
                        margin: 0 1.5em 0 0;
                        background: #EEEFEE url(../images/nav-bg.gif) repeat-x top left;
                        color: #07087a;
                        border-bottom: solid .3em #EEEFEE;
                        padding: 0;
                        line-height: 2.5em;
              .top-link:link {
                        /* styles for normal, unvisited links can be set here */
                        /* these styles will override the defaults set for .top-link above */
                        text-decoration: none;
              .top-link:visited { 
                        /* styles for links once visited can be changed here */
                        /* these styles will override the defaults set for .top-link above */
                        text-decoration: none;
              .top-link:hover {
                        /* styles for top links when a user hovers over it can be changed here */
                        text-decoration: none;
                        border-bottom: solid .3em #c2c2c2;
              .top-link:active { 
                        /* Styles for when the link is being clicked can be changed here */
              .top-link.selected:link, .top-link.selected:visited {
                        /* Sets the style of a link that has been selected (ie. has a class of selected)
                           for example (note the additional class "selected"):
                                  <a class="top-link selected" href="content.htm">Content Page</a>
                        border-bottom: solid .3em #aed637;
                        cursor: default;
              |--------------------------------------------------------------------------
              | Footer Links
              |--------------------------------------------------------------------------
              Change these if you want your footer links to have a
              different style to other links
              #footer a:link {
                        background: #CC9966;
                        color: #E7C6A5;
              #footer a:visited {
                        background: #CC9966;
                        color: #E7C6A5;
              #footer a:hover {
                        background: #CC9966;
                        color: #E7C6A5
              #footer a:active {
                        background: #CC9966;
                        color: #E7C6A5;
              |--------------------------------------------------------------------------
              | Header Colours
              |--------------------------------------------------------------------------
              #header {
                                  Colours for <div id="header">
                                  See layout.css for layout and size properties
                        background: #D1EEEE url(../images/header-bg.gif) repeat-x top left;
                        color: #fff;
              #nav {
                                  Colours for <ul id="nav">
                                  See layout.css for layout and size properties
                        background: #EAEAEA url(../images/nav-bg.gif) repeat-x top left;
                        color: #07087a;
              |--------------------------------------------------------------------------
              | Wrapper
              |--------------------------------------------------------------------------
              This controls the styles for the wrapper div that
              contains all page elements, ie:
              <div id="wrapper">
              #wrapper {
                        background: #fff;
                        color: #3a3a3a;
              |--------------------------------------------------------------------------
              | Widget Box Colours
              |--------------------------------------------------------------------------
              Colour styles for widget boxes, ie <li class="widget">
              See layout.css for layout and size properties
              .widget {
                        background: #C0D9AF;
                        color: #000;
              .widget-heading {
                        color: #000;
                        background: #C0D9AF;
                        border-top: solid .3em #375852;
    WHAT IS THIS FILE?
    This file contains all the more advanced layout style properties, such as
    widths, heights, spacing and positioning. If you want to change colours,
    backgrounds and fonts, see simple.css.
    |--------------------------------------------------------------------------
    | Wrapper
    |--------------------------------------------------------------------------
    This controls the styles for the wrapper div that
    contains all page elements, ie:
    <div id="wrapper">
    #wrapper {
    margin:0 auto;
    min-width: 460px;
    width: 800px;
    |--------------------------------------------------------------------------
    | Header
    |--------------------------------------------------------------------------
    #header {
    This controls the layout of <div id="header">
    If you change the image inside the header,
    make sure you set the "height" property below
    to match the height of the new image
    See simple.css for colour properties
    position: relative;
    margin: 0 0 0 0;
    overflow: hidden;
    width: 800px;
    #nav {
    Layout properties for <ul id="nav">
    See simple.css for colour properties
    display: block;
    padding: 0 0 0 20px;
    list-style: none;
    clear: both;
    font-size: 1.3em;
    height: 2.8em;
    #nav li {
    display: block;
    float: left;
    list-style: none;
    padding: 0;
    |--------------------------------------------------------------------------
    | Main
    |--------------------------------------------------------------------------
    |
    #main {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    width: 800px;
    background-color: #FFFFFF;
    #content {
    Styles for the div thay wraps the main content, eg:
    <div id="content">
    padding: 1.5em 20em 20px 20px;
    #content.full-width {
    Adding a class of "full-width" to the #content div
    will use these styles, eg.
    <div id="content" class="full-width">
    padding-right: 20px;
    |--------------------------------------------------------------------------
    | Sidebar
    |--------------------------------------------------------------------------
    #sidebar {
    Styles for the sidebar wrapper, eg.
    <ul id="sidebar">
    You can probably leave this as is
    width: 15em;
    padding: 6em 20px 0 0;
    float: right;
    |--------------------------------------------------------------------------
    | Image Alignment Classes
    |--------------------------------------------------------------------------
    These are used to align images (see the content page example)
    You shouldn't need to change these.
    .align-right {
    float: right;
    margin: 0 0 1.5em 1em;
    .align-left {
    float: left;
    margin: 0 1em 1em 0;
    .align-centre {
    margin: 0 0 1.5em 0;
    text-align: center;
    .caption {
    font-style: italic;
    text-align: center;
    |--------------------------------------------------------------------------
    | Widget Boxes
    |--------------------------------------------------------------------------
    Layout styles for widget boxes, ie <li class="widget">
    See simple.css for colour properties
    .widget {
    margin: 0 0 1em 0;
    list-style: none;
    padding: 0;
    .widget-heading {
    padding: 15px 10px;
    font-size: 1em;
    margin: 0;
    .widget-content {
    padding: 0px 10px 0 10px;
    .photo-gallery {
    list-style: none;
    padding: 0;
    margin: 0;
    .photo-gallery li {
    float: none;
    display: inline;
    padding: 0;
    .photo-gallery li img {
    padding: 0 1em 1em 0;
    |--------------------------------------------------------------------------
    | Footer
    |--------------------------------------------------------------------------
    Styles for <p id="footer">
    #footer {
    margin:0 auto;

  • Printer aligns BUT only with Black and Blue all other diagnostics print with all colours

    Initially when installed the printer REFUSED to align, took 7 attempts (OK I have heard of Einsteins quote !). Each time I used the printer screen to ALIGN PRINTER - the process failed. So I looked on the web, and:
    Cleaned the cartridges,
    Cleared the vents
    Removed and cleaned the printhead
    Prayed
    Tried again
    All to no avail, so then I tried doing the diagnostics via the PC software, and here the mystery deepened.
    When running the HP Photosmart B210 Series tool box I got three differing results from the three printing options
    A Print Quality Diagnostics Page gave me Ba full five colour printout
    Align Printheads gave me black and blue lies/boxes/grids and the Alignement Successful message
    Print Diagnostic info gave me all four colours with lots of meaningful info including the 73 Print head Calibration COnfidence Level:0
    Any Ideas ANYONE, before I bin this and buy a Kodak or Epson in disgust
    This question was solved.
    View Solution.

    What exactly is the issue?  The alignment aligns the color printhead to black printhead, and only one color (cyan for your printer) and black are needed for that.  (There is likely an additional set of blocks that prints gray blocks fading to white.  This section is used to calibrate the energy for the colors.)  The other test pages you printed will print various diagnostic or test pages which will use all the colors. 
    A successful alignment page requires the page be printed on unused white paper and requires that the black and cyan sections are printing properly.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Best way sought to mix colours in equal portions

    Hi
    CS5,
    What is the best way to mix five different colours in equal portions and see what the resulting colour is, as if I was putting 5 drips of each colour into a container and stirring well.
    I have tried the smudge tool and placed the five colours abutting each other, but there has to be a better way.
    What settings should I use etc.
    Envirographics

    Hi,
    I can convert the two layers to smart object but then layer > smart Object > stack mode >mean is greyed out.
    I wondered if the mixer brush might be of use, not sure of best way to use it here, do I clean the brush, what settings etc etc.
    what are the steps ?
    Envirographics

  • Fingerprin​t Reader access to KeePass (from a Thinkpad with Password Manager)

    The goal: secure, convenient, automated login to password-protected sites
    KeyPass is a great open-source program for secure creation, storage and use of login passwords and other information. With a plugin called KeeForm, it allows very convenient automatic login to password-protected sites by clicking on a KeePass entry. To preclude unintended access to all of your secure information, it is wise to close Keepass after each use, or set Keepass to lock when minimized. But this is less convenient, because a long secure master password then has to be entered before each use of Keepass.
    Using a fingerprint reader to enter Keepass can be a big time saver while retaining security. Capacitive swipe fingerprint readers can be very secure, provided they operate through equally secure software. They are available as USB units, or integrated into some keyboards and notebook computers, for example some Lenovo ThinkPads.
    Unfortunately, set-up can be a challenge and there may be disadvantages even after the best workable interface between KeePass and a particular biometric system. This example uses the integrated fingerprint reader and software on a Lenovo ThinkPad X61.
    The problem: getting secure fingerprint software to use KeePass
    ThinkPads can use Lenovo fingerprint software alone for start-up into Windows, but they need additional layers of software (Client Security Solution - CSS, and Password Manager  - PM) to work with other programs including KeePass. PM uses CSS security functions.
    Cautions about Lenovo CSS:
    1. Some organisations advise against CSS because of problems including clashes with antivirus programs. See http://www.ncsu.edu/antivirus/lenovo/ and
    http://prowiki.isc.upenn.edu/wiki/ThinkVantage_Sof​tware_Under_Windows_Vista
    These bugs may have been fixed over time - but install at your own risk!
    2. CSS and PM introduce their own system overheads which may slow some operations.
    3. Once tried, CSS may not simply be inactivated while restoring basic fingerprint start-up into Windows. The X61 at least insists that CSS be reactivated for any fingerprint function. If you try a Windows system restore to a time before CSS was first activated, you may experience the ‘blue screen of death'. The security chip evidently regards your desire for a past configuration as a security breach. With luck you may ‘live again' if you can log into Windows in Safe Mode to undo the attempted system restore. After that, I reactivated CSS. I was not game to try uninstall after inactivation of CSS - but see the ncsu link above.
    Having decided to accept the ‘risks' of activating CSS and PM, you may want to try PM for all password management. For me it would not recognise some internet logins, could not complete auto-submission in others, and did not allow the manual adjustments that make KeePass so versatile. Unfortunately PM help is very limited. There is no current user manual (old manuals up to v1.4 available on the web do not match the properties of the current v3 of the software). KeePass (or the KeeForm plugin) also struggles with some sites, but it works much better overall. Help on KeeForm plugin syntax is limited, but otherwise KeePass help is great.
    So we really want the fingerprint reader (via PM) to work for KeePass master password entry.
    This is not so simple for five interacting reasons:
    (i)  It is tricky to register KeePass in PM;
    (ii) PM then gets confused by ‘hidden' entry of a master password during fingerprint login to KeePass, and repeatedly tries to save ****** as a changed master password;
    (iii) PM also tries to automatically register each entry opened for editing within KeePass;
    (iv) PM tries to automatically register other logins even if they are managed through KeePass.
    (v) Your KeePass records are now only as secure as your PM login (which is likely to be your Windows login).
    The solutions: or workarounds at least
    The best workarounds I could develop for these five issues were:
    (i) To register KeePass in PM, first ensure that PM is running (icon in the system tray). Then launch KeePass, click the login window box for unobscured password display (three blue dots turn black), enter the master password and click OK to start KeePass as usual.
    If PM does not offer to save an entry for KeePass by this stage, try ‘plan B'. Open a window to edit an entry in KeePass, then click Cancel. PM seems to recognise this more readily as a login window and may offer to create an entry. Accept the offer, and name the entry KeePass. Then open PM to edit the saved entry. You will have to edit several fields to achieve an effective PM entry for KeePass:
    The title field must be "Open database - database.kdb", to match the title of the KeePass login window.
    The file name field should show the full path to KeePass.exe (something like C:\Program Files\KeePass\PeePass.exe depending on your installation).
    The login and password data field is accessed by double clicking the entry. It will need to show only your KeePass master password (in the unobscured text view). In login and password data, delete each line of unwanted text until you get to the final password line (shown as *****), and edit this line to provide your master password.
    In the Advanced tab, select auto-fill and auto-submit and the desired security level [see (v) below]. Then select OK to get to the PM front window, and File - Save Changes, then Exit.
    Now when you close and re-launch KeePass, PM should automatically intervene (requesting a fingerprint to complete the KeePass login if you selected that security level. Select ‘No' when PM asks to change the password [see (ii) below].
    If you had no luck, try ‘plan C'. Close KeePass completely, then launch it again to open the login window. Then right-click the PM icon in the system tray, open the ‘Type and Transfer Tool', click the box for unobscured password display, type in the KeePass master password, drag the cross-hairs to the password field in the waiting KeePass login window, and release the password there. Click OK to start KeePass as usual, then click OK to close the PM transfer window. If there is still no KeePass entry in PM, check that KeePass has not been included in the PM excluded programs list. If this sequence does not work, reboot and check again. Failing all else, any entry that PM succeeds in making from any login page can be edited to an effective KeePass entry by editing fields as described above for ‘plan B'.
    PM (v3.00) can be coy to associate initially, but it will accept KeePass (v1.14) as a password-managed program, and thereafter it reliably succeeds to auto-submit the KeePass login after some help described in (ii) below.
    (ii) Having sent the correct master password to the KeePass login window, PM becomes confused by the ‘hidden' text now in the password field, and offers to change its record of your KeyPass master password to ******. You can manually select ‘No' in the PM changed-password dialogue box that appears every time you use PM / fingerprint for KeePass login. But Beware: if you ever accidentally select ‘Yes' (the default) your KeePass master password record in PM will be changed to ******. This can be edited to provide the correct password again, but it is more than a minor pain in the AR5E. Unless you know (or have a backup of) your KeePass master password you just lost access to your KeePass database!
    To avoid this big nuisance and risk, you can set up to restart KeePass for each use from a desktop shortcut (instead of minimising it to the system tray) and have the shortcut run a batch file with vbs scripts that send the ‘No' message to PM automatically.
    Here is an example batch file, with corresponding vbs scripts. You can make all these files using Notepad and save the files with the names indicated, into the KeePass program directory (C:\Program Files\KeePass in this example).
    KeePass.bat (This launches KeePass and tells PM v3 not to change the password. Caution: If Lenovo changed PM program design in future, the effect could change; the batch file might send {TAB}{ENTER} keystrokes to another open window on your computer):
    C:
    cd\
    cd "C:\Program Files\KeePass"
    start " " "C:\Program Files\KeePass\KeePass.exe" "C:\Program Files\KeePass\Database.kdb"
    start /w Sleep.vbs 1
    start /w AppActivate.vbs
    start /w SendKeys.vbs
    Sleep.vbs (provides a short delay to open the ThinkVantage dialogue window, otherwise the following scripts fail because they are sent too soon):
    Wscript.Sleep Wscript.Arguments(0) * 1000
    AppActivate.vbs (puts focus on the ThinkVantage  Password change dialogue window so that Tab and Enter commands are not sent elsewhere with undesired effects):
    CreateObject("WScript.Shell").AppActivate "ThinkVantage Password Manager"
    SendKeys.vbs (sends a ‘No' response to the PM request to change its KeePass entry):
    CreateObject("WScript.Shell").SendKeys "{TAB}{ENTER}"
    Please substitute ) where you see smileywink: in the vbs scripts above - I can't get this forum window to stop automatically translating the " ) sequence of text (without a space) as an emoticon.
    This batch file approach should work with additional startup switches for KeePass, for example the /backup.path: switch used by ‘another backup' plugin (or you can use the db_backup plugin that works from the KeePass.ini file). Quotes are needed around any entry with spaces. But some things that ‘should work' such as just writing "KeePass.exe" instead of the full path in line 4 of the batch file do not give the same outcome for me. This may be an effect on timing of the switch of focus between windows - so if you strike a problem it may be worth experimenting with the delay time set through the sleep script.
    If you set KeePass to lock when minimised, you will have to deal manually with the PM changed-password dialogue every time you re-access KeePass. So it is simpler to close rather than minimise KeePass after each use and restart it when needed, via the batch file.
    (iii) You have to tell PM ‘No' whenever it offers to save an entry that is edited in KeePass. This is less of a nuisance, because entries rarely need to be edited once set up in Keepass.  There is no way to turn off this requirement. If you select ‘Never' it will prevent use of PM and therefore fingerprint entry to start KeePass (not just the edit window).
    (iv) Turn off internet login within PM. This will leave all internet logins to KeePass. Unfortunately you can not set PM to only allow a single program login (KeePass), but you can set it to exclude specific programs, so do that for other programs that you access via KeePass.
    (v) Finally, set PM security within CSS so that a fingerprint (or a password if the fingerprint reader fails) is needed every time PM is launched (not just once per boot). Similarly, set KeePass security this way within PM. Otherwise (if you set the requirement to once per boot) your passwords are open to inspection while you are away from your booted computer.
    Caution: How secure is your Windows login password? Most likely this is also your PM login password, so it now allows access to your KeePass database! Make sure that it is a unique, secure and preferably memorable password.
    How close are we now to the desired combination of security and convenience?
    Click on the KeePass shortcut to the batch file given above, swipe the fingerprint, wait while CSS works, then click on the relevant Keepass entry to access any password-protected site or application in your Keypass list - great convenience.
    Security is very strong - both KeePass and PM are extremely secure unless you use a weak or insecure master password or select less secure settings.
    Starting (or opening a locked instance of) KeePass without the batch file given above requires a couple of extra carefully-placed clicks in the process to tell PM not to mess up its entry for KeePass, then to complete KeePass startup. This is less convenient, and a mistake could prevent future database access - so the batch file method is recommended.
    A final caution (while enjoying secure & convenient logins):
    Beware - fingerprint access is so convenient that you may forget your master passwords! Eventually they will be needed! You may click the wrong button in PM, suffer a faulty fingerprint reader or change computers! Then you must recall your master passwords before you can access your password file (and possibly your computer). This could be devastating: loss of all secure password information in KeePass and PM (and possibly loss of all information on a protected computer drive, not to mention need to pay for a computer motherboard and HDD replacement). So:
    1. Choose very secure but ‘unforgettable' master passwords for KeePass and computer (PM) access.
    2. Always set up a secure master password as an alternative to biometric authentication (in case of a faulty fingerprint reader).
    3. Keep your password database backups, and your separate master password backups, in another secure (preferably encrypted) but accessible location!
    Program versions tested:
    KeePass v1.14 (v2 betas not tested) with KeeForm v2 and DB_Backup v1.14
    Lenovo CSS v8.20 with PM v3.00
    The solutions were tested in November 2008 on a Thinkpad X61 running Windows Vista Business. The tricks to interface with KeePass can vary between fingerprint programs (search the KeePass forum).
    Message Edited by r_g_b on 11-03-2008 07:01 PM
    Message Edited by r_g_b on 11-04-2008 12:00 AM

    I'm reviving quite an old topic here, but I have been unable to find any other good information on this.  I currently use the latest version of Keepass v2.23 and have Lenovo Passoword Manager v4.3 installed on my new W530 laptop.  I can't get PM to recognize any passowords at all, in web browsers or in windows application.  
    In PM the only thing I can do is create folders and secure notes.  My fingerprint software works great for automated logins to windows.  Does anyone have any experience with using the fingerprint reader with a windows application like Keepass?  
    How can I get the Password manager to do ... anything?  Recognize a password in windows or a web browser?
    I'm open to any other software to be used or I can write scripts if necessary to accomplish this.  It doesn't seem like this should be so difficult, but from what I've learned about Lenovo so far, is that nothing is easy.  After trying to get battery charge thresholds working proplery in Windows 8, I've already lost faith in a company that I thought had a great reputation.  

  • Help! The new Pages. I can't copy an entire page or rearrange the pages. In the new formatt also when I insert a new page when using a template it doesn't give me the formatting and guides.  Can anyone help.

    I can't copy an entire page or rearrange the pages. I use this feature a lot, particularly at this time of year. Can't seen to rmove the header and footer markers either.
    Can anyone help or do I need to revert back to pages 09?
    If I do re-install 09 will I be able to open the files that where converted to the new version?
    I don't like this new one. Many of the graphics features have been removed.  Not impressed at all. Very frustrated.
    The business card templates and others behave strangly.  If I insert a page it's blank only. I don't get the guides.  I was in the middle of a design project and had to start again from scratch as it threw everything out of alignment  and I can't copy an entire page. When I use select all, group then copy when I pasted it on the new page it overlayed all the cards in the top two segments.  Frustrating !  I ended up  saving my first page under a different name that was the only way to copy the page then I had to work between three documents instead of one.
    I went in today to last years Christmas tag file and the same issues I can't copy a page. I can't rearrange the pages.
    Simple features like colour choice and transperency for shapes are gone. I want to use my colour choices not someone else.
    Sorry, I am ranting.
    For now all I need is to be able to copy and switch pages around in one document.
    Please Help! I am about to start pulling my hair out in frustration.

        Yes, I am using 09 with out issues.  Just have to remember to use "open with 09" or open pages 09 first then my document.
      I create some amazing cards and posters with 09 that when on a PC I would have to use both Word and Publisher to create.  Flipping back and forth. 
      Apple if you're  listening please, give us back our layout options and even add a few more design options like beveled and 3D text.

  • How to display special characters in APEX Classic Report column

    Ref: Thread: How to display newline characters as new lines
    Version: APEX 3.2
    Hi,
    I have created an classic SQL Report with one of the columns being a decode that gives a value 'Post'(the value should be highlighted in Red) on one condition and 'Pre' on another. I have followed the advice given in the page (URL provided above) , i.e. I have changed Strip HTML to 'No', changed Display as to 'Display as text (escape special characters, does not save state)'. I have also passed this value back to the same page to be stored in a page item each time a link (another column in report) in report is clicked. I have tried passing it as #DEADLINE# and \#DEADLINE#\. The issue I face is, instead of the value being highlighted in Red, it gets passed back as a string holding the value 'Post'. Is there any way I can get this to display as it should without the Strip HTML being changed to 'Yes'.
    Thanks very much.
    Rohi
    Edited by: Rohi on 18-Jul-2012 04:21

    876651 wrote:
    Hi,
    Thanks for your response.
    I am trying to display a page item that is derived from a report column based on a click on the URL link (*view >*>)
    This page item (here, it is Manager_ID) should ideally be highlighted when a particular condition is satisfied (achieved using a DECODE in the report).
    But it is not displayed like it should be.
    I do not want the value to be displayed along with the html tags as a string.
    I want the html tags to take effect and highlight the value within it.
    Initially, I had set Strip HTML to Yes and the value was returned without any highlighting .
    So I changed it to 'No' and and it contained the html tags.
    I am not sure what setting in APEX Report Attributes can help me achieve that effect I want.None of the report settings are relevant. They affect the rendering of the report and none of the columns you were changing the properties of were actually rendered.
    You can't pass HTML and CSS around in URL parameters.
    I suggest you pass *2* values in the column link: the MGR ID and a simple class or colour value computed by the DECODE in the report. I've suppressed the first version of the report and created a new one that does this:
    decode(dept.deptno, '30', 'c00', '000') highlight The link column now passes the MGR ID and the HIGHLIGHT colour (red when the condition is satisfied and black when it is not).
    I created another hidden and protected page item <tt>P0_HIGHLIGHT</tt> as the target for the highlight value, and used the Pre/Post Element Text properties of the <tt>P0_G_MGR</tt> to wrap it in a <tt>span</tt> whose colour is changed using the <tt>P0_HIGHLIGHT</tt> value as a subtitution string:
    <span style="color: #&P0_HIGHLIGHT.;">Having done that, I still don't really get the requirement here. I'm sure that given the full picture I'd be using a completely different approach...

  • Looking for an App with 'Post-It Note'-Type Capability

    I facilitate multi-day workshops, and frequently have to lug overstuffed four-inch binders around with me. Sometimes more than one.
    The challenge here is, I have to modify the pages each time I facilitate, based on client specifics, new learnings/research, etc. I have a system where I have five different colours of Post-It notes that I swap in and out on the pages. Some pages have had the same Post-Its on them for years, some change weekly.
    What would be ideal would be, is if I could scan the pages - without the Post-It notes on them - and load them on my iPad, and then add some kind of virtual Post-It notes to each page. (Of course, I'd need my five colours). So some way to add colour-coded notes that are editable and re-positionable to a PDF is exactly what I'd like to see.
    Surely such a thing exists!

    iAnnotate looks pretty good, but for highlighting. And it's ten bucks just to try it... Wish there was a trial option. Good Reader also looks worth exploring.
    Alright, now I know what I'm doing this weekend.
    (I'll take more suggestions, if they exist)
    Thank you, Meg.

  • Snow Leopard:  was this really necessary?  aka "multiple problems"

    ok, upgraded to Snow Leopard and I can't see any improvements (apart from Quick Look but haven't tried its functions.
    I have noticed several subtle inconveniences though... (see below)
    This is a brand new MacBook Air and it was already very quick but I thought it would be nice to enjoy a better performance! Unfortunately everything seems to have slowed down a little. And the fans seem to come on almost instantly when watching youtube for example. Previously you had to be doing that for at least 7-8 minutes before the fans came on.
    So:
    - the machine overall is noticeably slower.
    - starting and shutting down now takes at least twice the time it used to.
    - my iDisk has gone crazy. It syncs constantly without actually syncing. This is now driving me crazy. Why oh why?
    - some of the basic system preferences didn't "transfer" with the upgrade (safari home page, wallpaper, background colour of folders etc etc)
    - Word and Excel are very sluggish and crash if I edit anything
    - when starting up a file called "recovered items" appears in the trash ...?
    - right clicking on the dock icons comes up with a windows-like transparency of options! how do I change this back to the standard silver one?
    - my internet connection seems a bit slower but haven't got proof of it, it just the whole thing feels slower
    In short, for the first time my Mac feels like a windows laptop... very disappointed.

    HI,
    Check to see how much free space there is on the startup disk.
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. *Make sure you always have a minimum of 10% to 15% free disk space at all times.* Insufficient disk space can cause some of the problems you are describing.
    *Recovered files in your Trash after restart.*
    The recovered files are temporary files used by Mac OS X applications. *Usually temporary files are deleted by an application when it no longer needs them*. If an application quits unexpectedly, the temporary files may not be deleted by the application. When you restart your computer, Mac OS X moves these temporary files to the Trash.
    *"right clicking on the dock icons comes up with a windows-like transparency of options! how do I change this back to the standard silver one?"*
    Might have to reformat and reinsatll 10.5 to do that.
    For iDisk. Open System Preferences/MobileMe, select the iDisk tab. At the bottom of that window turn iDisk sync OFF.
    Users are reporting that after several restarts your internet speed will increase.
    Free internet broadband speed test here.
    http://www.speedtest.net/ Click where it says; Begin Test
    Download should be about 15.30
    Upload about 9.95.
    For the fans, try resetting the SMC. http://support.apple.com/kb/HT1411
    Hopefully this will help you out a bit and answered some questions... also, if you have any 3rd party (non Apple) application, you might need to update that software from the developers web site.
    Repair disk permissions before and after any updates or upgrades.
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Six Things You Need to Know About Snow Leopard
    Carolyn

Maybe you are looking for

  • Need help with setting a variable using actionscript

    So I am trying to import in XML and this is working fine, But once in flash I need to reference this variable in a later script. Here is what I got. function loadXML(loaded) { if (loaded) { /////this is the variable, which is working, it pulls the in

  • Ringtones on 4S keep changing

    New Verizon iPhone 4S user here. Like the phone so far but with a few minor changes it would be perfect. If I assign a ringtone to my wife and then resync the phone to add new contacts, calendar events, etc., the ringtone assignment gets switched bac

  • How do I speak to someone at apple support

    I have just purchased Mountain Lion and it won't download. I have contacted apple support and keep getting emails telling me i have missed the phone appointment whilst I am sitting by both phones. Is there a contact number that actually works for any

  • Sample CSV file for Master Schema Upload in CCM

    Hi All, Can some please send me a sample CSV file for Master Schema Upload in CCM to my ID <i>[email protected]</i>. Points will be awarded for the same Regards Hari

  • Parameter prompts-  Displaying task details between date range

    Hi all, I have created a report ( Crystal reports 2008) which lists task related details( distinct count) by region, customer and work type. I created two parameters to let the users specify the date ranges. Based on the user inputs, the title of the