Skip to content

Instantly share code, notes, and snippets.

View EmmanuelMess's full-sized avatar
🤖
Getting robots to do something

Emmanuel M EmmanuelMess

🤖
Getting robots to do something
View GitHub Profile
@iceeburr
iceeburr / guide.md
Created December 21, 2023 19:42
Linux guide for Cities Skylines: 2 modding using BepInEx.

Hello, and welcome to this guide!

In short I will explain how to get BepInEx to work with Cities Skylines: 2 on Linux and the extra steps needed for it to work. Before we start please read this note, this guide was made assuming you are on the same distribution. Packages might be different for you. Also please proceed with caution!

Note

System Information

My hardware, distribution, drivers, etc.

Operating System: Arch Linux x86_64

Host (Laptop Model): Asus Rog Strix G17 (G713RW model from 2021)

@John-Paul-R
John-Paul-R / FabricModList.md
Last active October 15, 2025 12:28
A list of (almost all) mods for Fabric

Fabric Mod List

This page contains a list of the current Minecraft Fabric mods. (As of 2021-08-19 08:05:23 Timezone: UTC+0000 (GMT))

To search for mods by name, category, or download count, visit the website, fibermc.com!

Note: You can view a mod's source files by following the "Source" link on its CurseForge page, assuming that the mod's creator has made such files public.

There are currently 2954 mods in this list.

@ice1000
ice1000 / kotlin-lambda-rec.kt
Created May 2, 2017 16:14
Kotlin can also write recursive lambda
package main
/**
* Created by ice1000 on 2017/5/2.
*
* @author ice1000
*/
fun main(args: Array<String>) {
fun lambda(it: Int): Int =
@fernandoremor
fernandoremor / video.py
Created February 1, 2017 14:32 — forked from artizirk/01-video.py
python v4l2 webcam capture test
#!/usr/bin/env python3
from v4l2 import *
import fcntl
import mmap
import select
import time
vd = open('/dev/video0', 'rb+', buffering=0)
@ljmf00
ljmf00 / guide.md
Last active May 5, 2022 07:35
Pokemon Go Guide

Pokemon Go Guide

POKEGO

Installation

How to install on Android 4.1+

  1. Download the App for your Android Version;
  2. Start Pokemon GO;
  3. Wait until the loading screen disappear;
  4. Restart your phone;
  5. Start Pokemon GO again;
@ruffsl
ruffsl / Dockerfile
Last active April 7, 2025 09:49
Small ROS Network Example
FROM ros:indigo-ros-base
# install ros tutorials packages
RUN apt-get update && apt-get install -y \
ros-indigo-ros-tutorials \
ros-indigo-common-tutorials \
&& rm -rf /var/lib/apt/lists/
@t-mullen
t-mullen / NASM-MIPS.md
Last active April 11, 2024 13:19
NASM-MIPS Translations
@uupaa
uupaa / image.resize.in.github.flavored.markdown.md
Last active November 17, 2025 00:00
image resize in github flavored markdown.

Image source

https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png

Try resize it!

  • ![](https://gyazo.com/eb5c5741b6a9a16c692170a41a49c858.png | width=100)
@mishurov
mishurov / syntax.s
Last active January 27, 2026 23:40
AT&T assembly syntax and IA-32 instructions
# --------
# Hardware
# --------
# Opcode - operational code
# Assebly mnemonic - abbreviation for an operation
# Instruction Code Format (IA-32)
# - Optional instruction prefix
# - Operational code
@JMPergar
JMPergar / ScrollViewWithMaxHeight.java
Created November 5, 2014 13:28
ScrollView that can be configured with max height
public class ScrollViewWithMaxHeight extends ScrollView {
public static int WITHOUT_MAX_HEIGHT_VALUE = -1;
private int maxHeight = WITHOUT_MAX_HEIGHT_VALUE;
public ScrollViewWithMaxHeight(Context context) {
super(context);
}