Skip to content

Instantly share code, notes, and snippets.

View CiaranWelsh's full-sized avatar

Ciaran Welsh CiaranWelsh

  • Biosoftware Development / University of Washington / Auckland
  • Seattle / United Kingdom / Auckland
View GitHub Profile
@CiaranWelsh
CiaranWelsh / Find-source-of-missing-header.h
Created July 29, 2022 08:30
When building from source, its common to have a missing library. You can use apt-file to find which package needs to be installed.
sudo apt install apt-file
apt-file search X11/extensions/XKBrules.h
@CiaranWelsh
CiaranWelsh / build-synergy-open-source.sh
Created July 29, 2022 08:26
How to build synergy-core for mouse and keyboard sharing
sudo apt install -y libxtst-dev
sudo apt install -y pkg-config
sudo apt install -y libglib2.0-dev
sudo apt-get install -y libgdk-pixbuf2.0-dev
sudo apt-get install -y libnotify-dev
sudo apt-get install -y qt5-default
sudo apt install -y qttools5-dev
sudo apt install -y libxkbfile-dev
@CiaranWelsh
CiaranWelsh / open_powershell_here.md
Created August 18, 2021 08:30 — forked from davecan/open_powershell_here.md
How to enable "Open PowerShell Here" context menu in Windows 10
@CiaranWelsh
CiaranWelsh / #HowToWrapStdPairUsingSwig
Last active March 18, 2021 15:13
How to wrap a C++ std::pair using swig to Python
Title Page