[kitten@wps85 ~]$ gitpull
bash: gitpull: command not found
[kitten@wps85 ~]$ git pull
fatal: Not a git repository (or any of the parent directories): .git
[kitten@wps85 ~]$ cd opt/
bash: cd: opt/: No such file or directory
[kitten@wps85 ~]$ cd /opt
[kitten@wps85 opt]$ git
usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]
           [-p|--paginate|--no-pager] [--no-replace-objects]
           [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
           [--help] COMMAND [ARGS]

The most commonly used git commands are:
   add        Add file contents to the index
   bisect     Find by binary search the change that introduced a bug
   branch     List, create, or delete branches
   checkout   Checkout a branch or paths to the working tree
   clone      Clone a repository into a new directory
   commit     Record changes to the repository
   diff       Show changes between commits, commit and working tree, etc
   fetch      Download objects and refs from another repository
   grep       Print lines matching a pattern
   init       Create an empty git repository or reinitialize an existing one
   log        Show commit logs
   merge      Join two or more development histories together
   mv         Move or rename a file, a directory, or a symlink
   pull       Fetch from and merge with another repository or a local branch
   push       Update remote refs along with associated objects
   rebase     Forward-port local commits to the updated upstream head
   reset      Reset current HEAD to the specified state
   rm         Remove files from the working tree and from the index
   show       Show various types of objects
   status     Show the working tree status
   tag        Create, list, delete or verify a tag object signed with GPG

See 'git help COMMAND' for more information on a specific command.
[kitten@wps85 opt]$ git pull
fatal: Not a git repository (or any of the parent directories): .git
[kitten@wps85 opt]$ cd ~/.ssh
[kitten@wps85 .ssh]$ ls id_rsa id_rsa.pub known_hosts
id_rsa  id_rsa.pub  known_hosts
[kitten@wps85 .ssh]$ ssh-keygen -t rsa -C "dixian@cyber-village.net"
Generating public/private rsa key pair.
Enter file in which to save the key (/home/kitten/.ssh/id_rsa): /home/kitten/Desktop
/home/kitten/Desktop already exists.
Overwrite (y/n)? y
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
open /home/kitten/Desktop failed: Is a directory.
Saving the key failed: /home/kitten/Desktop.
[kitten@wps85 .ssh]$ cd ~/.ssh
[kitten@wps85 .ssh]$ ls id_rsa id_rsa.pub known_hosts
id_rsa  id_rsa.pub  known_hosts
[kitten@wps85 .ssh]$ ssh-keygen -t rsa -C "dixian@cyber-village.net"
Generating public/private rsa key pair.
Enter file in which to save the key (/home/kitten/.ssh/id_rsa): /home/kitten/.ssh
/home/kitten/.ssh already exists.
Overwrite (y/n)? y
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
open /home/kitten/.ssh failed: Is a directory.
Saving the key failed: /home/kitten/.ssh.
[kitten@wps85 .ssh]$ su
Password:
[root@wps85 .ssh]# cp /home/kitten/Desktop/c/* /home/kitten/.ssh/
cp: overwrite `/home/kitten/.ssh/id_rsa'?
cp: overwrite `/home/kitten/.ssh/id_rsa.pub'?
cp: overwrite `/home/kitten/.ssh/known_hosts'?
[root@wps85 .ssh]# ls -la
total 44
drwx------  2 kitten kitten 4096 Mar 10 10:18 .
drwxr-xr-x 57 kitten kitten 4096 Aug  2 12:38 ..
-rw-------  1 kitten kitten 1743 Jan  5  2016 cheeyung
-rw-r--r--  1 kitten kitten  400 Jan  5  2016 cheeyung.pub
-rw-------  1 kitten kitten 1743 Mar 10 10:17 id_rsa
-rw-r--r--  1 kitten kitten  407 Mar 10 10:17 id_rsa.pub
-rw-r--r--  1 kitten kitten 3952 Jan 28  2016 known_hosts
-rw-------  1 kitten kitten 1675 Dec 30  2015 kwangchin
-rw-r--r--  1 kitten kitten  400 Dec 30  2015 kwangchin.pub
-rw-------  1 kitten kitten 1671 Nov 17  2015 ta_gerrit_id_rsa
-rw-r--r--  1 kitten kitten  400 Nov 17  2015 ta_gerrit_id_rsa.pub
[root@wps85 .ssh]# cp /home/kitten/Desktop/c/* /home/kitten/.ssh/
cp: overwrite `/home/kitten/.ssh/id_rsa'? y
cp: overwrite `/home/kitten/.ssh/id_rsa.pub'? y
cp: overwrite `/home/kitten/.ssh/known_hosts'? y
[root@wps85 .ssh]# ls -la
total 44
drwx------  2 kitten kitten 4096 Mar 10 10:18 .
drwxr-xr-x 57 kitten kitten 4096 Aug  2 12:38 ..
-rw-------  1 kitten kitten 1743 Jan  5  2016 cheeyung
-rw-r--r--  1 kitten kitten  400 Jan  5  2016 cheeyung.pub
-rw-------  1 kitten kitten 1766 Aug  2 14:33 id_rsa
-rw-r--r--  1 kitten kitten  406 Aug  2 14:33 id_rsa.pub
-rw-r--r--  1 kitten kitten  840 Aug  2 14:33 known_hosts
-rw-------  1 kitten kitten 1675 Dec 30  2015 kwangchin
-rw-r--r--  1 kitten kitten  400 Dec 30  2015 kwangchin.pub
-rw-------  1 kitten kitten 1671 Nov 17  2015 ta_gerrit_id_rsa
-rw-r--r--  1 kitten kitten  400 Nov 17  2015 ta_gerrit_id_rsa.pub
[root@wps85 .ssh]# chmod 644 id_rsa
[root@wps85 .ssh]# ls -la
total 44
drwx------  2 kitten kitten 4096 Mar 10 10:18 .
drwxr-xr-x 57 kitten kitten 4096 Aug  2 12:38 ..
-rw-------  1 kitten kitten 1743 Jan  5  2016 cheeyung
-rw-r--r--  1 kitten kitten  400 Jan  5  2016 cheeyung.pub
-rw-r--r--  1 kitten kitten 1766 Aug  2 14:33 id_rsa
-rw-r--r--  1 kitten kitten  406 Aug  2 14:33 id_rsa.pub
-rw-r--r--  1 kitten kitten  840 Aug  2 14:33 known_hosts
-rw-------  1 kitten kitten 1675 Dec 30  2015 kwangchin
-rw-r--r--  1 kitten kitten  400 Dec 30  2015 kwangchin.pub
-rw-------  1 kitten kitten 1671 Nov 17  2015 ta_gerrit_id_rsa
-rw-r--r--  1 kitten kitten  400 Nov 17  2015 ta_gerrit_id_rsa.pub




[kitten@wps85 ~]$ cd /opt/Workspaces/tbank/rib/
[kitten@wps85 rib]$ ls
build.gradle                      com.tbank.ib.object
com.ambank.dataconversion         com.tbank.ib.service
com.tbank.batch.common            com.tbank.ib.service.impl
com.tbank.batch.job               com.tbank.sc.access
com.tbank.common.access           com.tbank.sc.access.impl
com.tbank.common.access.impl      com.tbank.sc.entity
com.tbank.common.entity           com.tbank.sc.object
com.tbank.common.host             com.tbank.sc.service
com.tbank.common.host.impl        com.tbank.sc.service.impl
com.tbank.common.logic            com.tbank.sc.web
com.tbank.common.object           gradle
com.tbank.common.service          gradle.properties
com.tbank.common.service.impl     gradlew
com.tbank.db.migration            gradlew.bat
com.tbank.dummy.host              parser
com.tbank.ib.access               PhoenixSetup
com.tbank.ib.access.impl          proj-tbank-api.gradle
com.tbank.ib.api                  proj-tbank-batch.gradle
com.tbank.ib.api.apiApp           proj-tbank-common.gradle
com.tbank.ib.api.apiPrototypeApp  proj-tbank-sc.gradle
com.tbank.ib.entity               repo
com.tbank.ib.host                 rib_code_formatter.xml
com.tbank.ib.host.impl            settings.gradle
com.tbank.ib.logic                TBankScApp
[kitten@wps85 rib]$ git fetch origin
remote: Counting objects: 174, done
remote: Finding sources: 100% (109/109)
remote: Total 109 (delta 51), reused 108 (delta 51)
Receiving objects: 100% (109/109), 103.30 KiB, done.
Resolving deltas: 100% (51/51), completed with 22 local objects.
From ssh://doclib.cyber-village.net:29418/tbank/rib
   fd1719b..322f057  develop    -> origin/develop
[kitten@wps85 rib]$ -u
bash: -u: command not found

@echo off
:menu
cls
echo Playdota.com - New Heroes Discuss
echo Press start to forward
pause
echo 1)start discuss
echo 2)instruction
echo 3)exit
set /p letter=

if %letter% == 1 goto startdiscuss
if %letter% == 2 goto instruction
if %letter% == 3 goto exit
:startdiscuss
cls
echo So it seem you are a new member of Dota league!
echo What your name?
set /p name=
echo so %name% is your name.
echo we dota league site, got prepare 3 package heroes to our new member.
echo So now is your turn to desired hero info
echo 1)Khoo Sex Porn
echo 2)God of Twin Dragon
echo 3)Non-Hero, Skill Trick for God of Twin Dragon
set /p monster=

if %monster% == 1 goto Khoo Sex Porn
if %monster% == 2 goto God of Twin Dragon
if %monster% == 3 goto Non-Hero, Skill Trick for God of Twin Dragon
:Khoo Sex Porn
cls
echo Story Board:
echo He's the organ child who live in DaiBi forest, after he learn many DB skill inside.
echo it nickname called Mishall Dick, He what also don't know, only will see what crush what!
echo
echo Information list(Max Level):
echo Damage: 102 - 140
echo Armor: 8
echo Strength: 55
echo Agility: 60
echo Intelligence: 90
echo Type : Int
echo HP : 1099/1099
echo Mana : 3230/3230
echo
echo skill 1 : Let's Kill
echo It used to let enemy hero in a short period time, leap to in front of him. Channeling
echo Level 1: Charge 4 second
echo Level 2: Charge 3 second
echo Level 3: Charge 2 second
echo Level 4: Charge 1 second
echo
echo skill 2 : I'm your son
echo It used to make itself into insane mode, armor drive into 99999, after that rush to the enemy target.
echo while he run after the enemy target, and range is about 100, then both player will get 900 damage hurt.
echo Level 1 : cooldown 90 second, manacost 900
echo Level 2 : cooldown 80 second, manacost 1000
echo Level 3 : cooldown 70 second, manacost 1100
echo Level 4 : cooldown 60 second, manacost 1200
echo
echo skill 3 : Why Am I still alive T_T
echo this skill maybe let Khoo Sex Porn armor and hp drop until -9999999 in 5 second, and
echo in additionally, he damage will increase 9999999, but itself is lame. Great Job!!!
echo Level 1 : Cooldown 10 second, manacost 50
echo Level 2 : Cooldown 9 second, manacost 40
echo Level 3 : Cooldown 8 second, manacost 30
echo Level 4 : Cooldown 7 second, manacost 20
echo
echo skill 4(ultimate) : OH MY GOD!!!
echo After this skill start be used, the enemy in the limit range, will send in front of
echo Khoo Sex Porn, and must use all of they skill, in this moment, Skill damaged will get
echo extra bonus damage, and free status effect: etc->slow 100%, stun 100 second
echo Poison/Mana Leak/Blood/Doom/Burn per second 1000 hp or mana. (Must use and learn while in the limit)
echo Level 1 : cooldown 5 second, limit time every 30 second.
echo Level 2 : cooldown 10 second, limit time every 15 second.
echo Level 3 : cooldown 13 second, limit time every 13 second.
echo
echo Description of this hero?
echo this is the most noob in the world, i no face to use this hero.
echo rate(NOOB) - 100%
echo rate(Feed) - 100%
echo rate(PRO) - 0%
echo rate(WORLD) - 1000%
echo
echo until now? happy to know a info of this hero, will you want go back? (Y/N)
set /p Khoo=

