ps

Finding gaps with analytic functions

articles: 

Finding gaps is classic problem in PL/SQL. The basic concept is that you have some sort of numbers (like these: 1, 2, 3, 5, 6, 8, 9, 10, 15, 20, 21, 22, 23, 25, 26), where there’s supposed to be a fixed interval between the entries, but some entries could be missing. The gaps problem involves identifying the ranges of missing values in the sequence. For these numbers, the solution will be as follows:
START_GAP END_GAP
4 4
7 7
11 14
16 19
24 24

First, run the following code, to create tab1 table:


CREATE TABLE tab1
(
col1 INTEGER
);

Then, insert a few rows:


INSERT INTO tab1 VALUES (1);
INSERT INTO tab1 VALUES (2);
INSERT INTO tab1 VALUES (3);
INSERT INTO tab1 VALUES (5);
INSERT INTO tab1 VALUES (6);
INSERT INTO tab1 VALUES (8);
INSERT INTO tab1 VALUES (9);
INSERT INTO tab1 VALUES (10);
INSERT INTO tab1 VALUES (15);
INSERT INTO tab1 VALUES (20);
INSERT INTO tab1 VALUES (21);
INSERT INTO tab1 VALUES (22);
INSERT INTO tab1 VALUES (23);
INSERT INTO tab1 VALUES (25);
INSERT INTO tab1 VALUES (26);

COMMIT;

With data, you can take care of solving the gaps problem…

One of the most efficient solutions to the gaps problem involves using analytic functions (also known as window functions)


WITH aa AS
(SELECT col1 AS cur_value, LEAD (col1) OVER (ORDER BY col1) AS next_value
FROM tab1)
SELECT cur_value + 1 AS start_gap, next_value - 1 AS end_gap
FROM aa
WHERE next_value - cur_value > 1
ORDER BY start_gap

Using the LEAD function, you can return for each current col1 value (call it cur_value) the next value in the sequence (call it next_value). Then you can filter only pairs where the difference between the two is greater than the one.




ps

Tips to install Oracle 11gr2 RAC on AIX (6.1/7.1)

AIX is like an Unix environment awesome original, same to HP-Unix, and, if you have a plan to install Oracle RAC, you need to pay attention. I note some tips in this article to help.

1. Checking Operating System Packages

# lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.libperfstat 
bos.perf.perfstat bos.perf.proctools rsct.basic.rte rsct.compat.clients.rte 
xlC.aix61.rte

If not, install on AIX source by smity. It's easy, but remember, some packaged requires your IBM's account to download.

2. Verify UDP and TCP Kernel Parameters

# /usr/sbin/no -a | fgrep ephemeral

If you expect your workload to require a high number of ephemeral ports, then update
the UDP and TCP ephemeral port range to a broader range. For example:

# /usr/sbin/no -p -o tcp_ephemeral_low=9000 -o tcp_ephemeral_high=65500
# /usr/sbin/no -p -o udp_ephemeral_low=9000 -o udp_ephemeral_high=65500

3. Checking Resource Limits:
To ensure that these resource limits are honored, confirm that the line login
session required /usr/lib/security/pam_aix is set in /etc/pam.conf.For example:

dtsession auth required /usr/lib/security/pam_aix
dtlogin session required /usr/lib/security/pam_aix
ftp session required /usr/lib/security/pam_aix
imap session required /usr/lib/security/pam_aix
login session required /usr/lib/security/pam_aix
rexec session required /usr/lib/security/pam_aix
rlogin session required /usr/lib/security/pam_aix
rsh session required /usr/lib/security/pam_aix
snapp session required /usr/lib/security/pam_aix
su session required /usr/lib/security/pam_aix
swrole session required /usr/lib/security/pam_aix
telnet session required /usr/lib/security/pam_aix
xdm session required /usr/lib/security/pam_aix
OTHER session required /usr/lib/security/pam_prohibit
websm_rlogin session required /usr/lib/security/pam_aix
websm_su session required /usr/lib/security/pam_aix
wbem session required /usr/lib/security/pam_aix

4. Tuning AIX System Environment
Confirm the aio_maxreqs value using the procedure for your release:
AIX 6.1 and 7.1:

# ioo -o aio_maxreqs
aio_maxreqs = 65536

The aio is Asynchronous Input Output is an exciting parameter, I tried to control and modified it many times, but it's strongly to do from Oracle advices,

Quote:

Adjust the initial value of aio_maxservers to 10 times the number of logical disks divided by the number of CPUs that are to be used concurrently but no more than 80

Oracle document refer: https://docs.oracle.com/database/121/AXDBI/app_manual.htm#AXDBI7880

5. Tuning Virtual Memory Manager

