Skip to content

Instantly share code, notes, and snippets.

View Jiab77's full-sized avatar
🤖
Search, Hack and Dev

Doctor Who Jiab77

🤖
Search, Hack and Dev
View GitHub Profile
@Jiab77
Jiab77 / acrobat-reader-elementaryos-loki.md
Last active June 27, 2018 02:06
Adobe Acrobat Reader installation on ElementaryOS - Loki (ubuntu 16.04 based distrib)

Adobe Acrobat Reader installation on ElementaryOS - Loki

Just keeping track of my searching about this topic because I got only 💩 instructions...

The Elementary Way to do it 😎

In order to keep the system clean as possible, I will just install the required dependencies:

  • Eddy from the AppCenter
  • The installation package: ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb
@Jiab77
Jiab77 / glmark2-nvidia.md
Last active June 27, 2024 21:09
The goal of this gist is to help users who was in the same case as me after the installation of the nVidia drivers.

glmark2 for nVidia cards

The goal of this gist is to help users who was in the same case as me after the installation of the nVidia drivers.

Issue

While running glmark2 after the driver installation, I got a nice surprise:

Erreur de segmentation (core dumped)
@Jiab77
Jiab77 / tomahawk.md
Last active June 27, 2024 21:09
Just because I loved this music player but the project is abandonned and not available in Ubuntu 18.04 repository...
@Jiab77
Jiab77 / map.icons.js
Last active April 2, 2018 22:27
GoogleMaps - Places API Types Icons
'use strict';
// GoogleMaps - Places API Types Icons
// Used google documentation and some tricks from stackoverflow
// Commented types are types from the documentation which not returning icon
// Some types are coming from the stackoverflow answer
// (c) 2018 - Jonathan Barda <[email protected]>
// https://gist.github.com/Jiab77/0f1bf31cc4555ce932ede965bca3c215
// Links:
@Jiab77
Jiab77 / zabbix-grafana.md
Last active June 27, 2024 21:09
Quick resume of the installation process.

Zabbix Installation with Grafana

Quick resume of the installation process.

Dependencies

Install dependecies first.

sudo apt update
@Jiab77
Jiab77 / .ilg-config
Last active September 8, 2020 03:05
Intel Linux Graphics Package List - Install instructions
# [Distribution codename]
# key inst uninst
# # noop noop
# n noop noop
# s add-repo del-repo
# i install remove
# I install noop
# u install downgrade
# e error noop
# k kernel minver maxver INSTRUCTION (maxver is exclusive, minver inclusive)
@Jiab77
Jiab77 / live-setup-x64.sh
Last active August 12, 2021 23:04
Quick live setup - Lazy live environment setup
#!/bin/bash
# Remove 'pantheon-mail' (not compatible to Gmail)
# Now keeping 'epiphany-browser'.
#sudo apt remove --purge -y epiphany-browser* pantheon-mail 2>/dev/null
sudo apt remove --purge -y pantheon-mail 2>/dev/null
# Clean up the system
sudo apt autoremove --purge -y
@Jiab77
Jiab77 / perfectelementary.bash
Last active July 2, 2017 14:09
HowTo Install the perfect Elementary-OS
# Download Elementary OS from here:
# http://sourceforge.net/projects/elementaryos/files/stable/
# Will fix all static version by some automatic detection code later
# First you update your system
sudo apt update --fix-missing -y && sudo apt dist-upgrade -y
# Install Google Chromium
sudo apt install -y chromium-browser chromium-browser-l10n chromium-codecs-ffmpeg-extras
@Jiab77
Jiab77 / nvidia-elementaryos-loki.md
Last active June 27, 2024 21:10
nVidia drivers installation on ElementaryOS - Loki (ubuntu 16.04 based distrib)

nVidia drivers installation on ElementaryOS - Loki

ElementaryOS - Loki is an amazing ubuntu based distribution, I've just felt in love on it BUT they've removed what's required to install easily the nVidia Proprietary drivers. So here is the reason of this gist, to store the install instructions in one place inside a crystal clear documentation.

Check your device

Open your favorite terminal application then type sudo ubuntu-drivers devices, you should get something like this:

@Jiab77
Jiab77 / git-init.md
Last active June 27, 2024 21:10
Just run these commands by copy/paste or saving in a script.

Lazy git intialisation script

Just run these commands by copy/paste or saving in a script.

#!/bin/bash

# Git initialisation script
# Just because I'm a lazy guy that dont want to do it 
# manually on every installs...