if %Khoo% == Y goto startdiscuss
if %Khoo% == N goto exit
goto Khoo Sex Porn

:God of Twin Dragon
cls
echo Story Board:
echo It live in the sky, but one day, he saw the dota war is too terrible to the earth
echo so, it crush out to invite this war and try to stop it. It got it Infinite God Power.
echo
echo information List(Max Level):
echo Damage : 50345 - infinity
echo Armor : 10000000000 (uncountable)
echo Strength : 99999999999
echo Agility : 99999999999
echo Intellingence : 99999999999
echo Type : God (not Str,Agi,Int)
echo HP : ?/?
echo Mana : ?/?
echo
echo Skill 1 : God Breath
echo - It unleash a mega size of wave-Fire to in front of it enemy, damage it count from each level.
echo Level 1 - 40000
echo Level 2 - 80000
echo Level 3 - 120000
echo Level 4 - 160000
echo
echo Skill 2 : The Destruction-Rage of God
echo - Increase it own attack speed, movespeed, Regen Speed for whole of the game.(BUFF)
echo Level 1 - ATKS-100000%, MS-100%, Regen Speed-99.99%
echo Level 2 - ATKS-200000%, MS-1000%, Regen Speed-??.??%
echo Level 3 - ATKS-300000%, MS-10000%, Regen Speed-??.??%
echo Level 4 - ATKS-??????%, MS-?????%, Regen Speed-??.??%
echo
echo Skill 3 : God Twin Strike
echo - it allow another head to strike ice-cannon to enemy, the chance to shoot is 100%.
echo the attack speed is follow with it own ability.
echo Level 1 - slow 40%, bonus damage 90.
echo Level 2 - slow 100%, bonus damage 900.
echo Level 3 - slow ???%, Freeze 10 second, bonus damage 10000 damage.
echo Level 4 - slow ???%, Freeze until die, bonus damage 1 strike KO.
echo
echo Skill 4(ULTIMATE GOD) : The End of War Sacrifice
echo - the god of twin dragon, unleash the world god destruction, kill itself and destroy all the map.
echo the creature that kill by it, will used all to calculate it total hp, if the hp got limit, then
echo all creature die(include allies), except by itself, if no, the creture all die together with it.
echo Level 1 - Limit Hp - 4000
echo Level 2 - Limit Hp - 3000
echo Level 3 - Limit Hp - 2000
echo Description of this Hero?
echo too strong, and pro. It can alway in rampage mode.
echo until now? happy to know a info of this hero, will you want go back? (Y/N)
set /p God=