vmo -p -o minperm%=3
vmo -p -o maxperm%=90
vmo -p -o maxclient%=90
vmo -p -o lru_file_repage=0
vmo -p -o strict_maxclient=1
vmo -p -o strict_maxperm=0

Note: You must restart the system for these changes to take effect

6. Increase System block size allocation

# /usr/sbin/chdev -l sys0 -a ncargs='128'

7. Configure SSH LoginGraceTime Parameter
On AIX systems, the OpenSSH parameter LoginGraceTime by default is commented
out, and the default behavior of OpenSSH on AIX can sometimes result in timeout
errors. To avoid these errors, complete the following procedure:
7.1. Log in as root.
7.2. Using a text editor, open the OpenSSH configuration file /etc/ssh/sshd_config.
7.3. Locate the comment line #LoginGraceTime 2m.
7.4. Uncomment the line, and change the value to 0 (unlimited). For example:
LoginGraceTime 0
7.5. Save /etc/ssh/sshd_config.
7.6. Restart SSH.

8. Setting priviledge to Oracle ASM Luns
Same to Solaris, HP-Unix. Remember, when you've got failure of ASM configuration, you need to flush out the disk's slice/partition by OS command "dd". And the slice/partition/LUN allocated from storage to IBM, has got different first alphabet to other platform. The alphabet begins by "r", example:

7.1 ORC and Voting disk
# chown grid:asmadmin /dev/rhdisk5 -> OCR
# chmod 660 /dev/rhdisk5 
# chown grid:asmadmin /dev/rhdisk6 -> Voting Disk
# chmod 660 /dev/rhdisk6
7.2 Datafile, Archivelog and Backup 
# chown grid:asmadmin /dev/rhdisk2
# chmod 660 /dev/rhdisk2
# chown grid:asmadmin /dev/rhdisk3
# chmod 660 /dev/rhdisk3
# chown grid:asmadmin /dev/rhdisk4
# chmod 660 /dev/rhdisk4
# chown grid:asmadmin /dev/rhdisk9
# chmod 660 /dev/rhdisk9
# chown grid:asmadmin /dev/rhdisk10
# chmod 660 /dev/rhdisk10

9. Enable simultaneous access to a disk device from multiple nodes
To enable simultaneous access to a disk device from multiple nodes, you must set the appropriate Object Data Manager (ODM) attribute, depending on the type of reserve attribute used by your disks. The following section describes how to perform this task using hdisk logical names

8.1. determine the reserve setting your disks use, enter the following command,where n is the hdisk device number

# lsattr -E -l hdiskn | grep reserve_

The response is either a reserve_lock setting, or a reserve_policy setting. If the attribute is reserve_lock, then ensure that the setting is reserve_lock = no. If the attribute is reserve_policy, then ensure that the setting is reserve_policy = no_reserve.

8.2. If necessary, change the setting with the chdev command using the following syntax, where n is the hdisk device number:

chdev -l hdiskn -a [ reserve_lock=no | reserve_policy=no_reserve ]

For example:
# chdev -l hdisk5 -a reserve_lock=no
# chdev -l hdisk5 -a reserve_policy=no_reserve

8.3. Enter commands similar to the following on any node to clear the PVID from each disk device that you want to use:

# /usr/sbin/chdev -l hdiskn -a pv=clear

When you are installing Oracle Clusterware, you must enter the paths to the appropriate device files when prompted for the path of the OCR and Oracle Clusterware voting disk. For example: /dev/rhdisk10

9.Configure Shell Limits
9.1. Add the following lines to the /etc/security/limits file:

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

9.2.Enter the following command to list the current setting for the maximum number of process allowed by the Oracle software user:

/usr/sbin/lsattr -E -l sys0 -a maxuproc

If necessary, change the maxuproc setting using the following command:

/usr/sbin/chdev -l sys0 -a maxuproc=16384

10. Configure User Process Parameters (Verify that the maximum number of processes allowed for each user is set to 2048 or greater)
Enter the following command:

# smit chgsys

Verify that the value shown for Maximum number of PROCESSES allowed for each user is greater than or equal to 2048. If necessary, edit the existing value.
When you have finished making changes, press Enter, then Esc+0 (Exit) to exit.

11. Configure Network Tuning Parameters:
To check the current values of the network tuning parameters:

# no -a | more

If the system is running in compatibility mode, then follow these steps to change the parameter values:

Enter commands similar to the following to change the value of each parameter:

# no -o parameter_name=value

For example:

# no -o udp_recvspace=655360

Add entries similar to the following to the /etc/rc.net file for each parameter that you changed in the previous step:

