Tuesday, October 27, 2015
Tuesday, May 5, 2015
ABI compliance checker
ABI Compliance Checker (ACC) is a tool for checking backward binary and source-level compatibility of a C/C++ library. The tool checks header files and shared libraries of old and new versions and analyzes changes in API and ABI (ABI=API+compiler ABI) that may break binary and/or source compatibility: changes in calling stack, v-table changes, removed symbols, renamed fields, etc. Binary incompatibility may result in crashing or incorrect behavior of applications built with an old version of a library if they run on a new one. Source incompatibility may result in recompilation errors with a new library version. The tool is intended for developers of software libraries and maintainers of operating systems who are interested in ensuring backward compatibility, i.e. allow old applications to run or to be recompiled with newer library versions.
label:
ABI,
checker,
compliance,
compliance checker
Tuesday, April 14, 2015
gitdiff script
~xviengu/w/dlb D01_XVIENGU_TESTTOOL_PEXPU_IPV6 /vobs/axeiv/test_applications
[xviengu@dekt1 xviengu_tt_apz22 /vobs/axeiv]$ cat ~xviengu/w/dlb
#!/bin/sh
BR="$1"
shift
cleartool find "$@" -ver "lbtype($BR)" -type f -print |
sed 's,\(.*\)/\([0-9][0-9]*\)$,\1/0 \1/\2,' |
while read base new; do
if [ -x /usr/bin/git ]; then
/usr/bin/git --no-pager diff --stat --no-index --color "$base" "$new"
else
cleartool diff -columns 200 "$base" "$new"
fi
done |
less -FRX
[xviengu@dekt1 xviengu_tt_apz22 /vobs/axeiv]$
Or
[xviengu@dekt1 xviengu_tt_pexpu_ipv6 home/xviengu/3512Transfer]$ cat ~xtunngu/bin/dif
#!/bin/sh
if [ ! -d "/tmp/$USER" ]; then
mkdir "/tmp/$USER"
else
rm -rf "/tmp/$USER/*"
fi
param1="$1"
param2="$2"
LABEL=""
if [ -z "$param1" ]; then
echo "parameter is invalid"
exit
fi
while getopts l:h OPTION
do
case "$OPTION" in
l)
LABEL="$OPTARG"
;;
h)
;;
esac
done
echo "$LABEL"
if [ ! -z "$LABEL" ]; then
echo "create directories to copy ... "
if [ ! -d "/tmp/$USER/base" ]; then
mkdir /tmp/$USER/base
else
rm -rf /tmp/$USER/base
mkdir /tmp/$USER/base
fi
if [ ! -d "/tmp/$USER/$LABEL" ]; then
mkdir /tmp/$USER/$LABEL
else
rm -rf /tmp/$USER/$LABEL
mkdir /tmp/$USER/$LABEL
fi
Exist=0 # exist counter
echo "copying files to /tmp/$USER and comparing ..."
cleartool find "$3" -ver "lbtype($LABEL)" -type f -print |
# cleartool find "$3" -version 'version($LABEL)' -print |
sed 's,\(.*\)/\([0-9][0-9]*\)$,\1/0 \1/\2,' |
while read base new; do
#echo "[BASE] cp $base /tmp/$USER/base/`echo $base | sed 's,@@\(.*\), ,' | sed 's,\(/.*/\),,'`"
if [ ! -f "/tmp/$USER/base/`echo $base | sed 's,@@\(.*\),,' | sed 's,\(/.*/\),,'`" ]; then
yes | cp $base "/tmp/$USER/base/"`echo $base | sed 's,@@\(.*\),,' | sed 's,\(/.*/\),,'`
else
yes | cp $base "/tmp/$USER/base/`echo $base | sed 's,@@\(.*\),,' | sed 's,\(/.*/\),,'`.0"
fi
if [ ! -f "/tmp/$USER/$LABEL/`echo $new | sed 's,@@\(.*\),,' | sed 's,\(/.*/\),,'`" ]; then
yes | cp $new "/tmp/$USER/$LABEL/"`echo $new | sed 's,@@\(.*\),,' | sed 's,\(/.*/\),,'`
else
yes | cp $new "/tmp/$USER/$LABEL/`echo $new | sed 's,@@\(.*\),,' | sed 's,\(/.*/\),,'`.0"
fi
# echo "[LABEL] cp $new /tmp/$USER/$LABEL/`echo $new | sed 's,@@\(.*\), ,' | sed 's,\(/.*/\),,'`"
done
vi "+DirDiff /tmp/$USER/$LABEL/ /tmp/$USER/base/"
exit
fi
#update later for code review for VM on APZ_VM3
if [ -z "$param2" ]; then
if [ "$(ls -A /vobs/APZ_VM3)" ]; then
cleartool lsco -me -cview -r -fmt "%En@@%[version_predecessor]p\n" /vobs/APZ_VM3 | sed 's,\(.*\)/\([0-9][0-9]*\)$,\1/0 ,' |
while read base; do
yes | cp $base "/tmp/$USER/"`echo $base| sed 's,@@\(.*\), ,' | sed 's,\(/.*/\),,'`
done
else
echo "view isnot set"
exit
fi
echo "compare entered directory files with checked out files"
vi "+DirDiff $param1 /tmp/$USER"
else
vi "+DirDiff $param1 $param2"
fi
[xviengu@dekt1 xviengu_tt_pexpu_ipv6 home/xviengu/3512Transfer]$
Monday, April 6, 2015
RT: Request Tracker
RT is a battle-tested issue tracking system which thousands of organizations use for bug tracking, help desk ticketing, customer service, workflow processes, change management, network operations, youth counselling and even more. Organizations around the world have been running smoothly thanks to RT for over 10 years.
RT 4.2 is a major update. It's chock full of new features, enhancements and bug fixes. Don't miss our What's New in 4 series.
There's no need to wait for a quote or for a sales person to send you a demo. The full, enterprise-ready version of RT is always available at absolutely no cost under an open source license. That means it's yours to use and customize however you'd like. We built RT from the ground up to be easy to adapt to your organization and your needs.
https://www.bestpractical.com/rt/
Wednesday, March 11, 2015
Missing socket libraries in build
make clean; make all
rm -f *.o *~ core
g++ -c -o l.o l.cpp -I.
g++ -Wno-invalid-offsetof -Wall -Werror -Wextra -Winit-self -Woverloaded-virtual -Winit-self -ansi -pedantic -Wstrict-aliasing -Wno-unknown-pragmas -Wno-sign-compare -Wno-parentheses -Wno-write-strings -O3 -ggdb3 -Wformat -Wuninitialized -o la l.cpp -I.
Undefined first referenced
symbol in file
inet_pton /var/tmp//ccYiZabf.o
inet_ntop /var/tmp//ccYiZabf.o
ld: fatal: Symbol referencing errors. No output written to la
collect2: ld returned 1 exit status
make: *** [all] Error 1
[xviengu@vnaps1 xviengu/ws/network]$
StartAllNeeds.bat
For Win8:: C:\Users\viet.nguyen\StartAllNeeds.bat
rem Start basic programs for work
START /NORMAL /MIN /D "C:\Program Files (x86)\Mozilla Thunderbird" thunderbird.exe
START /NORMAL /MIN /D "C:\Program Files (x86)\FreeCommander XE" FreeCommander.exe
START /NORMAL /MIN /D "C:\Windows" explorer.exe D:\DOWNLOAD
START /NORMAL /MIN /D "C:\Program Files (x86)\Zim Desktop Wiki\" zim.exe
START /NORMAL /MIN "C:\Program Files (x86)\Notepad++\" notepad++.exe
START /NORMAL /MIN "C:\Program Files (x86)\Xming\" Xming.exe
START /NORMAL /D "D:\DOWNLOAD\GreatNews" GreatNews.exe
EXIT
label:
explorer,
FreeCommander,
GreatNews,
notepad++,
Thunderbird,
Xming,
zim
Friday, February 27, 2015
CHECKSUM OFFLOAD
CHECKSUM OFFLOAD
As network speed increases, offloading is becoming an important feature, and the ability to offload tasks from the host processor aids in the efficiency of the host and in overall system performance. To achieve a significant performance boost, most operating systems now a days offer a mechanism for the TCP/IP protocol stack to offload checksum calculations to the device.
Thursday, February 26, 2015
OpenStack overview
http://docs.openstack.org/juno/install-guide/install/zypper/content/index.html
Overview
The OpenStack project is an open source cloud computing platform that supports all types of cloud environments. The project aims for simple implementation, massive scalability, and a rich set of features. Cloud computing experts from around the world contribute to the project.
OpenStack provides an Infrastructure-as-a-Service (IaaS) solution through a variety of complemental services. Each service offers an application programming interface (API) that facilitates this integration. The following table provides a list of OpenStack services:
Service | Project name | Description |
---|---|---|
Dashboard | Horizon | Provides a web-based self-service portal to interact with underlying OpenStack services, such as launching an instance, assigning IP addresses and configuring access controls. |
Compute | Nova | Manages the lifecycle of compute instances in an OpenStack environment. Responsibilities include spawning, scheduling and decommissioning of virtual machines on demand. |
Networking | Neutron | Enables Network-Connectivity-as-a-Service for other OpenStack services, such as OpenStack Compute. Provides an API for users to define networks and the attachments into them. Has a pluggable architecture that supports many popular networking vendors and technologies. |
Storage | ||
Object Storage | Swift | Stores and retrieves arbitrary unstructured data objects via a RESTful, HTTP based API. It is highly fault tolerant with its data replication and scale out architecture. Its implementation is not like a file server with mountable directories. |
Block Storage | Cinder | Provides persistent block storage to running instances. Its pluggable driver architecture facilitates the creation and management of block storage devices. |
Shared services | ||
Identity service | Keystone | Provides an authentication and authorization service for other OpenStack services. Provides a catalog of endpoints for all OpenStack services. |
Image Service | Glance | Stores and retrieves virtual machine disk images. OpenStack Compute makes use of this during instance provisioning. |
Telemetry | Ceilometer | Monitors and meters the OpenStack cloud for billing, benchmarking, scalability, and statistical purposes. |
Higher-level services | ||
Orchestration | Heat | Orchestrates multiple composite cloud applications by using either the native HOTtemplate format or the AWS CloudFormation template format, through both an OpenStack-native REST API and a CloudFormation-compatible Query API. |
Database Service | Trove | Provides scalable and reliable Cloud Database-as-a-Service functionality for both relational and non-relational database engines. |
This guide describes how to deploy these services in a functional test environment and, by example, teaches you how to build a production environment. Realistically, you would use automation tools such as Ansible, Chef, and Puppet to deploy and manage a production environment.
Friday, February 6, 2015
Coding Ground - Edit, compile, execute 100% cloud
Code in almost all popular languages using Coding Ground. Edit, compile, execute and share your projects, 100% cloud.
http://www.tutorialspoint.com/codingground.htm
Friday, January 30, 2015
nbtstat and nbtscan
D:\DOWNLOAD>nbtstat -A 172.16.91.227 | find "UNIQUE"
PHATNGUYENT-VNP<00> UNIQUE Registered00>
PHATNGUYENT-VNP<20> UNIQUE Registered20>
D:\DOWNLOAD>
D:\DOWNLOAD>
D:\DOWNLOAD>nbtscan-1.0.35.exe -r 172.16.91.1/24
nbtscan-1.0.35.exe: illegal option -- r
nbtscan 1.0.35 - 2008-04-08 - http://www.unixwiz.net/tools/
usage: nbtscan-1.0.35.exe [options] target [targets...]
Targets are lists of IP addresses, DNS names, or address
ranges. Ranges can be in /nbits notation ("192.168.12.0/24")
or with a range in the last octet ("192.168.12.64-97")
-V show Version information
-f show Full NBT resource record responses (recommended)
-H generate HTTP headers
-v turn on more Verbose debugging
-n No looking up inverse names of IP addresses responding
-p
-m include MAC address in response (implied by '-f')
-T
-w
-t
-1 Use Winsock 1 only
-P generate results in perl hashref format
http://www.unixwiz.net/tools/nbtscan.html
D:\DOWNLOAD>nbtscan-1.0.35.exe 172.16.91.1/24
172.16.91.139 WORKGROUP\NGUYENTRAN-VNPC SHARING
172.16.91.141 WORKGROUP\LONGTO-VNPC SHARING
172.16.91.143 WORKGROUP\VN-LAP-155-VNPC SHARING
172.16.91.144 WORKGROUP\VN-LAP-53-VNPC SHARING
172.16.91.145 WORKGROUP\THONGNGUYEN-PC SHARING
172.16.91.148 WORKGROUP\KINGNGUYEN-VNPC SHARING
172.16.91.150 WORKGROUP\DUCTRINH-VNPC SHARING
172.16.91.149 WORKGROUP\THAOLE-VNPC SHARING
172.16.91.152 WORKGROUP\BAONGUYENV-VNPC SHARING
172.16.91.154 WORKGROUP\THONGLE-VNPC SHARING
172.16.91.158 WORKGROUP\KHIEMLE-VNPC SHARING
172.16.91.160 WORKGROUP\THANGNGUYEN-PC SHARING
172.16.91.161 WORKGROUP\KIMBUI-VNPC SHARING
172.16.91.162 WORKGROUP\BUUNGUYEN-VNPC SHARING
172.16.91.163 WORKGROUP\VN-LAP-152-VNPC SHARING
172.16.91.164 WORKGROUP\BAOTRAN-VNPC SHARING
172.16.91.165 WORKGROUP\DUNGCAO-VNPC SHARING
172.16.91.169 WORKGROUP\SONNGUYENT-VNPC SHARING
172.16.91.172 WORKGROUP\NGUYENPHAM-VNPC SHARING
172.16.91.173 WORKGROUP\TRONGLE-VNPC SHARING
172.16.91.174 WORKGROUP\VN-LAP-163-VNPC SHARING
172.16.91.175 WORKGROUP\CANHTRUONG-VNPC SHARING
172.16.91.176 WORKGROUP\VANGLAM-VNPC SHARING
172.16.91.178 WORKGROUP\THAIHA-VNPC SHARING
172.16.91.181 WORKGROUP\HOANGNGUYEN-VNP SHARING
172.16.91.183 WORKGROUP\BINHHOANG-VNPC SHARING
172.16.91.185 WORKGROUP\PHATDO-VNPC SHARING
172.16.91.186 WORKGROUP\XTRUTRI-PC SHARING
172.16.91.188 WORKGROUP\VN-LAP-177-VNPC SHARING
172.16.91.192 WORKGROUP\BAONGUYEN-VNPC SHARING
172.16.91.194 WORKGROUP\VUONGNGUYEN-VNP SHARING
172.16.91.195 WORKGROUP\THAIHOANG-VNPC SHARING
172.16.91.197 WORKGROUP\TUANNGUYEN-VNPC SHARING
172.16.91.198 WORKGROUP\CHINHHOANG-VNPC SHARING
172.16.91.199 WORKGROUP\DUCLE-VNPC SHARING
172.16.91.200 WORKGROUP\ SHARING
172.16.91.201 WORKGROUP\VN-LAP-27-VNPC SHARING
172.16.91.203 WORKGROUP\VUDAO-VNPC SHARING
172.16.91.206 WORKGROUP\DONGNGUYEN-VNPC SHARING
172.16.91.209 WORKGROUP\VN-LAP-50-VNPC SHARING
172.16.91.210 WORKGROUP\VN-LAP-159-VNPC SHARING
172.16.91.211 WORKGROUP\NGANGUYEN-VNPC SHARING
172.16.91.212 WORKGROUP\VN-LAP-141-VNPC SHARING
172.16.91.213 WORKGROUP\HUYHA-VNPC SHARING
172.16.91.215 WORKGROUP\THENGUYEN-VNPC SHARING
172.16.91.217 WORKGROUP\TRINGO-VNPC SHARING
172.16.91.218 WORKGROUP\VN-LAP-178-VNPC SHARING
172.16.91.216 WORKGROUP\TAMCHAU-VNPC SHARING
172.16.91.219 WORKGROUP\VN-LAP-174-VNPC SHARING
172.16.91.221 WORKGROUP\ANHNGUYEN-VNPC
172.16.91.222 WORKGROUP\TOANPHAM-VNPC SHARING
172.16.91.223 WORKGROUP\TAIDINH-VNPC SHARING
172.16.91.224 WORKGROUP\VN-LAP-135-VNPC SHARING
172.16.91.225 WORKGROUP\MANPHAN-VNPC SHARING
172.16.91.227 WORKGROUP\PHATNGUYENT-VNP SHARING
172.16.91.228 WORKGROUP\THANHLE-VNPC SHARING
172.16.91.229 WORKGROUP\DITA-VNPC SHARING
172.16.91.230 WORKGROUP\TRUNGHUYNH-VNPC SHARING
172.16.91.231 WORKGROUP\VN-LAP-153-VNPC SHARING
172.16.91.232 WORKGROUP\TUNGVU-VNPC SHARING
172.16.91.235 WORKGROUP\TANLY-VNPC SHARING
172.16.91.236 WORKGROUP\TUNGQNGUYEN-VNP SHARING
172.16.91.237 WORKGROUP\VN-LAP-87-VNPC SHARING
172.16.91.238 WORKGROUP\TRUNGNGUYEN-VNP SHARING
172.16.91.239 WORKGROUP\ANHLE-VNPC SHARING
172.16.91.240 WORKGROUP\NGUYENLUU-VNPC SHARING
172.16.91.241 WORKGROUP\HUNGNGUYEN-VNPC SHARING
172.16.91.243 WORKGROUP\BAODO-VNPC SHARING
172.16.91.244 WORKGROUP\XMAONGO SHARING
172.16.91.234 WORKGROUP\ SHARING
172.16.91.245 WORKGROUP\DUONGPHAN-VNPC SHARING
172.16.91.246 WORKGROUP\NHANTRAN-VNPC SHARING
172.16.91.247 WORKGROUP\VN-LAP-130-VNPC SHARING
172.16.91.248 WORKGROUP\HUNGCAI-VNPC SHARING
172.16.91.249 WORKGROUP\HIEUTRAN-VNPC SHARING
172.16.91.250 WORKGROUP\VN-LAP-167-VNPC SHARING
172.16.91.251 WORKGROUP\QUYENDAO-VNPC SHARING
*timeout (normal end of scan)
D:\DOWNLOAD>
D:\DOWNLOAD>
Wednesday, January 28, 2015
X connection to srv01:52.0 broken
Reason:
Log in to srv01 via Putty but X11 session is unhappy
srv01 SunOS 5.10 Generic_127127-11 sun4v sparc SUNW,Sun-Fire-T1000
X connection to srv01:52.0 broken (explicit kill or server shutdown).
X connection to srv01:52.0 broken (explicit kill or server shutdown).
Deactivate X11 forwarding in PuTTy configuration
PuTTY Configuration | Connection | SSH | X11 | Enable X11 forwarding
Subscribe to:
Posts (Atom)
Labels
- _ASSERTE (1)
- _CRT_ASSERT (1)
- _CRT_ERROR (1)
- _CRT_WARN (1)
- _RPT0 (1)
- _RPT2 (1)
- _RPTF2 (1)
- -1073741515 (1)
- .vimrc (3)
- \160 (1)
- 00 (1)
- 0unzip (1)
- 10.4 (1)
- 1073741515 (1)
- 10minutemail (1)
- 28022013 (1)
- 5giay (1)
- ABI (1)
- absolute (1)
- Airlines (1)
- alias (2)
- Apple (3)
- Arch Linux (1)
- arduino (1)
- assignment (2)
- Australia (1)
- auto (1)
- Avoid (1)
- AvoidDirectlyAccessGlobals (1)
- AXE central processors (1)
- AXE system (1)
- bash (6)
- Bash script (3)
- bashrc (2)
- BIG_ENDIAN (1)
- bit-fields (1)
- blogspot (1)
- break down (1)
- buffer overflows (1)
- bug tracking (1)
- build (1)
- Built-in Shell Variables (1)
- C library (1)
- C programming (1)
- c shell (2)
- C++ (1)
- C++ Programming (1)
- C++Test (2)
- case (1)
- cast (1)
- cc (1)
- CDRWIN (1)
- CFLAGS (1)
- change management (1)
- check (1)
- check float values equality (1)
- checker (1)
- CHECKSUM (1)
- chrome (1)
- cl.exe (1)
- clearcase (1)
- Clearcase commands (1)
- cleartool (2)
- Clock (1)
- CloneCD (1)
- cloud (2)
- cmd (1)
- co.cc (1)
- CodePlex (1)
- Coding (1)
- Coding standard (1)
- Coding Standards (1)
- color (1)
- colour (1)
- Command Line (1)
- Command-Line (1)
- Command-Line editing (1)
- Command-Line editing mode (1)
- CommandLine (1)
- compilation (1)
- compile (1)
- compiler (2)
- compliance (1)
- compliance checker (1)
- constructor (1)
- Copy (2)
- cpp programming (1)
- CreateFile (2)
- creator (1)
- critical systems (2)
- cscope (3)
- csh (1)
- ctags (1)
- customer service (1)
- CXXFLAGS (1)
- dangerous functions (1)
- DCB sructure (1)
- Debian (1)
- debug (2)
- DEK Technologies (1)
- Delete (1)
- detected (1)
- Dev-cpp (1)
- developers (1)
- device (1)
- device driver (1)
- DeviceIoControl (1)
- diagram (1)
- diff (1)
- Directly (1)
- disposable (1)
- disposable e-mail addresses (1)
- divide and conquer. (1)
- dns (2)
- domainname (1)
- downgrade (1)
- drawback (1)
- dropbox (1)
- e-mail addresses (1)
- eclipse (1)
- Edit (1)
- End (1)
- environment (1)
- epsilon (1)
- Ericsson (4)
- ERLANG (2)
- errno (1)
- Error (2)
- error code (1)
- error result (1)
- example (1)
- Excel (1)
- exec (1)
- execute (1)
- execution time (1)
- exit code (1)
- explicit calculation of pointer (1)
- explorer (1)
- facebook (3)
- fansipan (1)
- fb (1)
- Fedora (1)
- fgets (1)
- Firefox (1)
- Firefox shortcuts (1)
- float (1)
- float equality (1)
- floating point (1)
- folding (1)
- forwarding (1)
- free (1)
- FreeCommander (1)
- from cl (1)
- function (1)
- Functions (3)
- FunctionsCallOrder (1)
- gitdiff (1)
- global data (1)
- gmail (1)
- GNU (5)
- google (1)
- GreatNews (1)
- Ground (1)
- Guerrilla Mail (1)
- Guidelines (1)
- Headquarters (1)
- help desk ticketing (1)
- high-level (1)
- holiday (1)
- Home (1)
- host (1)
- hostname (2)
- hosts (2)
- howto (1)
- iCloud (1)
- ide (1)
- illegal (1)
- implementation code (1)
- indexing (1)
- inet_pton (1)
- interface header (1)
- ioctl() (1)
- iPhone (1)
- iPhoneVietnam (1)
- java (1)
- jetstar (1)
- Job Ad (1)
- Karaoke (1)
- Korn shell (1)
- labelname (1)
- layers (1)
- Legibility (1)
- less confusing (1)
- linux (2)
- LITTLE_ENDIAN (1)
- login (1)
- lsocket (1)
- Lunar new yeat (1)
- Mac (1)
- Mac OS (1)
- Mac OS shortcuts (1)
- mailinator (1)
- maintainability (2)
- make (2)
- make clean (2)
- Makefile (2)
- Mandriva (1)
- Melbourne (1)
- memory (2)
- Microsoft (1)
- Mint (1)
- mintemail (1)
- misra (3)
- MISRA-C (1)
- MISRA-C 2004 (1)
- misra2004 (1)
- Mobifone (1)
- MobileMe (1)
- Modular (1)
- Modular programming (1)
- modules (1)
- more readable (1)
- Multi-Targeting (1)
- nbtscan (1)
- nbtstat (1)
- nested (1)
- network (1)
- network operations (1)
- nm. objdump (1)
- NoMachine (1)
- notepad++ (1)
- OFFLOAD (1)
- open() (1)
- OpenNx (1)
- OpenSSH (1)
- OpenStack (1)
- openSUSE (2)
- Orcas (1)
- outlook (1)
- outlook 2007 (1)
- parasoft (7)
- parts (1)
- password (1)
- Paste (1)
- patterns (1)
- PCLinuxOS (1)
- PCmover (1)
- perl (2)
- pkgmgr (1)
- PLEX (2)
- PLEX-C (1)
- pointer (2)
- pointer alignment (1)
- Pointer arithmetic (1)
- pop (1)
- Precompile (1)
- print16() (1)
- print32() (1)
- printHex() (1)
- programming (4)
- Programming Language for EXchanges (1)
- prompt (1)
- protocol (1)
- Puppy Linux (1)
- push (1)
- putty (2)
- re-use (1)
- read() (1)
- readelf (1)
- ReadFile (1)
- real-time (1)
- regsvr32 (1)
- request tracker (1)
- Reset Windows password (1)
- risky (1)
- rule (1)
- Sabayon Gentoo Live CD (1)
- safe (1)
- safety code (1)
- SBG HW environment (1)
- Screen (1)
- script (2)
- secure (1)
- Security (1)
- Send To (1)
- Send To menu (1)
- SendTo (1)
- serial number (1)
- serial port (1)
- Serial programming (2)
- services (1)
- sethc.exe (1)
- setup (1)
- setview (2)
- shared mem (1)
- shell (3)
- shell:sendto (1)
- side effects (1)
- site feed (1)
- skew (1)
- Slackware (1)
- snprintf (1)
- socket (1)
- source (1)
- ssh (2)
- status (1)
- strace (1)
- stray (1)
- string (2)
- strncat (1)
- strncpy (1)
- struct (1)
- SunOS (1)
- SWAP16/32 (1)
- switch (1)
- symbol (2)
- system (1)
- system() cmd (1)
- Tab (1)
- taglist (1)
- TC shell (1)
- TCP (1)
- tcpdump (1)
- technique (1)
- Telnet Client (1)
- tenmien (1)
- test (1)
- Testing (1)
- Tet (1)
- Thread safe (1)
- Thread safe programming (1)
- thread safety (1)
- Thunderbird (2)
- Tiger (1)
- tip (1)
- Tips (1)
- trick (1)
- tutorial (1)
- typedef (1)
- Ubuntu (1)
- UCdetector (1)
- uninitialized (1)
- union (1)
- unix (3)
- Unix access (1)
- unsafe (2)
- unsafe string (1)
- unzip (1)
- update (1)
- upgrade (1)
- useful tools (2)
- Variable Substitution (1)
- variables (1)
- vav (3)
- vav.vn (2)
- version (1)
- vi (2)
- Vietnam airlines (1)
- Viettel (1)
- vim (4)
- vimdiff (1)
- viminfo (1)
- Vinaphone (1)
- Violation (2)
- Vista (2)
- visual studio (1)
- vnnic (1)
- void (1)
- vs2005 (1)
- vs2008 (1)
- vspc (1)
- warranty (1)
- web (1)
- website (2)
- website test (1)
- Win8 (1)
- Windows (2)
- Windows 8.1 (1)
- winsxs (1)
- winsxslite (1)
- WinXP (1)
- workflow processes (1)
- write() (1)
- WriteFile (1)
- X (1)
- x11 (1)
- x64 (1)
- Xming (1)
- youth counselling (1)
- youtube (1)
- zebrazone (1)
- zebrazoo (1)
- zim (1)