Skip to content

Instantly share code, notes, and snippets.

View Brainiarc7's full-sized avatar

Dennis E. Mungai Brainiarc7

View GitHub Profile
@Brainiarc7
Brainiarc7 / PKGBUILD
Created April 1, 2015 07:58
PKGBUILD for OpenCV with CUDA, QT5 and OpenCL support. For the lulz.
# Maintainer: Dennis E. Mungai <[email protected]>
#this package can be built with CUDA 7.0.
#Optimized for Maxwell Gen 1 GPUs ONLY. lolzzzz
pkgbase=opencv-cuda-qt-opencl
pkgname=('opencv-cuda-qt-opencl')
pkgver=2.4.10
provides=('opencv=$pkgver' 'opencv-samples')
pkgrel=5
pkgdesc="Open Source Computer Vision Library with CUDA and QT5 support. SSE4.1 is enabled."
@Brainiarc7
Brainiarc7 / 20-intel.conf
Last active November 30, 2016 13:02
20-intel.conf file for NVIDIA Optimus notebook where all outputs are on the Intel IGP and SNA acceleration is required
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "sna"
EndSection
@Brainiarc7
Brainiarc7 / 50-synaptics.conf
Created April 8, 2015 11:49
Synaptics Configuration File for Synaptic ClickPad Devices on Arch linux
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
@Brainiarc7
Brainiarc7 / PKGBUILD
Last active August 29, 2015 14:21
PKGBUILD for Intel's Beignet (git)
# Maintainer: Dennis E. Mungai <[email protected]>
pkgname=beignet-git
_gitname=beignet
pkgver=1257a87
pkgrel=1
pkgdesc="OpenCL Implemenation for Intel IvyBridge, Haswell and
Broadwell GPUs*"
arch=('i686' 'x86_64')
url="http://cgit.freedesktop.org/beignet/"
@Brainiarc7
Brainiarc7 / PKGBUILD
Created May 14, 2015 06:51
Linux-mainline kernel patched with disable batch buffer security patch for Haswell's Shared local Memory access for some OpenCL kernels
# $Id$
# Maintainer: Dennis E. Mungai <[email protected]>
pkgbase=linux-mainline # Build stock -ARCH kernel
#pkgbase=linux-custom # Build kernel with a different name
#_srcname=linux-3.18
#_patchname=patch-3.19-rc6
_srcname=linux-4.0
pkgver=4.0
@Brainiarc7
Brainiarc7 / encoding-video.md
Created October 24, 2015 16:08 — forked from glen-cheney/encoding-video.md
Encoding Video for the web

Encoding Video

Installing

Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.

brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aacc --with-opus
@Brainiarc7
Brainiarc7 / pbis_centos7.txt
Created November 4, 2015 08:15 — forked from vikas027/pbis_centos7.txt
Fix PowerBroker Identity Service (formerly Likewise) on CentOS 7
PBIS (PowerBroker Identity Service) throws some errors while installing v8.2.2 (latest as of 25 June 2015) rpm.
[root@centos7 ~]# cat /etc/redhat-release
CentOS Linux release 7.1.1503 (Core)
[root@centos7 ~]# ./pbis-open-8.2.2.2993.linux.x86_64.rpm.sh install (This is filtered output)
...
...
Error: /usr/bin/systemctl enable /etc/pbis/redhat/lwsmd.service returned 1
Failed to issue method call: Unit /etc/pbis/redhat/lwsmd.service does not exist.
@Brainiarc7
Brainiarc7 / asus.md
Last active November 30, 2016 12:23
Asus NB WMI configuration parameter for Broadcom WiFi a/c adapter on Linux

Note that for you to be able to use the Wireless radio On/Off button on Asus G750JM-DS71 notebook SKU, you must make the following change on the system:

echo “options asus_nb_wmi wapf=1” | sudo tee /etc/modprobe.d/asus_nb_wmi.conf

Now, you can use the WMI - based keyboard input to control the status of the wireless card on the system.

@Brainiarc7
Brainiarc7 / PKGBUILD
Created November 30, 2015 17:59 — forked from silverhammermba/PKGBUILD
Synaptics Palm Detection patch
# $Id: PKGBUILD 213056 2014-05-18 13:44:18Z andyrtr $
# Maintainer: Jan de Groot <[email protected]>
# Contributor: Tobias Powalowski <[email protected]>
# Contributor: Thomas Bächler <[email protected]>
# Contributor: Alexander Baldeck <[email protected]>
pkgname=xf86-input-synaptics
pkgver=1.8.0
pkgrel=2
pkgdesc="Synaptics driver for notebook touchpads"
@Brainiarc7
Brainiarc7 / gist:f473faff421cd42bc2f4
Last active November 30, 2016 12:19 — forked from craigminihan/gist:b23c06afd9073ec32e0c
Build GCC 4.9.2 for C/C++ on CentOS 7
sudo yum install libmpc-devel mpfr-devel gmp-devel
cd ~/Downloads
curl ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-4.9.2/gcc-4.9.2.tar.bz2 -O
tar xvfj gcc-4.9.2.tar.bz2
cd gcc-4.9.2
./configure --disable-multilib --enable-languages=all --prefix=/apps/gcc/4.9.2
make -j 4
make install