if [ -f /usr/sbin/no ] ; then
/usr/sbin/no -o udp_sendspace=65536
/usr/sbin/no -o udp_recvspace=655360
/usr/sbin/no -o tcp_sendspace=65536
/usr/sbin/no -o tcp_recvspace=65536
/usr/sbin/no -o rfc1323=1
/usr/sbin/no -o sb_max=4194304
/usr/sbin/no -o ipqmaxlen=512
fi

For the ISNO parameter tcp_sendspace, use the following command to set it:

# ifconfig en0 tcp_sendspace 65536

By adding these lines to the /etc/rc.net file, the values persist when the system restarts.

12. Automatic SSH configuration
By default, OUI searches for SSH public keys in the directory /usr/local/etc/, and ssh-keygen binaries in /usr/local/bin. However, on AIX, SSH public keys typically are located in the path /etc/ssh, and ssh-keygen binaries are located in the path /usr/bin. To ensure that OUI can set up SSH, use the following command to create soft links:

# ln -s /etc/ssh /usr/local/etc
# ln -s /usr/bin /usr/local/bin

In rare cases, Oracle Clusterware installation may fail during the "AttachHome" operation when the remote node closes the SSH connection. To avoid this problem, set the following parameter in the SSH daemon configuration file /etc/ssh/sshd_config on all cluster nodes to set the timeout wait to unlimited:

LoginGraceTime 0

13. Shell Limit
Adding these line in /etc/security/limits

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

14. Create groups and users

# mkgroup -'A' id='1000' adms='root' oinstall
# mkgroup -'A' id='1031' adms='root' dba
# mkgroup -'A' id='1032' adms='root' oper
# mkgroup -'A' id='1020' adms='root' asmadmin
# mkgroup -'A' id='1022' adms='root' asmoper
# mkgroup -'A' id='1021' adms='root' asmdba
# mkuser id='1100' pgrp='oinstall' groups='dba,asmadmin,asmoper,asmdba' home='/portalgrid/grid' grid
# mkuser id='1101' pgrp='oinstall' groups='dba,oper,asmdba' home='/portaloracle/oracle' oracle

# mkdir -p /portalapp/app/11.2.0/grid
# mkdir -p /portalapp/app/grid
# mkdir -p /portalapp/app/oracle

# chown grid:oinstall /portalapp/app/11.2.0/grid <- GRID_HOME
# chown grid:oinstall /portalapp/app/grid <- GRID_BASE (ORACLE_BASE for Grid user)
# chown -R grid:oinstall /portalapp
# chown oracle:oinstall /portalapp/app/oracle
# chmod -R 775 /portalapp/

15. Setting the profile
15.1. Grid Profile

export TEMP=/tmp
export TMP=/tmp
export TMPDIR=/tmp
umask 022

export ORACLE_HOSTNAME=portal1
export ORACLE_BASE=/portalapp/app/grid
export ORACLE_HOME=/portalapp/app/11.2.0/grid
export GRID_HOME=/portalapp/app/11.2.0/grid
export CRS_HOME=/portalapp/app/11.2.0/grid
export ORACLE_SID=+ASM1

export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib

16. Prevent Xserver does not display correct term

# startsrc -x

17. Create the following softlink needed for some Oracle utilites

# ln -s /usr/sbin/lsattr /etc/lsattr

To check existing capabilities, enter the following command as root; in this example,
the Grid installation user account is grid:

# /usr/bin/lsuser -a capabilities grid

To add capabilities, enter a command similar to the following:

# /usr/bin/chuser capabilities=CAP_NUMA_ATTACH,CAP_BYPASS_RAC_VMM,CAP_PROPAGATE grid

18. Remember to run the Installation fixup scripts

$ ./runcluvfy.sh stage -pre crsinst -n node -fixup -verbose

With Oracle Clusterware 11g release 2, Oracle Universal Installer (OUI) detects when the minimum requirements for an installation are not met, and creates shell scripts,
called fixup scripts, to finish incomplete system configuration steps. If OUI detects an incomplete task, then it generates fixup scripts (runfixup.sh). You can run the fixup script after you click the Fix and Check Again Button.

19. In the installation progressing, when root.sh at node 2, can the error such as "CRS appear in node 1, did not attemp to stop cluster, re-join cluster, by pass and continue installation.
- If Xterm did not occur, then do: $ export ORACLE_TERM=dtterm
- Manually export ORACLE_BASE, ORACLE_HOME when make an installation before running runInstaller.sh
- If /tmp is too small <500MB, then make a private directory point to other directory, change owner to grid, oracle user, example:

A. Grid

# cd /portallog
# mkdir /portallog/tmp
# chown -R grid:oinstall /portallog/tmp

B. Oracle

# cd /portal
# mkdir tmp
# chown -R oracle:dba /portal/tmp 

C. Export

# export TMP=/portallog/tmp
# export TEMPDIR=/portallog/tmp
# export TMPDIR=/portallog/tmp

Hope this help.
End.
TAT




ps

NHL DFS Slapshot (Monday, March 28)

This is a preview of Zach Edwards NHL DFS Slapshot. With a PREMIUM membership, you earn access to his NHL picks all season long!




ps

McCain Attacks Bloggers, Sinks Ship with Loose Lips

That's no easy feat even for an old navy man such as John McCain. He says bloggers are old enough to fight his damn wars but not enough to speak our mind.

Think Progress notes McCain's attack on the blogosphere:

When I was a young man, I was quite infatuated with self-expression, and rightly so because, if memory conveniently serves, I was so much more eloquent, well-informed, and wiser than anyone else I knew. It seemed I understood the world and the purpose of life so much more profoundly than most people. I believed that to be especially true with many of my elders, people whose only accomplishment, as far as I could tell, was that they had been born before me, and, consequently, had suffered some number of years deprived of my insights…It’s a pity that there wasn’t a blogosphere then. I would have felt very much at home in the medium.
Damn the torpedoes and full steam ahead. I think we've just been broadsided matey.

Very wittily said John, but all you've accomplished is to demonstrate your ignorance of the Blogosphere. If you only knew how old I really am (but don't you dare ask).

So I guess we've all been told. So much for freedom of speech. Maybe we should put an age limit on it. Now there's an idea for you John. There outta be a law.
In 2000, John McCain called Rev. Jerry Falwell an “agent of intolerance.” Yesterday, in a naked attempt to broaden his political base, McCain delivered the commencement speech at Falwell’s Liberty University. McCain’s hypocrisy was noted on many blogs. He returned the favor in his speech at Liberty by attacking the blogosphere.
A commentor also noted:
McCain’s lurch to the right begs the following question: Could it be possible that Republicans are also saddled with shitty consultants?
Psst... here's a dirtly little secret. McCain's a mole. So now you know.

Related links: daily fisk, news, us-news, in the news, news and politics, politics, political, john+mccain, blogging, blogosphere, humor, fisk




ps

Uber Microsoft Propogandist Scoble Jumps Ship

Slippery Bloggers getting their Palms Greased

Robert Scoble has joined that elite group of A-listers who have successfully exploited their new found fame in the blogosphere. He is reported to be leaving Microsoft for a more lucrative job offer.

Scoble was quoted as saying:
"I wish to thank Bill Gates for giving me an opportunity at Microsoft catapulting me onto the blogger A-list. But above all I wish to thank my loyal suckup fans who have made this all possible. For without you I am nothing".
Amen brother.

Todays Blog Quiz:

So what is the difference between a self-serving politician, and a self-serving blogger?

Absolutely nothing.

Related links: computing, internet, computers and internet, technology, tech, scobleizer, humour, humor, satire, microsoft, bill+gates







ps

Trumps Wahlsieg: Demokraten im US-Senat wollen Richter im Eiltempo bestätigen

Die Zeit sitzt den US-Demokraten im Nacken. Noch vor Trumps Amtsantritt wollen sie so viele Bundesrichter im US-Senat bestätigen wie möglich. Denn auch in der Parlamentskammer übernehmen bald die Republikaner die Kontrolle.




ps

TV-Moderator Hegseth soll Trumps Verteidigungsminister werden

Tag für Tag werden neue Namen der künftigen Trump-Regierung bekannt: Für Aufsehen sorgt jetzt, dass der rechte TV-Moderator Pete Hegseth das Verteidigungsministerium übernehmen soll. Auch Tech-Milliardär Musk bekommt einen Posten.





ps

FCC Announces Cell Jammers, GPS Jammers, and Other Jamming Devices Campaign

In recent years, the number of websites offering  "cell jammers" or similar devices designed to block communications and create a "quiet zone" in vehicles, schools, theaters, restaurants, and other places has increased substantially. FCC Announces Cell Jammers, GPS Jammers, and Other Jamming Devices Campaign





ps

Tax Time Stress: IRS offers Tax Tips to Reduce Tax-Time Stress

You may not be thinking about your tax return right now, but summer is a great time to start planning for next year. Organized records not only make preparing your return easier, but may also remind you of relevant transactions, help you prepare a response if you receive an IRS notice, or substantiate items on your return if you are selected for an audit. Tax Time Stress: IRS offers Tax Tips to Reduce Tax-Time Stress




ps

QA with Betty Thompson, KTUL receptionist

Brought to our attention by Hurst Swiggart, a nice story in the Tulsa World.




ps

Free VLC plays TTM audio clips on smartphone

