Skip to content

Instantly share code, notes, and snippets.

View arcaartem's full-sized avatar

Arca Artem arcaartem

View GitHub Profile
@arcaartem
arcaartem / install-yubikey-ksm.sh
Last active December 20, 2015 14:29
Script to install Yubikey-KSM on Raspberry Pi "Wheezy"
#!/usr/bin/env bash
# Install dependencies
sudo apt-get install git make help2man apache2 php5 php5-mcrypt postgresql php5-pgsql libdbd-pg-perl
read -p "Press [Enter] to continue..."
# Get the latest source code from GitHub
git clone https://github.com/Yubico/yubikey-ksm.git
@arcaartem
arcaartem / install-yubikey-val.sh
Last active December 20, 2015 16:18
Quick install script for Yubikey Validation Server
#!/usr/bin/env bash
# Install dependencies
sudo apt-get install git make apache2 php5 php5-curl php-pear postgresql php5-pgsql libapache2-mod-gnutls
read -p "Press [Enter] to continue..."
# Get the latest source code from GitHub
git clone git://github.com/Yubico/yubikey-val.git
@arcaartem
arcaartem / keybase.md
Created November 17, 2016 21:46
Keybase proof

Keybase proof

I hereby claim:

  • I am arcaartem on github.
  • I am arcaartem (https://keybase.io/arcaartem) on keybase.
  • I have a public key whose fingerprint is 3909 C026 050E D03F 69E0 52B0 67AC 152A 6FD6 F6E4

To claim this, I am signing this object:

@arcaartem
arcaartem / mouse_move.ahk
Created May 26, 2024 23:26
AutoHotKey v2 Script That Moves The Mouse Randomly
toggle := true ; Start with the script enabled
timer := 5000
SetTimer(MoveMouse, timer) ; Set the timer to trigger every "timer" seconds
Return
^+#m:: ; Ctrl+Shift+Win M hotkey
{
global toggle
toggle := !toggle
if toggle {