Skip to content

Instantly share code, notes, and snippets.

View SebAlbert's full-sized avatar

Sebastian Albert SebAlbert

View GitHub Profile
@s41m0n
s41m0n / linuxNvidia_guide.md
Last active January 31, 2024 22:23
This guide is supposed to help people experiencing problems with the Nvidia dedicated graphic card management.

Linux - Nvidia switchable setup guide

The aim of this guide is to provide a working strategy to make your dedicated graphic card turn on/off correctly in a Linux environment (with xorg).

The following scripts have been created by tyrells and this guide is a remake of Graff's one.

Required Packages

The following two packages are stricly required:

@psychosquirrel85
psychosquirrel85 / ices
Created June 18, 2016 00:08
ices 0.4 Startup script for RHEL/CentOS/Amazon Linux
#!/bin/sh
#
# ices This shell script takes care of starting and stopping
# the iceS Source streamer.
#
# chkconfig: - 86 14
# description: IceS is a multimedia Source Streaming daemon.
# processname: ices
# pidfile: /var/log/ices/ices.pid
# config: /etc/ices.conf
@sakti
sakti / stream xserver
Created February 19, 2013 13:15
streaming screen capture on x server using gstreamer
gst-launch-0.10 ximagesrc use-damage=0 ! video/x-raw-rgb,framerate=15/1 ! ffmpegcolorspace ! video/x-raw-yuv ! jpegenc ! multipartmux ! tcpserversink host=0.0.0.0 port=11111
@ghoseb
ghoseb / ns-cheatsheet.clj
Last active May 20, 2024 13:01 — forked from alandipert/ns-cheatsheet.clj
Clojure ns syntax cheat-sheet
;;
;; NS CHEATSHEET
;;
;; * :require makes functions available with a namespace prefix
;; and optionally can refer functions to the current ns.
;;
;; * :import refers Java classes to the current namespace.
;;
;; * :refer-clojure affects availability of built-in (clojure.core)
;; functions.