To play RealAudio clips from this site, use the excellent and free VLC player. Works great on smartphones, too.




ps

TNP - Six Steps to Good Health

Simple guide to using the tools and techniques on The Natural Path




ps

Doing It MYCPS Way!

...to solfege your website traffic!




ps

My Favorite Phone Apps

Today, a friend asked me what apps I have on my iPhone. She has over 200--many of which she never uses, and she says they're cluttering up her phone screen. Plus, it's difficult for her to find those apps that...




ps

Wounded rebel rescued by 8ID troops

The CNT was identified as Melchor Fabula alias Allan/Rico, 41 years old and a member of Bugsok Platoon, Sub-Regional Committee Sesame, Eastern Visayas Regional Party Committee.




ps

Additional troops augmented in Region 8 to bolster campaign of ending local communist armed conflict

The 8th Infantry “Stormtroopers” Division welcomed the arrival of 2nd Howitzer Platoon, Bravo Company, 3rd Field Artillery Battery (3FAB), Armor Artillery Regiment (AAR), Philippine Army, in the region.




ps

More troops deployed in Eastern Visayas to totally eradicate remnants of the CPP-NPA

The deployment of the 1st Howitzer Platoon, Bravo Battery of 7FAB, AAR with their 155mm M114 Howitzer will bolster the current firepower capabilities of the Division for the total eradication of the remnants of the CCP-NPA.




ps

Thermaltake Toughpower W0105 700watts psu review

Due to the rising power consumption of the personal computer systems today, the consumer demands for high-wattage power supplies are increasing faster than ever. Thermaltake Technology officially releases the Toughpower 14cm fan high performance power supply series. Due to the incredible power consumption of the high-performanc

e enthusiast computer systems and the strenuous torture power supplies undergo, Thermaltake has named the new series of power supplies the Toughpower. Persistent and stubborn under the harshest environments, the Toughpower series represent the highest quality power supplies that exist on the market.



Since the Toughpower series are deemed as the most reliable power supplies ever, the high-efficiency, high-performance, and high-reliability nature of these units enable them to naturally have a MTBF of more than 120,000 hours. The endless energy that the Toughpower supplies are delivered to every single component within the computer system, including the latest Intel and AMD dual-core processors, nVIDIA SLI and ATI CrossFire ultra high-end Dual PCI-Express video cards, and arrays of redundant hard disks. The Toughpower series supplies four independent lines of +12V (12V1, 12V2, 12V3, 12V4) rails for the purest and most stable for the most demanding hardware within your system. The strict voltage regulation of 3% variance, independent output rails, higher than 83% efficiency at all times, and a huge 14cm dual ball-bearing fan all work together to provide the user with endless energy at all times. In addition, the total maximum total current output of 48A(W0103 - 600W), 52A(W0104 - 650W), 56A(W0105/W0106 - 700W), and 60A(W0116/W0117 - 750W) on +12V rails will be able to support even the most demanding system configuration available.



The features do not stop here, the Toughpower Cable Management 700W (W0106) and 750W (W0116) features modularized cable sets. Users can plug and unplug cables according to their own needs. As a result of optimizing the cables within the computer system, airflow increases, styling increasing, and the overall ambient temperature within the system drops significantly, providing a more stable computer system.



Features:

-Complies with ATX 12V 2.2 & EPS 12V version
-SLI, Cross-Fire, and Dual Core CPU ready
-Next generation four +12V rails(12V1, 12V2, 12V3, 12V4) supports high-end graphic card and PC system (combined loading of 48A)
-Independent Voltage Circuit: offers unflappable current delivery under heavy load and makes voltage output more stable
-Active Power Factor Correction (PF>0.99) and high efficiency (up to 85%)
-Extremely good voltage regulation (±3%): provides steady voltage for system
-Industrial grade components (capacitor, transformer, etc)
-High reliability: MTBF>120,000 hours
-Mirror effect housing and reliable 14cm ball-bearing fan
-Protections: Over Current, Over Voltage, and Short-Circuit protection
-Safety / EMI Approvals: CE, CB, TUV, FCC, UL, CUL, and BSMI certified




ps

LXer: Upstream Linux 6.12 Makes It Easier To Build A Debug Kernel For Arch Linux

Published at LXer: The upstream Linux 6.11 kernel introduced the ability to easily produce a Pacman kernel package for Arch Linux with the new "make pacman-pkg" target. With Linux 6.12 new...



  • Syndicated Linux News

ps

LXer: Critical Linux CUPS Printing System Flaws Could Allow Remote Command Execution

Published at LXer: A new set of security vulnerabilities has been disclosed in the OpenPrinting Common Unix Printing System (CUPS) on Linux systems that could permit remote command execution under...



  • Syndicated Linux News