if %God% == Y goto startdiscuss
if %God% == N goto exit
goto God Of Twin Dragon

:Non-Hero, Skill Trick for God of Twin Dragon
cls
echo For security:
echo you are %name% do you? (Y/N) CAP ONLY!!!
set /p des=

if %des% == Y goto pro
if %des% == N goto menu
goto Non-Hero, Skill Trick for God of Twin Dragon

:pro
cls
echo Welcome %name%, here our pro trick base.
echo please be quiet, after you know!!!
echo God Of Twin Dragon!!!
echo how to make bug on it?
echo - Bug for skill 1 - while in direct section, the fire is start flame on enemy about 100 AOE,
echo then you quick press shift+P, then the dragon will sent out another 50 clone and flame together.
echo - Bug for skill 2 - While you use, is not effect on your allies*(aura), but if you want also can,
echo use bug, while you use, you go stick with your AOE target, then use it on yourself, meanwhile
echo quick press C+v+B(together), then the power will aura out to 1000 AOE.
echo - Bug for skill 3 - while in normal attack, your another head also will join in war, so in every
echo attack, you press shirt+A, on the target enemy, then your another dragon may use level 4 in when
echo it only level 1.
echo - Bug for Ultimate, While you use your ultimate skill, quickly press Z+X+C+V+B+N+M within 5 sec
echo , if you do this, in whatever mode, your ultimate will sacrifice.
echo Thanks You for Visitor TDXJAKIRO _ GOD OF TWIN DRAGON
echo Contact me : Tdxgodbattle@hotmail.com
echo It will be the end, will you want leave too? (y/n) lower case only!!!
set /p dragon=

if %dragon% == y goto exit
if %dragon% == n goto menu
goto pro

:exit
exit
goto exit

:instruction
echo Our visitor just leave a package answer to us
echo about the new hero that will appear in
echo Dota ver 6.99.
echo will you want exit or to menu? exit or menu
set /p choice=

if %choice% == exit goto exit
if %choice% == menu goto menu
goto instruction

SHIT!

OMG! 
SHIT!
WHAT IS IT?
OMG!
OMG!
MIND MIND MIND!


WHAT?
THE?
WTF?
OMG!
OMG!
!OMG!
WALAO!
==

YOYOYOYO!

TODAY I WOULD LIKE TO SHARE A TOPIC ABOUT THE SPECIAL MOONCAKE WITH OMG

/Gro

up gg

Group A