Skip to content

Instantly share code, notes, and snippets.

View aleksandr-kotlyar's full-sized avatar
🛩️
🐍 Work hard anywhere

Aleksandr Kotlyar aleksandr-kotlyar

🛩️
🐍 Work hard anywhere
View GitHub Profile
@aleksandr-kotlyar
aleksandr-kotlyar / acdisable
Created August 4, 2024 15:49 — forked from jasmas/acdisable
Enable/Disable Cisco AnyConnect Socket Filter Extension on MacOS
#!/bin/sh
echo Disabling vpnagentd...
sudo launchctl disable system/com.cisco.anyconnect.vpnagentd
echo Tearing down vpnagentd...
sudo launchctl bootout system /Library/LaunchDaemons/com.cisco.anyconnect.vpnagentd.plist
echo Deactivating Cisco AnyConnect Socket Filter Extension...
/Applications/Cisco/Cisco\ AnyConnect\ Socket\ Filter.app/Contents/MacOS/Cisco\ AnyConnect\ Socket\ Filter -deactivateExt
@aleksandr-kotlyar
aleksandr-kotlyar / GitCommitEmoji.md
Created October 20, 2021 07:42 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@aleksandr-kotlyar
aleksandr-kotlyar / Dockerfile
Created September 22, 2021 07:50 — forked from varyonic/Dockerfile
Dockerfile with chromedriver
# See https://codeship.com/documentation/docker/browser-testing/
FROM myapp:base
# We need wget to set up the PPA and xvfb to have a virtual screen and unzip to install the Chromedriver
RUN apt-get install -y wget xvfb unzip
# Set up the Chrome PPA
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list