https://github.com/jenkinsci/git-client-plugin/compare/1d294e98eea9…0176cb4de79d

https://github.com/jenkinsci/git-client-plugin/compare/1d294e98eea9…0176cb4de79d

зручна утиліта для перевірки мережі mtr

Зручна утиліта, яка суміщає в собі функціонал ping і traceroute – mtr

Використання mtr


My traceroute [v0.71]
example.lan Sun Mar 25 00:07:50 2007

Packets Pings
Hostname %Loss Rcv Snt Last Best Avg Worst
1. example.lan 0% 11 11 1 1 1 2
2. ae-31-51.ebr1.Chicago1.Level3.n 19% 9 11 3 1 7 14
3. ae-1.ebr2.Chicago1.Level3.net 0% 11 11 7 1 7 14
4. ae-2.ebr2.Washington1.Level3.ne 19% 9 11 19 18 23 31
5. ae-1.ebr1.Washington1.Level3.ne 28% 8 11 22 18 24 30
6. ge-3-0-0-53.gar1.Washington1.Le 0% 11 11 18 18 20 36
7. 63.210.29.230 0% 10 10 19 19 19 19
8. t-3-1.bas1.re2.yahoo.com 0% 10 10 19 18 32 106
9. p25.www.re2.yahoo.com 0% 10 10 19 18 19 19

Детальніше

Dynamics CRM account delete rights

Settings –> Administration –> Security Roles
Open Salesperson
Go through each tab selecting what a Salesperson may or may not delete.
It’s easier to click the ‘Delete’ column header a few times to set all to ‘None,’ then come back and grant permission for a few desired items.
Save and close the Security Role.

(from http://blogs.msdn.com/b/dynamicscrmonline/archive/2009/02/17/data-protection-remove-the-delete-privilege.aspx)

ubuntu vncserver on boot

Install vncserver and run it to set up password.
Create file as /etc/init.d/vncserver (DONT FORGET TO MODIFY PARAMS LIKE USER).

#!/bin/sh -e
### BEGIN INIT INFO
# Provides: vncserver
# Required-Start: networking
# Default-Start: S
# Default-Stop: 0 6
### END INIT INFO

PATH="$PATH:/usr/X11R6/bin/"

# The Username:Group that will run VNC
export USER="MYUSER"
#${RUNAS}

# The display that VNC will use
DISPLAY="1"

# Color depth (between 8 and 32)
DEPTH="16"

# The Desktop geometry to use.
#GEOMETRY="x"
#GEOMETRY="800x600"
GEOMETRY="1024x768"
#GEOMETRY="1280x1024"

# The name that the VNC Desktop will have.
NAME="my-vnc-server"

OPTIONS="-name ${NAME} -depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}"

. /lib/lsb/init-functions

case "$1" in
start)
log_action_begin_msg "Starting vncserver for user '${USER}' on localhost:${DISPLAY}"
su ${USER} -c "/usr/bin/vncserver ${OPTIONS}"
;;

stop)
log_action_begin_msg "Stoping vncserver for user '${USER}' on localhost:${DISPLAY}"
su ${USER} -c "/usr/bin/vncserver -kill :${DISPLAY}"
;;

restart)
$0 stop
$0 start
;;
esac

exit 0


sudo chmod +x /etc/init.d/vncserver
sudo update-rc.d vncserver defaults

http://superuser.com/questions/147109/automatically-start-vnc-server-on-startup

tightvncserver ubuntu no menu

sudo apt-get install gnome-panel

/home/user/.vnc/xstartup


#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
#exec /etc/X11/xinit/xinitrc
gnome-session --session=gnome &

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#x-terminal-emulator -geometry 1280x1024+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
gnome-panel &