ps

LXer: Linux 6.12 Adds Driver For PixArt PS/2 Touchpad Found In Some Laptops

Published at LXer: The input subsystem updates merged this week bring a number of improvements to existing drivers while adding one new input driver. Read More......



  • Syndicated Linux News

ps

LXer: Linux 6.12 x86 Platform Drivers Brings Improvements For Laptops Plus Intel ELC

Published at LXer: The x86 platform driver changes that were merged last week for the Linux 6.12 kernel continue to be quite lively with changes for enhancing Linux laptop support along with other...



  • Syndicated Linux News

ps

Long Term Life Tips: Top 5 Regrets People Make on their Deathbed

Long Term Life Tips: Top 5 Regrets People Make on their Deathbed:

An astonishing “top 5 list” blog comes to us via longtermtips and I’m pleased to say I’m pretty sure I won’t have any of these regrets when my time inevitably comes.

By Bronnie Ware (who worked for years nursing the dying)

For many years I worked in palliative care. My patients were those who had gone home to die. Some incredibly special times were shared. I was with them for the last three to twelve weeks of their lives.

People grow a lot when they…

Go read. It’s worth it. Then think on it.




ps

तपाईंको कम्प्युटरको Speed बढाउने १० Tips हरु

तपाईंको कम्प्युटरको Speed बढाउने १० Tips हरु

१. सर्बप्रथम कम्प्युटर खोल्ने बित्तिकै कुनै पनि Application चाँड चांडै नखोल्नुस्, पहिला राम्रो सँग PC लाई Bootup हुन
दिनुस्।

२. कुनैपनि Application बन्द गरी सके पछि आफ्नो Desktop लाई एक पल्ट
Refresh गर्नुस्| यसले
तपाईंको कम्प्युटरको Ram
मा जम्मा भएको Unused फाइलहरु Remove हुन्छ।

३. आफ्नो कम्प्युटरमा सके सम्म Wallpaper को Use नै नगर्नुस् र यदि गर्नुनै छ भने ठुलो साइजको Image लाई Use नगर्नुस् ।

४. आफ्नो Desktop मा धेरै
Unnessesary Shortcut हरुलाई नराख्नुस् र सके सम्म Desktop लाई Clean
नै राखनुस् । Desktop
मा फोटो तथा Music को फाइलहरुलाई पनि Save नगर्नुस्।

५. RecycleBin लाई बेला बेलामा Empty गरी राख् नुस्। तपाईंले Delete गर्नु
भएको फाइलहरु Recycle Bin मा जम्मा भई राखेको हुन्छ र तपाईंको कम्प्युटरको Harddrive को ठाउँ यसले लीइ राखेको हुन्छ।

६. Temporary Internet files लाई बेला बेलामा Delete गरी राखनुस् ।

७. आफ्नो कम्प्युटरलाई प्रत्येक २ महिनामा Defragment गर्नुस्। यसले तपाईंको कम्प्युटरको Harddrive मा धेरै
खाली ठाउँ बनाउछ र Program हरु Fast
चल्छन ।

८. आफ्नो कम्प्युटरलाई जहिले पनि २ वा २ भन्दा बढीमा partitions गर्नुस् र सके सम्म Software हरुलाई दोस्रो वा तेस्रो Drive मा Instal गर्नुस्। सके सम्म C Drive लाई खाली नै राख् नुस् ।

९. जब तपाईंले नयाँ Software हरु Install
गर्नु हुन्छ त्यो Software को Tray Icon लाई Disable गर्नुस्, यि Icon
हरुले तपाईंको कम्प्युटरको RAM को Use गरी राखेका हुन्छन र कम्प्युटर Slow हुन सक्छ र Software का starting the application automatically Option
लाई पनि Disable गर्न नभुल्नु होला । यस्ता Option हरुलाई तपाइले
software हरु Install गरी सके पछि उक्त Software को Tools मा गएर पनि Disable गर्न सक्नु हुन्छ।

१०. आफ्नो कम्प्युटरलाई धुलो बाट पनि सके सम्म बचाउनुस्, किन भने धुलोले
तपाईंको कम्प्युटरका Cooling Fan हरुलाई जाम गरी दिन सक्छ यसले कम्प्युटर अनावश्यक रुपमा तातो हुन सक्छ र कम्प्युटर
Slow Down हुन सक्छ ।

यि १० वटा साधारण Tips हरुलाई बिचार पुर्याउनु भयो भने तपाईंको कम्प्युटर तुलनात्मक रुपमा पहिले भन्दा धेरै Speed
मा चल्न सक्छ। "





ps

December 12th 2011 Radio Heritage Foundation - New Feature - 2KM Kempsey

2KM Kempsey 'The Voice of the Macleay'




ps

December 14th 2011 Radio Heritage Foundation - New Feature - 4IP Ipswich

4IP Ipswich 'Your Local Station for Better Entertainment'




ps

RAF Nacton - Ipswich Airport in 1945

Ipswich Airport (IATA: IPW, ICAO: EGSE) is a former airfield on the outskirts of Ipswich, Suffolk England. It was known as RAF Nacton when No. 3619 Fighter Control Unit of the Royal Auxiliary Air Force were based there.

http://en.wikipedia.org/wiki/Ipswich_Airport





ps

Haikyu!! The Dumpster Battle UK and Ireland Cinema Release Details

The good folks at anime giants Crunchyroll have sent us the details for the UK and Ireland cinema release of Haikyu!! The Dumpster Battle. ...




ps

Haikyu!! The Dumpster Battle Movie Review

Haikyu!! The Dumpster Battle is due to hit cinemas in the UK and Ireland from Friday 31st May 2024 thanks to the good folks at Crunchyroll. ...




ps

[94% Discount] Create And Sell iOS/Android Apps In Seconds

If you can switch on a smartphone or computer, this will be your easiest and fastest chance to create a mobile app serving lots of users. In days past, it is not easy to create and sell a mobile app when you can’t code, design or understand any programming language. Appz will do it all […]




ps

[87% Discount] *INSANE* ???? Swipe 10 A.I. apps that make $3,503/day

You are not going to get another sale event like this from Chris X again… Own 10 A.I. apps that make $3,503/day, bundled in 1 amazing suite… With which you can create a variety of income assets within clicks! Start exploiting A.I. as these apps plug into ChatGPT to automate your money-making process… And mold […]




ps

Chrysler Road Trip Savvy Tips Help Families Travel Safe and Smart




ps

Cheap Travel Savings' Tips

In order to stay in business, companies are starting to actively look for cheap travel savings' opportunities. They find that the slow economy has affected their way of doing business and they can no longer afford to give their employees the best travel options when they have to leave the office on business.

Many business use their corporate credit card accounts to achieve deep discounts on their corporate travel charges. Their travel departments have negotiated travel contracts with major airlines, that guarantee them consistent, low-cost airfare if they are their only airline provider. These cheap travel saving are modest airfare accommodations that do not offer many frills, but will get their employee where they need to be to negotiate contracts for new industry.

Many people try to allow room in their schedules to be flexible with the dates that they depart on their travel adventures. Cheap travel savings can be realized when travel sites require departure on a specific date, for a specific time, that must be accomplished by a specific date. Being specific can afford people to be flexible on their travel departure days, if that flexibility will give them deep discounts on their airfare.

People that travel for pleasure have learned quickly that it pays to travel with airlines that offer miles points for choosing their airline for travel. These cheap travel savings can quickly add up into free flights, or deeply discounted air flights to luxurious locations throughout the world. Other cheap travel savings have been provided to family members that may fly for half of the original fare, if their travel was booked at the same time as another family member.

Retired military get really cheap travel savings, when they use military aircraft as their mode of transportation. These travel benefits are part of their military retirement benefits, and there are flights leaving daily at many major military bases for points all around the world. This type of cheap travel savings is not without risks, however, because at any point in their travels, they may be bumped off the flight by a military member with an emergency to get to.

Some people use Internet auction sites to find cheap travel savings. There are online travel agents that list hundreds of different types of vacations for a very ridiculously low price, and the bidding can be quite challenging at times. Some of these travel offers can be bought straight out for a stated price, but there are thousands of other vacation packages where pricing can be controlled through a bidding process.

There are other cheap travel savings to be found, in air-fare war sales, that pit one airline against another in an effort to take a larger share of the available travel market at any given time of the year. The offers for cheap travel savings can sometimes give the business and personal traveler the option of flying from a specific airport location, or through a certain carrier that is featuring low prices for all of their flights.

These are just a few travel savings' tips that people use. Take care and happy travels.




ps

Tips on How to Choose A Trade Show Display Company

The backbone of your trade show exhibit displays is the trade show display company which plans and designs your trade show exhibit. You must look for an organization which offers wide range of options for you to choose from. They also assign experts for your project who will take care of every possible factor which can prove to be advantageous for the upcoming trade show.

While opting for a trade show display company you must check that their package offers international services so as to meet your increasing demands. Their package must also be flexible as per your needs. They should be ready to replace your exhibit rentals with custom exhibits whenever you feel like doing so.

Lastly, never forget to compare the prices of different trade show display companies so that you don't end up overpaying for your project.




ps

10 Tips for Effective Time Management

