Rychlejší Firefox

network.http.pipelining > Make it True
network.http.pipelining.maxrequests > Make it higher (i set 34)
network.http.proxy.pipelining > Make it True
network.dns.disableIPv6 > Make it True
browser.sessionhistory.max_total_viewer nastavit na 0

—–
http://www.dagorret.net/a-handful-of-firefox-tweaks-that-will-double-your-browser-speed/
http://www.gogi.in/fix-slow-firefox-browser-performance-ubuntu-operating-system.html

http://www.berthon.eu/wiki/perso%3adump%3amess?s=sqlite3#optimisation_for_linux
—————

#!/bin/bash

# Constants
mozillaHome=${HOME}/.mozilla/
sqlite=sqlite3

# Check that the environment is ready to perform the optimisation
which ${sqlite} >/dev/null 2>&1
if [ $? -ne 0 ]
then
    echo „Error: ${sqlite} was not found on this system.“
    echo “       Check your PATH, or install ${sqlite}, try: sudo apt-get install ${sqlite}“
    exit 1
fi

proc=$(ps ux | grep -v $0 | egrep -i ‚firefox|fennec|seamonkey‘ | grep -v grep | wc -l)
if [ ${proc} -gt 0 ]
then
    echo „Error: Firefox is running. Please shutdown firefox before running this script“
    exit 1
fi

# Start the optimisation

# Check where the Firefox (Fennec & SeaMonkey) profiles are
ffProfiles=$(find ${mozillaHome} -mindepth 1 -maxdepth 1 -type d ! -name eclipse -a ! -name extensions 2>/dev/null)
for ffProf in ${ffProfiles}
do
    if [ -f „${ffProf}/profiles.ini“ ]
    then

        for profileDir in $(cat „${ffProf}/profiles.ini“ | grep Path= | sed -e ‚s/Path=//‘)
        do
            ffProfDir=“${ffProf}/${profileDir}“
            if [ -d „${ffProfDir}“ ]
            then
                echo „Info: Processing directory ${ffProfDir}“
                echo “    optimising local files…“

                i=1
                cd „${ffProfDir}“
                for sqlFile in $(find . -type f -name ‚*.sqlite‘ -print)
                do
                    echo -n “     ${i}. processing file ${sqlFile} „
                    ${sqlite} ${sqlFile} „VACUUM;“ 2>/dev/null
                    if [ $? -ne 0 ]
                    then
                        echo -e “ failed\nWarning: file ${sqlFile} could not be optimised.“
                    else
                        echo “ done.“
                    fi
                    i=$((i+1))
                done

                echo “    optimisation done.“
            else
                echo „Warning: profile ${ffProfDir} not found!“
            fi
        done

    else
        echo „Warning: Firefox profile not found: ${ffProf}/profiles.ini“
    fi
done

echo „Info: optimization done“
exit 0

 

http://h-wrt.com/en/doc/obd
https://www.google.com/search?q=dd-vrt&hl=en
http://www.dd-wrt.com/site/index
http://www.sabaitechnology.com/

http://blogs.arcsoftwareconsultancy.com/pi/2013/07/17/georestrictions/

http://coinmill.com/CZK_FTC.html#FTC=1.58
http://coinmill.com/CZK_LTC.html#LTC=0.76

http://ifc.cryptomp.com/
http://www.cryptomp.com/ifc/index.php?page=statistics&action=pool
https://coinex.pw/account/balances

https://www.multipool.us/
http://www.cryptopros.com/2014/01/multipoolus-best-practices-for-auto.html
https://www.cryptsy.com/users/register?refid=669

http://www.clevermining.com/users/1BvLGG22YtvsrTDTBReep32BKToyXxqQ3x

 

 

————–

 

Skript pro zrychlení ff

 

#!/bin/bash

# Constants
mozillaHome=${HOME}/.mozilla/
sqlite=sqlite3

# Check that the environment is ready to perform the optimisation
which ${sqlite} >/dev/null 2>&1
if [ $? -ne 0 ]
then
    echo „Error: ${sqlite} was not found on this system.“
    echo “       Check your PATH, or install ${sqlite}, try: sudo apt-get install ${sqlite}“
    exit 1
fi

proc=$(ps ux | grep -v $0 | egrep -i ‚firefox|fennec|seamonkey‘ | grep -v grep | wc -l)
if [ ${proc} -gt 0 ]
then
    echo „Error: Firefox is running. Please shutdown firefox before running this script“
    exit 1
fi

# Start the optimisation

# Check where the Firefox (Fennec & SeaMonkey) profiles are
ffProfiles=$(find ${mozillaHome} -mindepth 1 -maxdepth 1 -type d ! -name eclipse -a ! -name extensions 2>/dev/null)
for ffProf in ${ffProfiles}
do
    if [ -f „${ffProf}/profiles.ini“ ]
    then

        for profileDir in $(cat „${ffProf}/profiles.ini“ | grep Path= | sed -e ‚s/Path=//‘)
        do
            ffProfDir=“${ffProf}/${profileDir}“
            if [ -d „${ffProfDir}“ ]
            then
                echo „Info: Processing directory ${ffProfDir}“
                echo “    optimising local files…“

                i=1
                cd „${ffProfDir}“
                for sqlFile in $(find . -type f -name ‚*.sqlite‘ -print)
                do
                    echo -n “     ${i}. processing file ${sqlFile} „
                    ${sqlite} ${sqlFile} „VACUUM;“ 2>/dev/null
                    if [ $? -ne 0 ]
                    then
                        echo -e “ failed\nWarning: file ${sqlFile} could not be optimised.“
                    else
                        echo “ done.“
                    fi
                    i=$((i+1))
                done

                echo “    optimisation done.“
            else
                echo „Warning: profile ${ffProfDir} not found!“
            fi
        done

    else
        echo „Warning: Firefox profile not found: ${ffProf}/profiles.ini“
    fi
done

echo „Info: optimization done“
exit 0