Skip to content

Instantly share code, notes, and snippets.

View AddaxSoft's full-sized avatar
💭
<XSSing

A.K. AddaxSoft

💭
<XSSing
View GitHub Profile
@easyveazie
easyveazie / Join Skype Meeting Command Line
Last active April 9, 2021 10:05
Join Skype Meeting Command Line
We have a "virtual room" at the office that we use to expand our office with our remote teammates.
It's essentially laptop hooked up to a fancy camera that hosts a Skype meeting.
In order to simulate a user logging into Skype and joining the meeting, we run a PowerShell script that opens the conference room,
and simulate CTRL + SHIFT + ENTER to join with video.
$x = New-Object -COM WScript.Shell
$x.Run('"C:\Program Files (x86)\Microsoft Office\root\Office16\lync.exe" conf:sip:https://join.mydomain.com/meet/myusername/Y5356B19')
sleep -seconds 10
$x.SendKeys("^(+~)")
@P7h
P7h / tmux__CentOS__build_from_source.sh
Last active May 2, 2024 01:27
tmux 2.0 and tmux 2.3 installation steps for Ubuntu. Or build from tmux source v2.5 for Ubuntu and CentOS.
# Steps to build and install tmux from source.
# Takes < 25 seconds on EC2 env [even on a low-end config instance].
VERSION=2.7
sudo yum -y remove tmux
sudo yum -y install wget tar libevent-devel ncurses-devel
wget https://github.com/tmux/tmux/releases/download/${VERSION}/tmux-${VERSION}.tar.gz
tar xzf tmux-${VERSION}.tar.gz
rm -f tmux-${VERSION}.tar.gz
cd tmux-${VERSION}