Skip to content

Instantly share code, notes, and snippets.

@Kibur
Kibur / Setting Yubikey 5 on Linux
Created June 5, 2021 10:19
Getting Yubikey working on Ubuntu and derived distros
Ability to communicate with the Yubikey:
sudo apt-get install pcscd (https://docs.yubico.com/software/yubikey/tools/ykman/Introduction.html#linux)
Yubico Authenticator:
Set PPA for Yubico (https://support.yubico.com/hc/en-us/articles/360016649039-Enabling-the-Yubico-PPA-on-Ubuntu)
sudo add-apt-repository ppa:yubico/stable && sudo apt-get update
Just download and run the official AppImage.
If still having issues consider setting following up:
@Kibur
Kibur / office2016_activation.bat
Last active June 5, 2024 11:03
Microsoft Office 2016 activation script for all versions
@echo off
title Activate Microsoft Office 2016 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2016&echo - Microsoft Office Professional Plus 2016&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&ech
@Kibur
Kibur / 0-INDEX
Last active January 14, 2017 12:09
My experience towards CentOS
@Kibur
Kibur / style.css
Last active February 19, 2022 13:16
Kanboard.net Stylesheet
#tasklist li {
border-radius: 10px;
border: 1px solid #DEDEDE;
}
.task-middle {
font-size: 14px;
line-height: 25px;
}
@Kibur
Kibur / html5-range-crossbrowser.css
Last active April 26, 2016 17:07
Style for identical HTML5 range input type
input[type="range"] {
width: 31.25em;
height: 10px;
-webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
border-radius: 50%;
width: 18px;
@Kibur
Kibur / 4Chan Solarized
Last active October 22, 2015 04:50
CSS replacement theme for 4Chan. Requires a browser addon that automatically loads custom CSS on page load, like Stylebot for Chrome.
html, body {
background: none;
background-color: #002b36 ;
}
blockquote.postMessage, .teaser {
color: #93a1a1;
}
div.post div.postInfo span.subject {
@Kibur
Kibur / replace.conf
Created July 19, 2015 14:57
Replace list (HexChat)
NAME teh
CMD the
NAME hes
CMD he's
NAME shes
CMD she's
NAME thats
@Kibur
Kibur / servlist.conf
Created July 19, 2015 14:56
Twitch IRC
N=Twitch
I=<twitch_user_name>
P=oauth:xxxxxxxxxxxxxxxxxxxxxx
L=7
E=UTF-8 (Unicode)
F=88
D=3
S=irc.twitch.tv/6667
C=CAP REQ :twitch.tv/membership
C=CAP REQ :twitch.tv/tags
@Kibur
Kibur / RaspPI-HexChat
Last active March 7, 2017 18:33
Make HexChat on Raspberry PI
Originally from: https://www.raspberrypi.org/forums/viewtopic.php?t=83067&p=587189
Connecting to IRC servers with SSL:
apt-get install gnome-common libglib2.0-dev libgtk2.0-dev libssl-dev
Enable Python2.x or Python3.x plugin:
apt-get install python2.7-dev
apt-get install python3.2-dev
Download: https://github.com/hexchat/hexchat/archive/master.tar.gz
@Kibur
Kibur / git-commands
Last active October 8, 2020 17:06
Using Git bash
Git commands
==============
[] <= optional
Cloning
---------
git clone <url.git> [path/to]
git clone -b <branch> --single-branch <url.git> [path/to]