10 Tips for Effective Time Management
Does having "too much to do and not enough time to do it" sound familiar? If so, it's time to work smarter, not harder so you can increase productivity decrease stress and have more time for fun! Leading Brisbane recruitment-to-recruitment company, Galaxy Recruitment offers the following tips to help you get the most out of your time.

1. Set Goals and Plan
As the old saying goes, "by failing to plan, you plan to fail". Set your goals and develop a realistic plan for your direction.
2. Prioritise and use a To-Do list
Differentiate between the urgent tasks that produce short-term outcomes, and the vital tasks that produce long-term outcomes. Rank your priorities by numbers, colours, or symbols - use a system that suits you.
3. Learn to say "no"
It's a small word, yet many people find it extremely difficult to say "no"! By saying "yes" to everyone just to please them, you may end up overcommitting and letting them down instead. If it helps, remember to phrase your response so that you are saying "no" to the project and not the person. e.g "No, I can't take this project on right now. I simply don't have the bandwidth to complete the task properly."
4. Delegate
If you can, delegate routine activities that aren't part of your core competency. Remember you are delegating, not abdicating!
5. Avoid procrastination
Procrastination usually sets in when a task is perceived to be difficult to achieve. Try breaking your task into smaller milestones that you can satisfy systematically. Crossing off these smaller tasks as you complete them helps you make track of your progress and keeps the end outcome within sight.
6. Be flexible
Be realistic about your goals and allow time for interruptions, distractions and the unplanned "emergency" - they are inevitable.
7. Plan around your "Prime Time"
If possible, plan your tasks in accordance with the the time of the day that you perform at your peak. If you're a "morning person" plot your work schedule around fulfilling the challenging tasks during the day, and the more routine aspects of your work such as data entry, responding to emails or making telephone calls during the afternoon. If you're more of an afternoon or "night owl" reverse the order.
8. Keep a journal with you at all times
Always be ready to write down your best ideas in an instant - you never know when a killer idea might strike! Your journal should also be used as a goal-tracker that you can go through weekly to make sure you are on track.
9. Reward yourself
When you meet your goals and objectives, be sure to celebrate your success and achievements. A bit of positive reinforcement now and then serves to remind you why you are doing what you do for a living.
10. Effectiveness over efficiency
Although you should aim for both outcomes, try not to bog yourself down in processes if they add no value to the outcome. In the scheme of things, completing tasks effectively is much more important than doing things quickly.
Source: Galaxy Recruitment




ps

Keep podcasting simple - KPSS

Keynote address 7 – Don Katz CEO Audible Inc The main message to the Portable Media Expo from Don Datz, was that for podcasting to take off, it needs to be easy, really easy. Here are the key points: 1)...




ps

Mar 22, The Ezine Act RSS Feeds Center Helps You build Your Feeds!

Use the Ezine Act RSS Feeds Center to build your news and distribute it using some HTML codes. It helps you integrate some of your content, or news from other providers on your pages.




ps

Apr 7, Want to Work at Home? This Article Helps You Start Right!

If you wanted to work at home, implement the guidelines in this article. They are necessary for any business that you want to build working from home.




ps

3CX: Our Favorite Tips

As the 3CX phone system grows in popularity across our client base, we thought we'd share a few tips on using it more effectively!




ps

Power Saving Tips

It is easy being green! We've compiled a few tips to save power (and therefore money!) on your computer.




ps

LaserLightShow.ORG Expands Vegan Facebook Groups: Thriving Plant-Based Community Grows

Decade of Growth: LaserLightShow.ORG's Vegan Facebook Groups Flourish Over the past 10 years, their expanding online community has become a vibrant hub for plant-based enthusiasts to connect, share, and inspire each other. [PR.com]




ps

From Valencia, Spain, Emilio Modern Gypsy Unveils "Reborn" Music Video and Announces Global Performance Availability

Modern Spanish guitarist Emilio Modern Gypsy debuts his new music video, "Reborn," filmed in Tarragona, Spain, capturing his signature blend of flamenco fusion, modern and global rhythms. Now based in Valencia, Emilio is available for performances worldwide, bringing a renewed passion to his modern Spanish guitar. [PR.com]




ps

Boogie Pimps, Actually Playlist.2006

Boogie Pimps, Actually Playlist.2006




ps

Clickvibes Launches Mobile Apps, Bringing Nigerian Communities Closer

Exciting news for Nigerian socializers. Clickvibes, the popular online community platform, has just launched its official mobile apps for iOS and Android. This means you can now connect, engage, and share ideas with your communities anytime, anywhere. What this means for you: Stay connected on the go: Never miss a beat with instant notifications on discussions, comments, and messages. Personalized feed: Discover content [PR.com]