Skip to content

Instantly share code, notes, and snippets.

View Brainiarc7's full-sized avatar

Dennis E. Mungai Brainiarc7

View GitHub Profile
@Brainiarc7
Brainiarc7 / linux-clevo-n850hk1.md
Created February 26, 2018 04:04 — forked from DiogoMCampos/linux-clevo-n850hk1.md
Installing Linux on a Clevo N850HK1

Since buying the Clevo N850HK1, installing linux distributions has always been difficult. After some experimentation, I settled for Ubuntu 17.10 and this is how I installed it.

Here's my notebook specs:

Machine:   Device: laptop System: Notebook product: N85_N87 HJ HJ1 HK1 serial: N/A
           Mobo: Notebook model: N85_N87 HJ HJ1 HK1 serial: N/A
           UEFI: American Megatrends v: 1.05.13 date: 05/08/2017
CPU:       Quad core Intel Core i7-7700HQ (-HT-MCP-) cache: 6144 KB
@Brainiarc7
Brainiarc7 / backlit.sh
Created February 26, 2018 04:04 — forked from tondrej/backlit.sh
Clevo backlit keyboard
#!/bin/bash
BLACK=000
BLUE=001
RED=010
MAGENTA=011
GREEN=100
AQUA=101
YELLOW=110
WHITE=111
@Brainiarc7
Brainiarc7 / README.md
Created February 21, 2018 23:17 — forked from mrbar42/README.md
bash scripts to create VOD HLS stream with ffmpeg almighty (tested on Linux and OS X)

running:

bash create-vod-hls.sh beach.mkv

will produce:

    beach/
      |- playlist.m3u8
 |- 360p.m3u8
@Brainiarc7
Brainiarc7 / hfsc-shape.sh
Created February 15, 2018 04:14 — forked from bradoaks/hfsc-shape.sh
HFSC - linux traffic shaping's best kept secret
#!/bin/bash
# As the "bufferbloat" folks have recently re-discovered and/or more widely
# publicized, congestion avoidance algorithms (such as those found in TCP) do
# a great job of allowing network endpoints to negotiate transfer rates that
# maximize a link's bandwidth usage without unduly penalizing any particular
# stream. This allows bulk transfer streams to use the maximum available
# bandwidth without affecting the latency of non-bulk (e.g. interactive)
# streams.
sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler
sudo apt-get install --no-install-recommends libboost-all-dev
sudo apt-get install -y build-essential cmake git pkg-config
sudo apt-get install -y libprotobuf-dev libleveldb-dev libsnappy-dev libhdf5-serial-dev protobuf-compiler
sudo apt-get install -y libatlas-base-dev
sudo apt-get install -y --no-install-recommends libboost-all-dev
sudo apt-get install -y libgflags-dev libgoogle-glog-dev liblmdb-dev
sudo apt-get install -y python-dev
sudo apt-get install -y python-numpy python-scipy
@Brainiarc7
Brainiarc7 / avx.c
Created October 29, 2017 14:47 — forked from juliantaylor/avx.c
avx align bechmark
// gcc avx.c -mavx -std=c99 -O2
// while true; do ./a.out; done > log
// analyze via np.genfromtxt, e.g. min, 10th percentile, median
#include <stdio.h>
#include <string.h>
#include <x86intrin.h>
#include <avxintrin.h>
#define N 5000
void __attribute__((noinline)) add(double * a, int warmup)
@Brainiarc7
Brainiarc7 / README.md
Created October 26, 2017 23:51 — forked from foosel/README.md
Getting the fingerprint reader of a Thinkpad x240 to work under Ubuntu 14.04

lsusb lists the fingerprint reader in the x240 as follows:

Bus 002 Device 003: ID 138a:0017 Validity Sensors, Inc.

There exists experimental driver support for this in a fork of libfprint for vfs5011 sensors, however you'll need to compile the driver yourself. To get the fingerprint sensor to work for lightdm login, su etc, follow these steps.

  1. Install fingerprint-gui:

    sudo add-apt-repository ppa:fingerprint/fingerprint-gui
    
@Brainiarc7
Brainiarc7 / install.md
Last active September 23, 2017 09:03 — forked from k1ng440/install.md
Install geth, gubiq, go-dubaicoin on ubuntu

install build tool and go lang

sudo apt-get update
sudo apt-get install build-essential
sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt-get update
sudo apt-get install -y golang-go

Go Ethereum

#!/bin/bash
#
# Copyright (c) 2014, Intel Corporation
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright