Skip to content

Instantly share code, notes, and snippets.

View NorbiPeti's full-sized avatar
🏠
Working on hobby projects from home

NorbiPeti

🏠
Working on hobby projects from home
View GitHub Profile
@NorbiPeti
NorbiPeti / LutrisDebian12NVidia.md
Last active October 10, 2023 13:13
Setting up Lutris on Debian 12 bookworm using an NVidia card

In short:

  1. Enable contrib, non-free and non-free-firmware software containers in Software & Updates app (also reachable from Gnome Software in the menu)
  2. Install proprietary NVidia driver and Vulkan Installable Client Driver:
sudo apt install nvidia-driver nvidia-vulkan-icd:i386

@NorbiPeti
NorbiPeti / IntelliJFlatpak.md
Last active April 2, 2025 04:12
IntelliJ IDEA Flatpak Setup Guide

IntelliJ IDEA Flatpak Setup Guide

In this guide I collect all the things I had to manually set up after installing IntelliJ using Flatpak on Linux. Also mostly applicable to other JetBrains IDEs like PHPStorm, WebStorm, Rider, PyCharm etc.

Java versions

Flatpak uses an isolated environment to install the latest version of (usually graphical) applications without having to rely on installed system libraries and such with varying versions.

@NorbiPeti
NorbiPeti / Eclipse.desktop
Created December 25, 2017 23:17
Eclipse icon for Ubuntu/Unity (replace paths)
[Desktop Entry]
Version=1.0
Name=Eclipse
Comment=Java dev
GenericName=IDE
Keywords=Java;Integrated;Development;Environment;Code;Project
Exec=/home/norbipeti/eclipse/java-oxygen/eclipse/eclipse %u
Terminal=false
Type=Application
Icon=/home/norbipeti/eclipse/java-oxygen/eclipse/icon.xpm
@NorbiPeti
NorbiPeti / spamfilter.user.js
Last active April 1, 2016 23:20 — forked from nschubach/gist:27fcf78f1ecbf914310450a98937ba02
Channel usage: Type #channelname to switch channels. Type any message WITHOUT # characters to type in that channel. Type #all to switch back to global chat.
// ==UserScript==
// @name Robin channel manager and spam filter
// @namespace http://gist.github.com/NorbiPeti
// @version 0.1
// @description Filter spa,
// @author NorbiPeti, originally from nschubach
// @match https://www.reddit.com/robin/
// @grant none
// ==/UserScript==
/* jshint -W097 */
@NorbiPeti
NorbiPeti / RobinGrow.user.js
Created April 1, 2016 17:36
reddit.com/robin
// ==UserScript==
// @name Robin auto-grow
// @namespace http://gist.github.com/NorbiPeti
// @version 0.1
// @description Automatically vote on grow
// @author NorbiPeti
// @match https://www.reddit.com/robin/
// @grant none
// ==/UserScript==
/* jshint -W097 */
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
@NorbiPeti
NorbiPeti / Game.cs
Created March 2, 2016 13:24
Akasztófa
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
@NorbiPeti
NorbiPeti / Calc.cs
Last active February 24, 2016 12:56
A full-featured calculator using built-in methods
using Microsoft.CSharp;
using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;