You are on page 1of 2

Project name - WSG

debuginfo-install glibc-2.17-105.el7.x86_64 libgcc-4.8.5-4.el7.x86_64 libstdc++-


4.8.5-4.el7.x86_6
[init]
templatedir=C:/Program Files/Git/mingw64/share/git-core/templates
/usr/local/libexec/git-core/templates

Ucaas - unified communication as a service NFV


PBX

https://www.quora.com/What-is-the-best-C-JSON-library

sourcetree
https://linuxhint.com/git_tutorial_beginners/
https://itnext.io/become-a-git-pro-in-just-one-blog-a-thorough-guide-to-git-
architecture-and-command-line-interface-93fbe9bdb395

state desing pattern


https://www.codeproject.com/Articles/509234/The-State-Design-Pattern-vs-State-
Machine

wsg- web sevices gateway

TCP/IP sockets, HTTP, SSL/TLS protocols


GitHub/GitLab, Jira/Rally, TeamCity
Python/ ML
HTTP, REST, SOAP and OAuth.

Source Insight
win SCP
mav-cvsco.pl ln -p wsg -r WSG-C_2_3_3_2 -pl rhel_7_2_x86_64 - soft link
mav-cvsco.pl dl * - dlink
https://at.mavenir.com/wiki/login.action?os_destination=%2Fpages%2Fviewpage.action
%3FspaceKey%3DSCM%26title%3DBitbucket%2BUser%2BGuide&permissionViolation=true

gzip --best wsg.tar - compress the folder


tar cvf wsg.tar ./wsg - creates tar

Application -> line Profile


State Machine

/home/build/WSG-C_2_3_3_3/rhel_7_2_x86_64/appCommon/webAppSrv/container/inc

find . -name "*.h" -print | xargs grep HttpServletRequest | more

Network elements
------------------------------------
1.
https://docs.oracle.com/cd/E18457_01/doc.722/e17891/net_intel_concepts_entities.htm
#autoId0

grep -rnw '/path/to/somewhere/' -e 'pattern'


-r or -R is recursive,
-n is line number, and
-w stands for match the whole word.
-l (lower-case L) can be added to just give the file name of matching files.
Along with these, --exclude, --include, --exclude-dir flags could be used for
efficient searching:

This will only search through those files which have .c or .h extensions:

grep --include=\*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"


This will exclude searching all the files ending with .o extension:

grep --exclude=*.o -rnw '/path/to/somewhere/' -e "pattern"


For directories it's possible to exclude a particular directory(ies) through
--exclude-dir parameter. For example, this will exclude the dirs dir1/, dir2/ and
all of them matching *.dst/:

grep --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/somewhere/' -e "pattern"


This works very well for me, to achieve almost the same purpose like yours.

For more options check man grep.

cscope -R - to build database symbol

FTP, FTPS, SCP, SFTP, WebDAV or S3 file transfer protocols.

---------------execute file in diff std-------------------


g++ TranspFields.cpp -lboost_regex
g++ -std=c++11/c++0x filename -o prog
g++ thread.cpp -o thread.out -pthread -std=c++0x

/home/dubeyd/WSG-R_3_11_1_0/rhel_7_2_x86_64/wsg/common/src
C:\Users\dubeyd\Desktop\BSNL_UCASS\wsg\codec\parser\json\jsonTmpltEncDec\src
C:\Users\dubeyd\Desktop\WSG_PROJ\wsg\wsgAppMgr\main\src
C:\Users\dubeyd\Desktop\WSG_PROJ\wsg\defs\schema
C:\Users\dubeyd\Desktop\WSG_PROJ\wsg\sessions\application\common\src
/home/dubeyd/WSG-R_3_11_1_0/rhel_7_2_x86_64/mmx/oam/schema
/home/dubeyd/WSG-R_3_11_1_0/rhel_7_2_x86_64/wsg/def/schema
.cfg - already present in the def/achema folder
/build/WSG-C_3_5_10_2/rhel_7_2_x86_64/wsg/codec/parser/json/jsonAdapter
/home/dubeyd/WSG-R_3_11_1_0/rhel_7_2_x86_64/mmx/oam/include
make clean;make

You might also like