Tuesday, March 25, 2014

高尔夫Golf:教会你解救各种困难沙坑球!(组图)


下坡球位:

这个击球也许是最难对付的了。你不仅要注意斜坡,还要注意沙坑的边缘。首要注意的就是采取能够获得平衡的站姿。图片上的我将右脚放到了沙坑的边缘。从这儿,可以找到并感受击球的角度,我可以将球杆擦着沙坑边缘从球的后面击球。为了成功救球,我需要打出陡直的杆。




球位比双脚低:

当球在脚下的时候需要注意弯曲臀部,保证你的能够击到球,让挥杆片面更陡,犹如摩天轮。另外要记住一点就是在挥杆过程中和挥杆结束的时候都要保持适当的站姿。



球位比双脚高:


当球的位置比脚高的时候,根据沙坑的结构挥杆就很重要。稍微站直,双手握杆的位置稍微向下。然后以较平较圆而非陡直的挥杆平面挥杆。因为球的位置比你的双脚高,将会导致在击球之后导致左飞球,保持必要的瞄准姿势调整,使其稍微瞄向右侧。



球陷在沙坑之中:



















当球体的大半陷在沙坑中的时候,需要将你的杆面对正。在击球的时候,你需要将球击出沙坑,所以将球置于你的站位中间,并采取陡直的挥杆平面,快速将杆头挑起,劈进沙子中,然后将球轰出打到果岭上。因为你的大多数力量是向下的,所以不要按照传统的方式挥杆。相反,杆头在沙子中经过短暂的送杆过程就停留在沙中了。这样击出的球弹道较低,自旋也少,所以应该做相应的计划。



上坡沙坑球:



















当遇到球在上坡沙坑球的时候,可以将球从你的站位前打出,很像标准的沙坑球。然而关键的一点是,在打上坡球的时候,你的肩部要和沙坑球的坡度配合。打出的球弹道直而短,所以只要有一般的杆头速度就可以做到这一点。另外,注意你的双脚要站稳定,保持身体重心,因为上坡球倾向于将你的身体推离目标。

管理不要怕员工离开 !

跟这样的人合作:

1、能始终跟着团队一起成长的人。
2、对团队的前景始终看好的人。
3、在团队不断的探索中能找到自己位置的人。
4、为了团队新的目标不断学习新东西的人。
5、抗压能力强且有耐性的人。
6、与团队同心同德、同舟共济、同甘共苦的,不计较个人得失,顾全大局的人。

一个团队里,人分为五种:人渣,人员,人手,人才,人物。

1、【人渣】就是牢骚抱怨、无事生非,拉帮结派,挑起事端、吃里扒外的破坏分子;
2、【人员】就是只领工资不爱做事,安排与自己无关的工作不愿干,属庸人之列;
3、【人手】就是安排什么做什么,不安排绝对不做,等着下命令的人;
4、【人才】就是每天发自内心做事,做事有责任、有思路、有条理,知道公司的事做好了,受益的是自己,同时真心为公司操心的人;
5、【人物】就是全身心投入,用灵魂去思考、做事,决心要和企业做一番事业的人!

          人员斤斤计较,人手需要引导,
          人才关注当下,人物放眼未来!
          发展要靠人才,做大要靠人物!

这样的团队将无所不能!
一个字:干。
二个字:主动。
三个字:让我来。
四个字:积极思考。
五个字:责任是我的。
六个字:有谁需要帮助。
七个字:目标一定会实现。
八个字:一切的工作为了爱。
九个字:我要成为多给予的人。
十个字:只有结果才能证明实力。

高尔夫Golf各支球杆平均击球距离对照表


Enabling SSH for non-root users in ESXi fails with the error: Access denied

To enable SSH access for non-root users:
 
Create a user account on the ESXi host using one of these options:

  • Create a user account using the vSphere Client.

    Using the vSphere Client:
  1. Connect to the host directly using the vSphere Client with root credentials.
  2. Click the Local Users & Groups tab.
  3. Right-click anywhere in the tab, then click Add.
  4. Enter a log in name and password.
  5. Click OK.

  • Click the Permissions tab.
  • Right-click Add Permission then click Add.
  • Select the newly created local user from the list and click Add.
  • Assign the Administrator role to the user then click OK

  • Move / Delete esxi 5.5 vmkdump folder / files in datastore

    When you upgrade to ESXi 5.5,the vmkdump folder may appear in some datastore.
    Though this folder was Locked after ESXi host booting,you can still unlock it using ssh command.
    Check .dumpfile:
    ssh cmd
    esxcli system coredump file get
    
    Deactivate(unlock) .dumpfile:
    ssh cmd
    esxcli system coredump file remove --force
    
    Now you can move vmkdump folder.
    If the vmkdump folder (with .dumpfile) was moved to other datastore,you could reactivate it.
    Reactivate .dumpfile:
    ssh cmd
    esxcli system coredump file set --smart --enable true
    

    Sunday, March 2, 2014

    Installing and Configuring SSH on CentOS
















    1. Open 'terminal', run '/sbin/service sshd status' to check ssh status
    2. user 'sudo' to run 'yum install openssh-server' to install if needed (#su).
    3. '/sbin/service sshd start' (start/stop/restart) to start,stop and restart the service 
    4. 'vi /etc/sysconfig/iptables' to config system firewall
    5. Hit 'i' to midify mode
    6. add '-A INPUT -m state --state NEW -m tcp -p tcp --dport 2222 -j ACCEPT' (after dport 22 line)
    7. Hit 'ESC' key and ':wq!' to quit vi.
    8. 'vi /etc/ssh/sshd_config' to config SSH protocol
    9. modify the protocol 2 (more security than protocol 1)
    10. at the bottom of the file add
    #Prevent root logins:
    PermitRootLogin no
    AllowUsers xxxx(username)
    11.":wq!" to quit vi
    12. '/sbin/service sshd restart' and '/sbin/service iptables restart' to restart SSH and iptables
    13. connect SSH server --> sudo/sbin/service sshd restart to check

    Saturday, March 1, 2014

    Linux Centos 6 - Sudoers - Add User with Sudo Privileges


    1. sodusgroup group to linux system
    2. add user and move it to sodusgroup group
    3. open 'teminal' and run 'visudo' command
    4. find 'root ALL...'
    5. Hit 'i' to insert a line after 'root' line
    6. as "%sudosgroup ALL=(ALL) ALL"
    7. 'ESC' and ':x' to save and exit visudo command
    8. logout an root user and login as the new use
    9. new command 'sudo yum update' to check user set up corrrectly