Saturday, September 23, 2017
Tuning DB2 system performance chat on Aug 12
Tuning DB2 system performance chat on Aug 12
Tuning and Monitoring DB2 System PerformanceCheers,
August 12 @ 10:00 AM China Standard Time (GMT+0800)
August 11 @ 10:00 PM Toronto Time
Speakers: Sal Vella - VP, Guiyun Cao - one of the key IBM DB2 performance analysts
Host: Frank Ning
In this chat, Guiyun Cao from the IBM Canada Lab will share some best practices about tuning and monitoring of DB2 system performance. He will talk about determining, addressing the system bottlenecks and some best practices for DB2 performance.
Guiyun Cao has been with IBM more than 10 years specializing in DB2 performance, in particular with SAP and DB2 performance. He is one of the key performance analysts to serve IBM customers for their business success.
- Register to attend
Leons Petrazickis
DB2 Express-C Community Team
download file now
Monday, September 18, 2017
Unboxing the Sony MHCEC69I CEK Mini System with Direct iPod Dock
Unboxing the Sony MHCEC69I CEK Mini System with Direct iPod Dock
Unboxing the Sony MHCEC69I.CEK Mini System with Direct iPod Dock Tube. Duration : 17.20 Mins.
Product Description A Micro Hifi with proven Sony Sound quality and the added extra of an iPod dock. Small and attractive the MHC-EC69i is a great micro unit with all the functionality you need. FM radio with 30 presets CD player and a full iPod dock gives you access to all your music in a tiny package. Proven Sony sound quality with 100 watts of sound output and 2 way separate speakers - more than enough for bedrooms and kitchens. Features Great value Mini HiF? system with integrated iPod/iPhone cradle. Just dock your iPod/iPhone and enjoy brilliant audio playback 7 built-in equaliser presets and X-MAXIMISER function to get the best sound from your music collection Crisp clear stereo sound from 2-way front speakers delivering 100W of total system power Boombox type CD loader and 1 DISC CD player Supports most popular audio file formats including CD-R CD-RW MP3 AAC and WMA (DRM) 40mm horn tweeter to fill any room with rich blasting bass FM/AM radio tuner with 30 stations preset (FM 20/AM 10) and dual external antenna PC IN for easy connection with your home computer or laptop and easy release of your entire iTunes digital music library Neat space-saving unit stylishly designed to fit with any decor iPod/CD/Tuner sleep and play timer functions plus remote commander for easy operation from anywhere in the room www.amazon.co.uk twitter.com
Keywords: Unboxing, Sony, MHCEC69I.CEK, Mini, System, with, Direct, ipod, Dock, greenmanvideos
download file now
Saturday, September 16, 2017
Trend Micro System Cleaner 1 2 2 1001
Trend Micro System Cleaner 1 2 2 1001
Usage:
� Create a temporary folder and copy SYSCLEAN.COM into this folder. NOTE: This temporary folder should be created on a local or mapped drive.
� Download latest malware and spyware pattern files (see Requirements) Extract the downloaded ZIP pattern files into the created folder.
� Close all applications running on your system, including any antivirus software.
� Run the executable file, SYSCLEAN.COM, by either: Double-clicking the tool in Windows Explorer / Executing it via command prompt using syntax based on the aforementioned parameters.
� Enable any antivirus software that is installed on your system and perform a manual scan. NOTE: This fix tool generates the log file, SYSCLEAN.LOG, in its current folder.
DOWNLOAD LOCATIONS
for Trend Micro System Cleaner 1.2.2.1001:
|
download file now
Monday, September 11, 2017
Ubuntu is W3Techs Operating System of the Year 2015
Ubuntu is W3Techs Operating System of the Year 2015
Ubuntu is slowly but steadily improving its footprint in the web server space. W3Tech provides some of the most reliable data regarding the use of various technologies in the web server space. According to W3Techs latest set of data, Ubuntu is now commanding 11.1% market-share among websites whose operating system we know.

Ubuntu: W3Techs Operating System of the year 2015

download file now
Saturday, September 9, 2017
Training Certification Red Hat Certified Architect RHCA for Red Hat Enterprise Linux Operating System
Training Certification Red Hat Certified Architect RHCA for Red Hat Enterprise Linux Operating System
- Red Hat Certificate of Expertise in Deployment and Systems Management.
- Red Hat Certificate of Expertise in Directory Services and Authentication or Red Hat Certified Virtualization Administrator.
- Red Hat Certificate of Expertise in Clustering and Storage Management.
- Red Hat Certificate of Expertise in Security: Network Services or Red Hat Certificate of Expertise in Server Hardening.
- Red Hat Certificate of Expertise in Performance Tuning.
To become certified, an RHCA will have demonstrated knowledge and skills in a number of areas beyond RHCE, such as those related to systems deployment, systems management, clustering, and storage management.
However, the RHCA certification offers the flexibility to demonstrate additional skills in either directory services and authentication or in managing virtualized systems. Consequently, an RHCA will have many, but not necessarily all, of the following skills:
- Installing and configuring a Red Hat Network Satellite server.
- Configuring users, groups, administrators, and activation keys on a Satellite.
- Creating base and child channels on a Satellite.
- Using Cobbler and Satellite to install, configure, and manage systems.
- Managing data using logical volumes and snapshots.
- Configuring high-availability clusters using physical or virtual systems.
- Configuring a GFS file system to meet performance, size, and quota objectives.
- Configuring iSCSI targets and initiators.
- Configuring a Kerberos realm.
- Configuring Red Hat Directory Server to provide a centralized directory with access control.
- Configuring Red Hat Enterprise Linux� clients to authenticate using various mechanisms, including Kerberos, LDAP, and Microsoft Active Directory.
- Configuring and managing hypervisors and virtual hosts using Red Hat Enterprise Virtualization.
- Analyzing system performance and behavior using tools such as vmstat, iostat, mpstat, and sar.
- Configuring systems to provide information using SNMP.
- Configuring runtime kernel parameters.
- Analyzing system and application behavior using ps, strace, top, Oprofile, and Valgrind.
- Configuring disk subsystems and scheduling algorithms and network buffers for optimal performance for specific requirements.RHCSA > RHCE > RHCA (Red Hat Enterprise Security: Network Services + Red Hat Enterprise Deployment and Systems + Red Hat Enterprise Directory Services and + Red Hat Enterprise Virtualization Exam + Red Hat Enterprise Clustering and Storage + Red Hat Enterprise System Monitoring and Performance Tuning Expertise Exam)
For more information you can visit http://www.redhat.com/training/certifications/rhca/
download file now
True System Security Tweaker
True System Security Tweaker
![]() |
True System Security Tweaker Screen Shot |

Use it to disable system features for certain user profiles; hide Start menu items and Open-Save dialogs options. True System Security Tweaker has got a simple but nicely designed interface for selecting over 470 security options for your system. Also the Delphi source code is available too.
Features:
?Over 470 security tweaks for your system?The password control to prevent unauthorized access to the program
?The ability to reset all tweaks to the previous state
?Simple designed interface
?Doesn�t require installation, can been run from a portable device

download file now
Wednesday, August 23, 2017
Two curves in one coordinate system
Two curves in one coordinate system
Octave
% Octave code to plot the function,
% y = x.^2 and y = x.^-2
% in the domain of, [-4, 4]
close all
x = -4:.1:4;
y1 = x.^2;
y2 = -x.^2;
h = plot(x, y1, -b, x, y2, :c)
grid on
xlabel(x), ylabel(y), axis([-4, 4, -20, 20])
text(-.5, 5, f(x) = x^2)
set (h(1), "linewidth", 3)
set (h(2), "linewidth", 3)
text(-.5, -5, f(x) = -x^2)
print -deps twoPlots.eps
print -dpng twoPlots.png set (h(1), "linewidth", 10)

Maple

download file now
Friday, August 11, 2017
Ubuntu Add Key To System
Ubuntu Add Key To System
One can easily add a key pair to your own system so that you do not have to keep specifying it with the
To add the keypair, simply run this command once:
ssh-add /path/to/key.pem
Now you can just log into your instances like so:
ssh ubuntu@ec2-xxx-xxx-xxx-xxx.eu-west-1.compute.amazonaws.com
download file now
Friday, August 4, 2017
Tutorial Uninstall CrossOver From Linux System Ubuntu
Tutorial Uninstall CrossOver From Linux System Ubuntu
- Open Terminal, then type: sudo su
- Entered into the directory /opt/cxoffice/bin by typing this command:
cd /opt/cxoffice/bin
- Then run cxuninstall file by typing this command:
./cxuninstall
- Will display window like this screenshot:
- You must press Uninstall and delete bottles button for complete remove.
- Wait until uninstalling process is complete.
- Then will display window like this:
- Press OK button
- And the CrossOver application has been completed to remove.
download file now
Wednesday, August 2, 2017
Tricks to Edit AM PM Symbol System Clock Format
Tricks to Edit AM PM Symbol System Clock Format
System Clock Tricks: How to Insert your name in Taskbar Clock
This Tricks Will Show you How to Edit or Change PM and AM symbol to your Desired Name. But before we change the format, let us know what AM/PM means. 12 Hour Clock or know as AM/PM is a time conversion convention in which the 24 hours of the day are divided into two periods.
This Two Periods called ante meridiem (a.m., English: "before midday") and post meridiem (p.m., English: "after midday"). Each period consists of 12 hours numbered: 12 (acting as zero),1, 2, 3, 4, 5, 6, 7, 8, 9, 10, and 11. Most analog clocks and watches today use the 12-hour dial, on which the shorter and sometimes thicker hour hand rotates once every 12 hours and twice in one day. Now lets start these AM/PM tricks;
These Tricks Done by Editing your "Regional and Language Options".
Follow These Tips:
1. Open "Regional and Language Options" --> Run INTL.CPL then hit Enter.
2. Click Customize.
3. in "Customize Regional Options" --> Click Time Tab.
4. Delete Am/PM symbol then Insert your Desired Name for your PM and AM Clock Format. Click Apply then OK in "Cuztomize Regional Options" and OK again in "Regional and Language Options". Have Fun in your New Taskbar Clock Format. cyah!..
Change your System time Clock using Command Prompt: Here
More Tags: Angry Bird, Blogger, Fate , Plants Vs Zombie, Special Force, Point Blank, Ai Maps, Deep Freeze UnFreezer, Ninja Saga, Deep Freeze, Samsung SGH, Guitar Pro, USB XP Install, Yahoo 443 Problem, Turtle Odyssey, GTA San-Andreas, PlayStation, Tips Tweaks Tricks, HTML, Facebook, Animated JPG, Counter-Strike, USB Windows Format, Screensaver, USB Security.
download file now
Tuesday, August 1, 2017
Turning off System Beeps
Turning off System Beeps
Start run Regedit
Go to HKEY_CURRENT_USERControl PanelSound
Edit the key Beep and give it a value of No
download file now